:root {
    --primary-color: #0077b6;
    --secondary-color: #48cae4;
    --light-blue: #caf0f8;
    --dark-blue: #03045e;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
}

/* Mobile touch improvements */
@media (max-width: 991.98px) {
    /* Larger touch targets for mobile */
    .btn, .nav-link, .carousel-control-prev, .carousel-control-next {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better touch feedback */
    .btn, .nav-link, .product-card, .industry-card, .testimonial-card {
        -webkit-tap-highlight-color: rgba(0, 119, 182, 0.2);
    }
    
    /* Prevent zoom on input focus */
    input, select, textarea {
        font-size: 16px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Enhanced Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    /* background-color: var(--primary-color); */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    /* background-color: var(--primary-color); */
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

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

.navbar-scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-cta {
    background-color: var(--primary-color);
    color: white !important;
    border-radius: 30px;
    padding: 8px 20px !important;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.nav-cta:before {
    display: none;
}

/* Hero Carousel Section */
.hero-carousel-section {
    position: relative;
    min-height: 100vh;
}

#heroCarousel {
    height: 100vh;
    min-height: 100vh;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100vh;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 119, 182, 0.9) 0%, 
        rgba(3, 4, 94, 0.8) 50%, 
        rgba(0, 119, 182, 0.7) 100%);
    z-index: 1;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 100px 0 50px;
    animation: fadeInUp 1s ease-out;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100% 100%;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--secondary-color);
    transform: scaleX(1.5);
}

.hero-text {
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge i {
    color: var(--secondary-color);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.text-gradient {
    background: linear-gradient(135deg, var(--secondary-color), #90e0ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
}

.benefit-item i {
    color: var(--secondary-color);
    margin-right: 8px;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-cta .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    border: none;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.4);
}

.hero-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.6);
}

.btn-arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.hero-cta .btn:hover .btn-arrow {
    transform: translateX(5px);
}

.hero-cta .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.hero-trust {
    animation: fadeInUp 1s ease-out 1.2s both;
}

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Feature Box */
.hero-feature-box {
    position: relative;
    height: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInRight 1s ease-out 0.8s both;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.feature-content p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.feature-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    border-radius: 12px;
    padding: 25px;
    margin-top: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    color: white;
    text-align: center;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.feature-highlight h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-highlight p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    z-index: 2;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fillMeter {
    to { width: 99%; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes growBar {
    from { height: 8px; }
    to { height: var(--bar-height, 30px); }
}

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

/* Dynamic bar heights */
.chart-bar[data-height="85"] { --bar-height: 34px; }
.chart-bar[data-height="92"] { --bar-height: 37px; }
.chart-bar[data-height="78"] { --bar-height: 31px; }
.chart-bar[data-height="96"] { --bar-height: 38px; }

.products-teaser-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.products-teaser-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231E90FF' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #1E90FF, #4169E1);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #666;
    font-size: 18px;
}

.products-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    z-index: 1;
    position: relative;
}

.product-card {
    background-color: white;
    border-radius: 12px;
    flex: 0 0 calc(33.333% - 30px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* New image styling */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
    border-radius: 12px 12px 0 0;
}

.product-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Hover overlay effect */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(30, 144, 255, 0.8), rgba(65, 105, 225, 0.8));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.product-card:hover .hover-overlay {
    opacity: 1;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.product-card:hover .icon-circle {
    transform: scale(1);
}

.icon-circle i {
    font-size: 24px;
    color: #1E90FF;
}

/* Product content */
.product-content {
    padding: 25px 30px;
    text-align: left;
}

.product-content h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.product-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1E90FF, #4169E1);
}

.product-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    color: #1E90FF;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: #4169E1;
}

.learn-more:hover i {
    transform: translateX(5px);
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, #1E90FF, #4169E1);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

.btn-view-all span {
    margin-right: 10px;
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.4);
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 100%;
    }
    
    .product-image-wrapper {
        height: 200px;
    }
}



/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}
.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231E90FF' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}
.section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
    text-align: center;
}
.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--dark-blue));
    border-radius: 2px;
}
.section-title p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
}
/* Industry Card Link Styling */
.industry-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

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

.industry-card {
    text-align: center;
    padding: 0;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.industry-link:hover .industry-card {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Industry Card Overlay */
.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.9), rgba(3, 4, 94, 0.8));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.industry-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.industry-link:hover .industry-overlay {
    opacity: 1;
}

.industry-link:hover .industry-overlay i {
    transform: scale(1);
}
.industry-image {
    height: 220px;
    overflow: hidden;
    margin-bottom: 0;
}
.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.industry-card:hover .industry-image img {
    transform: scale(1.05);
}
.industry-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: var(--dark-blue);
    transition: color 0.3s ease;
    padding: 0 20px;
}
.industry-card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    padding: 0 25px 30px;
    transition: color 0.3s ease;
}
.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--dark-blue));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
/* .industry-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
} */
.industry-card:hover h3 {
    color: var(--primary-color);
}
/* Add a subtle hover effect to indicate the card is clickable */
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1) 0%, rgba(var(--dark-blue-rgb), 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.industry-card:hover::before {
    opacity: 1;
}

/* Why Choose Us */
.why-choose-section {
    padding: 80px 0;
    background-color: white;
}

.choose-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.choose-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 24px;
}

.choose-text h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.choose-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.clients-section {
    padding: 80px 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231E90FF' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E"); */
    opacity: 0.5;
    z-index: 0;
}

.client-slider-container {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    margin: 0 -15px;
    z-index: 1;
}

.client-slider {
    display: flex;
    animation: slide 30s linear infinite;
    width: fit-content;
}

.client-logo {
    flex: 0 0 auto;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.client-logo img {
    max-width: 180px;
    max-height: 80px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231E90FF' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.testimonial-card {
    padding: 30px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin: 20px 15px;
    position: relative;
}

.testimonial-card:before {
    content: '\201C';
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--light-blue);
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.user-icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
    transition: all 0.3s ease;
}

.user-icon-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
}

.user-icon-circle i {
    color: white !important;
}

.author-info h5 {
    margin-bottom: 5px;
    font-size: 18px;
}

.author-info p {
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="white" opacity="0.1"/></svg>');
    background-repeat: repeat;
    opacity: 0.3;
}

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}

.cta-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cta-form h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.form-control {
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-about img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4:after {
    content: '';
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
    min-width: 20px;
}

.footer-social {
    list-style: none;
    padding: 0;
    display: flex;
}

.footer-social li {
    margin-right: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
}

/* Enhanced Responsive Styles */

/* Mobile First Approach - Base styles for mobile */
@media (max-width: 575.98px) {
    /* Typography */
    .section-title h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .section-title p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    /* Navbar */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
    
    .navbar-toggler {
        border: none;
        padding: 4px 8px;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 15px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 0;
        margin: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .nav-cta {
        margin: 15px auto 10px;
        display: inline-block;
        text-align: center;
    }
    
    /* Hero Section */
    /* .hero-section {
        min-height: 100vh;
    } */

    .carousel-control-prev, .carousel-control-next {
        display: none;
    }
    
    .hero-content {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .trust-stats {
        gap: 25px;
        justify-content: center;
        text-align: center;
    }
    
    .stat-item {
        flex: 1;
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-feature-box {
        display: none;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .scroll-indicator span {
        font-size: 0.8rem;
    }
    
    /* Products Section */
    .products-teaser-section {
        padding: 50px 0;
    }
    
    .products-showcase {
        gap: 20px;
        margin-top: 30px;
    }
    
    .product-card {
        flex: 0 0 100%;
        max-width: none;
        margin: 0 15px;
    }
    
    .product-image-wrapper {
        height: 180px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .product-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .product-content p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .btn-view-all {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Why Choose Section */
    .why-choose-section {
        padding: 50px 0;
    }
    
    .choose-item {
        margin-bottom: 25px;
        text-align: left;
    }
    
    .choose-icon {
        font-size: 20px;
        margin-right: 12px;
    }
    
    .choose-text h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .choose-text p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .why-choose-img {
        margin-top: 30px;
    }
    
    /* Industries Section */
    .industries-section {
        padding: 50px 0;
    }
    
    .industry-card {
        margin-bottom: 25px;
    }
    
    .industry-image {
        height: 160px;
    }
    
    .industry-card h3 {
        font-size: 18px;
        margin: 20px 0 10px;
    }
    
    /* Clients Section */
    .clients-section {
        padding: 40px 0;
    }
    
    .client-slider-container {
        padding: 20px 0;
    }
    
    .client-logo {
        margin: 0 10px;
    }
    
    .client-logo img {
        max-width: 90px;
        max-height: 45px;
    }
    
    /* Testimonials Section */
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonial-card {
        margin: 15px 10px;
        padding: 20px;
    }
    
    .testimonial-text p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .author-info h5 {
        font-size: 16px;
    }
    
    .author-info p {
        font-size: 13px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .cta-content ul li {
        font-size: 14px;
    }
    
    .cta-form {
        margin-top: 30px;
        padding: 25px 20px;
    }
    
    .cta-form h3 {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .footer-about {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-about img {
        max-width: 150px;
    }
    
    .footer-about p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-contact-info li {
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .footer-bottom {
        margin-top: 25px;
        font-size: 13px;
    }
}

/* Tablet Portrait */
@media (min-width: 576px) and (max-width: 767.98px) {
    /* Typography */
    .section-title h2 {
        font-size: 28px;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 90px 0 45px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 22px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-benefits {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 35px;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: flex-start;
        gap: 18px;
        margin-bottom: 45px;
    }
    
    .hero-cta .btn {
        width: auto;
        min-width: 180px;
    }
    
    .trust-stats {
        gap: 35px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    /* Products Section */
    .products-teaser-section {
        padding: 60px 0;
    }
    
    .product-card {
        flex: 0 0 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .product-image-wrapper {
        height: 200px;
    }
    
    /* Why Choose Section */
    .why-choose-section {
        padding: 60px 0;
    }
    
    /* Industries Section */
    .industries-section {
        padding: 60px 0;
    }
    
    .industry-image {
        height: 180px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-form {
        margin-top: 30px;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 991.98px) {
    /* Hero Section */
    .hero-content {
        padding: 95px 0 50px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
    
    .hero-feature-box {
        min-height: 400px;
    }
    
    .feature-grid {
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .feature-content h4 {
        font-size: 1rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
    
    /* Products Section */
    .product-card {
        flex: 0 0 calc(50% - 20px);
    }
    
    /* Client Logos */
    .client-logo {
        margin: 0 20px;
    }
    
    .client-logo img {
        max-width: 140px;
        max-height: 65px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .product-card {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .client-logo img {
        max-width: 180px;
        max-height: 80px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: clamp(3rem, 4vw, 4rem);
    }
    
    .hero-description {
        font-size: 1.3rem;
        max-width: 650px;
    }
    
    .hero-feature-box {
        min-height: 500px;
    }
    
    .feature-grid {
        gap: 25px;
    }
    
    .feature-item {
        padding: 25px;
    }
    
    .trust-stats {
        gap: 50px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* Fix for mobile menu toggle */
@media (max-width: 991.98px) {
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        margin-top: 15px;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
}

/* Additional Mobile Performance Optimizations */
@media (max-width: 767.98px) {
    /* Reduce animations on mobile for better performance */
    .carousel-item {
        transition: transform 0.3s ease-in-out;
    }
    
    /* Optimize image loading on mobile */
    img {
        max-width: 100%;
        height: auto;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Better mobile scrolling */
    .client-slider {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile-specific button spacing */
    .carousel-caption .btn {
        margin: 8px 4px;
    }
    
    /* Improve mobile form experience */
    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(0, 119, 182, 0.25);
        outline: none;
    }
    
    /* Mobile-specific spacing adjustments */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Ensure proper mobile menu behavior */
    .navbar-nav .nav-item {
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        width: 100%;
    }
}

/* High-resolution display optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Optimize for retina displays */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-size: 100% 100%;
    }
}

/* Industry Page Styles */

/* Industry Hero Section */
.industry-hero-section {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.industry-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.industry-hero-content {
    color: white;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 30px;
    display: inline-block;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.industry-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.industry-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.industry-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Industry Applications Section */
.industry-applications-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.applications-grid {
    margin-top: 50px;
}

.application-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.application-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.application-image {
    height: 200px;
    overflow: hidden;
}

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

.application-card:hover .application-image img {
    transform: scale(1.1);
}

.application-content {
    padding: 25px;
}

.application-content h4 {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.application-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Industry Videos Section */
.industry-videos-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f8ff 100%);
}

/* Industry Benefits Section */
.industry-benefits-section {
    padding: 100px 0;
    background-color: white;
}

.benefits-content {
    padding-right: 30px;
}

.benefits-content h2 {
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    gap: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.benefits-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Industry CTA Section */
.industry-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    color: white;
    position: relative;
    overflow: hidden;
}

.industry-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="white" opacity="0.1"/></svg>');
    background-repeat: repeat;
    opacity: 0.3;
}

.industry-cta-section .cta-content {
    position: relative;
    z-index: 1;
}

.industry-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.industry-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Video Card Styles */
.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.video-container {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-container[poster] {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.video-info {
    padding: 20px;
}

.video-title {
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.video-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive adjustments for industry pages */
@media (max-width: 768px) {
    .industry-hero-section {
        padding: 100px 0 60px;
    }
    
    .industry-hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .industry-hero-description {
        font-size: 1rem;
    }
    
    .industry-stats {
        gap: 25px;
        justify-content: center;
    }
    
    .industry-applications-section,
    .industry-videos-section,
    .industry-benefits-section,
    .industry-cta-section {
        padding: 60px 0;
    }
    
    .benefits-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .benefits-content h2 {
        font-size: 1.8rem;
    }
    
    .benefit-item {
        margin-bottom: 25px;
        gap: 15px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .industry-cta-section h2 {
        font-size: 2rem;
    }
    
    .industry-cta-section p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .video-card {
        margin-bottom: 20px;
    }
    
    .video-container {
        aspect-ratio: 16/9;
    }
    
    .application-image {
        height: 180px;
    }
    
    .application-content {
        padding: 20px;
    }
}