
        :root {
            --purple: #03389f;
            --light-blue: #2aa5ff;
            --dark-blue: #0a2540;
            --white: #ffffff;
            --gray-light: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            font-size: 18px;
        }

        /* Animated Navbar */
    .navbar {
    background: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: all 0.3s 
ease;
    width: 90%;
    padding: 0;
    border-radius: 100px;
    margin: 0 auto;
    top: 7%;
    left: 50% !important;
    transform: translateX(-50%) !important;
}
a.navbar-brand img {
    width: 103px;
}
       .navbar.scrolled {
    padding: 0;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.15);
}ul.navbar-nav.ms-auto {
    padding-right: 42px;
    align-items: center;
}

        .navbar-brand {
            font-weight: 900;
            font-size: 2rem;
            background: linear-gradient(135deg, var(--purple), var(--light-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: transform 0.3s ease;
            background: #183265;
            padding: 12px 15px 10px 6px;
            border-radius: 100px 0px 0px 100px;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .logo-animation {
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .navbar-nav .nav-link {
            color: var(--dark-blue) !important;
            font-weight: 600;
            margin: 0 20px;
            position: relative;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--purple), var(--light-blue));
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
.fixed-top {
    position: absolute !important;
    top: 40px;
    right: 0px;
    left: 50%;
    z-index: 1030;
    transform: translateX(-50%);
}
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section - Modern Design */
        .hero-modern {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 202px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-modern::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, var(--purple), var(--light-blue));
            border-radius: 50%;
            top: -250px;
            right: -150px;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .hero-modern::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--light-blue), var(--purple));
            border-radius: 50%;
            bottom: -200px;
            left: -100px;
            opacity: 0.1;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
        }

      .hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 3px;
    animation: fadeInUp 0.8s 
ease;
}
        .hero-title .text-purple {
            color: var(--purple);
        }

        .hero-title .text-blue {
            color: var(--light-blue);
        }

        .hero-subtitle {
            font-size: 1.4rem;
            color: #333;
            margin-bottom: 2.5rem;
            line-height: 1.8;
            animation: fadeInUp 1s ease;
        }

        .hero-cta {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--purple), var(--light-blue));
            color: white;
            padding: 18px 45px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            box-shadow: 0 10px 30px rgba(74, 20, 140, 0.3);
            transition: all 0.3s ease;
            animation: fadeInUp 1.2s ease;
        }

        .hero-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(74, 20, 140, 0.4);
        }

        .hero-images {
            position: relative;
            animation: fadeInRight 1s ease;
        }

        .hero-image-main {
            width: 450px;
            height: 450px;
            border-radius: 50%;
            object-fit: cover;
            border: 8px solid white;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            position: relative;
            z-index: 2;
        }

        .hero-image-small {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid white;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            position: absolute;
            top: -30px;
            right: -20px;
            z-index: 3;
            animation: bounce 3s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Stats Section */
      .stats-section {
    background: linear-gradient(135deg, var(--purple), var(--light-blue));
    padding: 50px 0;
    color: white;
}

        .stat-item {
            text-align: center;
            padding: 30px;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* About Section with Visual Appeal */
        .about-visual {
            padding: 100px 0;
            background: white;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--purple), var(--light-blue));
            color: white;
            padding: 8px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .section-title-modern {
            font-size: 3rem;
            font-weight: 900;
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            border-color: var(--light-blue);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--purple), var(--light-blue));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2rem;
            color: white;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }

        /* Services - Modern Grid */
        .services-modern {
            padding: 100px 0;
            background: var(--gray-light);
        }

        .service-card-modern {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
        }

        .service-card-modern:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 70px rgba(0,0,0,0.15);
        }

      .service-header {
    background: linear-gradient(135deg, var(--purple), var(--light-blue));
    padding: 0px 0px 12px 0px;
    text-align: center;
    color: white;
}
        .service-icon-large {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }.service-icon-large img {
    width: 100%;
    height: 244px;
    border-radius: 20px 20px 0px 0px;
    object-fit: cover;
}

        .service-title {
            font-size: 1.6rem;
            font-weight: 700;
        }

        .service-body {
            padding: 35px 30px;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .service-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .service-features li:last-child {
            border-bottom: none;
        }

        .service-features i {
            color: var(--light-blue);
            font-size: 1.1rem;
        }

        /* Process Section */
        .process-section {
            padding: 100px 0;
            background: white;
        }

        .process-step {
    text-align: center;
    padding: 30px;
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s 
ease;
    border: 2px solid transparent;
    height: 100%;
}


        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--purple), var(--light-blue));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 900;
            margin: 0 auto 25px;
            box-shadow: 0 10px 30px rgba(74, 20, 140, 0.3);
        }

        .process-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }

        /* Industries Grid */
        .industries-grid {
            padding: 100px 0;
            background: var(--dark-blue);
            color: white;
        }

        .industry-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 35px 25px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .industry-card:hover {
            background: rgba(255,255,255,0.15);
            border-color: var(--light-blue);
            transform: translateY(-10px);
        }

        .industry-icon {
            font-size: 3rem;
            color: var(--light-blue);
            margin-bottom: 20px;
        }

        .industry-name {
            font-size: 1.1rem;
            font-weight: 600;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: var(--gray-light);
        }

      .testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
    height: 303px;
}

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--purple), var(--light-blue));
        }

        .author-info h5 {
            margin: 0;
            font-weight: 700;
            color: var(--dark-blue);
        }

        .author-info p {
            margin: 0;
            color: #666;
        }

        /* CTA Section - Modern */
        .cta-modern {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--purple), var(--light-blue));
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-modern::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            top: -300px;
            right: -200px;
        }

        .cta-title {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
        }

        .cta-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        .btn-cta-white {
            background: white;
            color: var(--purple);
            padding: 18px 50px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.3s ease;    text-decoration: none;
        }

        .btn-cta-white:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        /* Footer - Modern */
        footer {
            background: #ffffff;
            color: white;
            padding: 80px 0 40px;
        }footer p {
    color: #000;
    font-size: 18px;
}

        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--purple), var(--light-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .footer-section h5 {
            font-size: 27px;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #000000;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
            color: #000;
        }

        .footer-links a {
            color: rgb(0 0 0 / 80%);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--light-blue);
            transform: translateX(5px);
        }.footer-logo img {
    width: 107px;
    background: #183265;
    padding: 10px;
    border-radius: 10px;
}

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

       .social-icon {
    width: 45px;
    height: 45px;
    background: rgb(24 50 101);
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    transition: all 0.3s 
ease;
    color: #fff;
    text-decoration: none;
}

        .social-icon:hover {
            background: var(--light-blue);
            transform: translateY(-5px);
        }

        .footer-bottom {
            border-top: 1px solid rgb(80 80 80 / 10%);
            margin-top: 60px;
            padding-top: 30px;
            text-align: center;
            color: rgb(0 0 0 / 70%);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .hero-image-main {
                width: 350px;
                height: 350px;
            }
            
            .hero-image-small {
                width: 150px;
                height: 150px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-images {
                margin-top: 50px;
                text-align: center;
            }
            
            .section-title-modern {
                font-size: 2rem;
            }
        }
   .cta-btn {
    display: inline-flex
;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--purple), var(--light-blue));
    color: white;
    padding: 13px 37px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(74, 20, 140, 0.3);
    


    text-decoration: none;
}


 .about-section {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
        }

        .about-section .about-content {
            padding-right: 40px;
        }

      .about-section .section-title

 {
    color: var(--purple);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    font-size: 63px;
}.about-section .section-title span

 {
    color: #2aa5ff;
}
      .about-section   .section-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 4px;
            background: var(--light-blue);
            border-radius: 2px;
        }

        .about-section .about-text {
            line-height: 1.8;
            margin-bottom: 25px;
            color: var(--dark-blue);
        }

       .about-section  .highlight-box {
            background-color: var(--white);
            border-left: 4px solid var(--light-blue);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 30px 0;
        }

       .about-section  .about-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .about-section .about-image:hover {
            transform: translateY(-5px);
        }

        .about-section .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

       .about-section  .about-image:hover img {
            transform: scale(1.03);
        }

       .about-section  .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10, 37, 64, 0.8), transparent);
            color: var(--white);
            padding: 30px 20px 20px;
        }

      
       

        @media (max-width: 991px) {
           .about-section  .about-content {
                padding-right: 0;
                margin-bottom: 40px;
            }
           
        }

 .about-us-page .hero-section {
    background: var(--white);
    padding: 180px 0px 70px 0px;
    position: relative;
    overflow: hidden;
}

.about-us-page .hero-content {
    position: relative;
    z-index: 2;
}

.about-us-page .hero-title-wrapper {
    padding-right: 40px;
}

.about-us-page .hero-main-title {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    margin: 0;
}

.about-us-page .title-about {
    font-size: 6rem;
    font-weight: 900;
    color: var(--purple);
    letter-spacing: -2px;
    text-transform: uppercase;
}

.about-us-page .title-talent {
    font-size: 6rem;
    font-weight: 900;
    color: var(--purple);
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-left: 0;
}

.about-us-page .title-portus {
    font-size: 6rem;
    font-weight: 900;
    color: var(--light-blue);
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-left: 0;
}

.about-us-page .hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(10, 37, 64, 0.2);
}

.about-us-page .hero-workspace-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-us-page .hero-image-wrapper:hover .hero-workspace-img {
    transform: scale(1.05);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

.about-us-page .who-we-are {
    padding: 100px 0;
    background: var(--gray-light);
    position: relative;
}

.about-us-page .who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(42, 165, 255, 0.05), rgba(3, 56, 159, 0.05));
    border-radius: 50%;
    filter: blur(60px);
}

.about-us-page .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.about-us-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--light-blue), var(--purple));
    border-radius: 3px;
}

.about-us-page .office-image {
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(10, 37, 64, 0.2);
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-page .office-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 56, 159, 0.1), rgba(42, 165, 255, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.about-us-page .office-image:hover::before {
    opacity: 1;
}

.about-us-page .office-image:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 100px rgba(10, 37, 64, 0.25);
}

.about-us-page .office-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-us-page .mission-vision-values {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.about-us-page .mission-vision-values::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(3, 56, 159, 0.03), rgba(42, 165, 255, 0.03));
    border-radius: 50%;
    filter: blur(50px);
}

.about-us-page .mvv-card {
    background: var(--white);
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.about-us-page .mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--light-blue), var(--purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-us-page .mvv-card:hover::before {
    transform: scaleX(1);
}

.about-us-page .mvv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(10, 37, 64, 0.15);
    border-color: rgba(42, 165, 255, 0.2);
}

.about-us-page .mvv-card h3 {
    color: var(--purple);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-us-page .mvv-card p, 
.about-us-page .mvv-card ul {
    color: #5a6c7d;
    line-height: 1.8;
}

.about-us-page .mvv-card ul {
    list-style: none;
    padding: 0;
}

.about-us-page .mvv-card ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.about-us-page .mvv-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--light-blue);
    border-radius: 50%;
}

.about-us-page .why-choose {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
    position: relative;
}

.about-us-page .feature-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(10, 37, 64, 0.08);
    position: relative;
    overflow: hidden;
}

.about-us-page .feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(42, 165, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-us-page .feature-card:hover::before {
    opacity: 1;
}

.about-us-page .feature-card:hover {
    box-shadow: 0 20px 50px rgba(10, 37, 64, 0.12);
    transform: translateY(-8px);
    border-color: rgba(42, 165, 255, 0.3);
}

.about-us-page .feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--light-blue), var(--purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(42, 165, 255, 0.3);
    position: relative;
    z-index: 1;
}

.about-us-page .feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(42, 165, 255, 0.4);
}

.about-us-page .feature-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.about-us-page .feature-card p {
    color: #5a6c7d;
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.about-us-page .text-gradient {
    background: linear-gradient(135deg, var(--light-blue), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 992px) {
    .about-us-page .title-about, 
    .about-us-page .title-talent, 
    .about-us-page .title-portus {
        font-size: 4rem;
    }

    .about-us-page .hero-title-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .about-us-page .title-about, 
    .about-us-page .title-talent, 
    .about-us-page .title-portus {
        font-size: 3rem;
    }

    .about-us-page .section-title {
        font-size: 2rem;
    }

    .about-us-page .hero-section, 
    .about-us-page .who-we-are, 
    .about-us-page .mission-vision-values, 
    .about-us-page .why-choose {
        padding: 50px 0;
    }
}

@media (max-width: 576px) {
    .about-us-page .title-about, 
    .about-us-page .title-talent, 
    .about-us-page .title-portus {
        font-size: 2.5rem;
    }
}


/* Hero Section */ 
.service-page .hero-section {
    background: var(--white);
    padding: 180px 0px 70px 0px;
    position: relative;
    overflow: hidden;
}

.service-page .hero-content {
    position: relative;
    z-index: 2;
}

.service-page .hero-title-wrapper {
    padding-right: 40px;
}

.service-page .hero-main-title {
    display: flex;
    flex-direction: column;
    line-height: 0.9;
    margin: 0;
}

.service-page .title-our {
    font-size: 6rem;
    font-weight: 900;
    color: var(--purple);
    letter-spacing: -2px;
    text-transform: uppercase;
}

.service-page .title-services {
    font-size: 6rem;
    font-weight: 900;
    color: var(--light-blue);
    letter-spacing: -2px;
    text-transform: uppercase;
}

.service-page .hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(10, 37, 64, 0.2);
}

.service-page .hero-workspace-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.service-page .hero-image-wrapper:hover .hero-workspace-img {
    transform: scale(1.05);
}

/* Services Grid Section */
.service-page .services-grid {
    padding: 100px 0;
    background: var(--gray-light);
    position: relative;
}

.service-page .service-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 40px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-page .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--light-blue), var(--purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-page .service-card:hover::before {
    transform: scaleX(1);
}

.service-page .service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(10, 37, 64, 0.15);
    border-color: rgba(42, 165, 255, 0.3);
}

.service-page .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue), var(--purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(42, 165, 255, 0.3);
    transition: all 0.4s ease;
}

.service-page .service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-page .service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.service-page .service-card p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.service-page .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-page .service-features li {
    padding: 12px 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 35px;
    font-size: 1rem;
}

.service-page .service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--light-blue), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--white);
}

/* Process Section */
.service-page .process-section {
    padding: 100px 0;
    background: var(--white);
}

.service-page .section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.service-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--light-blue), var(--purple));
    border-radius: 3px;
}

.service-page .process-step {
    text-align: center;
    padding: 40px 25px;
    position: relative;
}

.service-page .step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(42, 165, 255, 0.3);
}

.service-page .process-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.service-page .process-step p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* FAQ Section */
.service-page .faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
}

.service-page .faq-container {
    max-width: 100%;
}

.service-page .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(10, 37, 64, 0.08);
    transition: all 0.3s ease;
}

.service-page .accordion-item:hover {
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.12);
}

.service-page .accordion-button {
    background: var(--white);
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
}

.service-page .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--purple), var(--dark-blue));
    color: var(--white);
    box-shadow: none;
}

.service-page .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.service-page .accordion-button::after {
    filter: brightness(0);
}

.service-page .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.service-page .accordion-body {
    padding: 30px;
    background: var(--white);
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* CTA Section */
.service-page .cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple), var(--dark-blue));
    color: var(--white);
    text-align: center;
}

.service-page .cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-page .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-page .cta-button {
    background: var(--white);
    color: var(--purple);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.service-page .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    color: var(--purple);
}

@media (max-width: 992px) {
    .service-page .title-our, 
    .service-page .title-services {
        font-size: 4rem;
    }

    .service-page .hero-title-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .service-page .title-our, 
    .service-page .title-services {
        font-size: 3rem;
    }

    .service-page .section-title {
        font-size: 2rem;
    }

    .service-page .hero-section, 
    .service-page .services-grid, 
    .service-page .process-section, 
    .service-page .faq-section {
        padding: 50px 0;
    }

    .service-page .service-card {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .service-page .title-our, 
    .service-page .title-services {
        font-size: 2.5rem;
    }
}
/* Service Hero Section */
.service-details-page .service-hero {
    background: #f8f8f8;
    color: #ffffff;
    padding: 180px 0 70px;
    position: relative;
    overflow: hidden;
}

.service-details-page .service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path d="M0,0 L1000,0 L1000,100 L0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
    background-size: cover;
}

.service-details-page .service-hero-content {
    position: relative;
    z-index: 2;
}

.service-details-page .service-icon-large {
    width: 120px;
    height: 120px;
    background: rgb(24 50 101);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.service-details-page .service-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #183265;
}

.service-details-page .service-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    color: #000;
}

.service-details-page .service-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.service-details-page .service-hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.service-details-page .service-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Service Details Section */
.service-details-page .service-details {
    padding: 100px 0;
    background: var(--white);
}

.service-details-page .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
    text-align: center !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-details-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--light-blue), var(--purple));
    border-radius: 3px;
    transform: translateX(-50%);
}

.service-details-page .service-details-content {
    margin-top: 50px;
}

.service-details-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-details-page .benefit-card {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    border-left: 5px solid var(--light-blue);
}

.service-details-page .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(10, 37, 64, 0.1);
}

.service-details-page .benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-blue), var(--purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.service-details-page .benefit-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.service-details-page .benefit-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Process Section */
.service-details-page .process-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.service-details-page .process-step {
    text-align: center;
    padding: 40px 25px;
    position: relative;
}

.service-details-page .step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(42, 165, 255, 0.3);
}

.service-details-page .process-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.service-details-page .process-step p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* FAQ Section */
.service-details-page .faq-section {
    padding: 100px 0;
    background: var(--white);
}

.service-details-page .faq-container {
    max-width: 100%;
}

.service-details-page .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(10, 37, 64, 0.08);
    transition: all 0.3s ease;
}

.service-details-page .accordion-item:hover {
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.12);
}

.service-details-page .accordion-button {
    background: var(--white);
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
}

.service-details-page .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--purple), var(--dark-blue));
    color: var(--white);
    box-shadow: none;
}

.service-details-page .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.service-details-page .accordion-button::after {
    filter: brightness(0);
}

.service-details-page .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.service-details-page .accordion-body {
    padding: 30px;
    background: var(--white);
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* CTA Section */
.service-details-page .cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple), var(--dark-blue));
    color: var(--white);
    text-align: center;
}

.service-details-page .cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-details-page .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-details-page .cta-button {
    background: var(--white);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, var(--purple), var(--light-blue));
}

.service-details-page .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    color: var(--purple);
}

/* Media Queries */
@media (max-width: 992px) {
    .service-details-page .service-hero h1 {
        font-size: 2.8rem;
    }
    
    .service-details-page .service-hero-image {
        transform: none;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .service-details-page .service-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-details-page .section-title {
        font-size: 2rem;
    }

    .service-details-page .service-hero,
    .service-details-page .service-details,
    .service-details-page .process-section,
    .service-details-page .faq-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .service-details-page .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-details-page .benefits-grid {
        grid-template-columns: 1fr;
    }
}
 /* Dropdown container */
        .nav-item.dropdown {
            position: relative;
        }
        
        /* Dropdown menu */
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            min-width: 220px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: none;
            border-radius: 8px;
            padding: 10px 0;
            z-index: 1000;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s, transform 0.3s;
        }
        
        /* Show dropdown on hover for desktop */
        @media (min-width: 992px) {
            .nav-item.dropdown:hover .dropdown-menu {
                display: block;
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Dropdown items */
        .dropdown-item {
            padding: 10px 20px;
            color: #333;
            font-weight: 400;
            transition: all 0.2s;
            display: flex;
            align-items: center;
        }
        
        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #007bff;
            padding-left: 25px;
        }
        
        .dropdown-item i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .dropdown-divider {
            margin: 8px 0;
            border-top: 1px solid #e9ecef;
        }
        
        /* Mobile dropdown toggle */
        .dropdown-toggle::after {
            display: inline-block;
            margin-left: 5px;
            vertical-align: middle;
            content: "▾";
            border: none;
            font-size: 16px;
            transition: transform 0.3s;
        }
        
        /* Active state for mobile */
        .dropdown.show .dropdown-toggle::after {
            transform: rotate(180deg);
        }
        
        /* Mobile styles */
        @media (max-width: 991px) {

.dropdown-menu {
                position: static;
                box-shadow: none;
                border-radius: 0;
                padding-left: 20px;
                transform: none;
                opacity: 1;
                display: none;
            }
            
            .dropdown.show .dropdown-menu {
                display: block;
            }
            
            .dropdown-item:hover {
                padding-left: 20px;
            }


            .navbar {
    background: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: all 0.3s 
ease;
    width: 100%;
    padding: 0;
    border-radius: 0;
    margin: 0 auto;
    top: 0 !important;
}.navbar-brand

 {
    font-weight: 900;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--purple), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex
;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s 
ease;
    background: #183265;
    padding: 0;
    border-radius: 0;
}    .navbar {
        background: #ffffff;
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
        padding: 0;
        transition: all 0.3s 
ease;
        width: 100%;
        padding: 0px 20px 0px 0px;
        border-radius: 0;
        margin: 0 auto;
        top: 0 !important;
    }.hero-modern {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}.stat-number {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
}
section.stats-section .col-lg-3.col-md-6 {
    width: 49%;
}

            
        }

        section.testimonials-section {
    display: none;
}section.pri-text-wrapper {
    padding: 60px 0;
}


/* Service Details Section */
.contact-page-wrapper .service-details {
    padding: 100px 0;
}

.about-us-page.contact-page-wrapper h2.section-title.text-center {
    text-align: center;
    display: flex
;
    justify-content: space-evenly;
    align-items: center;
}

.contact-page-wrapper .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
 .contact-page-wrapper .about-us-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50% !important;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--light-blue), var(--purple));
    border-radius: 3px;
    transform: translateX(-50%);
}
.contact-page-wrapper .benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-top: 4px solid var(--light-blue);
}

.contact-page-wrapper .benefit-card:hover {
    transform: translateY(-10px);
}

.contact-page-wrapper .benefit-icon {
    font-size: 2.5rem;
    color: var(--light-blue);
    margin-bottom: 20px;
}

.contact-page-wrapper .benefit-card h4 {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Contact Section */
.contact-page-wrapper .contact-section {
    padding: 100px 0;
    background-color: #fafafa;
}
.contact-page-wrapper .contact-info-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s;
    border-top: 4px solid var(--light-blue);
}

.contact-page-wrapper .contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-page-wrapper .contact-info-card i {
    font-size: 2rem;
    color: var(--light-blue);
    margin-bottom: 20px;
}

.contact-page-wrapper .contact-info-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.contact-page-wrapper .contact-form {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-page-wrapper .form-control {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.contact-page-wrapper .form-control:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

.contact-page-wrapper .form-select {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Locations Section */
.contact-page-wrapper .locations-section {
    padding: 80px 0;
}

.contact-page-wrapper .location-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s;
    border-top: 4px solid var(--light-blue);
}

.contact-page-wrapper .location-card:hover {
    transform: translateY(-5px);
}

.contact-page-wrapper .location-card h3 {
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.contact-page-wrapper .location-card.coming-soon {
    opacity: 0.7;
    border-top: 4px solid #cbd5e0;
}

.contact-page-wrapper .coming-soon-badge {
    background-color: #e2e8f0;
    color: var(--dark-gray);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

/* FAQ Section */
.contact-page-wrapper .faq-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.contact-page-wrapper .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-page-wrapper .accordion-button {
    background-color: white;
    color: var(--dark-blue);
    font-weight: 600;
    padding: 20px;
    border: none;
    box-shadow: none;
}

.contact-page-wrapper .accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--dark-blue);
    box-shadow: none;
    border-bottom: 1px solid #e2e8f0;
}

.contact-page-wrapper .accordion-button:focus {
    box-shadow: none;
    border-color: var(--light-blue);
}
.contact-page-wrapper .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--light-blue), var(--purple));
    border-radius: 3px;
    transform: translateX(-50%);
}
.contact-page-wrapper .accordion-body {
    padding: 20px;
    color: #5a6c7d;
}

/* CTA Section */
.contact-page-wrapper .cta-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-page-wrapper .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-page-wrapper .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}


        @media(max-width:767px){
            .about-section .section-title {
    color: var(--purple);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    font-size: 35px;
}.about-visual {
    padding: 50px 0;
    background: white;
}.services-modern {
    padding: 50px 0;
    background: var(--gray-light);
}section.process-section .col-lg-3.col-md-6 {
    margin-bottom: 20px;
}.process-section {
    padding: 50px 0;
    background: white;
}.industries-grid {
    padding: 50px 0;
    background: var(--dark-blue);
    color: white;
}section {
    padding: 50px 0 !important;
}.cta-title {
    font-size: 37px;
    font-weight: 900;
    margin-bottom: 1.5rem;
}.footer-bottom {
    border-top: 1px solid rgb(80 80 80 / 10%);
    margin-top: 0;
    padding-top: 30px;
    text-align: center;
    color: rgb(0 0 0 / 70%);
}
        .hero-modern {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 120px 0 50px !important;
        position: relative;
        overflow: hidden;
    }.service-icon-large {
    display: none !important;
}.service-details-page {
    padding-top: 68px;
}.about-us-page {
    padding-top: 71px;
}.about-us-page .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--light-blue), var(--purple));
    border-radius: 3px;
    transform: translateX(-50%);
}

        }

