/* About Us Page Specific Styles */

/* Hero Section */
.about-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #001f3f 0%, #0d2847 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px 20px 80px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/ab.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FFA500" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero h1 .highlight {
    background: linear-gradient(135deg, #FFA500 0%, #FF6347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFA500;
    margin-bottom: 0.5rem;
}

.hero-stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Company Story Section */
.company-story {
    padding: 100px 0;
    background: #ffffff;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 1.5rem;
}

.story-text h2 .highlight {
    color: #FFA500;
}

.story-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 31, 63, 0.15);
}

.story-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #FF6347 0%, #FFA500 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.4);
    text-align: center;
    color: #001f3f;
}

.story-badge h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.story-badge p {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

/* Vision Mission Section */
.vision-mission {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.vm-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 31, 63, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, #FFA500 0%, #FF6347 100%);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 31, 63, 0.15);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFA500 0%, #FF6347 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.vm-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.vm-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 1.5rem;
}

.vm-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vm-card ul {
    list-style: none;
    padding: 0;
}

.vm-card ul li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.vm-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #FFA500;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.why-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.why-item:hover {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 31, 63, 0.1);
    transform: translateY(-10px);
}

.why-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FFA500 0%, #FF6347 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-icon i {
    font-size: 3rem;
    color: #ffffff;
}

.why-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #001f3f;
    margin-bottom: 1rem;
}

.why-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Services List Section */
.services-list-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #090909 0%, #000000 100%);
}

.services-list-section .section-title {
    color: #ffffff;
}

.services-list-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.services-grid-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-list-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.service-list-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 165, 0, 0.5);
    transform: translateY(-10px);
}

.service-list-item i {
    font-size: 3rem;
    color: #FFA500;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-list-item:hover i {
    transform: scale(1.1);
    color: #FF6347;
}

.service-list-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

/* CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFA500 0%, #FF6347 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(0, 31, 63, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-contact-info {
    background: rgba(0, 31, 63, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #001f3f;
    flex-wrap: wrap;
}

.cta-contact-item:last-child {
    margin-bottom: 0;
}

.cta-contact-item i {
    font-size: 1.5rem;
    color: #001f3f;
    flex-shrink: 0;
}

.cta-contact-item a {
    color: #001f3f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-contact-item a:hover {
    opacity: 0.8;
}

.cta-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 31, 63, 0.2);
}

.cta-form-wrapper h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: "TASA Explorer", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFA500;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-cta {
    background: linear-gradient(135deg, #001f3f 0%, #0d2847 100%);
    color: #ffffff;
    padding: 1.2rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 31, 63, 0.3);
}

.btn-submit-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 31, 63, 0.4);
}

/* Our Clients Section - Static Grid with GSAP */
.clients-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    overflow: hidden;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.client-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 31, 63, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease, border 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    will-change: transform;
}

.client-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.client-item:hover::before {
    left: 100%;
}

.client-item:hover {
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.15);
    border-color: rgba(255, 165, 0, 0.3);
}

.client-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: filter 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.client-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Responsive for Clients Grid */
@media (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 60px 0;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .client-item {
        padding: 1.5rem;
    }

    .client-item img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .client-item {
        padding: 1rem;
    }

    .client-item img {
        max-height: 50px;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-hero h1 {
        font-size: 3rem;
    }

    .story-content {
        gap: 3rem;
    }

    .services-grid-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta {
        padding: 80px 0;
    }

    .cta-content {
        gap: 4rem;
    }

    .cta-text h2 {
        font-size: 2.5rem;
    }

    .cta-text p {
        font-size: 1.1rem;
    }

    .cta-form-wrapper {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 20px 60px;
        min-height: 50vh;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-image img {
        height: 350px;
    }

    .story-badge {
        position: static;
        margin-top: 2rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-text h2 {
        font-size: 2.2rem;
    }

    .cta-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .story-image img {
        height: 280px;
    }

    .vm-card {
        padding: 2rem;
    }

    .vm-icon {
        width: 60px;
        height: 60px;
    }

    .vm-icon i {
        font-size: 2rem;
    }

    .services-grid-list {
        grid-template-columns: 1fr;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-form-wrapper {
        padding: 1.5rem;
    }

    .about-cta {
        padding: 50px 0;
    }

    .about-cta::before {
        width: 300px;
        height: 300px;
        top: -20%;
        right: -40%;
    }

    .cta-content {
        gap: 2rem;
    }

    .cta-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .cta-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .cta-contact-info {
        padding: 1.2rem;
    }

    .cta-contact-item {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }

    .cta-contact-item i {
        font-size: 1.2rem;
    }

    .cta-contact-item div {
        text-align: center;
    }

    .cta-form-wrapper {
        padding: 1.5rem;
    }

    .cta-form-wrapper h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .cta-form {
        gap: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.85rem 0.9rem;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .btn-submit-cta {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .cta-text h2 {
        font-size: 1.6rem;
    }

    .cta-text p {
        font-size: 0.95rem;
    }

    .cta-contact-item {
        font-size: 0.85rem;
    }

    .cta-form-wrapper {
        padding: 1.2rem;
    }

    .cta-form-wrapper h3 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .btn-submit-cta {
        padding: 0.9rem 1.3rem;
        font-size: 0.9rem;
    }
}

.cta-quote-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 31, 63, 0.1);
    border: 2px solid #FFA500;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-quote-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.quote-icon {
    font-size: 3rem;
    color: #FFA500;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-quote-box h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #001f3f;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-quote-box p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.btn-get-quote {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFA500 0%, #FF6347 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}

.btn-get-quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 165, 0, 0.4);
}

.btn-get-quote i {
    transition: transform 0.3s ease;
}

.btn-get-quote:hover i {
    transform: translateX(5px);
}

.quote-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.quote-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #001f3f;
    font-weight: 600;
}

.quote-feature i {
    color: #28a745;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .cta-quote-box {
        padding: 2rem 1.5rem;
    }

    .cta-quote-box h3 {
        font-size: 1.5rem;
    }

    .btn-get-quote {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .quote-features {
        gap: 1rem;
    }

    .quote-feature {
        font-size: 0.9rem;
    }
}
/* Override GSAP animations for navbar */
        .navbar,
        .navbar *,
        .logo,
        .logo *,
        .logo-image,
        .logo-divider,
        .logo-text-wrapper,
        .logo-text,
        .logo-tagline {
            opacity: 1 !important;
            transform: none !important;
        }
        
        .logo {
            display: flex !important;
            align-items: flex-end !important;
        }
        
        /* Default logo sizes */
        .logo-image {
            height: 90px !important;
        }
        
        .logo-divider {
            height: 70px !important;
            background: linear-gradient(180deg, transparent 0%, #001f3f 20%, #001f3f 80%, transparent 100%) !important;
        }
        
        .logo-text-wrapper {
            height: 90px !important;
            padding-bottom: 2px !important;
        }
        
        .logo-text {
            font-size: 1.584rem !important;
            font-weight: 800 !important;
            color: #001f3f !important;
            line-height: 1.2 !important;
            margin-bottom: 2px !important;
        }
        
        .logo-tagline {
            font-size: 0.99rem !important;
            font-weight: 600 !important;
            color: #dc143c !important;
            line-height: 1 !important;
        }
        
        /* Fix navbar overflow and scrollbar issues */
        body {
            overflow-x: hidden;
        }
        
        .navbar {
            overflow: visible;
        }
        
        .nav-container {
            overflow: visible;
            max-width: 100%;
        }
        
        /* Responsive fixes for tablets and small laptops */
        @media (max-width: 1366px) {
            .about-hero {
                padding: 140px 20px 60px !important;
            }
            
            .about-hero h1 {
                font-size: 2.2rem !important;
            }
            
            .nav-container {
                padding: 0 15px !important;
            }
        }
        
        @media (max-width: 1024px) {
            .logo {
                gap: 8px !important;
            }
            
            .logo-image {
                height: 60px !important;
            }
            
            .logo-divider {
                height: 45px !important;
            }
            
            .logo-text-wrapper {
                height: 60px !important;
            }
            
            .logo-text {
                font-size: 1.1rem !important;
            }
            
            .logo-tagline {
                font-size: 0.7rem !important;
            }
            
            .about-hero {
                padding: 120px 20px 50px !important;
            }
            
            .about-hero h1 {
                font-size: 2rem !important;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                gap: 15px !important;
            }
            
            .hero-stat-item {
                flex: 1 1 calc(33.333% - 15px);
                min-width: 120px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-container {
                padding: 0 10px !important;
            }
            
            .logo {
                gap: 6px !important;
            }
            
            .logo-image {
                height: 50px !important;
            }
            
            .logo-divider {
                height: 38px !important;
            }
            
            .logo-text-wrapper {
                height: 50px !important;
            }
            
            .logo-text {
                font-size: 0.95rem !important;
                line-height: 1.1 !important;
            }
            
            .logo-tagline {
                font-size: 0.6rem !important;
                line-height: 1.2 !important;
            }
            
            .about-hero {
                padding: 100px 15px 40px !important;
            }
            
            .about-hero h1 {
                font-size: 1.6rem !important;
            }
            
            .hero-stats {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-stat-item {
                width: 100%;
                max-width: 200px;
            }
        }
        
        @media (max-width: 480px) {
            .nav-container {
                padding: 0 8px !important;
            }
            
            .logo {
                gap: 5px !important;
            }
            
            .logo-image {
                height: 45px !important;
            }
            
            .logo-divider {
                height: 35px !important;
            }
            
            .logo-text-wrapper {
                height: 45px !important;
            }
            
            .logo-text {
                font-size: 0.85rem !important;
                line-height: 1.1 !important;
            }
            
            .logo-tagline {
                font-size: 0.55rem !important;
                line-height: 1.2 !important;
                white-space: nowrap !important;
                overflow: hidden !important;
                text-overflow: ellipsis !important;
            }
        }
        
        @media (max-width: 360px) {
            .nav-container {
                padding: 0 5px !important;
            }
            
            .logo {
                gap: 4px !important;
            }
            
            .logo-image {
                height: 40px !important;
            }
            
            .logo-divider {
                height: 30px !important;
            }
            
            .logo-text-wrapper {
                height: 40px !important;
            }
            
            .logo-text {
                font-size: 0.75rem !important;
                line-height: 1 !important;
            }
            
            .logo-tagline {
                font-size: 0.5rem !important;
                line-height: 1.1 !important;
            }
        }
        
        /* Ensure no horizontal overflow anywhere */
        * {
            max-width: 100%;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            overflow-x: hidden;
        }
        
        /* Fix Our Story section scrollbar */
        .company-story {
            overflow-x: hidden !important;
        }
        
        .company-story .container {
            overflow-x: hidden !important;
        }
        
        .story-content {
            overflow-x: hidden !important;
            box-sizing: border-box !important;
        }
        
        .story-text,
        .story-image {
            box-sizing: border-box !important;
            max-width: 100% !important;
        }
        
        .story-image img {
            max-width: 100% !important;
            width: 100% !important;
            height: auto !important;
            display: block !important;
        }
        
        .story-badge {
            max-width: calc(100% - 40px) !important;
        }
        
        /* Responsive fixes for story section */
        @media (max-width: 1366px) {
            .story-content {
                gap: 30px !important;
            }
            
            .story-text {
                max-width: 48% !important;
            }
            
            .story-image {
                max-width: 48% !important;
            }
        }
        
        @media (max-width: 1024px) {
            .story-content {
                flex-direction: column !important;
                gap: 30px !important;
            }
            
            .story-text,
            .story-image {
                width: 100% !important;
                max-width: 100% !important;
            }
        }
        
        /* Clients section background color */
        .clients-section {
            background: linear-gradient(135deg, #001f3f 0%, #003366 100%) !important;
            position: relative;
        }
        
        .clients-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 165, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .clients-section .section-header {
            position: relative;
            z-index: 1;
        }
        
        .clients-section .section-title,
        .clients-section .section-subtitle {
            color: #ffffff !important;
        }
        
        .clients-section .highlight {
            color: #FFA500 !important;
        }
        
        .clients-grid {
            position: relative;
            z-index: 1;
        }
        
        /* Keep client logos always in color - override any grayscale */
        .client-item {
            filter: none !important;
            opacity: 1 !important;
            transform: none !important;
        }
        
        .client-item img {
            filter: none !important;
            transition: transform 0.3s ease;
        }
        
        .client-item:hover img {
            transform: scale(1.05);
        }
        
        /* Vision Mission section background */
        .vision-mission {
            background: linear-gradient(135deg, #001f3f 0%, #002a4d 50%, #003366 100%) !important;
            position: relative;
            overflow: hidden;
        }
        
        .vision-mission::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(255, 165, 0, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255, 165, 0, 0.06) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(255, 99, 71, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .vision-mission .container {
            position: relative;
            z-index: 1;
        }
        
        .vision-mission .section-title {
            color: #ffffff !important;
        }
        
        .vision-mission .section-subtitle {
            color: rgba(255, 255, 255, 0.8) !important;
        }
        
        .vision-mission .highlight {
            color: #FFA500 !important;
        }
        
        .vision-mission .vm-card {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
        }
        
        .vision-mission .vm-icon {
            background: linear-gradient(135deg, #FFA500 0%, #FF6347 100%);
        }
        
        /* What Makes Us Different section background */
        .why-choose {
            background: linear-gradient(135deg, #f5f5dc 0%, #faf8f3 100%) !important;
            position: relative;
        }
        
        .why-choose::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 30%, rgba(255, 165, 0, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 85% 70%, rgba(255, 165, 0, 0.02) 0%, transparent 40%);
            pointer-events: none;
        }
        
        .why-choose .container {
            position: relative;
            z-index: 1;
        }
        
        /* Black border for why-item cards */
        .why-choose .why-item {
            border: 2px solid #001f3f !important;
        }
        
        /* Services List section background - match footer social section */
        .services-list-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%) !important;
            position: relative;
            overflow: hidden;
        }
        
        .services-list-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 15% 20%, rgba(255, 165, 0, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 85% 80%, rgba(0, 31, 63, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255, 99, 71, 0.02) 0%, transparent 60%);
            pointer-events: none;
        }
        
        .services-list-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                linear-gradient(90deg, transparent 0%, rgba(255, 165, 0, 0.02) 50%, transparent 100%),
                linear-gradient(0deg, transparent 0%, rgba(0, 31, 63, 0.02) 50%, transparent 100%);
            pointer-events: none;
        }
        
        .services-list-section .container {
            position: relative;
            z-index: 1;
        }
        
        .services-list-section .section-title {
            color: #001f3f !important;
        }
        
        .services-list-section .section-subtitle {
            color: rgba(0, 31, 63, 0.7) !important;
        }
        
        .services-list-section .highlight {
            color: #FFA500 !important;
            text-shadow: 0 0 20px rgba(255, 165, 0, 0.1);
        }
        
        .services-grid-list {
            position: relative;
            z-index: 1;
        }
        
        /* Enhanced service list items for lighter theme */
        .services-list-section .service-list-item {
            background: rgba(255, 255, 255, 0.9) !important;
            border: 2px solid rgba(0, 31, 63, 0.1) !important;
            box-shadow: 0 4px 15px rgba(0, 31, 63, 0.05) !important;
            transition: all 0.3s ease !important;
        }
        
        .services-list-section .service-list-item:hover {
            background: rgba(255, 255, 255, 1) !important;
            border-color: rgba(255, 165, 0, 0.3) !important;
            box-shadow: 0 8px 25px rgba(255, 165, 0, 0.15) !important;
            transform: translateY(-5px) !important;
        }
        
        .services-list-section .service-list-item i {
            color: #FFA500 !important;
            background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 99, 71, 0.1) 100%);
        }
        
        .services-list-section .service-list-item h4 {
            color: #001f3f !important;
        }