        :root {
            --primary-color: #0d315b;
            --secondary-color: #34495e;
            --accent-color: #3498db;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --highlight-color: #ef5938;
        }


body {

    font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}
        
/* Navigation Styles for main top nav bar */
 .navbar {
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        padding: 25px 0;
        transition: all 0.3s ease;
        }

.navbar-brand img {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* For better mobile responsiveness */
@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 30px;
    }
    .navbar-brand span {
        font-size: 0.9rem;
    }
}
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary-color) !important;
            font-size: 1.8rem;
            letter-spacing: -1px;
        }
        
        .nav-link {
            color: var(--primary-color) !important;
            font-size: 1.05rem;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover:after {
            width: 80%;
        }
        
        .nav-link:hover {
            color: var(--accent-color) !important;
        }
        
        .quote-btn {
            background-color: var(--primary-color);
            color: white !important;
            border-radius: 4px;
            padding: 8px 20px !important;
            transition: background-color 0.3s;
        }
        
        .quote-btn:hover {
            background-color: var(--primary-color) !important;
            color: white !important;
        }
        
        /* --- HOME (INDEX) PAGE STYLES --- */
        /* Index Hero Section */
        .index-hero-section {
            background: linear-gradient(rgb(10 37 64 / 59%), rgb(10 37 64 / 18%)), url(../images/index/hero-banner.jpg);
            background-size: cover;
            background-position: center;
            color: white;
            padding: 400px 0 120px;
            position: relative;
        }
        .hero-tagline {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .home-hero-tagline {
            font-size: 5rem;
            font-weight: 700;
        }

        .hero-btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            padding: 12px 30px;
            font-size: 1.1rem;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        .hero-btn-secondary:hover {
            background-color: white;
            color: var(--primary-color);
        }

        /* Capabilities Section */
        .capabilities-section {
            padding: 100px 0;
            background-color: white;
        }
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 0;
        }
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-color);
            max-width: 700px;
            margin: 0 auto 60px;
        }
        .capability-card {
            background-color: white;
            border-radius: 8px;
            padding: 40px 30px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 4px solid transparent;
        }
        .capability-card:hover {
            transform: translateY(-10px);

        }
        .capability-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 25px;
        }
        .capability-card:hover .capability-icon {
            color: #ef5938; 
            transition: color 0.3s ease;
        }       
        .capability-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        .capability-card:hover .capability-title{
            color: #ef5938; 
            transition: color 0.3s ease;
        } 

        /* Process Section */
        .process-section {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        .process-step:hover .step-number {
            background-color: #ef5938; 
            transition: color 0.3s ease;
        }

        .step-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        .process-step:hover .step-title {
            color: #ef5938; 
            transition: color 0.3s ease;
        }
        /* Projects Section */
        .projects-section {
            padding: 100px 0;
            background-color: white;
        }
        .project-card {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        .project-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        .project-card:hover .project-img {
            transform: scale(1.05);
        }
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.3));
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 25px;
            opacity: 0;
            transition: all 0.3s ease;
        }
        .project-card:hover .project-overlay {
            opacity: 1;
        }
        .project-title {
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        .project-card:hover .project-title {
            transform: translateY(0);
        }
        .project-category {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transform: translateY(20px);
            transition: all 0.3s ease 0.1s;
        }
        .project-card:hover .project-category {
            transform: translateY(0);
        }


        /* ---------- Trusted By Section ---------- */
        .trusted-by {
        padding: 80px 0;
        }

        .trusted-text {
        text-align: right;
        padding-left: 0; 
        }

        .trusted-text h2 {
        font-size: 1.4rem;
        line-height: 1.3;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.65); /* softer dark gray tone */
        margin: 0;
        }

        
        /* ---------- Logos ---------- */
        .brand-logo {
        max-height: 60px;
        width: auto;
        filter: grayscale(100%) opacity(75%) brightness(90%) sepia(6%) hue-rotate(220deg);
        transition: all 0.3s ease-in-out;
        display: block;
        margin: 0 auto;
        }

        .brand-logo:hover {
        filter: sepia(100%) hue-rotate(320deg) saturate(500%) brightness(100%);
        transform: scale(1.08);
        }

        .logo-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 40px;
        }

        /* ---------- Responsive ---------- */
        @media (max-width: 992px) {
        .trusted-by {
            text-align: center;
            padding: 60px 0;
        }

        .trusted-text {
            text-align: center;
            margin-top: 40px;
            margin-left: 0;
        }

        .trusted-text h2 {
            font-size: 1.2rem;
        }

        .brand-logo {
            max-height: 45px;
        }

        .logo-row {
            gap: 30px;
        }
        }

        @media (max-width: 576px) {
        .trusted-text h2 {
            font-size: 1rem;
        }

        .brand-logo {
            max-height: 35px;
        }

        .logo-row {
            gap: 25px;
        }
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            position: relative;
        }
        
        .quote-icon {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 3rem;
            color: rgba(52, 152, 219, 0.1);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            padding-left: 20px;
        }
            /* Testimonials Carousel Styles */
        .testimonials-section .carousel {
            position: relative;
            overflow: hidden;
        }

        .testimonials-section .carousel-inner {
            padding: 10px 0;
        }

        .testimonials-section .carousel-item {
            transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
        }

        .testimonials-section .testimonial-card {
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            background-color: white;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonials-section .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .testimonials-section .carousel-indicators {
            position: relative;
            margin-top: 40px;
            bottom: auto;
        }

        .testimonials-section .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: rgba(13, 49, 91, 0.3);
            margin: 0 6px;
            border: none;
            transition: all 0.3s ease;
        }

        .testimonials-section .carousel-indicators button.active {
            background-color: var(--accent-color);
            transform: scale(1.2);
        }

        .testimonials-section .carousel-indicators button:hover {
            background-color: var(--primary-color);
        }

        /* Hide the default Bootstrap carousel controls */
        .testimonials-section .carousel-control-prev,
        .testimonials-section .carousel-control-next {
            display: none;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .testimonials-section .testimonial-card {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 767px) {
            .testimonials-section .carousel-item .col-md-4 {
                margin-bottom: 20px;
            }
            
            .testimonials-section .carousel-indicators {
                margin-top: 20px;
            }
        } 
        
        .client-info {
            display: flex;
            align-items: center;
        }
        
        .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .client-name {
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .client-position {
            font-size: 0.9rem;
            color: var(--secondary-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .footer-description {
            margin-bottom: 30px;
            opacity: 0.8;
        }
        
        .footer-links h5 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {

            .home-hero-tagline {
                font-size: 2.8rem;
            }
            .hero-tagline {
                font-size: 2.8rem;
            }
            .section-title {
                font-size: 2.5rem;
            }
            .cta-title {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .home-hero-tagline {
                font-size: 2.2rem;
            }
            .hero-tagline {
                font-size: 2.2rem;
            }
            .hero-subtitle {
                font-size: 1.1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .cta-title {
                font-size: 1.8rem;
            }
        }

        
        /* Service Hero Section */
        .service-hero-section {
            background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('../images/services/hero-image.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        
        .hero-tagline {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            max-width: 700px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .hero-btn {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 1.1rem;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        
        .hero-btn:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Services Overview Section */
        .services-overview {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 0;
            transition: background-color 0.3s ease;
        }

        .section-title:hover:after {
            background-color: #ef5938; 
        }
                
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-color);
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        /* Detailed Services Section */
        .detailed-services {
            padding: 80px 0;
            background-color: var(--light-bg);
        }
        
        .service-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        
        .service-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .service-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .service-description {
            color: var(--secondary-color);
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }
        
        .service-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }
        
        .service-features li:last-child {
            border-bottom: none;
        }
        
        .service-features li i {
            color: var(--accent-color);
            margin-right: 10px;
        }
        
        .service-link {
            color: var(--accent-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .service-link:hover {
            color: var(--primary-color);
        }
        
        .service-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .service-link:hover i {
            transform: translateX(5px);
        }
        
        /* Process Section */
        .process-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .step-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .footer-description {
            margin-bottom: 30px;
            opacity: 0.8;
        }
        
        .footer-links h5 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-tagline {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-tagline {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .service-card {
                margin-bottom: 30px;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
        }

        /* About Hero Section */
        .about-hero-section {
            background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('../images/services/hero-image.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        
        .hero-tagline {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            max-width: 700px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .hero-btn {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 1.1rem;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        
        .hero-btn:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Company Story Section */
        .story-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 0;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-color);
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .story-content {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--secondary-color);
        }
        
        .story-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .story-image:hover img {
            transform: scale(1.05);
        }
        
        .milestone {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .milestone:hover {
            background-color: var(--light-bg);
            transform: translateY(-5px);
        }
        
        .milestone-year {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 10px;
        }
        
        .milestone-text {
            font-size: 1.1rem;
            color: var(--secondary-color);
        }
        
        /* Mission Section */
        .mission-section {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        
        .mission-card {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
            border-left: 4px solid var(--accent-color);
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .mission-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .mission-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* Team Section */
        .team-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .member-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 5px solid var(--light-bg);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .team-member:hover .member-img {
            border-color: var(--accent-color);
            transform: scale(1.05);
        }
        
        .member-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .member-position {
            font-size: 1rem;
            color: var(--accent-color);
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .member-bio {
            font-size: 0.95rem;
            color: var(--secondary-color);
            max-width: 300px;
            margin: 0 auto;
        }
        
        .social-icons {
            margin-top: 15px;
        }
        
        .social-icons a {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin: 0 8px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        /* Values Section */
        .values-section {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        
        .value-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .value-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .footer-description {
            margin-bottom: 30px;
            opacity: 0.8;
        }
        
        .footer-links h5 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .footer-links ul li {
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
            margin-bottom: 8px;
            transition: color 0.3s ease;
        }

        .footer-links ul li:hover {
            color: #ffffff; /* same hover effect as links */
        }

        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-tagline {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-tagline {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .story-image {
                margin-bottom: 30px;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
        }
        
        /* Contact Hero Section */
        .contact-hero-section {
            background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('../images/services/hero-image.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        
        .hero-tagline {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            max-width: 700px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .hero-btn {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 1.1rem;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        
        .hero-btn:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Contact Info Section */
        .contact-info-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 0;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-color);
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .contact-card {
            background-color: white;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            transition: all 0.3s ease;
            border-left: 4px solid var(--accent-color);
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .contact-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .contact-info {
            font-size: 1.1rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .contact-info a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-info a:hover {
            color: var(--primary-color);
        }
        
        /* Contact Form Section */
        .contact-form-section {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        
        .form-container {
            background-color: white;
            border-radius: 12px;
            padding: 50px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }
        
        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
        }
        
        .form-label {
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 8px;
        }
        
        .form-text {
            font-size: 0.9rem;
            color: var(--secondary-color);
        }
        
        .submit-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* Map Section */
        .map-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .map-container {
            height: 450px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        
        .accordion-button {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 20px;
            box-shadow: none;
            border: none;
            border-radius: 8px !important;
            margin-bottom: 10px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--accent-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a2540'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-body {
            padding: 20px;
            color: var(--secondary-color);
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        /* Business Hours */
        .business-hours {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .hours-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .hours-title i {
            font-size: 2rem;
            color: var(--accent-color);
            margin-right: 15px;
        }
        
        .hours-table {
            width: 100%;
        }
        
        .hours-table tr {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .hours-table tr:last-child {
            border-bottom: none;
        }
        
        .hours-table td {
            padding: 12px 0;
            font-size: 1rem;
        }
        
        .hours-table td:first-child {
            font-weight: 500;
            color: var(--primary-color);
        }
        
        .hours-table td:last-child {
            text-align: right;
            color: var(--secondary-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .footer-description {
            margin-bottom: 30px;
            opacity: 0.8;
        }
        
        .footer-links h5 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Form Success Message */
        .success-message {
            display: none;
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
        }
        
        .success-message.show {
            display: block;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-tagline {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-tagline {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
        }

        
        /* Terms Hero Section */
        .terms-hero-section {
            background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('../images/services/hero-image.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        
        .hero-tagline {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            max-width: 700px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .hero-btn {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 1.1rem;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        
        .hero-btn:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Terms Content Section */
        .terms-content {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 0;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-color);
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .terms-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .terms-section {
            margin-bottom: 50px;
        }
        
        .terms-section-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .terms-section-title i {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-right: 15px;
        }
        
        .terms-section-content {
            color: var(--secondary-color);
            font-size: 1.05rem;
            line-height: 1.8;
        }
        
        .terms-section-content ul {
            padding-left: 20px;
            margin-top: 15px;
            margin-bottom: 15px;
        }
        
        .terms-section-content li {
            margin-bottom: 10px;
        }
        
        .terms-section-content strong {
            color: var(--primary-color);
        }
        
        .terms-section-content a {
            color: var(--accent-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .terms-section-content a:hover {
            color: var(--primary-color);
            text-decoration: underline;
        }
        
        .last-updated {
            font-style: italic;
            color: var(--secondary-color);
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        
        /* Table of Contents */
        .table-of-contents {
            background-color: var(--light-bg);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .toc-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        
        .toc-title i {
            font-size: 1.3rem;
            color: var(--accent-color);
            margin-right: 10px;
        }
        
        .toc-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .toc-list li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        
        .toc-list li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background-color: var(--accent-color);
            border-radius: 50%;
        }
        
        .toc-list a {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .toc-list a:hover {
            color: var(--accent-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .footer-description {
            margin-bottom: 30px;
            opacity: 0.8;
        }
        
        .footer-links h5 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-tagline {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-tagline {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .terms-section-title {
                font-size: 1.5rem;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
        }

        
        /* Quote Hero Section */
        .quote-hero-section {
            background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('../images/services/hero-image.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        
        .hero-tagline {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            max-width: 700px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .hero-btn {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 1.1rem;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        
        .hero-btn:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Quote Process Section */
        .quote-process {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 0;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-color);
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .process-step {
            text-align: center;
            padding: 30px 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .process-step:hover {
            background-color: var(--light-bg);
            transform: translateY(-5px);
        }
        
        .step-icon {
            width: 80px;
            height: 80px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            transition: all 0.3s;
        }
        
        .process-step:hover .step-icon {
            background-color: var(--primary-color);
            transform: scale(1.1);
        }
        
        .step-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* Quote Form Section */
        .quote-form-section {
            padding: 100px 0;
            background-color: var(--light-bg);
        }
        
        .form-container {
            background-color: white;
            border-radius: 12px;
            padding: 50px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }
        
        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
        }
        
        .form-label {
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 8px;
        }
        
        .form-text {
            font-size: 0.9rem;
            color: var(--secondary-color);
        }
        
        .submit-btn {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s;
            width: 100%;
        }
        
        .submit-btn:hover {
            background-color: var(--primary-color);
            color: white;
        }


        
        /* Tooltip Styles */
        .tooltip-icon {
            color: var(--accent-color);
            cursor: help;
            font-size: 0.9em;
            margin-left: 5px;
            vertical-align: middle;
        }

        /* Desktop tooltip styles */
        @media (min-width: 992px) {
            .tooltip-inner {
                background-color: var(--primary-color);
                color: white;
                max-width: 300px;
                padding: 12px 15px;
                border-radius: 6px;
                text-align: left;
                font-size: 0.9rem;
            }
        }

        /* Tablet tooltip styles */
        @media (min-width: 768px) and (max-width: 991px) {
            .tooltip-inner {
                background-color: var(--primary-color);
                color: white;
                max-width: 250px;
                padding: 10px 12px;
                border-radius: 6px;
                text-align: left;
                font-size: 0.85rem;
            }
        }

        /* Mobile tooltip styles */
        @media (max-width: 767px) {
            .tooltip-inner {
                background-color: var(--primary-color);
                color: white;
                max-width: 200px;
                padding: 8px 10px;
                border-radius: 6px;
                text-align: left;
                font-size: 0.8rem;
            }
        }

        .tooltip.bs-tooltip-top .tooltip-arrow::before {
            border-top-color: var(--primary-color);
        }

        .tooltip.bs-tooltip-right .tooltip-arrow::before {
            border-right-color: var(--primary-color);
        }

        .tooltip.bs-tooltip-bottom .tooltip-arrow::before {
            border-bottom-color: var(--primary-color);
        }

        .tooltip.bs-tooltip-left .tooltip-arrow::before {
            border-left-color: var(--primary-color);
        }
        
        
        /* Service Checkboxes */
        .service-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .service-option {
            position: relative;
        }
        
        .service-option input[type="checkbox"] {
            position: absolute;
            opacity: 0;
        }
        
        .service-option label {
            display: block;
            padding: 15px;
            background-color: white;
            border: 2px solid #ddd;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .service-option input[type="checkbox"]:checked + label {
            background-color: var(--accent-color);
            color: white;
            border-color: var(--accent-color);
        }
        
        .service-option label:hover {
            border-color: var(--accent-color);
        }



        
        /* File Upload */
        .file-upload-container {
            border: 2px dashed #ddd;
            border-radius: 8px;
            padding: 40px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            background-color: white;
        }
        
        .file-upload-container:hover {
            border-color: var(--accent-color);
            background-color: rgba(52, 152, 219, 0.05);
        }
        
        .file-upload-container.dragover {
            border-color: var(--accent-color);
            background-color: rgba(52, 152, 219, 0.1);
        }
        
        .file-upload-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 15px;
        }
        
        .file-upload-text {
            font-size: 1.1rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .file-upload-subtext {
            font-size: 0.9rem;
            color: var(--secondary-color);
        }
        
        .file-input {
            display: none;
        }
        
        .file-list {
            margin-top: 20px;
        }
        
        .file-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 15px;
            background-color: var(--light-bg);
            border-radius: 8px;
            margin-bottom: 10px;
        }
        
        .file-info {
            display: flex;
            align-items: center;
        }
        
        .file-icon {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-right: 10px;
        }
        
        .file-name {
            font-weight: 500;
            color: var(--primary-color);
        }
        
        .file-size {
            font-size: 0.9rem;
            color: var(--secondary-color);
            margin-left: 10px;
        }
        
        .file-remove {
            background: none;
            border: none;
            color: var(--highlight-color);
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .file-remove:hover {
            color: #c0392b;
        }
        
        /* Budget Range */
        .budget-range {
            margin-top: 10px;
        }
        
        .range-value {
            display: flex;
            justify-content: space-between;
            margin-top: 5px;
            font-size: 0.9rem;
            color: var(--secondary-color);
        }
        
        /* Timeline Options */
        .timeline-options {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }
        
        .timeline-option {
            flex: 1;
            min-width: 120px;
        }
        
        .timeline-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }
        
        .timeline-option label {
            display: block;
            padding: 10px;
            background-color: white;
            border: 2px solid #ddd;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .timeline-option input[type="radio"]:checked + label {
            background-color: var(--accent-color);
            color: white;
            border-color: var(--accent-color);
        }
        
        .timeline-option label:hover {
            border-color: var(--accent-color);
        }
        
        /* Success Message */
        .success-message {
            display: none;
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
        }
        
        .success-message.show {
            display: block;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .accordion-button {
            background-color: white;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 20px;
            box-shadow: none;
            border: none;
            border-radius: 8px !important;
            margin-bottom: 10px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--accent-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230a2540'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-body {
            padding: 20px;
            color: var(--secondary-color);
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .footer-description {
            margin-bottom: 30px;
            opacity: 0.8;
        }
        
        .footer-links h5 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-tagline {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-tagline {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .service-options {
                grid-template-columns: 1fr;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
        }

        /* Projects Css*/
    
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(10, 37, 64, 0.85), rgba(10, 37, 64, 0.85)), url('../images/services/hero-image.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        
        .hero-tagline {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: -1px;
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            max-width: 700px;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .hero-btn {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 14px 32px;
            font-size: 1.1rem;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
        }
        
        .hero-btn:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Projects Overview Section */
        .projects-overview {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 0;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-color);
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        /* Filter Section */
        .project-filter-section {
            padding-bottom: 60px;
            background-color: white;
        }
        
        .filter-btn {
            background-color: white;
            color: var(--secondary-color);
            border: 2px solid #ddd;
            padding: 10px 25px;
            font-size: 1rem;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.3s;
            margin: 5px;
        }
        
        .filter-btn:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
        }
        
        .filter-btn.active {
            background-color: var(--accent-color);
            color: white;
            border-color: var(--accent-color);
        }
        
        /* Detailed Projects Section */
        .detailed-projects {
            padding: 80px 0;
            background-color: var(--light-bg);
        }
        
        .project-card {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .project-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        
        .project-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .project-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .project-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }

            .project-title-details {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);;
            margin-bottom: 15px;
        }
        
        .project-description {
            color: var(--secondary-color);
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .project-features {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }
        
        .project-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
        }
        
        .project-features li:last-child {
            border-bottom: none;
        }
        
        .project-features li i {
            color: var(--accent-color);
            margin-right: 10px;
        }
        
        .project-link {
            color: var(--accent-color);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
        }
        
        .project-link:hover {
            color: var(--primary-color);
        }
        
        .project-link i {
            margin-left: 5px;
            transition: transform 0.3s;
        }
        
        .project-link:hover i {
            transform: translateX(5px);
        }
        
        .project-category {
            display: inline-block;
            color: white;
            font-size: 0.85rem;
            font-weight: 500;
            padding: 5px 12px;
            border-radius: 20px;
            margin-bottom: 15px;
        }
        
        /* Featured Project Section */
        .featured-project {
            padding: 100px 0;
            background-color: white;
        }
        
        .featured-container {
            background-color: var(--light-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .featured-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .featured-content {
            padding: 60px;
        }
        
        .featured-badge {
            display: inline-block;
            background-color: var(--highlight-color);
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 30px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .featured-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .featured-description {
            font-size: 1.1rem;
            color: var(--secondary-color);
            margin-bottom: 30px;
            line-height: 1.8;
        }
        
        .featured-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .stat-item {
            flex: 1;
            min-width: 150px;
        }
        
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Process Section */
        .process-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .step-number {
            width: 70px;
            height: 70px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .step-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s;
            display: inline-block;
            text-decoration: none;
            position: relative;
            z-index: 1;
        }
        
        .cta-btn:hover {
            background-color: #c0392b;
            color: white;
            transform: translateY(-3px);
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding: 80px 0 20px;
        }
        
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        
        .footer-description {
            margin-bottom: 30px;
            opacity: 0.8;
        }
        
        .footer-links h5 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 15px;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-tagline {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .featured-content {
                padding: 40px;
            }
            
            .featured-title {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-tagline {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .project-card {
                margin-bottom: 30px;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .featured-content {
                padding: 30px;
            }
            
            .featured-title {
                font-size: 1.8rem;
            }
            
            .featured-stats {
                gap: 20px;
            }
            
            .stat-value {
                font-size: 1.5rem;
            }
        }

        /*END */


/* Card Highlight Effect Styles */
/* =========================================================

/* The parent container (.project-item) needs relative positioning */
.project-item {
    position: relative;
    transition: all 0.4s ease;
    z-index: 1; /* Base z-index */
}

.project-item.project-highlight {
    /* Slightly enlarge the card to make it pop */
    transform: scale(1.02);
    z-index: 10; /* Ensure it pops above other items */
}

/* 2. Create the animated border and glow directly on the .project-card */
.project-item.project-highlight .project-card {
    /* Set the border color to the animated gradient */
    border-image: linear-gradient(45deg, #ff0080, #ff8c00, #ffd700, #00ff00, #00ffff, #0080ff, #8000ff) 1;
    border-image-slice: 1;
    
    /* Add a beautiful, colorful glow effect */
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.4), 
                0 0 30px rgba(255, 140, 0, 0.3),
                0 0 45px rgba(0, 255, 255, 0.2);
    
    /* Animate the border gradient */
    animation: rainbow-border 3s ease infinite;
}

/* 3. Keyframe animation for the rainbow border */
@keyframes rainbow-border {
    0% { border-image-source: linear-gradient(45deg, #ff0080, #ff8c00, #ffd700, #00ff00, #00ffff, #0080ff, #8000ff); }
    50% { border-image-source: linear-gradient(45deg, #8000ff, #ff0080, #ff8c00, #ffd700, #00ff00, #00ffff, #0080ff); }
    100% { border-image-source: linear-gradient(45deg, #ff0080, #ff8c00, #ffd700, #00ff00, #00ffff, #0080ff, #8000ff); }
}

/* 4. Ensure smooth scrolling is enabled */
html {
    scroll-behavior: smooth;
}