/* Reset and Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}

*::before, *::after {
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}
:root {
  font-size: 80%; 
}
body {
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    line-height: 1.6;
    color: #003153;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, textarea, label {
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Section specific containers with individual max-widths */
.about .container {
    max-width: var(--container-about);
}

.services .container {
    max-width: var(--container-services);
}

.partners .container {
    max-width: var(--container-partners);
}

.industries .container {
    max-width: var(--container-industries);
}

.achievements .container {
    max-width: var(--container-achievements);
}

.contact .container {
    max-width: var(--container-contact);
}

.footer .container {
    max-width: var(--container-footer);
}

:root {
    --primary-blue: #2576b1 !important; /* Dark Prussian Blue */
    --secondary-blue: #004080 !important;
    --primary-yellow: rgb(245, 158, 11)!important;
    --accent-yellow: #ebc76c !important;
    --light-gray: #cad3e6 !important;
    --dark-gray: #1f2f44 !important;
    --off-white: #f5f5f4 !important;
    --black: #131111;
    --modern-radius: 0 20px 0 20px; /* Modern angled corners */
    --card-radius: 0 25px 0 25px; /* Larger angled corners for cards */
    --mission-image-width: 80%; /* Adjustable image width */
    --mission-image-height: 400px; /* Adjustable image height */
    --about-scale: 0.8; /* Parameter to control size of everything in about section */
    /* Container sizes for each section */
    --container-about: 1000px;
    --container-services: 1200px;
    --container-partners: 1200px;
    --container-industries: 1200px;
    --container-achievements: 1200px;
    --container-contact: 1200px;
    --container-footer: 1200px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background: rgba(235, 199, 108, 0) !important;
    border-radius: 17px;
    box-shadow: 0 8px 32px rgba(215, 226, 235, 0.12);
    z-index: 100;
    transition: background 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.3s ease;
    padding: 1.5rem 2rem; /* Increased from 0.5rem to 1.5rem */
    display: flex;
    align-items: center;
}

/* Add classes for scroll effect */
.header.scrolled {
    background: var(--primary-yellow) !important;
}

.header.dark {
    background: #131111 !important;
    box-shadow: 0 8px 32px rgba(19, 17, 17, 0.18);
}

/* Modified nav-wrapper to center nav links */
.nav-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
    position: absolute;
    left: 2rem;
}

/* Rest of the CSS remains unchanged */
.logo img {
    height: 90%;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0.9) contrast(1.2);
}

.logo img:hover {
    transform: scale(1.08);
}

.logo-text {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: var(--primary-blue);
    font-family: 'chasan', Arial, sans-serif !important;
    display: none;
}

.logo-text .logo-accent {
    color: var(--primary-yellow) !important;
}

.nav-desktop {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray) !important;
    font-weight: 600 !important;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
    /* background: rgba(255,255,255,0.15);
    border-radius: 20px; */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue) !important;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 2rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue) !important;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: var(--primary-yellow) !important;
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100vh;
    z-index: 1000;
    transition: right 0.3s ease-in-out;
    box-shadow: 0px 0 25px rgba(0, 0, 0, 0);
    overflow-y: auto;
}

.nav-mobile.active {
    display: flex;
    right: 0;
}

/* Close button for sidebar */
.sidebar-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-blue) !important;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.sidebar-close-btn:hover {
    background: rgba(37, 118, 177, 0.1) !important;
}

/* Backdrop overlay for sidebar */
.nav-mobile::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.nav-mobile.active::before {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile navigation links */
.nav-mobile .nav-link {
    color: var(--primary-blue) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    text-decoration: none;
    display: block;
}

.nav-mobile .nav-link:hover {
    background: rgba(37, 118, 177, 0.1) !important;
    color: var(--primary-blue) !important;
}

/* Remove hover effects and transitions on mobile */
@media (max-width: 768px) {
    /* Make logo smaller on mobile */
    .logo img {
        height: 35px !important;
        width: auto !important;
    }
    
    /* Disable color transitions for navigation links */
    .nav-link::after {
        display: none !important;
    }
    
    .nav-link:hover {
        color: var(--dark-gray) !important;
        background: transparent !important;
    }
    
    /* Disable complex hover effects on mobile */
    .service-card:hover,
    .partner-card:hover,
    .industry-card:hover,
    .contact-item:hover,
    .feature:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* Simplify service items on mobile */
    .service-item:hover {
        transform: none !important;
        background: #eaf3ff !important;
    }
    
    /* Disable complex animations on mobile */
    .service-icon:hover,
    .item-icon:hover,
    .contact-icon:hover {
        transform: none !important;
    }
    
    /* Keep only essential hover states for mobile */
    .nav-mobile .nav-link:hover {
        background: rgba(37, 118, 177, 0.1) !important;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-image.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    height: 120px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
    drop-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2);
    drop-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 4rem !important;
    font-weight: 800 !important;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 1s ease;
}

.title-accent {
    color: var(--primary-yellow) !important;
}

.hero-subtitle {
    font-size: 1.5rem !important;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    font-weight: 500 !important;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem !important;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    font-weight: 400 !important;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: var(--primary-yellow) !important;
    color: var(--primary-blue) !important;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: var(--accent-yellow) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 49, 83, 0.2);
}

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

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scroll 2s infinite;
}
/* Section Styles */
section {
    padding: 2.5rem 0;
}

.section-header {
    text-align: left;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

/* About section heading diagram image
.about .section-header {
    position: relative;
} */

.about .section-header::after {
    content: "";
    display: block;
    position: absolute;
    top: 20%;
    right: 0;
    transform: translateY(-50%);
    width: 200px;
    height: 300px;
    background: url('diagram.png') no-repeat right center;
    background-size: contain;
    pointer-events: none;
    opacity: 0.95;
    z-index: 2;
    transition: opacity 0.5s ease, transform 1.5s ease-in-out;
    animation: floatAnimation 6s ease-in-out infinite;
}

.partners .section-header::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 165px;
    background: url('diagram-old.png') no-repeat left center;
    background-size: contain;
    opacity: 0.95;
    pointer-events: none;
    margin-right: 0;
    flex-shrink: 0;
    transition: opacity 0.5s ease, transform 1.5s ease-in-out;
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
        opacity: 0.95;
    }
    50% {
        transform: translateY(-45%) translateX(10px);
        opacity: 1;
    }
}

/* Partners section heading diagram-old image (left of title, does not disrupt layout) */
.partners .section-header {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
    padding-left: 240px;
}

.partners .section-header::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 400px;
    background: url('diagram-old.png') no-repeat left center;
    background-size: contain;
    opacity: 0.95;
    pointer-events: none;
    margin-right: 0;
    flex-shrink: 0;
}

.partners .section-header::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 400px;
    background: url('diagram-old.png') no-repeat left center;
    background-size: contain;
    opacity: 0.95;
    pointer-events: none;
    margin-right: 0;
    flex-shrink: 0;
}

.section-title {
    font-size: 3.5rem !important; /* further reduced for desktop */
    font-weight: 700 !important;
    color: var(--primary-blue) !important;
    margin-bottom: 1rem; /* reduced by 10% from 2rem */
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    position: relative;
    display: inline-block;
    transition: color 0.3s, -webkit-text-stroke 0.3s;
    -webkit-text-stroke: 0px var(--primary-blue);
}

.about .section-title {
    margin-top: calc(10rem * var(--about-scale));
    font-size: calc(3.5rem * var(--about-scale)) !important;
}
.about .section-title {
    margin-top: calc(10rem * var(--about-scale));
    font-size: calc(3.5rem * var(--about-scale)) !important;
}

/* Left align heading and divider for partners and services */
.partners .section-header,
.services .section-header {
    text-align: right;
    align-items: flex-end;
    color:var(--secondary-blue);
    display: flex;
    flex-direction: column;
}

.partners .section-title,
.services .section-title {
    text-align: left;
    display: block;
}

.services .section-title {
    color: var(--secondary-blue) !important;
}

.partners .section-divider,
.services .section-divider {
    margin-left: 0;
    left: 0;
}

.section-title:hover {
    color: transparent !important;
    -webkit-text-stroke: 2px var(--primary-blue);
    text-shadow: none;
}

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

.section-divider {
    width: 80px;
    height: 9px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--primary-blue));
    margin-left: 0;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
    box-shadow: 4px 0 16px -6px var(--primary-blue);
    position: relative;
    left: 0;
    animation: dividerSlideIn 1s cubic-bezier(.4,0,.2,1);
}

@keyframes dividerSlideIn {
    from { width: 0; opacity: 0; }
    to { width: 60px; opacity: 1; }
}

.section-description {
    font-size: 1.4rem !important;
    color: var(--dark-gray) !important;
    max-width: 800px;
    margin: 0;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    line-height: 1.8;
}

/* For dark backgrounds, override color */
.about .section-description,
.industries .section-description,
.contact .section-description {
    color: var(--off-white) !important;
}
/* About Section */
/* About Section */
/* About Section */
.about {
    background: var(--black) !important;
}

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

/* .section-header {
    text-align: left;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-weight: 700;
} */

.section-divider {
    width: 0px;
    height: 0px;
    background: var(--primary-yellow);
    margin: 1rem auto 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

/* About Content Box */
.about-content-box {
    background: var(--black);
    border: 0px solid #fff;
    padding: 0rem;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), box-shadow 0.3s ease;
}

/* .about-content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245,158,11,0.15);
    border-color: var(--primary-yellow);
} */

.about-text {
    font-size: calc(1.7rem * var(--about-scale));
    margin-bottom: calc(2rem * var(--about-scale));
    color: #fff;
    line-height: 2;
    font-family: 'Space Grotesk', Arial, sans-serif;
    text-align: justify;
    text-justify: inter-word;
}

/* Mission Container */
.mission-container {
    background: var(--black);
    border: none;
    padding: 0rem 0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: none;
    transition: none;
    max-width: 800px;
    width: 100%;
}

.mission-container:hover {
    transform: none;
    box-shadow: none;
    border: none;
}

.mission-label {
    display: inline-block;
    background: transparent;
    padding: calc(0.5rem * var(--about-scale)) 0;
    font-size: calc(3rem * var(--about-scale));
    font-weight: 700;
    color: var(--off-white);
    font-family: 'Space Grotesk', Arial, sans-serif;
    margin-bottom: calc(2rem * var(--about-scale));
    border-radius: 0;
    letter-spacing: 1px;
    text-align: center;
    width: auto;
}

.mission-text {
    font-size: calc(2rem * var(--about-scale));
    line-height: 1.8;
    color: #fff;
    margin-bottom: calc(2rem * var(--about-scale));
    font-family: 'Space Grotesk', Arial, sans-serif;
    text-align: center;
    max-width: 600px;
}

/* Mission Divider */
.mission-divider {
    width: 100%;
    height: calc(4px * var(--about-scale));
    background: #fff;
    margin: calc(2rem * var(--about-scale)) auto;
    border-radius: 2px;
}

/* Side-by-Side Sections */
.about-content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

/* Why Choose Us Box */
.about-box {
    width: 50%;
    box-sizing: border-box;
    background: var(--black);
    border: 2px solid var(--primary-yellow);
    padding: calc(3rem * var(--about-scale));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245,158,11,0.15);
    border-color: var(--primary-yellow);
}

.box-content h3 {
    font-size: calc(2.5rem * var(--about-scale));
    font-weight: 600;
    color: #fff;
    margin-bottom: calc(2rem * var(--about-scale));
    font-family: 'Space Grotesk', Arial, sans-serif;
}

.box-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.box-content li {
    color: #fff;
    font-size: calc(1.8rem * var(--about-scale));
    margin-bottom: calc(1.5rem * var(--about-scale));
    padding-left: calc(2.5rem * var(--about-scale));
    position: relative;
    font-family: 'Space Grotesk', Arial, sans-serif;
}

.box-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.box-content li:hover::before {
    transform: translateX(5px);
}

/* Map Section */
.mission-image {
    flex: 1;
    width: 100%;
    height: var(--mission-image-height, 400px);
    min-height: 150px;
    overflow: hidden;
    border: 2px solid var(--primary-yellow);
    border-radius: 0;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--black);
    padding: 1rem;
    box-sizing: border-box;
}

.map-heading {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--primary-yellow);
    background-color: #131111;
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 10;
}

.interactive-map {
    width: 100%;
    height: auto;
    display: block;
}

.map-region {
    cursor: pointer;
    transition: fill 0.3s ease;
}

.map-region:hover {
    fill: var(--accent-yellow);
}

.map-label {
    fill: var(--off-white);
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    pointer-events: none;
    user-select: none;
}

.world-map-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.world-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.3) contrast(0.1);
    transition: transform 0.3s ease;
}

.world-map-container:hover .world-map-image {
    transform: scale(1.05);
}

.location-marker {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.marker-icon {
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.marker-label {
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: none;
    text-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateX(0);
}

.location-marker:hover .marker-icon {
    transform: scale(1.5) rotate(10deg);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
    animation: pulse 1s ease-in-out;
}

.location-marker:hover .marker-label {
    background: var(--primary-yellow);
    color: var(--primary-blue);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1.5) rotate(10deg);
    }
    50% {
        transform: scale(1.8) rotate(15deg);
    }
    100% {
        transform: scale(1.5) rotate(10deg);
    }
}

/* Middle East Marker - Corrected position with left-aligned text */
.middle-east {
    top: 38%;
    left: 40%;
    flex-direction: row-reverse; /* Reverse order to put text on left */
}

.middle-east .marker-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f59e0b'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.middle-east .marker-label {
    left: auto;
    right: 20px; /* Position label to the left of the icon */
}

.middle-east:hover .marker-label {
    transform: translateX(-5px); /* Move left on hover instead of right */
}

/* Central Asia Marker - Corrected position */
.central-asia {
    top: 23%;
    left: 62%;
}

.central-asia .marker-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f59e0b'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

/* South Asia Marker - Corrected position */
.south-asia {
    top: 35%;
    left: 65%;
}

.south-asia .marker-icon {
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f59e0b'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");}

.region-tooltip {
    position: absolute;
    background: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-family: 'Space Grotesk', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about {
        padding: calc(4rem * var(--about-scale)) 1rem calc(4rem * var(--about-scale)) 1rem;
    }

    .about-content {
        gap: 1rem;
    }

    .about-content-box,
    .mission-container,
    .about-box {
        padding: 1rem;
    }

    .about-content-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .about .section-title {
        font-size: calc(3rem * var(--about-scale)) !important;
        margin-top: calc(4rem * var(--about-scale));
    }

    .mission-label {
        font-size: calc(2rem * var(--about-scale));
        margin-bottom: calc(1rem * var(--about-scale));
    }

    .mission-text {
        font-size: calc(1.2rem * var(--about-scale));
        margin-bottom: calc(1rem * var(--about-scale));
    }

    .mission-divider {
        height: calc(2px * var(--about-scale));
        margin: calc(1rem * var(--about-scale)) auto;
    }

    .about-box {
        width: 100%;
        padding: calc(1.5rem * var(--about-scale));
    }

    .box-content h3 {
        font-size: calc(2rem * var(--about-scale));
        margin-bottom: calc(1rem * var(--about-scale));
    }

    .box-content li {
        font-size: calc(1rem * var(--about-scale));
        margin-bottom: calc(1rem * var(--about-scale));
        padding-left: calc(2rem * var(--about-scale));
    }

    .about-text {
        font-size: calc(1.3rem * var(--about-scale));
        margin-bottom: calc(1rem * var(--about-scale));
    }

    .mission-image {
        width: 100%;
        height: 250px; /* Further adjusted for mobile */
    }

    .location-marker {
        transform: scale(0.8);
    }
}
/* Services Section */
/* Services Section */
.services {
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/9893729/pexels-photo-9893729.jpeg') center center/cover no-repeat;
    opacity: 0.75; /* Adjust this value between 0 and 1 to control transparency */
    
    z-index: 1;
    transform: scale(var(--scale, 1));
}

/* Remove fixed zoom class */
.services.zoomed::before {
    transform: none;
}

.services > * {
    position: relative;
    z-index: 2;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: #f3f8ff !important; /* pale light blue */
    border-radius: 0 !important; /* square corners */
    border: none !important; /* remove border */
    padding: 2.7rem; /* reduced by 10% from 3rem */
    box-shadow: 0 3.6px 21.6px rgba(19, 17, 17, 0.10), 0 1.35px 7.2px rgba(37, 118, 177, 0.08); /* soft shadow for shape */
    transition: 
        box-shadow 0.4s cubic-bezier(.4,0,.2,1),
        transform 0.3s cubic-bezier(.4,0,.2,1),
        background 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    color: #131111 !important; /* black font */
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    opacity: 0.15;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 36px rgba(37, 118, 177, 0.18), 0 6px 24px rgba(245, 158, 11, 0.12); /* deeper shadow */
    background: #eaf3ff !important;
}

.service-card:hover::before {
    opacity: 0.7;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2576b1 60%, #fbbf24 100%);
    box-shadow: 0 4px 18px rgba(37, 118, 177, 0.12);
    transition: 
        transform 0.4s cubic-bezier(.4,0,.2,1),
        box-shadow 0.4s cubic-bezier(.4,0,.2,1),
        background 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-6deg);
    background: linear-gradient(135deg, #fbbf24 60%, #2576b1 100%);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.18);
}

.service-icon svg {
    width: 40px;
    height: 40px;
    fill: #131111 !important; /* black logo */
    transition: fill 0.3s cubic-bezier(.4,0,.2,1);
}

.service-card:hover .service-icon svg {
    fill: var(--primary-blue) !important;
}

.service-header h3 {
    font-size: 1.7rem !important;
    font-weight: 700 !important;
    color: #131111 !important;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    margin: 0;
    transition: color 0.3s cubic-bezier(.4,0,.2,1);
}

.service-card:hover .service-header h3 {
    color: var(--primary-blue) !important;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    background: #eaf3ff !important; /* lighter pale blue */
    border-radius: 0 !important;
    border: none !important; /* remove border */
    box-shadow: 0 2px 8px rgba(37, 118, 177, 0.08); /* subtle shadow */
    transition: 
        box-shadow 0.3s cubic-bezier(.4,0,.2,1),
        transform 0.3s cubic-bezier(.4,0,.2,1),
        background 0.3s cubic-bezier(.4,0,.2,1),
        color 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    color: #131111 !important;
}

.service-item:hover {
    background: #fbbf24 !important;
    box-shadow: 0 8px 24px rgba(37, 118, 177, 0.15), 0 2px 8px rgba(245, 158, 11, 0.12); /* deeper shadow */
    transform: translateX(8px) scale(1.03);
    color: var(--primary-blue) !important;
}

.item-icon {
    width: 28px;
    height: 28px;
    fill: #2576b1 !important;
    transition: fill 0.3s cubic-bezier(.4,0,.2,1), transform 0.3s cubic-bezier(.4,0,.2,1);
}

.service-item:hover .item-icon {
    fill: #131111 !important;
    transform: scale(1.2) rotate(-8deg);
}

.service-item span:last-child {
    color: #131111 !important;
    font-weight: 500 !important;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    font-size: 1.1rem !important;
    transition: color 0.3s cubic-bezier(.4,0,.2,1);
}

.service-item:hover span:last-child {
    color: var(--primary-blue) !important;
}


/* Partners Section */
/* Partners Section */
.partners {
    background: #f3f8ff !important; /* very pale light blue */
}

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

.partner-card {
    background: transparent !important; /* no fill */
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 0 !important;
    border: none !important;
    /* Only shadows, no outline */
    box-shadow: 0 4px 24px rgba(37, 118, 177, 0.10), 0 1.5px 8px rgba(19, 17, 17, 0.08);
    transition: 
        box-shadow 0.4s cubic-bezier(.4,0,.2,1),
        transform 0.3s cubic-bezier(.4,0,.2,1),
        background 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 32px rgba(37, 118, 177, 0.18), 0 4px 16px rgba(245, 158, 11, 0.12);
    background: rgba(4, 37, 91, 0.833); /* subtle highlight */
}

/* PNG Logo Styling */
.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
    filter: brightness(0.45) contrast(1.2) drop-shadow(0 0 10px rgba(8, 68, 187, 0.2));
    transition: filter 0.4s cubic-bezier(.4,0,.2,1), transform 0.3s;
    z-index: 2;
    position: relative;
}

.partner-card:hover .partner-logo {
    filter: brightness(0.6) contrast(1.2) sepia(1) hue-rotate(180deg) saturate(2) drop-shadow(0 0 20px #2576b1);
    transform: scale(1.08) rotate(-3deg);
}

/* Sparkle Animation */
.partner-sparkle {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 18px;
    height: 18px;
    pointer-events: none;
    z-index: 3;
    background: radial-gradient(circle, #2576b1 60%, transparent 100%);
    opacity: 0.7;
    filter: blur(1px) brightness(0);
    transition: transform 0.5s cubic-bezier(.4,0,.2,1), opacity 0.3s;
    animation: sparkleIdle 2s infinite linear;
}

.partner-card:hover .partner-sparkle {
    transform: translate(40px, -10px) scale(1.3) rotate(30deg);
    opacity: 1;
    animation: sparkleMove 1.2s infinite linear;
}

@keyframes sparkleIdle {
    0%, 100% { opacity: 0.7; transform: scale(1) rotate(0deg);}
    50% { opacity: 1; transform: scale(1.1) rotate(10deg);}
}

@keyframes sparkleMove {
    0% { opacity: 1; transform: translate(0,0) scale(1) rotate(0deg);}
    50% { opacity: 1; transform: translate(40px,-10px) scale(1.3) rotate(30deg);}
    100% { opacity: 1; transform: translate(0,0) scale(1) rotate(0deg);}
}

/* Hide old SVG icon if present */
.partner-icon {
    display: none;
}

.partner-card h3 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #131111 !important; /* black */
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}

.partner-card p {
    color: #131111 !important; /* black */
    line-height: 1.6;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}
/* Industries Section */
.industries {
    background: var(--black) !important;
    position: relative;
}

.industries-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.industries-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industries-description {
    padding: 2rem;
    background: var(--black) !important;
    color: #fff !important;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    border-radius: 0 !important;
    box-shadow: 0 4px 24px rgba(255,255,255,0.10);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.industry-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Square shape */
    border-radius: 0 !important;
    overflow: hidden;
    cursor: pointer !important;
    transition: 
        transform 0.3s cubic-bezier(.4,0,.2,1);
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.industry-card.active {
    box-shadow: 0 0 0 4px var(--primary-yellow), 0 10px 30px rgba(245, 158, 11, 0.15);
    transition: box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}

.industry-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 0 0 4px var(--primary-yellow), 0 10px 30px rgba(245, 158, 11, 0.18);
}

.industry-card::before {
    display: none; /* Remove gradient overlay */
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    border-bottom: 0; /* No border between image and heading */
}

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

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    padding: 1.2rem 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s cubic-bezier(.4,0,.2,1);
    z-index: 2;
    border-top: 2px solid white;
}

.industry-card:hover .industry-overlay {
    background: #131111 !important;
}

.industry-overlay h3 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin: 0;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    color: #fff !important;
    text-align: center;
    transition: color 0.3s cubic-bezier(.4,0,.2,1);
}

.industry-details {
    flex: 1;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(255,255,255,0.10); /* subtle white shadow */
    position: sticky;
    top: 120px;
    min-height: 400px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(.4,0,.2,1);
    border: none !important;
}

.industry-details.active {
    opacity: 1;
    transform: translateX(0);
    box-shadow: 0 0 0 4px var(--primary-yellow), 0 10px 30px rgba(245, 158, 11, 0.15);
}

.industry-details::before {
    display: none; /* Remove gradient bar */
}

.industry-details-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0 !important;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s cubic-bezier(.4,0,.2,1);
}

.industry-details h3 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    transition: color 0.3s cubic-bezier(.4,0,.2,1);
}

.industry-details p {
    font-size: 1.1rem !important;
    line-height: 1.7;
    color: #fff !important;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    transition: color 0.3s cubic-bezier(.4,0,.2,1);
}

.industry-details-placeholder {
    text-align: center;
    color: #9ca3af;
}

.industry-details-placeholder h3 {
    color: #9ca3af !important;
    margin-bottom: 1rem;
}

.industry-details-placeholder p {
    color: #9ca3af !important;
}

/* Mobile Responsive Styles for Industries Section */
@media (max-width: 768px) {
    .industries-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Hide the right-side details panel on mobile */
    .industry-details {
        display: none !important;
    }
    
    /* Style for mobile details that will be inserted after cards */
    .industry-details-mobile {
        display: block;
        background: transparent !important;
        border-radius: 0 !important;
        padding: 1.5rem;
        margin: 1rem 0;
        box-shadow: 0 0 0 3px var(--primary-yellow), 0 5px 15px rgba(245, 158, 11, 0.12);
        opacity: 1;
        transform: translateY(0);
        transition: all 0.3s ease;
        border: none !important;
        position: relative;
        z-index: 5; /* Ensure details appear above other content */
    }
    
    .industry-details-mobile img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 0 !important;
        margin-bottom: 1rem;
    }
    
    .industry-details-mobile h3 {
        font-size: 1.8rem !important;
        font-weight: 700 !important;
        color: #fff !important;
        margin-bottom: 1rem;
        font-family: 'Space Grotesk', Arial, sans-serif !important;
    }
    
    .industry-details-mobile p {
        font-size: 1rem !important;
        line-height: 1.6;
        color: #fff !important;
        font-family: 'Space Grotesk', Arial, sans-serif !important;
    }
    
    /* Adjust grid for better mobile layout */
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        position: relative;
    }
    
    /* Mobile-specific industry card styles */
    .industry-card {
        aspect-ratio: 4/3; /* Slightly wider on mobile */
        width: 100% !important;
        min-width: 100% !important;
        position: relative;
        z-index: 10; /* Ensure cards are above other elements */
        cursor: pointer !important;
        pointer-events: auto !important;
        -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
        touch-action: manipulation; /* Improve touch responsiveness */
    }
    
    /* Ensure the entire card area is clickable */
    .industry-card > * {
        pointer-events: none; /* Let the card handle all clicks */
    }
    
    .industry-card img,
    .industry-overlay {
        pointer-events: none; /* Prevent image/overlay from blocking card clicks */
    }
    
    /* Improve touch feedback for mobile */
    .industry-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .industry-overlay h3 {
        font-size: 1.1rem !important;
        padding: 0.5rem;
    }
    
    /* Ensure no overlapping issues */
    .industry-card.active {
        z-index: 15; /* Active card should be above others */
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .industry-details {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .industry-details h3 {
        font-size: 1.5rem !important;
    }
    
    .industry-details p {
        font-size: 0.95rem !important;
    }
    
    .industry-details-image {
        height: 120px;
    }
}



/* Contact Section */
.contact {
    background: var(--black) !important;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* reduced from 5rem */
}

.contact-info h3 {
    font-size: 2rem !important; /* reduced from 2.5rem */
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 2rem; /* reduced from 3rem */
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    transition: color 0.3s;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem; /* reduced from 2rem */
    margin-bottom: 2rem; /* reduced from 3rem */
    padding: 1.2rem; /* reduced from 2rem */
    background: var(--black) !important;
    border-radius: 0 !important;
    border: 2px solid #fff !important;
    box-shadow: 0 3px 10px rgba(255,255,255,0.08); /* reduced shadow */
    transition: 
        transform 0.3s cubic-bezier(.4,0,.2,1),
        box-shadow 0.3s cubic-bezier(.4,0,.2,1),
        border-color 0.3s cubic-bezier(.4,0,.2,1),
        background 0.3s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

.contact-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 22px; /* reduced from 30px */
    height: 22px; /* reduced from 30px */
    background: linear-gradient(135deg, var(--primary-yellow), transparent);
    opacity: 0.08;
    border-radius: 0 0 0 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.contact-item:hover {
    transform: translateY(-4px) scale(1.02); /* slightly less movement */
    box-shadow: 0 7px 20px rgba(245,158,11,0.10); /* reduced shadow */
    border-color: var(--primary-yellow) !important;
    background: #131111 !important;
}

.contact-icon {
    width: 22px; /* reduced from 28px */
    height: 22px; /* reduced from 28px */
    fill: var(--primary-yellow) !important;
    background: rgba(245, 158, 11, 0.12);
    padding: 0.7rem; /* reduced from 1rem */
    border-radius: 0 !important;
    min-width: 40px; /* reduced from 60px */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 
        background 0.3s cubic-bezier(.4,0,.2,1),
        fill 0.3s cubic-bezier(.4,0,.2,1),
        transform 0.3s cubic-bezier(.4,0,.2,1);
}

.contact-item:hover .contact-icon {
    background: var(--primary-yellow) !important;
    fill: #131111 !important;
    transform: scale(1.08) rotate(-6deg);
}

.contact-item h4 {
    font-size: 1.1rem !important; /* reduced from 1.4rem */
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 0.7rem; /* reduced from 1rem */
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    transition: color 0.3s;
}

.contact-item p {
    color: #fff !important;
    margin: 0.3rem 0; /* reduced from 0.5rem */
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    font-size: 0.95rem !important; /* reduced from 1.1rem */
    transition: color 0.3s;
}

.contact-highlight {
    background: var(--black) !important;
    padding: 1.2rem; /* reduced from 2rem */
    border-radius: 0 !important;
    box-shadow: 0 6px 15px rgba(255,255,255,0.08); /* reduced shadow */
    margin-top: 1.2rem; /* reduced from 2rem */
    border-left: 4px solid var(--primary-yellow);
    border: 2px solid #fff !important;
    transition: 
        box-shadow 0.3s cubic-bezier(.4,0,.2,1),
        border-color 0.3s cubic-bezier(.4,0,.2,1),
        background 0.3s cubic-bezier(.4,0,.2,1);
}

.contact-highlight:hover {
    box-shadow: 0 10px 28px rgba(245,158,11,0.15); /* reduced shadow */
    border-color: var(--primary-yellow) !important;
    background: #131111 !important;
}

.contact-highlight h4 {
    font-size: 1.05rem !important; /* reduced from 1.3rem */
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 0.7rem; /* reduced from 1rem */
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    transition: color 0.3s;
}

.contact-highlight ul {
    list-style: none;
    padding: 0;
}

.contact-highlight li {
    color: #fff !important;
    margin-bottom: 0.3rem; /* reduced from 0.5rem */
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    transition: color 0.3s;
}

/* Contact Features Section */
.contact-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem; /* reduced from 2rem */
    margin-top: 2rem; /* reduced from 4rem */
    padding: 1rem 0; /* reduced from 2rem 0 */
}

.feature {
    background: var(--black) !important;
    padding: 1.2rem; /* reduced from 2.5rem */
    border: 2px solid #fff;
    border-radius: 0 !important;
    text-align: center;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.feature:hover {
    transform: translateY(-6px); /* reduced from -10px */
    border-color: var(--primary-yellow);
    box-shadow: 0 10px 20px rgba(245,158,11,0.12); /* reduced shadow */
}

.feature-icon {
    width: 22px; /* reduced from 30px */
    height: 22px; /* reduced from 30px */
    margin: 0 auto 0.7rem; /* reduced from 1rem */
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--primary-yellow);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon svg {
    stroke: var(--primary-yellow);
    transform: scale(1.08) rotate(-5deg);
}

.feature h4 {
    color: #fff !important;
    font-size: 1.1rem !important; /* reduced from 1.5rem */
    font-weight: 600 !important;
    margin-bottom: 0.7rem; /* reduced from 1rem */
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}

.feature p {
    color: #fff !important;
    font-size: 0.95rem !important; /* reduced from 1.1rem */
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}

@media (max-width: 768px) {
    .contact-features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 1rem; /* reduced from 2rem */
    }
}
/* Contact Form */
.contact-form {
    background: var(--black) !important;
    padding: 1.2rem; /* reduced from 2.5rem */
    border-radius: 0 !important;
    border: 2px solid #fff !important;
    box-shadow: 0 7px 18px rgba(255,255,255,0.10); /* reduced shadow */
    position: relative;
    overflow: hidden;
    transition: 
        box-shadow 0.3s cubic-bezier(.4,0,.2,1),
        border-color 0.3s cubic-bezier(.4,0,.2,1),
        background 0.3s cubic-bezier(.4,0,.2,1);
    max-width: 500px; /* increased width from 400px to 600px */
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px; /* reduced from 4px */
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    opacity: 0.18; /* reduced from 0.25 */
    transition: opacity 0.3s;
}

.contact-form:hover {
    box-shadow: 0 12px 32px rgba(245,158,11,0.15); /* reduced shadow */
    border-color: var(--primary-yellow) !important;
    background: #131111 !important;
}

.contact-form h3 {
    font-size: 1.3rem !important; /* reduced from 2rem */
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 1.2rem; /* reduced from 2rem */
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    transition: color 0.3s;
}

.form-group {
    margin-bottom: 1rem; /* reduced from 1.5rem */
}

.form-group label {
    display: block;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 0.3rem; /* reduced from 0.5rem */
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    transition: color 0.3s;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem; /* reduced from 1.5rem */
    border: 2px solid #fff !important;
    border-radius: 0 !important;
    font-size: 0.95rem !important; /* reduced from 1.1rem */
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    transition: 
        border-color 0.3s cubic-bezier(.4,0,.2,1),
        background 0.3s cubic-bezier(.4,0,.2,1),
        color 0.3s cubic-bezier(.4,0,.2,1);
    background: #131111 !important;
    color: #fff !important;
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow) !important;
    background: #1f2f44 !important;
    color: #fff !important;
}

.submit-button {
    background: var(--black) !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    padding: 1rem 2rem; /* reduced from 1.5rem 3rem */
    font-size: 1rem !important; /* reduced from 1.3rem */
    font-weight: 600 !important;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
    border-radius: 0 !important;
    cursor: pointer;
    transition: 
        background 0.3s cubic-bezier(.4,0,.2,1),
        color 0.3s cubic-bezier(.4,0,.2,1),
        border-color 0.3s cubic-bezier(.4,0,.2,1),
        box-shadow 0.3s cubic-bezier(.4,0,.2,1),
        transform 0.3s cubic-bezier(.4,0,.2,1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.submit-button:hover::before {
    width: 180px; /* reduced from 300px */
    height: 180px; /* reduced from 300px */
}

.submit-icon {
    width: 18px; /* reduced from 24px */
    height: 18px; /* reduced from 24px */
    fill: currentColor;
}

.submit-button:hover {
    background: var(--primary-yellow) !important;
    color: #131111 !important;
    border-color: var(--primary-yellow) !important;
    transform: translateY(-2px) scale(1.02); /* slightly less movement */
    box-shadow: 0 7px 18px rgba(245,158,11,0.13); /* reduced shadow */
}

/* Footer */
.footer {
    background: var(--primary-blue) !important;
    color: rgb(254, 253, 255);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem;
    color: var(--primary-yellow) !important;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    height: 70px;
}

.footer-logo img {
    height: 100%;
    width: auto;
    max-width: 400px;
    /* object-fit: contain; */
}

.footer-logo h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: rgba(202, 198, 230, 0.8) !important;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}

.footer-section a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}

.footer-section a:hover {
    color: var(--primary-yellow) !important;
}

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

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--modern-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--off-white);
    transition: fill 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
    background: var(--primary-yellow);
}

.social-link:hover svg {
    fill: var(--primary-blue);
}

.footer-icon {
    width: 16px;
    height: 16px;
    fill: rgba(245, 245, 248, 0.8);
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Modern Animations */
@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    font-family: 'Space Grotesk', Arial, sans-serif !important;
}

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 3rem !important;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .industries-container {
        flex-direction: column;
    }
    
    .industry-details {
        position: static;
        min-height: auto;
    }
    
    .section-title {
        font-size: 2.2rem !important;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero-logo img {
        height: 60px;
    }
}

/* Sticky and Parallax Section Styles */
section {
    position: relative;
    will-change: transform;
    transition: transform 0.3s ease-out;
}

section.sticky-active {
    position: sticky;
    top: 0;
    z-index: 50; /* Increased z-index for visibility */
    background: rgba(255, 255, 255, 0.95); /* Slightly transparent white */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* Stronger shadow */
    border-bottom: 3px solid var(--primary-yellow); /* Highlight border */
    transform: scale(1.02); /* Slight scale up */
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, background 0.3s ease-out;
}

section .parallax-content {
    will-change: transform;
    transition: transform 0.3s ease-out;
    transform-style: preserve-3d;
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
    }
    
    .hero-description {
        font-size: 0.9rem !important;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .partner-card,
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero-logo img {
        height: 50px;
    }
}

/* Partner Logos Sliding Bar Styles */
.partner-slider {
    overflow: hidden;
    background: #f3f8ff;
    padding: 0.5rem 0;
    /* border-top: 1px solid var(--primary-yellow);
    border-bottom: 1px solid var(--primary-yellow); */
}

.slider-track {
    display: flex;
    width: calc(250px * 10); /* width of one logo * number of logos (including repeats) */
    animation: scroll-left 20s linear infinite;
}

.slider-logo {
    width: 250px;
    height: auto;
    margin-right: 2rem;
    filter: brightness(1) drop-shadow(0 0 5px rgba(255,255,255,0.3));
    transition: filter 0.3s ease;
}

/* .slider-logo:hover {
    filter: brightness(1.2) drop-shadow(0 0 15px var(--primary-yellow));
} */

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 5)); /* slide left by width of 5 logos */
    }
}
