/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
    min-height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Social Media Sharing */
.social-share {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.social-share-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
    z-index: 1;
}

.social-share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.social-share-btn:hover::before {
    left: 100%;
}

/* Facebook */
.social-facebook {
    background: #1877f2;
}

.social-facebook:hover {
    background: #166fe5;
}

/* LinkedIn */
.social-linkedin {
    background: #0077b5;
}

.social-linkedin:hover {
    background: #005885;
}

/* Twitter */
.social-twitter {
    background: #1da1f2;
}

.social-twitter:hover {
    background: #1a91da;
}

/* WhatsApp */
.social-whatsapp {
    background: #25d366;
}

.social-whatsapp:hover {
    background: #20b954;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-share {
        right: 10px;
        gap: 10px;
    }
    
    .social-share-btn {
        width: 40px;
        height: 40px;
    }
    
    .social-share-btn svg {
        width: 20px;
        height: 20px;
    }
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    height: 100px;
}

.nav-logo {
    margin: 0 20px 0 0;
    padding: 0;
    display: flex;
    align-items: center;
    line-height: 1;
    flex-shrink: 0;
}

.nav-logo img {
    width: 210px;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    transition: transform 0.2s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-logo img:hover {
    transform: scale(1.03);
}

.nav-menu {
    margin: 0 auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.0rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    padding: 8px 18px;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-item {
    position: relative;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #10b981 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.0rem;
    padding: 0.8rem 2.0rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.3px;
    margin-right: 0;
}

.nav-cta span {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #d97706 0%, #059669 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.nav-cta:hover span {
    transform: translateX(3px);
}

.dropdown {
    position: relative;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    z-index: 1000;
}

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

.dropdown:hover .dropdown-menu li {
    padding: 8px 0;
    list-style: none;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 0.5px solid #f3f4f6;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24, #3b82f6, #fbbf24);
    background-size: 200% 200%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.dropdown-menu a:hover {
    color: white;
    padding-left: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.dropdown-menu a:hover::before {
    left: 0;
    background-position: 100% 0;
    animation: yellowBlueGradient 0.6s ease;
}

.dropdown-menu a:active::before {
    background: linear-gradient(135deg, #f59e0b, #2563eb, #f59e0b);
    background-size: 200% 200%;
    animation: yellowBlueGradient 0.3s ease;
}

@keyframes yellowBlueGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 100% 0%;
    }
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Desktop-specific dropdown styles */
@media (min-width: 769px) {
    .nav-container {
        padding: 0 40px;
        gap: 20px;
    }
    
    .nav-list {
        gap: 8px;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 8px 14px;
    }
    
    .dropdown-menu {
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: none;
    }
    
    .dropdown-menu a {
        font-size: 0.9rem;
        padding: 10px 16px;
        color: #1f2937;
        background: transparent;
        border-bottom: 0.5px solid #f3f4f6;
    }
    
    .dropdown-menu a:hover {
        color: white;
        padding-left: 20px;
        background: linear-gradient(135deg, #fbbf24, #3b82f6, #fbbf24);
    }
    
    .nav-item.dropdown .nav-link:after {
        display: none;
    }
    
    .nav-item.dropdown .nav-link {
        background: transparent;
        border: none;
        margin-bottom: 0;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1f2937;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Full Width Sector Image */
.sector-image-full {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: 12px;
    position: relative;
}

.sector-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-image-full:hover img {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background img,
.hero-background video,
.hero-image,
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
    background: transparent;
    display: block;
}

.hero-content {
    text-align: left;
    color: #0b4291;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    position: absolute;
    bottom: 250px;
    left: 60px;
}

.hero-title {
    font-size: clamp(5rem, 20vw, 10rem);
    font-weight: 1000;
    margin-bottom: 0.8rem;
    margin-top: 40px;
    animation: fadeInUp 1s ease;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #08448f;
    background: linear-gradient(135deg, #08448f 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
}

    .hero-subtitle {
        font-size: clamp(2.25rem, 5vw, 2.25rem);
        margin-bottom: 2.5rem;
        animation: fadeInUp 1s ease 0.2s;
        animation-fill-mode: both;
        color: #ffffff;
        font-weight: 400;
        max-width: 700px;
        line-height: 1.6;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

.hero-desc {
    margin-bottom: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #1f2937;
    border-bottom: 3px solid #1f2937;
    transform: rotate(45deg);
}

/* Responsive hero adjustments for mobile */
@media (max-width: 768px) {
    .hero {
        height: 100vh !important;
        min-height: 70vh !important;
        max-height: 100vh !important;
        padding: 0 !important;
        align-items: center;
        justify-content: center;
    }

    .hero-background,
    .hero-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: cover !important;
    }

    .hero-video {
        transform: none !important;
        z-index: 1 !important;
    }

    .hero-content {
        bottom: 60px;
        left: 20px;
        max-width: calc(100% - 40px);
        padding: 0 16px;
        z-index: 3;
    }

    .hero-title {
        font-size: clamp(3.5rem, 12vw, 5.5rem);
        line-height: 1.05;
        margin-bottom: 1.2rem;
        background: linear-gradient(135deg, #08448f 0%, #f59e0b 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        color: #08448f !important;
        text-shadow: none !important;
    }
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: transparent !important;
        text-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
        font-size: clamp(1.1rem, 3vw, 1.6rem);
        margin-bottom: 1.4rem;
        color: #ffffff !important;
        text-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.42);
    }

    /* Add spacing between hero and following sections on mobile */
    .hero + section,
    .page-hero + section,
    .sectors-hero + section,
    .contact-hero + section {
        margin-top: 40px;
    }
}

/* Section Styles */
section {
    padding: 80px 0;
}

/* Add spacing between hero and following sections */
.hero + section,
.page-hero + section,
.sectors-hero + section,
.contact-hero + section {
    margin-top: 60px;
}

.section-header {
    text-align: left !important;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1.25rem;
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: left !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 650px;
    margin: 0;
    line-height: 1.7;
    font-weight: 400;
    text-align: left !important;
}

/* About Section */
.about {
    background: #ffffff;
    padding: 100px 0;
    border-bottom: 2px solid #e5e7eb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #4b5563;
}

.about-text p strong {
    color: #1f2937;
    font-weight: 700;
}

.read-more-link {
    display: inline-block;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.about-detail-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.stat-card:hover::before {
    opacity: 1;
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 700px;
    display: block;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Sectors Section - Swiper Carousel */
.sectors {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #e5e7eb;
}


.sectors .section-header {
    position: relative;
    z-index: 1;
}

.sectors .section-title {
    color: #1f2937;
}

.sectors .section-subtitle {
    color: #6b7280;
}

.swiper-wrapper,
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide {
    height: 1000px;
}

.swiper-slide.swiper-slide-active {
    height: 2000px;
}

.sectors-swiper {
    padding: 2rem 0;
    overflow: hidden;
}

.sectors-swiper .swiper-slide {
    width: 80%;
    max-width: 1100px;
    transition: all 0.5s ease;
}

.sectors-swiper .swiper-slide-active {
    width: 80%;
}

.sectors-swiper .swiper-slide:not(.swiper-slide-active) {
    opacity: 0.5;
    transform: scale(0.9);
}

.sectors-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.sector-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.sector-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.sector-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: stretch;
    height: 520px;
    min-height: 520px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(255, 255, 255), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sector-card:hover::before {
    opacity: 1;
}

.sector-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgb(255, 255, 255);
}

.sector-content {
    flex: 0 0 15%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
    z-index: 2;
    min-height: 100%;
}

.sector-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.sector-link {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

.sector-link a {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 0.3rem;
    font-size: 0.7rem;
}

.sector-link a:hover {
    color: #2563eb;
    transform: translateX(3px);
}

.sector-btn {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    align-self: flex-start;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    font-size: 0.85rem;
}

.sector-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sector-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.sector-btn:hover::before {
    left: 100%;
}

.sector-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.sector-btn svg {
    transition: transform 0.3s ease;
}

.sector-btn:hover svg {
    transform: translateX(6px);
}

.sector-image {
    flex: 1;
    max-width: 85%;
    overflow: hidden;
    position: relative;
    height: 100%;
    min-height: 100%;
    width: 100%;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-card:hover .sector-image img {
    transform: scale(1.05);
}

/* NEW SECTORS LAYOUT - Black Left Text, Image Right */
.sectors-new {
    background: #ffffff !important;
    padding: 100px 0 120px 0 !important;
}

.sectors-new::before {
    display: none !important;
}

.sectors-wrapper {
    max-width: 100%;
    padding: 0;
}

.sectors-header {
    padding: 0 60px;
    margin-bottom: 50px !important;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 30px;
}

.sectors-header .section-title {
    color: #1a2332 !important;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.sectors-header .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #3b82f6;
    border-radius: 2px;
}

.sectors-header .section-subtitle {
    display: none;
}

.sectors-swiper-new {
    padding: 0 60px;
    overflow: visible !important;
    margin: 0 !important;
}

.sectors-swiper-new .swiper-wrapper {
    height: 420px;
}

.sectors-swiper-new .swiper-slide {
    width: auto;
    max-width: 900px;
    flex-shrink: 0;
}

.sectors-slide-new {
    height: 420px;
    display: flex;
    align-items: stretch;
}

.sector-slide-container {
    display: grid;
    grid-template-columns: 0.7fr 1.5fr 0.8fr;
    gap: 30px;
    width: 100%;
    height: 100%;
    align-items: center;
}

/* LEFT IMAGE CARD */
.sector-left {
    background: white;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.sector-left-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.sector-left-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sector-accent-line {
    display: none;
}

.sector-left h3,
.sector-left p,
.sector-learn-more {
    display: none;
}

/* MIDDLE CARD - Text on Black Left, Image on Right */
.sector-middle {
    background: white;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    display: grid;
    grid-template-columns: 0.3fr 0.7fr;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.sector-middle::before {
    content: 'SECTORS';
    position: absolute;
    top: 25px;
    left: 35px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    z-index: 10;
}

.sector-middle {
    background: #1a1a1a;
}

.sector-middle-text {
    background: #1a1a1a;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.sector-middle-image {
    background: white;
    overflow: hidden;
}

.sector-middle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sectors-slide-new:hover .sector-middle-image img {
    transform: scale(1.05);
}

.sector-middle h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.3;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
}

.sector-middle h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #3b82f6;
    margin-top: 15px;
}

.sector-middle p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.sector-middle img {
    display: none;
}

/* RIGHT DARK CARD */
.sector-right {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.sector-right::before {
    content: 'SECTORS';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.sector-right-inner {
    width: 100%;
    padding-top: 50px;
}

.sector-right h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.sector-right h4::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #3b82f6;
    margin-top: 12px;
}

.sector-right p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* NAVIGATION */
.sectors-button-next,
.sectors-button-prev {
    display: none !important;
}

.sectors-bottom {
    padding: 30px 60px 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 100px;
    gap: 0;
}

.sectors-progress-line {
    display: none;
}

.sectors-nav-arrows {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sectors-arrow-prev,
.sectors-arrow-next {
    width: 55px;
    height: 55px;
    border: 2px solid #333;
    background: white;
    color: #333;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.sectors-arrow-prev:hover,
.sectors-arrow-next:hover {
    background: #333;
    color: white;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .sectors-swiper-new {
        padding: 0 40px;
    }
    
    .sectors-header {
        padding: 0 40px;
    }
    
    .sectors-bottom {
        padding: 20px 40px 0;
    }
    
    .sector-slide-container {
        grid-template-columns: 0.6fr 1.3fr 0.8fr;
        gap: 20px;
    }
    
    .sector-middle {
        grid-template-columns: 0.3fr 0.7fr;
    }
    
    .sector-middle h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .sectors-swiper-new {
        padding: 0 15px;
        margin: 0 !important;
    }
    
    .sectors-swiper-new .swiper-wrapper {
        height: auto !important;
    }
    
    .sectors-swiper-new .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .sectors-header {
        padding: 0 15px;
        margin-bottom: 40px !important;
    }
    
    .sectors-header .section-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .sectors-header .section-subtitle {
        font-size: 1rem;
    }
    
    .sectors-slide-new {
        height: auto;
        min-height: auto;
        padding-bottom: 20px;
    }
    
    .sector-slide-container {
        grid-template-columns: 1fr;
        gap: 25px;
        height: auto;
        padding: 20px 0;
    }
    
    .sector-left,
    .sector-right {
        height: 450px;
        min-height: 450px;
        border-radius: 16px;
    }
    
    .sector-left-inner {
        min-height: 450px;
        border-radius: 16px;
    }
    
    .sector-right-inner {
        padding-top: 40px;
        padding-bottom: 30px;
    }
    
    .sector-right h4 {
        font-size: 1.6rem;
        margin-bottom: 18px;
        font-weight: 700;
    }
    
    .sector-right p {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .sector-middle {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 800px;
        border-radius: 16px;
        overflow: hidden;
    }
    
    .sector-middle-text {
        padding: 45px 30px;
        overflow-y: auto;
        max-height: 350px;
    }
    
    .sector-middle-image {
        height: 450px;
        min-height: 450px;
    }
    
    .sector-middle h3 {
        font-size: 1.6rem;
        margin-bottom: 18px;
        line-height: 1.3;
        font-weight: 700;
    }
    
    .sector-middle p {
        font-size: 1rem;
        line-height: 1.8;
        margin: 0;
    }
    
    .sectors-bottom {
        padding: 0;
        margin-top: 0;
    }
    
    .sectors-arrow-prev,
    .sectors-arrow-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .sectors-nav-arrows {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .sectors-swiper-new {
        padding: 0 12px;
        margin: 0 !important;
    }
    
    .sectors-swiper-new .swiper-wrapper {
        height: auto !important;
    }
    
    .sectors-swiper-new .swiper-slide {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .sectors-header {
        padding: 0 12px;
        margin-bottom: 30px !important;
    }
    
    .sectors-header .section-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .sectors-header .section-subtitle {
        font-size: 0.95rem;
    }
    
    .sectors-slide-new {
        height: auto;
        padding-bottom: 15px;
    }
    
    .sector-slide-container {
        gap: 20px;
    }
    
    .sector-left,
    .sector-right {
        height: 400px;
        min-height: 400px;
        border-radius: 12px;
    }
    
    .sector-left-inner {
        min-height: 400px;
        border-radius: 12px;
    }
    
    .sector-right-inner {
        padding-top: 35px;
        padding-bottom: 25px;
    }
    
    .sector-right h4 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        font-weight: 700;
    }
    
    .sector-right p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .sector-middle {
        height: auto;
        min-height: 750px;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .sector-middle-text {
        padding: 40px 25px;
        overflow-y: auto;
        max-height: 300px;
    }
    
    .sector-middle-image {
        height: 400px;
        min-height: 400px;
    }
    
    .sector-middle h3 {
        font-size: 1.35rem;
        margin-bottom: 15px;
        line-height: 1.3;
        font-weight: 700;
    }
    
    .sector-middle p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin: 0;
    }
    
    .sector-middle h3::after {
        width: 40px;
        height: 2px;
        margin-top: 12px;
    }
    
    .sectors-bottom {
        padding: 0;
        margin-top: 0;
    }
    
    .sectors-arrow-prev,
    .sectors-arrow-next {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }
    
    .sectors-nav-arrows {
        gap: 10px;
    }
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    margin-top: -16px;
    transition: all 0.3s ease;
    color: white;
    position: relative;
    z-index: 10;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #3b82f6;
    transform: scale(1.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    transform: scale(1.1);
}

.swiper-button-prev {
    left: 1.5rem;
}

.swiper-button-next {
    right: 1.5rem;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: -2rem !important;
    position: relative;
    z-index: 10;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    position: relative;
}

.swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.swiper-pagination-bullet:hover::before {
    width: 20px;
    height: 20px;
}

.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive for Sectors */
@media (max-width: 768px) {
    .sectors {
        padding: 0;
    }

    .solutions {
        padding: 0;
    }

    .sector-card {
        flex-direction: column;
        height: auto;
        border-radius: 16px;
        margin: 0 1rem;
    }
    
    .sector-content {
        flex: 1;
        padding: 1.5rem;
        text-align: center;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .sector-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
        background: linear-gradient(135deg, #1e293b, #3b82f6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .sector-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        color: #475569;
    }
    
    .sector-btn {
        align-self: center;
        margin: 0 auto;
    }
    
    .sector-image {
        max-width: 100%;
        height: 200px;
        order: -1;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 28px;
        height: 28px;
        margin-top: -14px;
    }
    
    .swiper-button-prev {
        left: 0.5rem;
    }
    
    .swiper-button-next {
        right: 0.5rem;
    }
    
    .swiper-pagination {
        bottom: -1rem !important;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .swiper-pagination-bullet-active {
        width: 24px;
    }
}

/* Solutions Overview */
.solutions-overview {
    padding: 4rem 0;
}

.solution-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-category-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.solution-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-category-card:hover::before {
    transform: scaleX(1);
}

.solution-category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.solution-category-card:hover .category-icon {
    border-color: #3b82f6;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.solution-category-card > p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

.solution-category-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.solution-category-card ul li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.solution-category-card ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.category-link {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #3b82f6;
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: #3b82f6;
    color: white;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}


.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.solution-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 650px;
    min-width: 700px;
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.solution-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.solution-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.solution-card:hover .solution-bg img {
    transform: scale(1.08);
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.solution-card:hover .solution-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.35) 100%);
}

.solution-text {
    position: relative;
    z-index: 3;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: 650px;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.solution-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 20px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover .solution-icon::after {
    opacity: 1;
}

.solution-card:nth-child(1) .solution-icon {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.solution-card:nth-child(2) .solution-icon {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.solution-card:nth-child(3) .solution-icon {
    background: linear-gradient(135deg, #fed7aa, #fdba74);
}

.solution-card:nth-child(4) .solution-icon {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
}

.solution-card:nth-child(5) .solution-icon {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
}

.solution-card:nth-child(6) .solution-icon {
    background: linear-gradient(135deg, #cffafe, #a5f3fc);
}

.solution-card:hover .solution-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.solution-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    line-height: 1.25;
}

.solution-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
    opacity: 0.8;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 90%;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.solution-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Premium About Us Page Styles - Tesla/Apple/McKinsey Level Design */

/* Company Intro */
.company-intro {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.lead-text {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-element {
    position: relative;
    width: 400px;
    height: 400px;
}

.gradient-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.tech-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: url('data:image/svg+xml,<svg width="50" height="50" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="techgrid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(37,99,235,0.2)" stroke-width="1"/><circle cx="25" cy="25" r="2" fill="rgba(37,99,235,0.3)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23techgrid)"/></svg>');
    border-radius: 20px;
    animation: rotate 20s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Why Nexiom - Enhanced Design */
.why-nexiom {
    padding: 120px 0;
    background: #ffffff;
    color: #1f2937;
    position: relative;
}


.why-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.why-text h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
}

.why-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #1e3a8a);
    border-radius: 2px;
}

.why-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.why-text p:first-of-type {
    font-weight: 500;
    color: #374151;
    font-size: 1.375rem;
}


.final-cta {
    padding: 120px 0;
    background: #ffffff;
    color: #1f2937;
    text-align: center;
    position: relative;
    overflow: hidden;
}



.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    position: relative;
}

.cta-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
    border-radius: 50px;
    background: white;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}


/* Button Styles */
.btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-intro {
        padding: 60px 0;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .visual-element {
        width: 300px;
        height: 300px;
    }
    
    .gradient-orb {
        width: 200px;
        height: 200px;
    }
    
    .tech-grid {
        width: 250px;
        height: 250px;
    }
}
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

/* Sectors List - Grid Layout */
.sectors-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sector-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.sector-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

/* Fade-up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.sector-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.sector-item:hover .sector-image img {
    transform: scale(1.05);
}

.sector-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sector-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.sector-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 1.5rem;
    flex: 1;
}

.sector-arrow {
    display: flex;
    justify-content: flex-end;
}

.sector-arrow a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.sector-arrow a:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.capability-item {
    text-align: center;
    transition: transform 0.3s ease;
}

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

/* Capabilities Section - Same style as Solutions */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.capability-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 450px;
    cursor: pointer;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.capability-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.capability-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-card:hover .capability-bg img {
    transform: scale(1.08);
}

.capability-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.capability-card:hover .capability-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.35) 100%);
}

.capability-text {
    position: relative;
    z-index: 3;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: 450px;
}

.capability-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-align: center;
    position: relative;
    line-height: 1.25;
}

.capability-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
    opacity: 0.8;
}

.capability-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    max-width: 90%;
}

.capability-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.capability-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.capability-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.capability-item:hover .capability-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.capability-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.capability-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.capability-item p {
    color: #6b7280;
}

/* CTA Section */
.cta {
    background: #ffffff;
    color: #1f2937;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #6b7280;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
    position: relative;
}

.contact::before {
    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 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(11, 66, 145, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(11, 66, 145, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0b4291, #2563eb);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #0b4291;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #0b4291, #2563eb);
    border-radius: 2px;
}

.contact-item p {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    margin: 0;
    padding-left: 1rem;
    border-left: 2px solid rgba(11, 66, 145, 0.1);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(11, 66, 145, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #0b4291);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: #1e293b;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0b4291;
    box-shadow: 0 0 0 4px rgba(11, 66, 145, 0.1);
    background: white;
    transform: translateY(-1px);
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #0b4291, #2563eb);
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(11, 66, 145, 0.3);
    width: 100%;
    margin-top: 1rem;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 66, 145, 0.4);
    background: linear-gradient(135deg, #0a3875, #1e40af);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 80px 0 30px;
    margin-top: auto;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.quick-link-group h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.footer-section h3::after,
.quick-link-group h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after,
.quick-link-group:hover h4::after {
    width: 100%;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.company-tagline {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.footer-logo img {
    height: 55px;
    margin-bottom: 1.25rem;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
}

.footer-logo img:hover {
    filter: brightness(1.2);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-links a:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-links a:nth-child(1):hover {
    background: linear-gradient(135deg, #1877f2, #0d65d9);
    border-color: #1877f2;
}

.social-links a:nth-child(2):hover {
    background: linear-gradient(135deg, #0a66c2, #004182);
    border-color: #0a66c2;
}

.social-links a:nth-child(3):hover {
    background: linear-gradient(135deg, #429be4, #6ba1f1);
    border-color: #64b6f8;
}

.social-links a:nth-child(4):hover {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-color: #ff0000;
}

.social-links a i {
    font-size: 1.1rem;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 0.2rem 0;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.contact-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info h4::before {
    content: '';
    width: 4px;
    height: 16px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-info strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.contact-info a {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-info a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.footer-copyright {
    margin: 0;
    flex: 1;
    text-align: left;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.footer-credit {
    margin: 0;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-credit a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.footer-back-to-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-back-to-top:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.footer-back-to-top:active {
    transform: translateY(0);
}

.footer-back-to-top svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.footer-back-to-top:hover svg {
    transform: translateY(-2px);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-bottom a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sectors Overview */
.sectors-overview {
    padding: 4rem 0;
}

.sectors-overview .sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.sectors-overview .sectors-grid .sector-card {
    height: 400px;
}

.sectors-overview .sector-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 400px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: transparent;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}


.sectors-overview .sector-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.sectors-overview .sector-content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    z-index: 2;
    text-align: left;
    color: white;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2),
        transparent
    );
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: none;
}

.sectors-overview .sector-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.sectors-overview .sector-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sectors-overview .sector-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: transparent;
}

.sectors-overview .sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

.sectors-overview .sector-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.sectors-overview .sector-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.sectors-overview .sector-btn svg {
    transition: transform 0.3s ease;
}

.sectors-overview .sector-btn:hover svg {
    transform: translateX(2px);
}

.sectors-overview .sector-card:hover .sector-background img {
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

@media (max-width: 768px) {
    .sectors-overview .sector-content {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }
    
    .sectors-overview .sector-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .sectors-overview .sector-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .sectors-overview .sector-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .sectors-overview .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}




/* Sector Detail Sections */
.sector-detail-section,
.sector-detail,
.sectors-detail {
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.sector-detail-section:last-child,
.sector-detail:last-child,
.sectors-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Sector Detail Content Layout */
.sector-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.sector-detail-text {
    max-width: 100%;
}

.sector-detail-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.sector-detail-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
}

.sector-detail-text h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.sector-detail-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.sector-detail-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.sector-detail-text ul li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.6;
}

.sector-detail-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.sector-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.sector-header .sector-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sector-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.sector-header p {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
}

.sector-content {
    max-width: 100%;
}

.sector-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.sector-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
}

.sector-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.sector-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.sector-content ul li {
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.6;
}

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

.capability-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.capability-item h4 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.capability-item p {
    color: #6b7280;
    line-height: 1.6;
}

.capability-item ul {
    list-style: none;
    padding-left: 0;
}

.capability-item ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.capability-item ul li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Page Hero */
.page-hero {
    background: #ffffff;
    color: #1f2937;
    padding: 160px 0 120px 0;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.capabilities-hero {
    padding: 180px 0 140px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    background-size: 100% 100%;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.02) 0%, 
        rgba(16, 185, 129, 0.02) 50%, 
        rgba(139, 92, 246, 0.02) 100%);
}

.capabilities-hero .page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0;
    text-align: left;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.capabilities-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1f2937 0%, #3b82f6 50%, #1f2937 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

/* Tablet Responsive Hero Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .capabilities-hero {
        padding: 120px 0 80px 0;
        min-height: 70vh;
    }
    
    .capabilities-hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Mobile Responsive Hero Styles */
@media (max-width: 768px) {
    .capabilities-hero {
        padding: 100px 0 60px 0;
        min-height: 60vh;
    }
    
    .capabilities-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

.hero-subtitle {
    font-size: 1.375rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    color: #ffffff;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(229, 231, 235, 0.5);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Modern Hero Section */
.hero-modern {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-modern .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-modern .page-hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    max-width: 900px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.hero-modern .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero-modern h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-modern .hero-subtitle {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem) !important;
    color: #ffffff !important;
    margin-bottom: 2.5rem !important;
    line-height: 1.4 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7) !important;
    font-weight: 600 !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
    display: block !important;
}

.hero-modern .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-modern .btn-primary {
    background: white;
    color: #1f2937;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-modern .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.hero-modern .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-modern .btn-outline:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-outline:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: 0;
    margin-right: 0;
}

    .container {
        padding: 0 2rem;
    }

    .nav-container {
        height: 70px;
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-list {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .dropdown-menu {
        min-width: 180px;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .about-content {
        gap: 2.5rem;
    }

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

    .sectors {
        padding: 0 2rem;
    }

    .solutions {
        padding: 0;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .capabilities {
        padding: 80px 2rem;
    }

    .sectors-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .solution-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Tablet-specific hover effects */
    .sector-card:hover {
        transform: translateY(-8px);
    }

    .solution-card:hover {
        transform: translateY(-8px);
    }

    .stat-card:hover {
        transform: translateY(-6px);
    }

    /* Better tablet navigation */
    .dropdown-menu a {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    /* Tablet form improvements */
    .contact-form {
        padding: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    /* Tablet footer adjustments */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        font-size: 1rem;
        padding: 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        width: 100%;
        display: block;
        text-align: center;
        font-weight: 500;
        position: relative;
    }

    .nav-link:hover {
        background: #f8fafc;
        transform: none;
    }

    .nav-item.dropdown .nav-link {
        background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        border: 1px solid #dee2e6;
        margin-bottom: 0.5rem;
        position: relative;
    }
    
    .nav-item.dropdown .nav-link:after {
        content: '▼';
        position: absolute;
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }

    .nav-item.dropdown.active .nav-link:after {
        transform: translateY(-50%) rotate(180deg);
    }

    .dropdown-menu {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #fff3cd;
        margin: 0.5rem 0 0 0;
        display: none;
        max-height: 300px;
        overflow-y: auto;
        width: 100%;
        border-radius: 8px;
        border: 1px solid #ffc107;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ffc107 #fff3cd;
        pointer-events: auto;
    }
    
    .dropdown-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .dropdown-menu::-webkit-scrollbar-track {
        background: #fff3cd;
        border-radius: 3px;
    }
    
    .dropdown-menu::-webkit-scrollbar-thumb {
        background: #ffc107;
        border-radius: 3px;
    }
    
    .dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: #ffb300;
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-menu a {
        font-size: 0.85rem;
        padding: 0.8rem 1.2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: #333;
        text-align: left;
        line-height: 1.4;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        word-break: break-word;
        hyphens: auto;
        min-height: 44px;
        position: relative;
        z-index: 1001;
        pointer-events: auto;
        cursor: pointer;
    }

    .dropdown-menu a:last-child {
        border-bottom: none;
    }

    .dropdown-menu a:hover {
        padding-left: 1.8rem;
        background: linear-gradient(135deg, #ffc107, #ffb300);
        color: #000;
        font-weight: 500;
        transform: translateX(5px);
    }

    .dropdown-menu a:active {
        background: linear-gradient(135deg, #ffb300, #ff9800);
        transform: translateX(3px) scale(0.98);
    }

    .dropdown-toggle::after {
        display: none;
    }

    .nav-container {
        height: 70px;
    }

    .navbar.scrolled .nav-container {
        height: 60px;
    }

    .navbar.scrolled .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero {
        height: 100vh;
        min-height: 600px;
        padding: 70px 0 0 0;
    }

    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-arrow {
        width: 25px;
        height: 25px;
        border-width: 2px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }

    .about-text {
        text-align: center;
        padding: 1rem 0;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }

    .about-image img {
        min-height: 300px;
        border-radius: 12px;
    }

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

    .stat-card {
        padding: 1.5rem;
        text-align: center;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-description {
        font-size: 0.8rem;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sectors {
        padding: 60px 20px;
    }

    .sectors .section-header {
        margin-bottom: 3rem;
    }

    .sectors-swiper {
        padding: 0 1rem;
        margin: 0 -1rem;
    }

    .sector-card {
        border-radius: 16px;
        margin: 0 0.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .sector-card:hover {
        transform: translateY(-8px);
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .swiper-pagination {
        bottom: -1rem !important;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .solutions {
        padding: 0;
    }

    .solution-card {
        padding: 2rem 1.5rem;
        border-radius: 0;
    }

    .solution-card:hover {
        transform: translateY(-8px);
    }

    .solution-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1.5rem;
    }

    .solution-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .solution-card p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .solution-link {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .capabilities {
        padding: 60px 20px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sectors-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sector-item {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .sector-item:hover {
        transform: translateY(-8px);
    }
    
    .sector-image {
        height: 200px;
        width: 100%;
    }
    
    .sector-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .sector-content {
        padding: 2rem;
        text-align: center;
    }
    
    .sector-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .sector-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.8rem;
        border-radius: 8px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 3rem 1rem 2rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links a {
        padding: 0.5rem 0;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        background: rgba(59, 130, 246, 0.1);
        transform: translateX(5px);
    }

    .social-links {
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-links a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .social-links a:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .social-links a:nth-child(1):hover {
        background: linear-gradient(135deg, #1877f2, #0d65d9);
        border-color: #1877f2;
    }

    .social-links a:nth-child(2):hover {
        background: linear-gradient(135deg, #0a66c2, #004182);
        border-color: #0a66c2;
    }

    .social-links a:nth-child(3):hover {
        background: linear-gradient(135deg, #e4405f, #c13584);
        border-color: #e4405f;
    }

    .social-links a:nth-child(4):hover {
        background: linear-gradient(135deg, #ff0000, #cc0000);
        border-color: #ff0000;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
        border-top: 1px solid #e2e8f0;
        gap: 1rem;
    }

    .footer-copyright {
        text-align: center;
        width: 100%;
        order: 1;
    }

    .footer-bottom-right {
        width: 100%;
        justify-content: center;
        order: 2;
    }

    .footer-credit {
        font-size: 0.85rem;
        color: #6b7280;
    }

    .footer-back-to-top {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        border-radius: 8px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .sector-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .sector-header h2 {
        font-size: 1.5rem;
    }

    .sector-header p {
        font-size: 1rem;
    }

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

    .sector-content h3 {
        font-size: 1.25rem;
    }

    .capability-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .capability-item {
        padding: 1.5rem;
    }

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

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

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

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .solution-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-category-card {
        padding: 2rem;
    }

    .solution-category-card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 240px;
        padding: 12px 20px;
        font-size: 0.9rem;
        margin: 0.5rem 0;
    }

    .hero {
        min-height: 500px;
        padding: 60px 0 0 0;
    }

    .hero-content {
        padding: 0 0.5rem;
    }

    .nav-container {
        height: 60px;
    }

    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .navbar.scrolled .nav-container {
        height: 50px;
    }

    .navbar.scrolled .nav-menu {
        top: 50px;
        height: calc(100vh - 50px);
    }

    .nav-logo img {
        height: 30px;
        width: auto;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
    }

    .container {
        padding: 0 0.75rem;
    }

    section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .about-image img {
        min-height: 250px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 1.5rem 0;
    }

    .stat-card {
        padding: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .stat-description {
        font-size: 0.75rem;
    }

    .sectors {
        padding: 40px 0.75rem;
    }

    .sectors .section-header {
        margin-bottom: 2rem;
    }

    .sectors-swiper {
        padding: 0 0.5rem;
        margin: 0 -0.5rem;
    }

    .sector-card {
        margin: 0 0.25rem;
        border-radius: 12px;
    }

    .sector-content {
        padding: 1.2rem;
        text-align: center;
    }

    .sector-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .sector-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .sector-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .sector-image {
        height: 180px;
    }

    .solutions {
        padding: 0;
    }

    .solutions-grid {
        gap: 0;
    }

    .solution-card {
        padding: 1.5rem 1rem;
        border-radius: 0;
    }

    .solution-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }

    .solution-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .solution-card p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .solution-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .capabilities {
        padding: 40px 0.75rem;
    }

    .sectors-list {
        gap: 1.5rem;
    }

    .sector-item {
        border-radius: 12px;
    }

    .sector-image {
        height: 180px;
    }

    .sector-content {
        padding: 1.5rem;
    }

    .sector-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .sector-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        border-radius: 6px;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .contact-form {
        padding: 1.5rem 1rem;
    }

    .contact-info {
        padding: 1.5rem 1rem;
    }

    .footer-content {
        padding: 2rem 0.75rem 1.5rem;
        gap: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.85rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-arrow {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }

    /* Enhanced dropdown for mobile */
    .dropdown-menu {
        background: #fff8e1;
        border: 1px solid #ffb300;
        max-height: 200px;
        margin: 0.3rem 0 0 0;
    }
    
    .dropdown-menu a {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
        line-height: 1.3;
    }
    
    .dropdown-menu a:hover {
        padding-left: 1.5rem;
        background: linear-gradient(135deg, #ffb300, #ff9800);
    }
    
    .nav-item.dropdown .nav-link:after {
        font-size: 0.6rem;
        right: 0.8rem;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 0.8rem;
    }

    /* Fix text overflow */
    .hero-title span,
    .hero-subtitle span {
        display: block;
    }

    /* Better touch targets */
    .btn,
    .nav-link,
    .dropdown-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Improve readability */
    p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    /* Reduce animations on mobile for better performance */
    .hero-title,
    .hero-subtitle,
    .hero-buttons {
        animation: none;
    }

    .stat-card:hover,
    .solution-card:hover,
    .sector-card:hover,
    .sector-item:hover {
        transform: none;
    }

    /* Hardware acceleration for smooth mobile performance */
    .hero-content,
    .sector-card,
    .solution-card,
    .nav-menu,
    .dropdown-menu {
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000px;
    }

    /* Better touch targets */
    .btn,
    .nav-link,
    .dropdown-menu a,
    .sector-btn,
    .solution-link {
        min-height: 44px;
        touch-action: manipulation;
    }

    /* Prevent text selection on mobile interactions */
    .btn,
    .nav-link,
    .sector-card,
    .solution-card {
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    /* Smooth scrolling for mobile */
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    /* Better mobile image handling */
    img {
        max-width: 100%;
        height: auto;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    /* Mobile-specific shadow optimizations */
    .sector-card,
    .solution-card,
    .stat-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Better mobile form inputs */
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 8px;
    }

    /* Mobile-specific viewport fixes */
    .hero {
        height: 100vh;
        height: -webkit-fill-available;
    }

    /* Better mobile dropdown behavior */
    .dropdown-menu {
        max-height: 50vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Mobile performance optimizations */
    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* Better mobile focus states */
    .btn:focus,
    .nav-link:focus,
    input:focus,
    textarea:focus {
        outline: 2px solid #3b82f6;
        outline-offset: 2px;
    }
}

/* Coming Soon Section Mobile */
@media (max-width: 768px) {
    .coming-soon-content {
        text-align: center;
        padding: 2rem 1rem;
    }

    .coming-soon-content h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .coming-soon-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }

    .feature-item {
        padding: 1.5rem;
        text-align: center;
    }

    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .coming-soon-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .coming-soon-cta .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Blog Grid Mobile */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        margin: 0;
    }

    .blog-image img {
        height: 200px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .blog-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Projects Grid Mobile */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        margin: 0;
    }

    .project-image img {
        height: 200px;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-content h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .project-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .project-details {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .project-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
}

/* Stats Grid Mobile */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        text-align: center;
        padding: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.9rem;
    }
}

/* Why Nexiom Mobile */
@media (max-width: 768px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-text {
        text-align: center;
    }

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

    .why-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Footer Mobile Enhanced */
    .footer-section {
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-section ul li {
        width: 100%;
        text-align: center;
    }

    .footer-section ul li a {
        display: block;
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .company-info {
        text-align: center;
    }

    .company-info p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .map-container iframe {
        width: 100%;
        height: 200px;
    }

    /* Button Mobile */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Form Mobile */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .btn-submit {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Card Components Mobile */
    .card {
        margin-bottom: 1.5rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Section Headers Mobile */
    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .section-header .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-header .section-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }

    /* Image Responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    .hero-image,
    .hero-video {
        object-position: center;
    }

    /* Text Alignment Mobile */
    .text-center-mobile {
        text-align: center;
    }

    /* Spacing Mobile */
    .mb-2-mobile {
        margin-bottom: 1rem;
    }

    .mt-2-mobile {
        margin-top: 1rem;
    }

    /* Hide/Show Mobile */
    .hide-mobile {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }

    /* Navigation Mobile Enhanced */
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-list {
        padding: 1rem 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 1rem;
        display: block;
    }

    /* Dropdown Styles */
.dropdown-toggle::after {
    content: "▼";
    font-size: 0.7em;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after,
.dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Dropdown Menu Styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #fffbeb 0%, #eff6ff 50%, #fef3c7 100%);
    border: 1px solid #fbbf24;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15), 0 6px 10px rgba(251, 191, 36, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 300px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    max-height: 400px !important;   /* jitni height chahiye */
    overflow-y: auto;    /* scroll aa jayega agar items zyada hue */
}

/* Mobile dropdown positioning */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        max-height: 0 !important;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin: 0;
        padding: 0 1rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 50vh !important;
        opacity: 1;
        visibility: visible;
        padding: 0.5rem 1rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Custom scrollbar for dropdown */
    .dropdown-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .dropdown-menu::-webkit-scrollbar-track {
        background: rgba(251, 191, 36, 0.1);
        border-radius: 3px;
    }
    
    .dropdown-menu::-webkit-scrollbar-thumb {
        background: rgba(251, 191, 36, 0.5);
        border-radius: 3px;
    }
    
    .dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(251, 191, 36, 0.7);
    }
    
    .dropdown-menu li {
        background: rgba(251, 191, 36, 0.05);
        margin: 0.25rem 0;
        border-radius: 8px;
    }
    
    .dropdown-menu li a {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    border-bottom: 0.5px solid rgba(59, 130, 246, 0.1);
    transition: all 0.2s ease;
    margin: 0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li:hover {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-left: 3px solid #fbbf24;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 16px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-menu li a:hover {
    color: #1e40af;
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    padding-left: 25px;
}

.dropdown-menu li a::before {
    content: "▸";
    position: absolute;
    left: 8px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
    color: #fbbf24;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Dropdown Toggle Styling */
.dropdown-toggle {
    position: relative;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-toggle,
.dropdown.active .dropdown-toggle {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 8px;
    color: #1e40af;
}

.dropdown:hover .dropdown-toggle::after,
.dropdown.active .dropdown-toggle::after {
    color: #fbbf24;
}

/* Dropdown Mobile */
    .dropdown > .nav-link::after {
        display: inline-block;
        margin-left: 0.5rem;
    }

    .dropdown-menu {
        background: linear-gradient(135deg, #fffbeb 0%, #eff6ff 50%, #fef3c7 100%);
        border: 0.5px solid #fbbf24;
        border-radius: 5px;
        margin: 0.5rem 0;
        box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15), 0 4px 8px rgba(251, 191, 36, 0.1);
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
}

    .dropdown-menu li:hover {
        background: linear-gradient(90deg, rgba(251, 191, 36, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
        border-left: 3px solid #fbbf24;
    }

    .dropdown-menu li a:hover {
        color: #1e40af;
        background: linear-gradient(90deg, rgba(251, 191, 36, 0.25) 0%, rgba(59, 130, 246, 0.25) 100%);
    }

    .dropdown.active .dropdown-toggle {
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
        border-radius: 5px;
        color: #1e40af;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
}

    .dropdown-menu li a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-bottom: 0.5px solid #e2e8f0;
        line-height: 1.4;
    }

    .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    /* Touch Interactions */
    .btn, .nav-link, a {
        -webkit-tap-highlight-color: rgba(59, 130, 246, 0.1);
        touch-action: manipulation;
    }

    .btn:active {
        transform: scale(0.98);
    }

    /* Better Mobile Typography */
    h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Mobile Specific Spacing */
    .section-padding {
        padding: 3rem 0;
    }

    .mobile-spacing-sm {
        margin-bottom: 1rem;
    }

    .mobile-spacing-md {
        margin-bottom: 1.5rem;
    }

    .mobile-spacing-lg {
        margin-bottom: 2rem;
    }

    /* Mobile Navigation Improvements */
    .nav-menu.active {
        overflow-y: auto;
    }

    .nav-menu::-webkit-scrollbar {
        width: 4px;
    }

    .nav-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .nav-menu::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 2px;
    }

    /* Mobile Form Improvements */
    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    /* Mobile Card Improvements */
    .card, .project-card, .blog-card, .sector-card, .solution-card {
        margin-bottom: 1.5rem;
        border-radius: 12px;
        overflow: hidden;
    }

    /* Mobile Image Improvements */
    .hero-image,
    .hero-video,
    .page-hero-image,
    .sector-image,
    .sector-image img,
    .project-image img,
    .blog-image img {
        object-fit: contain;
        object-position: center;
        width: 100%;
        height: 100%;
    }

    /* Fix sector card images on mobile */
    .sector-card .sector-image {
        width: 100%;
        height: 250px !important;
        overflow: hidden;
        position: relative;
    }

    .sector-card .sector-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        min-height: 250px !important;
        min-width: 100% !important;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Fix swiper slide images on mobile */
    .swiper-slide .sector-card .sector-image {
        width: 100%;
        height: 250px !important;
        overflow: hidden;
    }

    .swiper-slide .sector-card .sector-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        min-height: 250px !important;
        min-width: 100% !important;
    }

    /* Mobile Scroll Improvements */
    .scroll-smooth {
        scroll-behavior: smooth;
    }

    /* Mobile Focus States */
    .btn:focus,
    .nav-link:focus,
    input:focus,
    textarea:focus,
    select:focus {
        outline: 2px solid #3b82f6;
        outline-offset: 2px;
    }

    /* Mobile Loading States */
    .skeleton {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
    }

    @keyframes loading {
        0% { background-position: 200% 0; }
        100% { background-position: -200% 0; }
    }

    /* Mobile Performance Optimizations */
    .will-change-transform {
        will-change: transform;
    }

    .hardware-accelerated {
        transform: translateZ(0);
        backface-visibility: hidden;
        perspective: 1000px;
    }
}

/* Advanced UI/UX upgrades */
.sector-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

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

.about-stats .stat-item {
    padding: 1.25rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1px solid #bfdbfe;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 24px rgba(59, 130, 246, 0.18);
}

.about-stats .stat-item h3 {
    margin-bottom: 0.4rem;
    color: #1d4ed8;
    font-size: 1.7rem;
}

.about-stats .stat-item p {
    margin-bottom: 0;
    color: #1e3a8a;
    font-weight: 500;
}

.page-hero {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    right: -140px;
    top: -180px;
    background: rgba(96, 165, 250, 0.16);
    filter: blur(2px);
}

.about-detail,
.sectors-detail,
.contact-detail,
.projects-section,
.insights-section,
.categories-section,
.offices-section,
.newsletter-section,
.solution-section,
.capability-section {
    position: relative;
}

.about-detail-content,
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.about-detail-text,
.contact-form-detail {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.solution-grid,
.feature-grid,
.projects-grid,
.blog-grid,
.categories-grid,
.offices-grid,
.stats-grid,
.contact-cards {
    display: grid;
    gap: 1.5rem;
}

.solution-grid,
.feature-grid,
.projects-grid,
.blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.categories-grid,
.offices-grid,
.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.solution-section .solution-card,
.feature-item,
.project-card,
.blog-card,
.category-card,
.office-card,
.contact-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.solution-section .solution-card:hover,
.feature-item:hover,
.project-card:hover,
.blog-card:hover,
.category-card:hover,
.office-card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    border-color: #93c5fd;
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.1);
}

.capability-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.4rem;
    align-items: start;
}

.capability-philosophy {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.capability-philosophy h4 {
    color: #1e40af;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.capability-philosophy ul {
    list-style: none;
    padding: 0;
}

.capability-philosophy ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
}

.capability-philosophy ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.capability-value {
    background: #f0f9ff;
    border-left: 4px solid #10b981;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.capability-value h4 {
    color: #047857;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.capability-value ul {
    list-style: none;
    padding: 0;
}

.capability-value ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #475569;
}

.capability-value ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.capability-content h5 {
    color: #1f2937;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.capability-content .feature-grid .feature-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-content .feature-grid .feature-item ul li {
    padding: 0.25rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: #6b7280;
    font-size: 0.9rem;
}

.capability-content .feature-grid .feature-item ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
}

.project-image img,
.blog-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-content,
.blog-content,
.category-card,
.office-card {
    padding: 1.35rem;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.project-tag,
.blog-category,
.category-count {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
}

.project-tag,
.blog-category {
    background: #dbeafe;
    color: #1e40af;
}

.category-count {
    background: #eef2ff;
    color: #4338ca;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}

.contact-card {
    padding: 1rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
}

.contact-icon img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
}

.contact-form-detail select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.checkbox-group {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
}

.map-container {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #dbeafe;
}

.map-placeholder {
    position: relative;
}

.map-placeholder img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.5), rgba(15, 23, 42, 0.4));
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    place-items: center;
    color: #fff;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.3);
}

.newsletter-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    background: linear-gradient(120deg, #1e3a8a, #1f2937);
    color: #fff;
    border-radius: 18px;
    padding: 2.2rem;
}

.newsletter-content h2,
.newsletter-content p {
    color: #fff;
}

.newsletter-form .form-row {
    margin-top: 1rem;
    grid-template-columns: 1fr auto;
}

.newsletter-form input {
    width: 100%;
    min-width: 200px;
    border: none;
    border-radius: 8px;
    padding: 0.85rem 1rem;
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-detail-content,
    .contact-grid,
    .capability-detail,
    .newsletter-form .form-row,
    .contact-card {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling & Global Animations */
html {
    scroll-behavior: smooth;
}

body {
    scroll-behavior: smooth;
}

/* Global Page Transitions */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scroll Animations */
* {
    scroll-behavior: smooth;
}

/* Page Load Animation */
.page-wrapper {
    opacity: 0;
    animation: pageLoad 0.8s ease forwards;
}

@keyframes pageLoad {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Animations */
/* section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
} */

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure sector detail content is visible */
.sectors-detail,
.sector-detail-section,
main {
    opacity: 1 !important;
    transform: none !important;
}

/* Enhanced Transitions */
.btn, .nav-link, a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card, .sector-item, .capability-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom Cursor Removed - Default Cursor Restored */

/* Mobile Utility Classes */
.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .desktop-only {
        display: block;
    }
    
    .mobile-only {
        display: none !important;
    }
}

/* Responsive Typography */
.responsive-text {
    font-size: clamp(0.875rem, 2vw, 1.125rem);
}

.responsive-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
}

.responsive-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
}

/* Mobile Grid System */
.mobile-grid-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.mobile-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .mobile-grid-1,
    .mobile-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Mobile Flexbox */
.mobile-flex-column {
    flex-direction: column;
}

.mobile-flex-center {
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .mobile-flex-column {
        flex-direction: column;
    }
    
    .mobile-flex-center {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
}

/* Mobile Spacing */
.mobile-no-margin {
    margin: 0;
}

.mobile-no-padding {
    padding: 0;
}

@media (max-width: 768px) {
    .mobile-no-margin {
        margin: 0;
    }
    
    .mobile-no-padding {
        padding: 0;
    }
}

/* Mobile Text Alignment */
.mobile-text-center {
    text-align: center;
}

.mobile-text-left {
    text-align: left;
}

@media (max-width: 768px) {
    .mobile-text-center {
        text-align: center;
    }
    
    .mobile-text-left {
        text-align: left;
    }
}

/* Mobile Visibility */
.mobile-visible {
    display: none;
}

@media (max-width: 768px) {
    .mobile-visible {
        display: block;
    }
}

.mobile-hidden {
    display: block;
}

@media (max-width: 768px) {
    .mobile-hidden {
        display: none;
    }
}

/* Mobile Button Styles */
.mobile-full-width {
    width: 100%;
}

@media (max-width: 768px) {
    .mobile-full-width {
        width: 100%;
        max-width: 100%;
    }
}

/* Mobile Card Layout */
.mobile-card-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 768px) {
    .mobile-card-stack {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Mobile Image Container */
.mobile-responsive-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Mobile Navigation Helper */
.mobile-nav-padding {
    padding-top: 80px;
}

@media (max-width: 768px) {
    .mobile-nav-padding {
        padding-top: 80px;
    }
}

/* Mobile Device Specific Styles */
.mobile-device {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.mobile-device .btn:active,
.mobile-device .nav-link:active {
    transform: scale(0.98);
}

.touch-active {
    opacity: 0.8;
    transform: scale(0.98);
}

/* Mobile Breakpoint Classes - These classes are added to body by JavaScript for responsive behavior */

/* Mobile Performance */
.reduced-motion * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

/* Mobile Viewport Fix */
:root {
    --vh: 1vh;
}

/* Mobile Navigation Scroll */
.nav-menu.scrolled {
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
}

/* Mobile Form Focus */
.mobile-device input:focus,
.mobile-device textarea:focus,
.mobile-device select:focus {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

/* Mobile Touch Targets */
.mobile-device .btn,
.mobile-device .nav-link {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Scrolling */
.mobile-device {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Mobile Loading States */
.mobile-device .skeleton {
    animation: none;
    background: #f0f0f0;
}

/* Solution Pages Styles */
.service-overview {
    padding: 80px 0;
    background: #ffffff;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.service-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.key-features {
    margin-top: 2rem;
}

.key-features h3 {
    color: #1f2937;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.key-features ul {
    list-style: none;
    padding: 0;
}

.key-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 1.5rem;
}

.key-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.service-features {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.service-features h3 {
    color: #1f2937;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-features p {
    color: #6b7280;
    margin-bottom: 0;
}

.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    color: #1f2937;
    text-align: center;
}

.cta .cta-content h2 {
    color: #1f2937;
}

.cta .cta-content p {
    color: #4b5563;
}

.cta .cta-buttons .btn-primary {
    background: #3b82f6;
    color: white;
}

.cta .cta-buttons .btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.cta .cta-buttons .btn-outline:hover {
    background: #3b82f6;
    color: white;
}

/* CTA Section for capability pages */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    color: #1f2937;
    text-align: center;
}

.cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.cta-section .cta-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #4b5563;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta-buttons .btn-primary {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-section .cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cta-section .cta-buttons .btn-outline {
    background: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.cta-section .cta-buttons .btn-outline:hover {
    background: #3b82f6;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #3b82f6;
    transform: translateY(-2px);
}

/* Responsive Design for Solution Pages */
@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Capabilities Overview Cards */
.capabilities-overview {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.capability-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.capability-card-image {
    height: 200px;
    overflow: hidden;
}

.capability-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.capability-card:hover .capability-card-image img {
    transform: scale(1.1);
}

.capability-card-content {
    padding: 1.5rem;
}

.capability-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.capability-card-content p {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.capability-card-content .learn-more {
    display: inline-flex;
    align-items: center;
    color: #3b82f6;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.capability-card:hover .learn-more {
    color: #2563eb;
    transform: translateX(5px);
}

/* Capability Large Image Layout - Modern Compact Design */
.capability-detail {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
}

.capability-image-large {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 280px;
    max-height: 280px;
}

.capability-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.capability-image-large:hover img {
    transform: scale(1.03);
}

.capability-section.alt-bg {
    background: #f8fafc;
}

.capability-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.capability-tagline {
    font-size: 1.25rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.capability-description {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.capability-content .btn-primary {
    margin-top: 0.5rem;
}

/* Assurance Framework Section */
.assurance-framework {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.assurance-framework .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.assurance-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.assurance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.assurance-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
}

.assurance-card:hover .assurance-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.assurance-icon svg {
    width: 32px;
    height: 32px;
}

.assurance-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.assurance-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 968px) {
    .capability-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .capability-image-large {
        height: 220px;
        max-height: 220px;
        order: -1;
    }
    
    .capability-content h2 {
        font-size: 1.5rem;
    }
    
    .service-detail-section {
        padding: 0.875rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

/* Cleanroom Engineering Page Styles */
.cleanroom-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px 0;
}

/* HVAC & Critical Utilities Page Styles */
.hvac-hero {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px 0;
}

/* Containment Engineering Page Styles */
.containment-hero {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px 0;
}

.containment-hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.containment-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 900px;
    margin: 0;
}

/* Modular Construction Page Styles */
.modular-hero {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 120px 0 80px 0;
}

.modular-hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.modular-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 900px;
    margin: 0;
}

/* Sustainability Engineering Page Styles */
.sustainability-hero {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 120px 0 80px 0;
}

.sustainability-hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.sustainability-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 900px;
    margin: 0;
}

/* Solutions Page Styles */
.solutions-hero {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 120px 0 80px 0;
}

.solutions-hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.solutions-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 900px;
    margin: 0;
}

/* Strategy & Advisory Page Styles */
.strategy-hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 120px 0 80px 0;
}

.strategy-hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.strategy-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 900px;
    margin: 0;
}

/* Design & Engineering Page Styles */
.design-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 120px 0 80px 0;
}

.design-hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.design-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 900px;
    margin: 0;
}

/* Validation & Regulatory Page Styles */
.validation-hero {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 120px 0 80px 0;
}

.validation-hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.validation-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 900px;
    margin: 0;
}

/* EPCMV Turnkey Page Styles */
.epcmv-hero {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 120px 0 80px 0;
}

.epcmv-hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.epcmv-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 900px;
    margin: 0;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 120px 0 80px 0;
}

.contact-hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.contact-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 900px;
    margin: 0;
    position: relative;
    z-index: 5;
}

.contact-hero .hero-title {
    color: #08448f !important;
    background: linear-gradient(135deg, #08448f 0%, #f59e0b 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 800 !important;
    z-index: 5;
    font-size: clamp(2.4rem, 5vw, 3.5rem) !important;
    text-shadow: none !important;
}

/* Insights Page Styles */
.insights-hero {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 120px 0 80px 0;
}

.insights-hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.insights-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    max-width: 900px;
    margin: 0;
    position: relative;
    z-index: 5;
}

.insights-hero .hero-title {
    color: #08448f !important;
    background: linear-gradient(135deg, #08448f 0%, #f59e0b 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 800 !important;
    z-index: 5;
    font-size: clamp(2.4rem, 5vw, 3.5rem) !important;
    text-shadow: none !important;
}

/* Projects Page Styles */
.projects-hero {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 120px 0 80px 0;
}

.projects-hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.projects-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    max-width: 900px;
    margin: 0;
}

/* Ensure projects hero title is visible over the background image */
.projects-hero .hero-title {
    color: #08448f !important;
    background: linear-gradient(135deg, #08448f 0%, #f59e0b 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 800 !important;
    z-index: 5;
    font-size: clamp(2.4rem, 5vw, 3.5rem) !important;
    text-shadow: none !important;
}

.projects-hero .page-hero-content {
    position: relative;
    z-index: 5;
}

/* Sectors and Solutions Hero Title */
.solutions-hero .hero-title,
.hero .hero-title {
    color: #08448f !important;
    background: linear-gradient(135deg, #08448f 0%, #f59e0b 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 800 !important;
    z-index: 5;
    text-shadow: none !important;
}

/* Contact Stats */
.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn {
    flex: 1;
}

/* Office Cards Enhanced */
.office-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.office-region {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.office-region h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
}

.office-type {
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.office-contact {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.office-contact a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.office-contact a:hover {
    color: #2563eb;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: #f8fafc;
}

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

.process-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.process-number {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.process-content h4 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Map Section Enhanced */
.map-section {
    padding: 5rem 0;
}

.map-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    text-align: center;
    color: white;
    padding: 2rem;
}

.map-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-info p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Contact Form Enhanced */
.contact-form-detail .form-group input,
.contact-form-detail .form-group select,
.contact-form-detail .form-group textarea {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-detail .form-group input:focus,
.contact-form-detail .form-group select:focus,
.contact-form-detail .form-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
}

.contact-form-detail .form-group label {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

/* Contact Cards Enhanced */
.contact-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #3b82f6;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748b;
    line-height: 1.6;
}

.contact-details a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #2563eb;
}

/* Service Layout - Overlay Grid Design */
.service-layout {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 600px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-bg-image img {
    transition: transform 0.8s ease;
}

.service-layout:hover .service-bg-image img {
    transform: scale(1.05);
}

.service-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: background 0.5s ease;
}

.service-layout:hover .service-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.service-content-wrapper {
    position: relative;
    z-index: 3;
    padding: 2.5rem;
    color: white;
}

.service-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-number {
    display: inline-block;
    background: white;
    color: #1e40af;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: scale(0.8);
    animation: popIn 0.5s ease 0.2s forwards;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.service-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease 0.3s forwards;
}

.service-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease 0.4s forwards;
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease 0.5s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-box {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeIn 0.6s ease forwards;
}

.service-box:nth-child(1) { animation-delay: 0.1s; }
.service-box:nth-child(2) { animation-delay: 0.2s; }
.service-box:nth-child(3) { animation-delay: 0.3s; }
.service-box:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #3b82f6;
}

.service-box h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3b82f6;
    transition: color 0.3s ease;
}

.service-box:hover h4 {
    color: #3b82f6;
}

.service-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-box ul li {
    font-size: 0.9rem;
    color: #475569;
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    opacity: 0;
    transform: translateX(-10px);
    animation: listItemIn 0.4s ease forwards;
}

.service-box:nth-child(1) ul li:nth-child(1) { animation-delay: 0.5s; }
.service-box:nth-child(1) ul li:nth-child(2) { animation-delay: 0.55s; }
.service-box:nth-child(1) ul li:nth-child(3) { animation-delay: 0.6s; }
.service-box:nth-child(1) ul li:nth-child(4) { animation-delay: 0.65s; }
.service-box:nth-child(1) ul li:nth-child(5) { animation-delay: 0.7s; }

.service-box:nth-child(2) ul li:nth-child(1) { animation-delay: 0.6s; }
.service-box:nth-child(2) ul li:nth-child(2) { animation-delay: 0.65s; }
.service-box:nth-child(2) ul li:nth-child(3) { animation-delay: 0.7s; }
.service-box:nth-child(2) ul li:nth-child(4) { animation-delay: 0.75s; }
.service-box:nth-child(2) ul li:nth-child(5) { animation-delay: 0.8s; }

.service-box:nth-child(3) ul li:nth-child(1) { animation-delay: 0.7s; }
.service-box:nth-child(3) ul li:nth-child(2) { animation-delay: 0.75s; }
.service-box:nth-child(3) ul li:nth-child(3) { animation-delay: 0.8s; }
.service-box:nth-child(3) ul li:nth-child(4) { animation-delay: 0.85s; }

.service-box:nth-child(4) ul li:nth-child(1) { animation-delay: 0.8s; }
.service-box:nth-child(4) ul li:nth-child(2) { animation-delay: 0.85s; }
.service-box:nth-child(4) ul li:nth-child(3) { animation-delay: 0.9s; }
.service-box:nth-child(4) ul li:nth-child(4) { animation-delay: 0.95s; }

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

.service-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 5px;
    height: 5px;
    background: #3b82f6;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.service-box:hover ul li::before {
    transform: scale(1.5);
}

.service-box.value {
    border-color: #3b82f6;
    background: white;
}

.service-box.value h4 {
    border-bottom-color: #3b82f6;
    color: #1e40af;
}

.service-box.value ul li::before {
    background: #3b82f6;
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-layout {
        min-height: auto;
    }
    
    .service-content-wrapper {
        padding: 1.5rem;
    }
    
    .service-header h2 {
        font-size: 1.5rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        padding: 0;
    }
    
    .service-box {
        padding: 1.25rem;
    }
}

.hvac-hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.hvac-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 900px;
    margin: 0;
}

.hvac-hero .hero-subtitle {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.cleanroom-hero .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.cleanroom-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 900px;
    margin: 0;
}

.cleanroom-hero .hero-subtitle {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.philosophy-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.philosophy-left {
    max-width: 500px;
}

.philosophy-header {
    margin-bottom: 2rem;
}

.philosophy-header .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.philosophy-header .section-subtitle {
    font-size: 1.25rem;
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 0;
}

.philosophy-intro {
    margin-bottom: 0;
}

.philosophy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.philosophy-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.philosophy-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.philosophy-item {
    display: flex;
    align-items: start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.philosophy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #2563eb);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.philosophy-item:hover::before {
    transform: scaleY(1);
}

.philosophy-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease;
}

.philosophy-item:hover .philosophy-icon {
    transform: scale(1.05);
}

.philosophy-icon svg {
    width: 24px;
    height: 24px;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.philosophy-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.philosophy-item:hover .philosophy-content h4 {
    color: #3b82f6;
}

@media (max-width: 968px) {
    .philosophy-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .philosophy-left {
        max-width: 100%;
        text-align: center;
    }
    
    .philosophy-header .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .philosophy-section {
        padding: 3rem 0;
    }
    
    .philosophy-header .section-title {
        font-size: 1.75rem;
    }
    
    .philosophy-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .philosophy-intro p {
        font-size: 1rem;
    }
    
    .philosophy-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .philosophy-icon {
        width: 48px;
        height: 48px;
    }
    
    .philosophy-icon svg {
        width: 20px;
        height: 20px;
    }
}

.capabilities-section {
    padding: 5rem 0;
    background: white;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.capability-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.capability-image {
    height: 200px;
    overflow: hidden;
}

.capability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.capability-card:hover .capability-image img {
    transform: scale(1.1);
}

.capability-content {
    padding: 2rem;
}

.capability-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.capability-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-content li {
    padding: 0.75rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.capability-content li:last-child {
    border-bottom: none;
}

.capability-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.value-section {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
    background: white;
}

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.6s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.value-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.value-card:hover .value-icon::after {
    opacity: 1;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.value-icon svg {
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 1;
}

.value-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.25rem;
}

.value-card p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 968px) {
    .philosophy-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-features {
        grid-template-columns: 1fr;
    }
    
    .philosophy-item {
        padding: 0.875rem 1rem;
    }
}

@media (max-width: 640px) {
    .philosophy-features {
        grid-template-columns: 1fr;
    }
    
    .philosophy-icon {
        width: 80px;
        height: 80px;
    }

    .philosophy-icon svg {
        width: 40px;
        height: 40px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   GLOBAL MOBILE RESPONSIVE OVERRIDES
   ============================================ */
@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .container,
    .nav-container,
    .sectors-wrapper {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar {
        padding: 10px 0;
    }

    .nav-logo img {
        max-width: 126px;
        height: auto;
    }

    .nav-cta {
        display: none;
    }

    .nav-menu {
        width: 100%;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        box-shadow: none;
        border: 0;
        border-radius: 0;
        padding: 6px 0;
    }

    .dropdown-menu a {
        white-space: normal;
        line-height: 1.4;
    }

    .hero {
        height: auto;
        min-height: 60vh;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .page-hero {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .hero-content,
    .page-hero-content,
    .hero-modern .page-hero-content {
        max-width: 100%;
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
        text-align: center;
    }

    .hero-content {
        padding-bottom: 40px;
    }

    .hero,
    .page-hero,
    .hero-modern {
        height: auto !important;
        min-height: 55vh !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content,
    .page-hero-content,
    .hero-modern .page-hero-content {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        text-align: center;
    }

    .hero-modern .page-hero-content {
        align-items: center;
        justify-content: center;
    }

    .hero-background,
    .page-hero-image,
    .hero-image,
    .hero-video {
        min-height: 55vh !important;
        height: auto !important;
        max-height: none !important;
    }

    .hero-title,
    .page-hero-content h1 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        line-height: 1.2;
        word-break: break-word;
        margin-bottom: 1rem;
    }

    .hero-subtitle,
    .page-hero-content p {
        font-size: clamp(0.95rem, 4vw, 1.1rem);
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero-btns,
    .hero-buttons,
    .hero-cta,
    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }

    .hero-btns .btn,
    .hero-buttons .btn,
    .hero-cta .btn,
    .cta-buttons .btn,
    .btn-large {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
        padding: 12px 20px;
    }

    .about-content,
    .contact-content,
    .contact-grid,
    .form-row,
    .projects-grid,
    .insights-grid,
    .feature-grid,
    .solutions-grid,
    .capabilities-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-image img,
    .project-image img,
    .insight-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .solution-bg img,
    .capability-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .solution-card,
    .capability-card,
    .project-card,
    .insight-card,
    .feature-item,
    .contact-item {
        padding: 16px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.25;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container,
    .sectors-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero {
        min-height: 55vh;
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .page-hero {
        padding-top: 70px;
        padding-bottom: 50px;
    }

    .hero-content,
    .page-hero-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title,
    .page-hero-content h1 {
        font-size: clamp(1.4rem, 8vw, 1.8rem);
    }

    .hero-subtitle,
    .page-hero-content p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(1.3rem, 7vw, 1.65rem);
    }
}

/* Mobile hardening pass for all pages */
@media (max-width: 768px) {
    :root {
        --mobile-gap: 14px;
    }

    img,
    video,
    iframe,
    canvas {
        max-width: 100%;
    }

    .hero-title,
    .hero-title span,
    .page-hero-content h1 {
        color: #ffffff;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    }

    .hero-subtitle,
    .hero-subtitle span {
        color: rgba(255, 255, 255, 0.9) !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
    }

    .hero-background,
    .hero-video,
    .hero-image,
    .page-hero-image {
        min-height: 380px !important;
        height: 58vh !important;
        max-height: 520px !important;
        object-fit: cover;
    }

    .scroll-indicator {
        display: none !important;
    }

    section {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .section-header {
        margin-bottom: 1.25rem;
    }

    .section-title,
    h2 {
        line-height: 1.25;
        word-break: break-word;
    }

    h3,
    h4,
    h5,
    p,
    li {
        word-break: break-word;
    }

    .about-content,
    .contact-content,
    .contact-grid,
    .projects-grid,
    .insights-grid,
    .feature-grid,
    .solutions-grid,
    .capabilities-grid,
    .stats-grid,
    .values-grid,
    .services-grid,
    .industry-grid,
    .cards-grid,
    .process-grid,
    .two-column-layout,
    .split-layout,
    .content-grid,
    .project-details,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: var(--mobile-gap) !important;
    }

    .form-row,
    .hero-stats,
    .stats-row,
    .timeline-row,
    .process-flow,
    .compliance-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: var(--mobile-gap) !important;
    }

    .process-step {
        width: 100%;
    }

    .footer-links,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .solution-card,
    .capability-card,
    .project-card,
    .insight-card,
    .feature-item,
    .contact-item,
    .card {
        border-radius: 14px;
    }

    .project-content,
    .insight-content,
    .contact-form,
    .contact-info {
        padding: 14px;
    }

    /* Keep mobile dropdown arrow aligned with label */
    .nav-item.dropdown > .dropdown-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 100%;
    }

    .nav-item.dropdown > .dropdown-toggle::after,
    .nav-item.dropdown > .nav-link::after {
        position: static !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        margin-left: 6px;
        font-size: 0.72rem;
        line-height: 1;
        display: inline-block;
        vertical-align: middle;
    }

    .nav-item.dropdown.active > .dropdown-toggle::after,
    .nav-item.dropdown.active > .nav-link::after {
        transform: rotate(180deg) !important;
    }
}

@media (max-width: 480px) {
    .hero-background,
    .hero-video,
    .hero-image,
    .page-hero-image {
        min-height: 320px !important;
        height: 52vh !important;
        max-height: 440px !important;
    }

    .btn,
    .btn-large,
    .nav-link {
        min-height: 44px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    section {
        padding-top: 42px;
        padding-bottom: 42px;
    }
}

/* ============================================
   MOBILE RESPONSIVE FIXES - CARDS & GRIDS
   ============================================ */
@media (max-width: 768px) {
    /* Fix solution cards overflow */
    .solution-card {
        min-width: 100% !important;
        min-height: 400px !important;
        width: 100% !important;
    }
    
    .solution-card .solution-text {
        min-height: 400px !important;
        padding: 1.5rem 1rem !important;
    }
    
    .solution-card h3 {
        font-size: 1.3rem !important;
    }
    
    .solution-card p {
        font-size: 0.9rem !important;
    }
    
    /* Fix capability cards */
    .capability-card {
        min-width: 100% !important;
        min-height: 350px !important;
        width: 100% !important;
    }
    
    .capability-card .capability-text {
        min-height: 350px !important;
        padding: 1.5rem 1rem !important;
    }
    
    /* Fix about section stats */
    .about-detail-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .stat-card {
        padding: 1.5rem 1rem !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
    }
    
    .stat-label {
        font-size: 0.9rem !important;
    }
    
    /* Fix about content */
    .about-image img {
        min-height: 300px !important;
    }
    
    /* Fix sector cards in swiper */
    .sector-card {
        height: auto !important;
        min-height: 400px !important;
    }
    
    .sector-content {
        flex: 1 !important;
        padding: 1.5rem !important;
    }
    
    .sector-content h3 {
        font-size: 1.2rem !important;
    }
    
    .sector-content p {
        font-size: 0.9rem !important;
    }
    
    /* Fix sectors header on mobile */
    .sectors-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem !important;
    }
    
    .sectors-header .section-title {
        font-size: 1.8rem !important;
    }
    
    /* Fix CTA section */
    .cta-content h2 {
        font-size: 1.6rem !important;
    }
    
    .cta-content p {
        font-size: 1rem !important;
    }
    
    /* Fix contact form */
    .contact-form {
        padding: 1.5rem !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    .form-group {
        margin-bottom: 1rem !important;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px !important;
        padding: 10px 14px !important;
    }
    
    /* Fix footer - mobile clean simple layout */
    .footer {
        padding: 25px 0 15px !important;
    }
    
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    /* Company section full width at top */
    .footer-section.company-section {
        width: 100% !important;
        text-align: center !important;
    }
    
    .footer-logo img {
        height: 45px !important;
        margin-bottom: 0.5rem !important;
    }
    
    .company-tagline {
        font-size: 0.8rem !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.4 !important;
    }
    
    .contact-info {
        display: none !important; /* Hide contact info on mobile */
    }
    
    .social-links {
        gap: 0.8rem !important;
        justify-content: center !important;
        margin-top: 0.75rem !important;
    }
    
    .social-links a {
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .social-links a:hover {
        transform: translateY(-2px) scale(1.05) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    }
    
    .social-links a:nth-child(1):hover {
        background: linear-gradient(135deg, #1877f2, #0d65d9) !important;
        border-color: #1877f2 !important;
    }
    
    .social-links a:nth-child(2):hover {
        background: linear-gradient(135deg, #0a66c2, #004182) !important;
        border-color: #0a66c2 !important;
    }
    
    .social-links a:nth-child(3):hover {
        background: linear-gradient(135deg, #e4405f, #c13584) !important;
        border-color: #e4405f !important;
    }
    
    .social-links a:nth-child(4):hover {
        background: linear-gradient(135deg, #ff0000, #cc0000) !important;
        border-color: #ff0000 !important;
    }
    
    .social-links a i {
        font-size: 0.95rem !important;
    }
    
    /* Quick links - clean 2 column layout */
    .footer-section.explore-section {
        width: 100% !important;
    }
    
    .quick-links-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }
    
    /* Show only Main and Sectors, hide Capabilities and Solutions */
    .quick-link-group:nth-child(1) { /* Main */
        display: block !important;
    }
    
    .quick-link-group:nth-child(2) { /* Sectors */
        display: block !important;
    }
    
    .quick-link-group:nth-child(3) { /* Capabilities - HIDDEN */
        display: none !important;
    }
    
    .quick-link-group:nth-child(4) { /* Solutions - HIDDEN */
        display: none !important;
    }
    
    .quick-link-group h4 {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
        font-weight: 500 !important;
        text-transform: none !important;
        letter-spacing: normal !important;
        border-bottom: none !important;
    }
    
    .quick-link-group ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.4rem !important;
    }
    
    .quick-link-group ul li {
        margin: 0 !important;
        line-height: 1.4 !important;
    }
    
    .quick-link-group ul li a {
        font-size: 0.85rem !important;
        padding: 0.2rem 0 !important;
        line-height: 1.4 !important;
        display: block !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .quick-link-group ul li a:hover {
        color: white !important;
    }
    
    .footer-bottom {
        padding-top: 1rem !important;
        margin-top: 0 !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .footer-copyright {
        text-align: center !important;
        width: 100% !important;
    }

    .footer-bottom-right {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .footer-credit {
        font-size: 0.75rem !important;
        margin: 0 !important;
    }

    .footer-back-to-top {
        width: auto !important;
        padding: 0.6rem 1rem !important;
        font-size: 0.85rem !important;
    }
    
    /* Ensure all grids stack properly */
    .solutions-grid,
    .capabilities-grid,
    .feature-grid,
    .about-detail-stats,
    .sectors-list,
    .capability-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Fix sectors swiper on mobile */
    .sectors-swiper-new {
        padding: 0 0.5rem !important;
        overflow: visible !important;
        margin: 0 auto !important;
    }
    
    .sectors-swiper-new .swiper-wrapper {
        justify-content: center !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        padding: 0 1rem !important;
    }
    
    .sectors-swiper-new .swiper-slide {
        width: 380px;
        max-width: 100%;
        flex-shrink: 0 !important;
        margin-right: 0 !important;
    }
    
    .sectors-swiper-new .sector-card {
        margin: 0 !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
    }
    
    .sectors-swiper-new .sector-content {
        padding: 2rem !important;
        text-align: center !important;
        order: 2 !important;
        background: white !important;
    }
    
    .sectors-swiper-new .sector-content h3 {
        font-size: 1.3rem !important;
        margin-bottom: 0.75rem !important;
        text-align: center !important;
        line-height: 1.4 !important;
        font-weight: 600 !important;
    }
    
    .sectors-swiper-new .sector-content p {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 4 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    .sectors-swiper-new .sector-link {
        justify-content: center !important;
    }
    
    .sectors-swiper-new .sector-link span {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }
    
    .sectors-swiper-new .sector-image {
        height: 340px !important;
        min-height: 340px !important;
        width: 100% !important;
        order: 1 !important;
        overflow: hidden !important;
        background: #f5f7fb !important;
    }
    
    .sectors-swiper-new .sector-image img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    .sectors-swiper-new .sector-card {
        min-height: auto !important;
    }
    
    .sectors-swiper-new .sector-content {
        padding: 1.5rem 1.25rem !important;
    }
    
    /* Fix scroll indicator hidden on mobile */
    .scroll-indicator {
        display: none !important;
    }
    
    /* Fix nav logo size */
    .nav-logo img {
        height: 40px !important;
        max-width: 150px !important;
    }
    
    /* Mobile menu improvements */
    .nav-menu {
        top: 60px !important;
        height: calc(100vh - 60px) !important;
        padding: 1rem !important;
    }
    
    .nav-link {
        padding: 0.8rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Fix dropdown in mobile menu */
    .dropdown-menu {
        max-height: 200px !important;
    }
    
    .dropdown-menu a {
        padding: 0.7rem 1rem !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    /* Smaller screen fixes */
    .solution-card {
        min-height: 350px !important;
    }
    
    .solution-card .solution-text {
        min-height: 350px !important;
    }
    
    .capability-card {
        min-height: 300px !important;
    }
    
    .capability-card .capability-text {
        min-height: 300px !important;
    }
    
    .hero-title {
        font-size: 1.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
    }
    
    .section-title {
        font-size: 1.4rem !important;
    }
    
    .about-detail-stats {
        grid-template-columns: 1fr !important;
    }
    
    .sectors-header .section-title {
        font-size: 1.5rem !important;
    }
    
    .sector-card {
        min-height: 350px !important;
    }
    
    .sector-middle {
        height: auto !important;
    }
    
    .sector-left,
    .sector-right {
        height: 200px !important;
    }
    
    /* Small screens footer */
    .footer {
        padding: 20px 0 12px !important;
    }
    
    .footer-content {
        gap: 1.25rem !important;
        margin-bottom: 1.25rem !important;
        padding: 0 0.75rem !important;
    }
    
    .footer-logo img {
        height: 40px !important;
    }
    
    .company-tagline {
        font-size: 0.75rem !important;
    }
    
    .social-links a {
        width: 34px !important;
        height: 34px !important;
    }
    
    .social-links a i {
        font-size: 0.85rem !important;
    }
    
    .quick-link-group h4 {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem !important;
    }
    
    .quick-link-group ul li a {
        font-size: 0.8rem !important;
        padding: 0.15rem 0 !important;
    }
    
    .footer-bottom {
        padding-top: 0.75rem !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .footer-copyright {
        text-align: center !important;
        width: 100% !important;
        order: 1;
    }

    .footer-bottom-right {
        width: 100% !important;
        justify-content: center !important;
        order: 2;
    }
    
    .footer-credit {
        font-size: 0.7rem !important;
        margin: 0 !important;
    }

    .footer-back-to-top {
        width: auto !important;
        padding: 0.5rem 0.8rem !important;
        font-size: 0.7rem !important;
    }
}

/* ============================================
   MOBILE PERFORMANCE & TOUCH OPTIMIZATIONS
   ============================================ */

/* Hardware acceleration for smooth animations */
.hardware-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Touch feedback for interactive elements */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .nav-link,
    .solution-link,
    .capability-link,
    .sector-btn,
    .sector-arrow a,
    .category-link,
    .hamburger {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .btn:active,
    .nav-link:active,
    .solution-link:active,
    .capability-link:active,
    .sector-btn:active,
    .sector-arrow a:active,
    .category-link:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    /* Improve touch targets */
    .nav-link,
    .dropdown-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dropdown-menu a {
        justify-content: flex-start;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .scroll-indicator {
        display: none !important;
    }
}

/* Mobile-specific body classes */
body.mobile-small {
    font-size: 14px;
}

body.mobile-large {
    font-size: 15px;
}

/* Fix iOS input zoom */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    input[type="search"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Swiper mobile optimizations */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    .sectors-swiper-new {
        padding: 0 10px !important;
    }
    
    .sectors-slide-new {
        width: 100% !important;
    }
    
    .sector-slide-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .sector-left,
    .sector-middle,
    .sector-right {
        width: 100% !important;
        height: auto !important;
        min-height: 200px !important;
    }
    
    .sector-middle {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .sector-middle-text {
        padding: 20px !important;
    }
    
    .sector-middle-image {
        height: 200px !important;
    }
    
    .sector-middle h3 {
        font-size: 1.2rem !important;
    }
    
    .sector-middle p {
        font-size: 0.85rem !important;
    }
    
    .sectors-bottom {
        padding: 15px 10px 0 !important;
        margin-top: 20px !important;
    }
    
    .sectors-arrow-prev,
    .sectors-arrow-next {
        width: 44px !important;
        height: 44px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .sectors-bottom {
        display: none !important;
    }
}

/* Prevent text selection on mobile UI elements */
.hamburger,
.sectors-arrow-prev,
.sectors-arrow-next,
.swiper-button-next,
.swiper-button-prev {
    user-select: none;
    -webkit-user-select: none;
}

/* Fix for notched phones */
@supports (padding-top: env(safe-area-inset-top)) {
    @media (max-width: 768px) {
        .navbar {
            padding-left: env(safe-area-inset-left);
            padding-right: env(safe-area-inset-right);
        }
        
        .nav-menu {
            padding-left: max(1rem, env(safe-area-inset-left));
            padding-right: max(1rem, env(safe-area-inset-right));
            padding-bottom: env(safe-area-inset-bottom);
        }
        
        .container,
        .sectors-wrapper {
            padding-left: max(16px, env(safe-area-inset-left));
            padding-right: max(16px, env(safe-area-inset-right));
        }
    }
}

/* Strong mobile hero override */
@media (max-width: 768px) {
    .hero,
    .page-hero,
    .hero-modern {
        position: relative !important;
        height: auto !important;
        min-height: 55vh !important;
        padding-top: 80px !important;
        padding-bottom: 80px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-content,
    .page-hero-content,
    .hero-modern .page-hero-content {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
        text-align: center !important;
    }

    .hero-background,
    .page-hero-image,
    .hero-image,
    .hero-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 55vh !important;
        max-height: none !important;
        object-fit: cover !important;
    }

    .hero-title,
    .page-hero-content h1 {
        font-size: clamp(1.5rem, 8vw, 2rem) !important;
        line-height: 1.2 !important;
        color: #08448f !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
        -webkit-text-fill-color: unset !important;
        opacity: 1 !important;
        text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
    }

    .hero-subtitle,
    .page-hero-content p {
        font-size: clamp(0.95rem, 4vw, 1.05rem) !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        color: #ffffff !important;
        text-shadow: 0 3px 14px rgba(0, 0, 0, 0.32) !important;
    }

    .hero-buttons,
    .hero-cta,
    .cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1rem !important;
        width: 100% !important;
    }
}

