﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul {
    display: flex;
    margin: 0;
    list-style: none;
    gap: 2rem;
}
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .logo img {
        height: 60px;
        width: auto;
    }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #00ffcc;
}

.logo-tagline {
    font-size: 0.8rem;
    color: #66d9ff;
    letter-spacing: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

    nav a:hover {
        opacity: 0.8;
    }

/* Dropdown Menu Styles */
.has-submenu {
    position: relative;
}

    .has-submenu > a {
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

        .has-submenu > a::after {
            content: "\f107";
            transition: transform 0.3s;
            display: inline-block;
            font: normal normal normal 14px / 1 FontAwesome;
            font-size: inherit;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

    .has-submenu:hover > a::after {
        transform: rotate(180deg);
    }

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0a1f2e;
    min-width: 250px;
    padding: .5rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 1rem;
    display: block;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    list-style: none;
}

.submenu a {
    display: block;
    padding: 0.6rem 1.1rem;
    color: white;
    text-decoration: none;
    transition: background 0.3s, padding-left 0.3s;
    border-left: 3px solid transparent;
    font-size: 14px;
}

    .submenu a:hover {
        background: rgba(0, 255, 204, 0.1);
        border-left-color: #00ffcc;
        padding-left: 1rem;
    }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Banner Slider */
.banner-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

    .slide.active {
        opacity: 1;
    }

.slide1 {
    background: url('../images/banner1.jpg') center/cover;
}

.slide2 {
    background: url('../images/banner2.jpg') center/cover;
}

.banner-slider .slide:before {
    content: "";
    background: linear-gradient(to right, rgba(10, 31, 46, 0.9), rgba(26, 58, 74, 0.85));
    background: linear-gradient(to right, rgba(10, 31, 46, 0.9) 10%, rgba(26, 58, 74, 0.85) 70%, #6b4f8d00 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 77%;
    height: 100%;
}

.slide-content {
    max-width: 1200px;
    max-width: 64%;
    /* margin: 0 auto; */
    padding: 0 8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
}

    .slide-content h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        animation: slideInLeft 0.8s ease-out;
    }

    .slide-content p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        animation: slideInLeft 0.8s ease-out 0.2s both;
    }

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
    color: #0a1f2e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: slideInLeft 0.8s ease-out 0.4s both;
    width: fit-content;
}

    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 255, 204, 0.4);
    }

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

    .slider-dot.active {
        background: white;
    }

/* Slider Arrow Navigation */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 204, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(5px);
}

    .slider-arrow:hover {
        background: rgba(0, 255, 204, 0.4);
        border-color: #00ffcc;
        transform: translateY(-50%) scale(1.1);
    }

    .slider-arrow.prev {
        left: 30px;
    }

    .slider-arrow.next {
        right: 30px;
    }

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

        .slider-arrow.prev {
            left: 15px;
        }

        .slider-arrow.next {
            right: 15px;
        }
}

/* About Us Section */
.about-us {
    background: white;
    padding: 5rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        /*height: 500px;*/
        object-fit: cover;
        border-radius: 15px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .about-image::before {
        content: '';
        position: absolute;
        top: -20px;
        left: -20px;
        right: 20px;
        bottom: 20px;
        border: 3px solid #00ffcc;
        border-radius: 15px;
        z-index: -1;
    }

.about-text h2 {
    font-size: 2.5rem;
    color: #0a1f2e;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

    .about-text h2::after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #00ffcc, #66d9ff);
        margin-top: 1rem;
    }

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

    .stat-item:hover {
        transform: translateY(-5px);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00ffcc;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #555;
    font-size: 0.9rem;
}

.about-cta {
    margin-top: 2rem;
}

.about-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .about-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(10, 31, 46, 0.3);
    }

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image::before {
        display: none;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

.services {
    padding: 4rem 2rem;
    background: #f8f9fa;
    position: relative;
}

    .services .section-title {
        color: #fff;
    }

    .services:before {
        content: "";
        background-image: url('../images/services.jpg');
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-blend-mode: overlay;
        background-color: #000000b3;
        background-attachment: fixed;
        background-size: contain;
    }

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #0a1f2e;
    position: relative;
}

    .section-title::after {
        content: '';
        display: block;
        width: 100px;
        height: 3px;
        background: linear-gradient(90deg, #00ffcc, #66d9ff);
        margin: 1rem auto 0;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem auto 0rem;
    position: relative;
}

.service-card {
    background: #ffffff3d;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 14px;
    border: 1px solid #ffffff8f;
    backdrop-filter: blur(40px); /* Blur effect */
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 14px rgb(0 0 0 / 9%);
    }

    .service-card p {
        color: #fff;
        font-size: 16px;
        backdrop-filter: unset;
    }

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00ffcc;
    backdrop-filter: unset;
}

.service-card h3 {
    font-size: 20px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #39df63;
}

/* Why Choose Us */
.why-choose {
    padding: 4rem 2rem;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: background 0.3s;
    font-size: 14px;
}

    .feature-item:hover {
        background: #e9ecef;
    }

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00ffcc;
}

.feature-content h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
}

.feature-content p {
    font-size: 16px;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
    color: white;
    text-align: center;
    position: relative;
}

    .contact-section:before {
        content: "";
        background-image: url('../images/cloud-img.jpg');
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        100%:;
        100%: inherit;
        100%: inherit;
        100%: t;
        height: 100%;
        opacity: .1;
        background-attachment: fixed;
        background-size: contain;
    }

.contact-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
    color: #0a1f2e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

    .contact-button:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 40px rgba(0, 255, 204, 0.4);
    }

/* Testimonials */
.testimonials {
    padding: 4rem 2rem;
    background: #eaf1f7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1f2e;
    font-weight: bold;
}

/* Technology Section */
.tech-heading {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #0a1f2e;
    margin-top: 3rem;
}
.technology {
    padding: 4rem 2rem;
    background: white;
}

.tab-pane.fade {
    display: none;
}

.technology .tab-pane.fade.active {
    display: block;
    opacity: 1;
    background: no-repeat;
}

.technology .nav.flex-row.nav-pills.dgvhbfjbj_tri {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(50, 50, 50, .1);
    text-align: center;
    padding-bottom: 0;
}

.technology a.nav-link {
    padding: 10px 25px;
    border-bottom: 3px solid #ffffff;
}

    .technology a.nav-link h3 {
        font-size: 15px;
        font-weight: 600;
    }

    .technology a.nav-link.active {
        border-bottom: 3px solid #003060;
    }

.technology .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 22%;
    gap: 2rem;
    /* margin: 1rem; */
}
section.technology .section-title {
    margin-top: 2rem;
}
section.technology .container:first-child .section-title {
        margin-top: 0;
    }
.technology .skill-name {
    font-weight: 500;
    margin: 1rem 0 2rem;
    font-size: 18px;
    text-align: center;
}

.tech-grid {
    margin-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
}
.tech {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.tech-item {
    padding: 1rem;
    background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 7px rgb(0 0 0 / 13%);
    font-size: 15px;
    height: 100%;
}

    .tech-item:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(0, 255, 204, 0.2);
    }

.tech-icon {
    width: 100px;
}


/* Footer */
footer {
    background: #0a1f2e;
    color: white;
    padding: 3rem 2rem 1rem;
    font-size: 15px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.10em;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff42;
    font-weight: bold;
    padding-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

.footer-section a {
    color: #bbb;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-section a:hover {
        color: white;
    }

.social-links {
    display: flex;
    /* gap: 1rem; */
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a1f2e;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

a.social-icon img {
    width: 28px;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #bbb;
}

img.location {
    width: 19px;
    margin-right: 6px;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a1f2e;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

        nav ul.active {
            display: flex;
        }

        nav ul li {
            padding: 0.5rem 0;
        }

    /* Mobile Submenu Styles */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 255, 204, 0.05);
        margin: 0.5rem 0;
        padding: 0.5rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-submenu.active .submenu {
        max-height: 500px;
    }

    .has-submenu > a::after {
        margin-left: auto;
    }

    .submenu a {
        padding: 0.6rem 1.5rem 0.6rem 2rem;
        font-size: 0.9rem;
    }

        .submenu a:hover {
            padding-left: 2.5rem;
        }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .banner-slider {
        height: 400px;
    }

    .section-title {
        font-size: 2rem;
    }
}

h2.section-title.ryguyg_tri:after {
    margin: 0;
    opacity: 0;
}

h2.section-title.ryguyg_tri {
    margin-bottom: 10px;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}


@media (max-width: 768px) {
    .slide-content {
        max-width: 100%;
        padding: 0 4rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        margin-bottom: .5rem;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 48px;
    }

    .technology .col-lg-2 {
        min-width: 33%;
        margin-bottom: 15px;
    }

    .tech-grid {
        flex-wrap: wrap;
    }

    .technology a.nav-link {
        padding: 10px 15px;
        border-bottom: 3px solid #ffffff;
        white-space: nowrap;
    }

    .technology .nav.flex-row.nav-pills.dgvhbfjbj_tri {
        overflow: auto;
    }

    .technology, .testimonials, .why-choose, .services {
        padding: 2rem 1rem 3.5rem;
    }

    .contact-section, .about-us {
        padding: 3rem 1rem;
    }

    .slide {
        background-position: left !important;
    }

    .banner-slider .slide:before {
        width: 100%;
    }

    .logo {
        flex-grow: 1;
    }
}


/*======== breadcrumb =============*/
ul.breadcrumb-style-tri {
    display: flex;
    list-style: none;
    justify-content: center;
}

ul.breadcrumb-style-tri li.mvc {
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 12px;
    margin-right: 12px;
}

ul.breadcrumb-style-tri li.mvc:after {
    content: '/';
    position: absolute;
    right: -2px;
}

ul.breadcrumb-style-tri a {
    text-decoration: none;
}
/*======== breadcrumb =============*/

.img-fluid{max-width:100%;height:auto;}
.djkaa-aminew{color:white !important;}