/* ===================================
   ELVON - Custom Styles
   =================================== */

/* ===================================
   CSS Variables & Root Styles
   =================================== */
   :root {
    /* Colors */
    --primary-blue: #0B7EAF;
    --primary-blue-light: #4da6ff;
    --primary-blue-dark: #152845;
    --dark-gray: #2c3e50;
    --light-gray: #6c757d;
    --white: #ffffff;
    --black: #000000;
    --accent-teal: #20c997;
    --accent-purple: #6f42c1;
    --accent-dark-blue: #343a40;
    
    /* Typography */
    --font-family: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 15px;
    
    /* Shadows */
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --button-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-pill: 30px;
}

/* ===================================
   Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

/* ===================================
   GSAP ScrollSmoother Styles
   =================================== */
#smooth-wrapper {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#smooth-content {
    overflow: visible;
    width: 100%;
}

/* Fix Bootstrap container padding for left alignment */
.container {
    padding-left: 15px;
    padding-right: 15px;
}

.container .row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

/* .container .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
} */

/* Ensure left-aligned content in first columns */
.col-lg-6:first-child,
.col-lg-8:first-child {
    text-align: left;
}

.col-lg-6:first-child > *,
.col-lg-8:first-child > * {
    text-align: left;
    margin-left: 0;
    padding-left: 0;
}

/* ===================================
   Utility Classes
   =================================== */
.min-vh-75 {
    min-height: 75vh;
}

.text-primary {
    color: var(--primary-blue) !important;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: var(--font-weight-semibold);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: var(--button-shadow);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.btn-outline-light {
    border-color: var(--white);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-outline-secondary {
    border-color: var(--light-gray);
    color: var(--light-gray);
    font-weight: var(--font-weight-medium);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background-color: var(--light-gray);
    color: var(--white);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-blue);
    font-weight: var(--font-weight-semibold);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: 0.5s ease-in;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: var(--font-weight-extrabold);
    color: var(--dark-gray);
    text-decoration: none;
}

.brand-logo {
    color: var(--primary-blue);
    font-weight: var(--font-weight-black);
    letter-spacing: 2px;
}
.brand-logo img{
    max-width: 150px;
}

.navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: var(--font-weight-medium);
    font-size: 13px;
    letter-spacing: 1px;
    margin: 0px 5px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

.btn-quote {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius-pill);
    font-weight: var(--font-weight-semibold);
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-quote:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    height: auto;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide .hero-background {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, rgba(11, 126, 175, 0.1) 0%, rgba(21, 40, 69, 0.8) 100%);
}

.hero-slide .hero-background .container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    /* position: absolute; */
    top: 0;
    left: 0;
    z-index: 1;
}
 .drive-slide.hero-2 .row .col-web{
        display: block;
    }
    .drive-slide.hero-2 .row .col-mob{
        display: none;
    }

/* Set aspect ratio for hero images */
.hero-slide .hero-background {
    aspect-ratio: 16/9; /* You can change this ratio as needed */
}

/* Responsive aspect ratios */
@media (min-width: 1200px) {
    .hero-slide .hero-background {
        aspect-ratio: 21/9; /* Ultra-wide for large screens */
    }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .hero-slide .hero-background {
        aspect-ratio: 16/9; /* Standard widescreen */
    }
}

@media (max-width: 991.98px) and (min-width: 768px) {
    .hero-slide .hero-background {
        aspect-ratio: 4/3; /* Slightly taller for tablets */
    }
}

@media (max-width: 767.98px) {
    .hero-slide .hero-background {
        aspect-ratio: 3/4; /* Portrait for mobile */
    }
     .drive-slide.hero-2 .row .col-web{
        display: none;
    }
    .drive-slide.hero-2 .row .col-mob{
        display: block;
    }
    .hero-subtitle{
        margin-bottom: 0;
    }
    .hero-title{
        margin-bottom: 10px !important;
    }
    .hero-description{
        margin-bottom: 10px !important;
    }
    .btn-hero-primary{
        padding: 10px 30px !important; 
    }
    .btn-hero-secondary{padding: 10px 30px !important;}
    .hero-buttons{gap: 0;}
    
    /* Disable movement animations on mobile - keep only fade transitions */
    .hero-content,
    .hero-image,
    .hero-background,
    .hero-slide {
        transform: none !important;
        animation: none !important;
    }
    
    /* Reset any GSAP transforms on mobile */
    .hero-content,
    .hero-image,
    .impact-image {
        transform: translate(0, 0) !important;
    }
}

.hero-slide .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 126, 175, 0.2) 0%, rgba(21, 40, 69, 0.6) 100%);
    z-index: 1;
}

.drive-slide .hero-background {
    background: linear-gradient(135deg, rgba(21, 40, 69, 0.7) 0%, rgba(11, 126, 175, 0.3) 100%);
}

.solar-slide .hero-background {
    background: linear-gradient(135deg, rgba(11, 126, 175, 0.1) 0%, rgba(32, 201, 151, 0.8) 100%);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding-left: 0;
    margin-left: 0;
}
.hero-subtitle {
    font-size: 16px;
    font-weight: var(--font-weight-light);
    margin-bottom: 0px;
    opacity: 0.9;
}

.hero-title {
    font-size: 50px;
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.hero-description {
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    margin-left: 0;
}

/* ===================================
   Hero Carousel Navigation
   =================================== */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    opacity: 0.5;
}

.hero-prev:hover,
.hero-next:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-nav i {
    font-size: 18px;
}

/* ===================================
   Hero Carousel Dots
   =================================== */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10;
}

.custom-dots {
    display: inline-flex;
    gap: 10px;
}

.custom-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-dots .owl-dot.active {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.2);
}

.custom-dots .owl-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Hide default Owl Carousel elements for hero only */
.hero-section .owl-nav {
    display: none !important;
}

.hero-section .owl-dots {
    display: none !important;
}

/* Smooth transitions */
.owl-carousel .owl-item {
    transition: all 0.5s ease-in-out;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
}

/* Custom fade animation */
.owl-carousel .owl-item.fadeOut {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.owl-carousel .owl-item.fadeIn {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

.btn-hero-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-size: 14px;
    padding: 10px 30px;
    border-radius: var(--border-radius-pill);
}

.btn-hero-secondary {
    border-color: var(--white);
    color: var(--white);
    font-size: 14px;
    padding: 10px 30px;
    border-radius: var(--border-radius-pill);
}

.hero-features {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.feature-badge {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: 12px 20px;
    color: var(--white);
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
}

/* ===================================
   Solutions Section
   =================================== */
.solutions-section {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
    padding-top: 80px;
}

.section-title {
    font-size: 30px;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.section-description {
    font-size: 18px;
    color: var(--light-gray);
    line-height: 1.7;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.solution-card {
    background-color: var(--white);
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--card-shadow);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.solutions-section .row .col-lg-4:first-child .solution-card{
    background-color: #F4F5FF;
}
.solutions-section .row .col-lg-4:nth-child(2) .solution-card{
    background-color: #F7F4FF;
}
.solutions-section .row .col-lg-4:nth-child(3) .solution-card{
    background-color: #EDFBFF;
}

.card-image {
    height: auto;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solution-card:hover .card-image img {
    transform: scale(1.05);
}

.solutions-section .card-content {
    padding: 30px;
    min-height: 280px;
}
.card-content {
    padding: 30px;
}

.card-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-description {
    font-size: 16px;
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 14px;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--primary-blue);
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* ===================================
   Drive Section
   =================================== */
.drive-section {
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.drive-background{
    width: 100%;
    background-image: url('../images/drive-background-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-pill);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    will-change: transform, background-position;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.drive-background:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.drive-background:after{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 52%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Animated overlay for drive section */
.drive-animated-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(11, 126, 175, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(11, 126, 175, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
    animation: overlayShift 8s ease-in-out infinite;
}

@keyframes overlayShift {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 0.3;
    }
}

.drive-content {
    color: var(--white);
    position: relative;
    z-index: 2;
    padding-left: 0;
    margin-left: 0;
    text-align: left;
}

.drive-content > * {
    opacity: 1;
    transform: translateY(0);
    will-change: opacity, transform;
}

.drive-brand {
    font-size: 14px;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-blue-light);
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.drive-subtitle {
    font-size: 16px;
    font-weight: var(--font-weight-light);
    margin-bottom: 0px;
    opacity: 0.9;
}

.drive-title {
    font-size: 48px;
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.drive-description {
    font-size: 18px;
    font-weight: var(--font-weight-regular);
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 450px;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.btn-drive {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-size: 14px;
    padding: 10px 30px;
    border-radius: var(--border-radius-pill);
}

/* ===================================
   Difference Section
   =================================== */
.difference-section {
    padding: var(--section-padding);
    background-color: #F8F8FF;
}

.microgrid-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.microgrid-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.microgrid-image:hover img {
    transform: scale(1.02);
}

.difference-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    background-size: cover;
    background-position: bottom;
}

.difference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-blue-dark);
}

.difference-card .card-title {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.4;
}

.difference-card .card-description {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 0;
}
.difference-card-1{
    background-image: url('../images/solution-box-bg-1.png');
}
.difference-card-2{
    background-image: url('../images/solution-box-bg-2.jpg');
}
.difference-card-3{
    background-image: url('../images/solution-box-bg-3.jpg');
}
.difference-card-4{
    background-image: url('../images/solution-box-bg-4.jpg');
}

/* ===================================
   Industries Section
   =================================== */
.industries-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.industries-section .section-title {
    text-align: center;
}
.industries-carousel .owl-stage{
    padding: 20px 0;
}
/* Industry Card Color Classes */
.industry-card-blue {
    background-color: #F4F5FF !important;
}

.industry-card-purple {
    background-color: #F7F4FF !important;
}

.industry-card-green {
    background-color: #F0F8F0 !important;
}

.industry-card-cyan {
    background-color: #EDFBFF !important;
}

.industry-card-orange {
    background-color: #FFF4F0 !important;
}

.industry-card {
    border-radius: var(--border-radius-lg);
    padding: 40px 25px;
    height: 100%;
    min-height: 320px;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}


.industry-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}
.industry-icon img{
    max-width: 70px;
}


.industry-icon i {
    font-size: 24px;
    color: var(--white);
}

.industry-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left;
}

.industry-description {
    font-size: 15px;
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left;
}

/* ===================================
   Trusted Section
   =================================== */

.whyElvonTrust{
    width: 100%;
    display: inline-block;
    border: solid 1px #e5e5e5;
}

.trusted-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.btn-learn-more {
    font-size: 14px;
    padding: 8px 16px;
    background-color: var(--white);
    border-radius: var(--border-radius-pill);
}

.trusted-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    height: 100%;
    transition: all 0.3s ease;
}

.trusted-card:hover {
    transform: translateY(-8px);
}

.trusted-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.trusted-icon.innovation {
    background-color: var(--primary-blue);
}

.trusted-icon.customization {
    background-color: var(--accent-teal);
}

.trusted-icon.indian-conditions {
    background-color: var(--accent-purple);
}

.trusted-icon.safety {
    background-color: var(--accent-dark-blue);
}

.trusted-card:hover .trusted-icon {
    transform: scale(1.1);
}

.trusted-icon i {
    font-size: 32px;
    color: var(--white);
}

.trusted-section .section-title{
    margin-bottom: 0;
}
.whyElvonTrustRow{
    margin-top: -50px;
}
.trusted-section .section-title span{
    background-color: #fff;
    padding: 10px 20px;
    display: inline-block;
}

.trusted-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    margin-bottom: 5px;
    line-height: 1.4;
}

.trusted-description {
    font-size: 16px;
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===================================
   Impact Section
   =================================== */
.impact-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: #07060A;
    color: var(--white);
}

.impact-content {
    position: relative;
    z-index: 2;
    padding-left: 0;
    margin-left: 0;
    text-align: left;
}

.impact-subtitle {
    font-size: 16px;
    font-weight: var(--font-weight-light);
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 10px;
    display: block;
}

.impact-main-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
    display: block;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.btn-impact {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-size: 16px;
    padding: 10px 30px;
    border-radius: var(--border-radius-pill);
    margin-bottom: 30px;
}

.impact-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.impact-image:hover img {
    transform: scale(1.05);
}

.impact-commitment {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 30px;
}

.impact-stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.impact-stat-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 18px;
    color: var(--dark-gray);
}

.stat-title {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ===================================
   Partner Section
   =================================== */
.partner-section {
    padding: var(--section-padding);
    background-image: url('../images/partner-with-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.partner-title,
.partner-subtitle,
.partner-description {
    text-align: center;
}

.partner-title {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.partner-subtitle {
    font-size: 18px;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.partner-description {
    font-size: 16px;
    color: var(--light-gray);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   CTA Banner
   =================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    padding: 60px 0;
}

.cta-title {
    font-size: 27px;
    margin-bottom: 0;
    line-height: 1.3;
    text-align: left;
    padding-left: 0;
    margin-left: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background-color: var(--white);
    color: var(--primary-blue);
    font-size: 16px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    border: none;
}

.btn-cta-secondary {
    border-color: var(--white);
    color: var(--white);
    font-size: 16px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
}

.all-products-section{
    width: 100%;
    display: inline-block;
    padding: 60px 0;
}

/* ==============================
   Contact Page
   ============================== */
.breadcrumb-hero{
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, rgb(3 71 100 / 78%) 0%, rgb(1 16 40 / 85%) 100%), url(../images/partner-with-bg.jpg) center / cover no-repeat;
    color: #fff;
}
.breadcrumb-hero .hero-subtitle{ color: #cfe9f6; }
.breadcrumb-hero .hero-title{ color: #fff; margin: 0; }
.breadcrumb-hero .hero-description{ color: #e6f4fb; max-width: 680px; }
.breadcrumb-hero .breadcrumb{ --bs-breadcrumb-divider-color: rgba(255,255,255,0.7); }
.breadcrumb-hero .breadcrumb .breadcrumb-item,
.breadcrumb-hero .breadcrumb a{ color: rgba(255,255,255,0.85); text-decoration: none; }
.breadcrumb-hero .breadcrumb .breadcrumb-item.active{ color: #fff; }

.contact-page .contact-card-wrapper{
    border: 1px solid #e9ecef;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.contact-info-panel{
    background: linear-gradient(160deg, var(--primary-blue-dark) 0%, var(--primary-blue) 100%);
    min-height: 100%;
}

.contact-info-panel i{ color: #fff; }

.contact-form-panel{ position: relative; }
.contact-form-panel .form-control{ padding: 12px 14px; }
.contact-form-panel .btn.btn-primary{ padding: 10px 24px; border-radius: var(--border-radius-pill); }

@media (max-width: 767.98px){
    .contact-info-panel{ border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
}

/* ==============================
   Products Grid - Equal Height Cards
   ============================== */
.all-products-section .row.justify-content-center > [class*="col-"]{
    display: flex;
}

.all-products-section .solution-card{
    display: flex;
    flex-direction: column;
    height: 90%;
    border: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.all-products-section .solution-card .card-image{
    width: 100%;
    aspect-ratio: 4/4; /* consistent image box */
    background: #f8f9fa;
}

.all-products-section .solution-card .card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.all-products-section .solution-card .card-content{
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
    min-height: 80px; /* ensures consistent title area */
}

.all-products-section .card-title{
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 45px; /* equalize two-line titles */
}

/* Subtle hover polish for product cards */
.all-products-section .solution-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* Spacing between cards on smaller screens */
.all-products-section .solution-card{ margin-bottom: 24px; }

/* Responsive tweaks for product image ratio */
@media (max-width: 767.98px){
    .all-products-section .solution-card .card-image{ aspect-ratio: 1/1; }
}


/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--white);
    border-top: 1px solid #e9ecef;
}

.footer-brand .brand-logo {
    font-size: 28px;
    font-weight: var(--font-weight-black);
    color: var(--primary-blue);
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.footer-description {
    font-size: 16px;
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 14px;
    color: var(--light-gray);
    margin-bottom: 0;
}

.footer-title {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: start;
}

.footer-contact i {
    color: var(--primary-blue);
    width: 20px;
}

.footer-contact span {
    color: var(--light-gray);
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 30px;
    min-width: 30px;
    height: 30px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 16px;
}
.hero-background{
    width: 100%;
}
.impact-background{
    width: 100%;
    padding: 50px 0;
}
.copyrightSection{
    width: 100%;
    padding: 10px 0;
    display: inline-block;
}
.copyrightSectionContainer{
    border-top: 1px #e5e5e5 solid;
    width: 100%;
    display: inline-block;
    padding-top: 30px;
}
#quoteModal .modal-footer .btn-primary{
    padding: 6px 16px;
    font-weight: normal;
}
/* ===================================
   Responsive Design
   =================================== */

/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 50px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .drive-title {
        font-size: 30px;
    }
    
    .impact-main-title {
        font-size: 30px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
    /* Disable ScrollSmoother on mobile/tablet */
    #smooth-wrapper {
        position: static;
        height: auto;
        overflow: visible;
    }
    
    #smooth-content {
        position: static;
    }
    
    .hero-title {
        font-size: 35px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .drive-title {
        font-size: 30px;
    }
    
    .impact-main-title {
        font-size: 30px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: flex-end;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 20px;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    
    .btn-quote {
        margin-top: 15px;
        width: 100%;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .drive-title {
        font-size: 28px;
    }
    
    .impact-main-title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 20px;
        text-align: left;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        justify-content: center;
        align-items: center;
    }
    
    .hero-features {
        margin-top: 30px;
        align-items: center;
    }
    
    .feature-badge {
        width: 100%;
        text-align: center;
    }
    
    .industry-card {
        margin-bottom: 20px;
    }
    
    .trusted-card {
        margin-bottom: 20px;
    }
    
    .difference-card {
        margin-bottom: 20px;
    }
    
    .solution-card {
        margin-bottom: 20px;
    }
    
    /* Carousel Navigation Mobile */
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-prev {
        left: 15px;
    }
    
    .hero-next {
        right: 15px;
    }
    
    .hero-nav i {
        font-size: 14px;
    }
    
    .hero-dots {
        bottom: 20px;
    }
    
    .custom-dots .owl-dot {
        width: 10px;
        height: 10px;
    }
    .drive-background{
        padding: 60px 20px;
    }
    .drive-background:after{
        width: 100%;
    }
    .drive-animated-overlay {
        animation-duration: 6s;
    }
    .whyElvonTrustRow .col-lg-4.text-end{
        text-align: center !important;
    }
    .trusted-section .section-title span{
        text-align: center !important;width: 100%;
    }
    .drive-section{
        padding: 10px;
    }
    .industries-section{
        padding: 20px;
    }
    .hero-content{
        line-height: 17px;
    }
    .hero-title{
        margin: 4px 0 !important;
    }
    .hero-description {font-size: 13px;}
    .hero-buttons{gap: 0;}
    .hero-slide .hero-background::before{
        background: #000;
        z-index: 0;
    }
    .owl-carousel .owl-item img{height: auto;}
    .hero-carousel{margin-top: 90px;}
    .solutions-section .row.mt-5{margin-top: 0 !important;}
    .difference-card{transform: inherit !important;padding: 15px;}
    .difference-section .col-lg-7{padding: 0;}
    .industries-section .section-title{margin-bottom: 0;}
    .hero-slide .hero-background{margin-bottom: -50px;}
    .impact-background{padding-top: 100px;}
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 25px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .drive-title {
        font-size: 24px;
    }
    
    .impact-main-title {
        font-size: 24px;
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-buttons {
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .social-icons {
        justify-content: center !important;
    }
    .footer-copyright{
        text-align: center;
    }
    
    .footer .row > div {
        text-align: start;
        margin-bottom: 30px;
    }
    
    .partner-title {
        font-size: 28px;
    }
    
    .partner-subtitle {
        font-size: 16px;
    }
    
    .partner-description {
        font-size: 14px;
    }
    .whyElvonTrustRow{
        margin-top: 10px;
    }
    #smooth-content{overflow-x: hidden !important;}
    .drive-background:after{display: none;}
    .hero-buttons{margin-top: 40px;}
    .btn-hero-secondary{display: none;}
   
}

/* ===================================
   Animation & Transitions
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero content animations - only on desktop */
@media (min-width: 768px) {
    .hero-content {
        animation: fadeInLeft 1s ease-out;
    }

    .hero-features {
        animation: fadeInRight 1s ease-out 0.3s both;
    }
}

.solution-card {
    animation: fadeInUp 0.6s ease-out;
}

.difference-card {
    animation: fadeInUp 0.6s ease-out;
}

.industry-card {
    animation: fadeInUp 0.6s ease-out;
}

.trusted-card {
    animation: fadeInUp 0.6s ease-out;
}

.impact-stat-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .header,
    .btn,
    .hero-buttons,
    .cta-banner {
        display: none !important;
    }
    
    .hero-section,
    .drive-section,
    .impact-section {
        background: none !important;
        color: var(--dark-gray) !important;
    }
    
    .hero-content,
    .drive-content,
    .impact-content {
        color: var(--dark-gray) !important;
    }
    
    .solution-card,
    .difference-card,
    .industry-card,
    .trusted-card,
    .impact-stat-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* ===================================
   Custom Cursor & Mouse Animations
   =================================== */
.custom-cursor,
.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    display: none;
}

.custom-cursor {
    width: 10px;
    height: 10px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    transition: transform 0.15s ease, background-color 0.3s ease;
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0.5;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.custom-cursor.cursor-hover {
    transform: scale(1.5);
    background-color: var(--primary-blue-light);
}

.custom-cursor-follower.cursor-hover {
    width: 60px;
    height: 60px;
    opacity: 0.3;
}
.about_us_section{
    width: 100%;
    display: inline-block;
    padding: 60px 0;

}
.about_us_title span{
    width: 100%;
    display: inline-block;
    font-size: 15px;

}
.mission_section{
   width: 100%;
   display: inline-block;
   padding: 60px 0;
    background: linear-gradient(#fff, #4285f41a);
    border-bottom: 1px solid #dbeffa;
}
.mission_image{
    border: solid 4px #ffff;
        display: inline-block;
    box-shadow: 0px 0px 10px #c6dce7;
}
.core-values-section{
    width: 100%;
    display: inline-block;
    padding: 60px 0;
}
.core-value-card{
    width: 100%;
    display: inline-block;
    padding: 15px;
    padding-top: 30px;
    border: solid 1px #f3f3f3;
    transition: all 0.3s ease;
}
.core-value-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.core-value-card h5{
        font-size: 22px;
}
.core-value-card.card-style-2{
    background-color: #edf3fe;
}

.services_solutions_section{
    width: 100%;
    display: inline-block;
    padding: 60px 0;
    background: linear-gradient(#fff, #4285f41a);
    border-top: 1px solid #dbeffa;
}
.service_solution_card{
    width: 100%;
    height: 95%;
    display: inline-block;
    padding: 20px;
    border: solid 1px #e5e5e5;
    transition: all 0.3s ease;
    margin-bottom: 20px;
        background-color: #ffffff73;
}
.service_solution_card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}
.service_solution_card p{
    margin-bottom: 0;
}
.service_solution_image{
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}
.service_solution_image img{
    width: 100%;
    height: auto;
}

.key_strength_section{
    width: 100%;
    display: inline-block;
    padding: 60px 0;
}
.key_strength_section ul{
    padding: 0;
    max-width: 800px;
    margin: auto;
}
.key_strength_section li{
    width: 100%;
    display: flex;
    padding: 15px;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eee;
}
.key_strength_section li p{
    margin: 0;
}
.key_strength_section li span{
    font-size: 40px;
    color: #e5e5e5;
}
/* ===================================
   New About Us Page Design
   =================================== */

/* Hero About Section */
.hero-about-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0B7EAF 0%, #152845 50%, #0B7EAF 100%);
    overflow: hidden;
}

.hero-about-bg {
    position: relative;
    z-index: 2;
}

.hero-about-bg::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 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-about-content {
    color: white;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-badge i {
    font-size: 16px;
    color: #4da6ff;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(135deg, #4da6ff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4da6ff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Hero Visual */
.hero-about-visual {
    position: relative;
    height: 600px;
}

.hero-about-section .hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-about-section .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    color: white;
    text-align: center;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.floating-card i {
    font-size: 2rem;
    color: #4da6ff;
    margin-bottom: 10px;
    display: block;
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Vision Mission Cards */
.vision-mission-cards {
    padding: 100px 0;
}

.vision-mission-card {
    transition: all 0.3s ease;
    padding-left: 10px;
}

.vision-mission-card:hover {
    transform: translateY(-10px);
}


.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0B7EAF 0%, #4da6ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.mission-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-points li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

.mission-points li i {
    color: #0B7EAF;
    font-size: 1.2rem;
}

/* Vision Section Styles */
.vision-main {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.vision-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vision-list h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0B7EAF;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vision-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vision-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

.vision-points li i {
    color: #0B7EAF;
    font-size: 1rem;
}

/* Values Grid */
.values-grid-section {
    padding: 100px 0;
    padding-top: 0;
    background: white;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 35px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 126, 175, 0.05) 0%, rgba(77, 166, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover::before {
    opacity: 1;
}

.value-item:hover {
    transform: translateY(-10px);
    border-color: #0B7EAF;
    box-shadow: 0 20px 40px rgba(11, 126, 175, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0B7EAF 0%, #4da6ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.value-item p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Services Showcase */
.services-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 126, 175, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-overlay {
    opacity: 1;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay i {
    font-size: 3rem;
    color: white;
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Key Strengths */
.key-strengths {
    padding: 100px 0;
    background: white;
}

.strengths-content {
    padding-right: 40px;
}

.strength-list {
    margin-top: 40px;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9ff;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #0B7EAF;
}

.strength-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(11, 126, 175, 0.1);
}

.strength-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0B7EAF;
    line-height: 1;
    min-width: 60px;
}

.strength-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.strength-text p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.strengths-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.strength-chart {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.chart-item {
    text-align: center;
}

.chart-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B7EAF 0%, #4da6ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    animation: pulse 2s infinite;
}

.chart-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.chart-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Leadership Showcase */
.leadership-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4fd 100%);
}

.leader-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.leader-image {
    position: relative;
    height: 270px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 126, 175, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B7EAF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #0B7EAF;
    color: white;
    transform: scale(1.1);
}

.leader-info {
    padding: 30px;
    text-align: center;
}

.leader-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.leader-position {
    font-size: 1rem;
    color: #0B7EAF;
    font-weight: 600;
    margin-bottom: 20px;
}

.leader-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0B7EAF;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-bio h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.leader-bio p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.achievements-timeline h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.achievements-timeline .timeline-container {
    position: relative;
}

.achievements-timeline .timeline-wrapper {
    overflow: hidden;
    padding: 20px 0;
}

.achievements-timeline .timeline-track {
    display: flex;
    transition: transform 0.5s ease;
    
}

.achievements-timeline .timeline-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.achievements-timeline .timeline-item.active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #0B7EAF;
}

.achievements-timeline .timeline-year {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0B7EAF;
    text-align: center;
    margin-bottom: 10px;
    padding: 5px 10px;
    background: rgba(11, 126, 175, 0.1);
    border-radius: 10px;
}

.achievements-timeline .timeline-content h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    text-align: center;
}

.achievements-timeline .timeline-content p {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
    margin: 0;
}

.achievements-timeline .timeline-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.achievements-timeline .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(11, 126, 175, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.achievements-timeline .dot.active {
    background-color: #0B7EAF;
    transform: scale(1.2);
}

.achievements-timeline .dot:hover {
    background-color: #0B7EAF;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-about-section {
        min-height: auto;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .hero-about-visual {
        height: 500px;
        margin-top: 50px;
    }
    
    .hero-about-section .hero-image {
        width: 350px;
        height: 350px;
    }
    
    .floating-card {
        padding: 18px;
    }
    
    .floating-card i {
        font-size: 1.8rem;
    }
    
    .floating-card span {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-about-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-about-visual {
        height: 400px;
        margin-top: 40px;
    }
    
    .hero-about-section .hero-image {
        width: 300px;
        height: 300px;
        left: 0;
        top: 0;
    }
    
    .floating-card {
        padding: 15px;
    }
    
    .floating-card i {
        font-size: 1.5rem;
    }
    
    .floating-card span {
        font-size: 0.8rem;
    }
    
    .card-1 {
        top: 5%;
        left: 5%;
    }
    
    .card-2 {
        top: 15%;
        right: 5%;
    }
    
    .card-3 {
        bottom: 15%;
        left: 10%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .strength-chart {
        gap: 20px;
    }
    
    .chart-circle {
        width: 100px;
        height: 100px;
    }
    
    .leader-bio {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .leader-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-about-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        margin-bottom: 25px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 14px;
        max-width: 250px;
    }
    
    .hero-about-visual {
        height: 350px;
        margin-top: 30px;
    }
    
    .hero-about-section .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .floating-card {
        padding: 12px;
    }
    
    .floating-card i {
        font-size: 1.2rem;
    }
    
    .floating-card span {
        font-size: 0.7rem;
    }
    
    .card-1 {
        top: 2%;
        left: 2%;
    }
    
    .card-2 {
        top: 10%;
        right: 2%;
    }
    
    .card-3 {
        bottom: 10%;
        left: 5%;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .vision-lists {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .strength-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .strength-number {
        font-size: 2rem;
        min-width: auto;
    }
}

/* ===================================
   Timeline Section
   =================================== */
.history_section {
    width: 100%;
    display: inline-block;
    padding: 40px 0;
    margin-top: 30px;
}

.timeline-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.timeline-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
}

.timeline-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 18px;
}

.timeline-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(11, 126, 175, 0.3);
}

.timeline-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.timeline-btn:disabled:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.timeline-prev {
    left: -25px;
}

.timeline-next {
    right: -25px;
}

.timeline-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0 40px 0;
}

.timeline-track {
    display: flex;
    gap: 30px;
    padding: 0 20px;
    position: relative;
    transition: transform 0.5s ease;
}



.timeline-item {
    position: relative;
    min-width: 280px;
    max-width: 320px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 25px;
    transition: all 0.3s ease;
    z-index: 2;
    border: 1px solid rgba(11, 126, 175, 0.1);
    opacity: 0.6;
    transform: scale(0.9);
}

.timeline-item.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.timeline-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-blue);
    z-index: 3;
}

.timeline-year {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(11, 126, 175, 0.1) 0%, rgba(11, 126, 175, 0.05) 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(11, 126, 175, 0.2);
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-gray);
    margin-bottom: 8px;
    line-height: 1.4;
    text-align: center;
}

.timeline-content p {
    font-size: 14px;
    color: var(--light-gray);
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
}

.timeline-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(11, 126, 175, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-blue);
    transform: scale(1.2);
}

.dot:hover {
    background-color: var(--primary-blue);
    transform: scale(1.1);
}

/* Responsive Timeline */

@media (max-width: 1200px) {
    .navbar-nav .nav-link{
        letter-spacing: 1px;
        margin: 0px 2px;
    }
}
@media (max-width: 768px) {
    .timeline-track {
        gap: 20px;
        padding: 0 15px;
    }
    
    .timeline-item {
        min-width: 250px;
        max-width: 280px;
        padding: 20px;
    }
    
    .timeline-year {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .timeline-content h4 {
        font-size: 15px;
    }
    
    .timeline-content p {
        font-size: 13px;
    }
    
    .timeline-track::before {
        left: 15px;
        right: 15px;
    }
    
    .timeline-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .timeline-prev {
        left: -20px;
    }
    
    .timeline-next {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        min-width: 220px;
        max-width: 250px;
        padding: 18px;
    }
    
    .timeline-year {
        font-size: 15px;
        padding: 5px 10px;
    }
    
    .timeline-content h4 {
        font-size: 14px;
    }
    
    .timeline-content p {
        font-size: 12px;
    }
    
    .timeline-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .timeline-prev {
        left: -17px;
    }
    
    .timeline-next {
        right: -17px;
    }
    
}





/* Hide default cursor on desktop */
@media (min-width: 1024px) {
    a, button, .card-link, .solution-card, .industry-card, .trusted-card {
        cursor: pointer;
    }
    
    /* Show default cursor for navigation and footer links */
    .navbar-nav .nav-link,
    .navbar-brand,
    .navbar-toggler,
    .btn-quote,
    .footer a,
    .footer-links a,
    .social-icon {
        cursor: pointer !important;
    }
}

/* Disable custom cursor on mobile/tablet */
@media (max-width: 1023px) {
    .custom-cursor,
    .custom-cursor-follower {
        display: none !important;
    }
}

/* Card 3D Tilt Effect */
.solution-card,
.difference-card,
.industry-card,
.trusted-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Parallax Elements */
.hero-content,
.hero-image,
.impact-image {
    will-change: transform;
}

/* Smooth Mouse Interactions */
.btn,
.nav-link,
.card-link {
    transition: all 0.3s ease;
}

/* Scroll Animation Enhancements */
.section-title,
.section-description,
.solution-card,
.difference-card,
.industry-card,
.trusted-card,
.impact-stat-card,
.partner-title,
.partner-subtitle,
.partner-description,
.cta-title,
.cta-buttons {
    will-change: opacity, transform;
}

/* Ensure smooth scroll animations */
* {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* ===================================
   Accessibility
   =================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    /* Disable mouse animations for reduced motion */
    .custom-cursor,
    .custom-cursor-follower {
        display: none !important;
    }
    
    .solution-card,
    .difference-card,
    .industry-card,
    .trusted-card {
        transform: none !important;
    }
    
    /* Disable drive section animations for reduced motion */
    .drive-background {
        animation: none !important;
        transform: none !important;
    }
    
    .drive-animated-overlay {
        animation: none !important;
        opacity: 0 !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
.card-link:focus,
.social-icon:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .solution-card,
    .difference-card,
    .industry-card,
    .trusted-card,
    .impact-stat-card {
        border: 2px solid var(--dark-gray);
    }
    
    .btn-primary {
        background-color: var(--dark-gray);
        border-color: var(--dark-gray);
    }
    
    .btn-outline-light {
        border-color: var(--dark-gray);
        color: var(--dark-gray);
    }
}
