/* Custom CSS for Sanskar Website */

/* Global Styles */
:root {
    --primary-color: #ffaa21;
    --primary-dark: #ff9a00;
    --primary-light: #ff8533;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

/* Override Bootstrap Primary Color */
.bg-primary {
    background-color: var(--primary-color) !important;
    /* background: linear-gradient(135deg, #ffaa21 0%,#ffaa21 100%) !important; */
    background: linear-gradient(135deg, #ffaa21 0%, #ff9a00 100%) !important;

}

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

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

/* Navigation Bar */
.navbar {
    background-color: #fff !important;
    padding: 0.5rem 0 !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 60px !important;
    max-height: 60px !important;
    height: 60px !important;
}

.navbar .container {
    display: flex !important;
    align-items: center !important;
    height: 60px !important;
    max-height: 60px !important;
    position: relative;
}

/* Mobile dropdown menu: give it its own solid panel so it doesn't render
   transparently over the hero image behind the fixed-height navbar. */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        padding: 0.5rem 1.5rem 1rem;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        padding: 0.65rem 0;
        margin: 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 45px !important;
    max-height: 45px !important;
    line-height: 45px !important;
    overflow: hidden !important;
}

.brand-text {
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
    display: flex !important;
    align-items: center !important;
    height: 45px !important;
    max-height: 45px !important;
    line-height: 45px !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.brand-text img {
    display: block !important;
    /* max-height: 45px !important; */
    height: 160px !important;
    width: auto !important;
    max-width: 300px !important;
    object-fit: contain !important;
    object-position: left center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.brand-text1 img {
    display: block !important;
    /* max-height: 45px !important; */
    height: 100px !important;
    width: auto !important;
    max-width: 300px !important;
    object-fit: contain !important;
    object-position: left center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar-nav .nav-link {
    position: relative;
    color: #000 !important;
    font-weight: 500;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    margin: 0 0.5rem;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    letter-spacing: -0.01em;
    font-size: 0.95rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--primary-color);
    transition: right 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    right: 0;
}

.navbar-nav .nav-link.dropdown-toggle::after {
    border-top-color: #000;
}

.navbar-toggler {
    border-color: var(--primary-color);
}

.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(255, 102, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
    background-color: #fff;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    color: #333;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: var(--primary-color);
    color: #fff;
}

.dropdown-item.active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Hero Carousel Section */
.hero-carousel-section {
    position: relative;
    margin-top: 0px;
}

.hero-carousel-section .carousel {
    position: relative;
}

.hero-carousel-section .carousel-item {
    min-height: 300px;
}

.carousel-image {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    padding-top: 0;
}

/* Video Carousel Styles */
.carousel-video-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
}

.carousel-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.carousel-content.container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* Carousel controls removed - auto-rotate only */

/* Modern Hero Content */
.text-accent {
    color: var(--primary-color);
}

.text-accent-dark {
    color: var(--primary-dark);
}

.hero-modern-row {
    min-height: 460px;
    padding: 2rem 0 3rem;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--primary-color);
}

.hero-feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin: 1.75rem 0 2rem;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    width: 110px;
}

.hero-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.hero-feature-label {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-hero-primary,
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-hero-primary {
    background: var(--primary-color);
    color: #fff;
    border: 1.5px solid var(--primary-color);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

/* Hero Stats Bar - inline, sits under the hero CTAs inside the carousel */
.hero-stats-bar-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2.25rem;
    /* border: 1px solid rgba(255, 255, 255, 0.25); */
    border-radius: 10px;
    background:#101A28;
    padding: 0.25rem 0;
}

.hero-stat-item {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    min-width: 180px;
}

.hero-stat-item:last-child {
    border-right: none;
}

.hero-stat-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 170, 33, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.hero-stat-text h3 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.15rem;
    line-height: 1;
}

.hero-stat-text h3 small {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero-stat-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* Why Choose Section */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: var(--primary-color);
}

.why-card {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 2.25rem 1.5rem 2rem;
    height: 100%;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.why-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.25rem;
}

.why-card-icon-orange {
    background: rgba(255, 170, 33, 0.15);
    color: var(--primary-color);
}

.why-card-icon-blue {
    background: rgba(47, 128, 237, 0.12);
    color: #2f80ed;
}

.why-card-icon-green {
    background: rgba(39, 174, 96, 0.12);
    color: #27ae60;
}

.why-card-icon-purple {
    background: rgba(142, 68, 173, 0.12);
    color: #8e44ad;
}

.why-card-underline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    display: block;
}

.why-card-underline-orange {
    background: var(--primary-color);
}

.why-card-underline-blue {
    background: #2f80ed;
}

.why-card-underline-green {
    background: #27ae60;
}

.why-card-underline-purple {
    background: #8e44ad;
}

/* Hero Section (Fallback) */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #ffaa21 0%, #ff8533 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

/* Typography Improvements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #212529;
}

h1 {
    font-size: clamp(1.875rem, 1.4rem + 2vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.75rem, 1.5rem + 1vw, 2.4375rem);
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: -0.01em;
    color: #333;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.display-1, .display-2, .display-3,.display-4 .display-5, .display-6 {
    font-family:  Arial;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.display-4{
    font-size: 5.5rem;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-semibold {
    font-weight: 600 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.hero-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hero-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease;
    letter-spacing: -0.01em;
    line-height: 1.6;
}

/* Card Typography */
.card-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.card-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    letter-spacing: -0.01em;
    text-align: left;
}

/* List Items */
ul li, ol li {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

/* Small Text */
small, .small {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.01em;
}

/* Badge Typography */
.badge {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

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

/* Tagline Section */
.tagline-section {
    background: linear-gradient(135deg, #ffaa21 0%, #ff8533 100%);
    padding: 3rem 0;
}

/* Filter Cards */
.filter-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.filter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.filter-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.filter-card ul li:last-child {
    border-bottom: none;
}

.filter-card ul li a {
    color: #000;
    transition: color 0.3s ease;
    font-weight: 500;
}

.filter-card ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Customer Logos */
.customer-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    color: #000;
    font-weight: 600;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    width: 250px;      /* Increased from 200px */
    height: 150px;     /* Increased from 110px */
    background: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.client-logo-img {
    max-width: 200px;  /* Increased from 150px */
    max-height: 90px;  /* Increased from 60px */
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
/* Hover Effect */
.client-logo-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.customer-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

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

.product-icon {
    color: var(--primary-color);
}

.product-card .card-title {
    color: #000;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
}

.product-card .card-text {
    color: #333;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
}

/* News Cards */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.news-date {
    font-size: 0.9rem;
    color: #000;
}

.news-card .card-title {
    color: #000;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
}

.news-card .card-text {
    color: #333;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
}

/* Testimonial Card */
.testimonial-card {
    border-radius: 15px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe6d9 100%);
}

.testimonial-card .card-title {
    color: #000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.testimonial-card .lead {
    color: #333;
}

.testimonial-avatar {
    font-size: 1.5rem;
    background: var(--primary-color) !important;
}

/* Statistics Section */
.stat-item {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-item h1 {
    color: #fff;
}

.stat-item p {
    color: #fff;
}

.stat-item:hover {
    transform: scale(1.05);
}

/* Contact Form */
.form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 170, 33, 0.25);
}

.btn {
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ffaa21 0%, #ff8533 100%);
    border: none;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
    background: linear-gradient(135deg, #ff9a00 0%, #ffaa21 100%);
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

/* Footer */
footer {
    background-color: #1a1a1a !important;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff !important;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-carousel-section .carousel-item {
        min-height: 250px;
    }
    
    .carousel-image {
        min-height: 250px;
    }
    
    .carousel-content {
        padding: 1.5rem 0;
    }
    
    .carousel-content.container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.3;
        padding-bottom: 0rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.5;
        margin-bottom: 0rem !important;
        padding-top: 0rem;
    }
    .db-text-white-mb-3 {
        color: white !important;
        margin-bottom: 0rem !important;
        padding-top: 0rem;
        padding-left: 1rem;
        padding-right: 2rem;
    }
    .display-5 {
        font-size: 2rem;
    }
    
    .display-3 {
        font-size: 1.75rem;
    }
    
    .display-2 {
        font-size: 1.75rem;
    }
    
    .carousel-content .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-carousel-section .carousel-control-prev,
    .hero-carousel-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-carousel-section .carousel-control-prev {
        left: 10px;
    }
    
    .hero-carousel-section .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .carousel-content.container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.3;
        padding-bottom: 0rem !important;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.5;
        margin-bottom: 0rem !important;
        padding-top: 0rem;
    }

    .carousel-content .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Modern Hero - Mobile */
@media (max-width: 991.98px) {
    .hero-modern-row {
        min-height: auto;
        padding: 1.5rem 0 2.5rem;
        text-align: left;
    }

    .hero-feature-row {
        gap: 1.25rem;
        margin: 1.5rem 0;
    }

    .hero-stats-bar-inline {
        flex-wrap: nowrap;
        margin-top: 1.75rem;
        padding: 1rem 0.5rem;
    }

    .hero-stat-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.4rem;
        padding: 0 0.5rem;
        min-width: 0;
    }

    .hero-stat-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .hero-stat-text h3 {
        font-size: 1.1rem;
    }

    .hero-stat-text p {
        font-size: 0.68rem;
        line-height: 1.3;
    }
}

@media (max-width: 575.98px) {
    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
    }

    .hero-feature-row {
        gap: 0.75rem;
    }

    .hero-feature-item {
        width: 84px;
    }

    .hero-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-feature-label {
        font-size: 0.72rem;
    }

    .hero-actions {
        flex-wrap: nowrap;
        gap: 0.6rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        flex: 1 1 0;
        justify-content: center;
        padding: 0.7rem 0.75rem;
        font-size: 0.85rem;
        white-space: normal;
        text-align: center;
    }

    .why-card {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .why-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    .brand-text img {
    display: block !important;
    /* max-height: 45px !important; */
    height: 160px !important;
    width: auto !important;
    max-width: 180px !important;
    object-fit: contain !important;
    object-position: left center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.brand-text1 img {
    display: block !important;
    /* max-height: 45px !important; */
    height: 100px !important;
    width: auto !important;
    max-width: 150px !important;
    object-fit: contain !important;
    object-position: left center !important;
    margin: 0 !important;
    padding: 0 !important;
}
}


@media (max-width: 400.98px) {
    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
    }

    .hero-feature-row {
        gap: 0.75rem;
    }

    .hero-feature-item {
        width: 84px;
    }

    .hero-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-feature-label {
        font-size: 0.72rem;
    }

    .hero-actions {
        flex-wrap: nowrap;
        gap: 0.6rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        flex: 1 1 0;
        justify-content: center;
        padding: 0.7rem 0.75rem;
        font-size: 0.85rem;
        white-space: normal;
        text-align: center;
    }

    .why-card {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .why-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    .brand-text img {
    display: block !important;
    /* max-height: 45px !important; */
    height: 160px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
    object-position: left center !important;
    margin: 0 !important;
    padding: 0 !important;
}

.brand-text1 img {
    display: block !important;
    /* max-height: 45px !important; */
    height: 100px !important;
    width: auto !important;
    max-width: 130px !important;
    object-fit: contain !important;
    object-position: left center !important;
    margin: 0 !important;
    padding: 0 !important;
}
}

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

/* Section Spacing */
section {
    /* padding: 4rem 0; */
    padding-top: 4rem;
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #ffaa21 0%, #ff8533 100%);
}

/* Page Header with Image */
.page-header-image {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Network Route Section */
.network-route {
    overflow-x: auto;
}

.network-route .badge {
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Map Styles */
#mumbaiMap {
    z-index: 1;
}

.custom-tower-icon {
    background: transparent !important;
    border: none !important;
    text-align: center;
}

.custom-tower-icon div:last-child {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.leaflet-popup-content {
    margin: 12px;
}

.leaflet-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media (max-width: 768px) {
    #mumbaiMap {
        height: 400px !important;
    }
    
    .network-route {
        text-align: left !important;
    }
    
    .network-route .bi-arrow-right {
        display: block;
        margin: 1.5rem 0;
        transform: rotate(90deg);
    }
    
    .network-route .badge {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Contact Icons */
.contact-icon {
    flex-shrink: 0;
}

/* Contact Page */
.contact-page {
    padding: 5rem 0 4rem;
    background-color: #fff;
}

.contact-divider {
    border: 0;
    border-top: 1px solid #dee2e6;
    margin: 0;
    opacity: 1;
}

.contact-divider-dashed {
    border-top-style: dashed;
    margin-top: 1.5rem;
}

.contact-section-divider {
    margin: 3.5rem 0;
}

.contact-page-header {
    margin-bottom: 3rem;
}

.contact-page-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 1.5rem 0 0.75rem;
    color: #000;
}

.contact-page-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 0;
}

.contact-main-section {
    margin-bottom: 0;
}

.contact-panel {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-panel-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
    color: #000;
}

.contact-details-list li + li {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.contact-detail-label {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: #000;
    margin-bottom: 0.35rem;
}

.contact-detail-note {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.contact-details-list a {
    color: #333;
    transition: color 0.3s ease;
}

.contact-details-list a:hover {
    color: var(--primary-color);
}

.contact-inquiry-form .form-label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}

.contact-inquiry-form .form-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-inquiry-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 170, 33, 0.25);
}

/* Contact form: submit feedback */
.contact-form-status {
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form-status:empty {
    display: none;
}

.contact-form-status-success {
    padding: 0.75rem 1rem;
    background-color: #fff8ee;
    border: 1px solid #ffd9a0;
    color: #7a4a00;
}

.contact-form-status-error {
    padding: 0.75rem 1rem;
    background-color: #fdecea;
    border: 1px solid #f5c2be;
    color: #7a1f16;
}

#contactFormSubmit.is-loading {
    opacity: 0.75;
    cursor: progress;
}

.contact-inquiry-form .form-control.is-invalid,
.contact-inquiry-form .form-select.is-invalid {
    border-color: #dc3545;
}

.contact-inquiry-form.was-validated .form-control:invalid,
.contact-inquiry-form.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.contact-team-section {
    text-align: center;
}

.contact-team-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    color: #000;
}

.contact-team-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-team-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #fff;
}

.contact-team-icon-director {
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
}

.contact-team-icon-projects {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.contact-team-icon-accounts {
    background: linear-gradient(135deg, #8b6914 0%, #6b4f0f 100%);
}

.contact-team-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #000;
}

.contact-team-role {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.15rem;
}

.contact-team-dept {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.contact-team-info {
    text-align: left;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.contact-team-info a {
    color: #333;
    word-break: break-word;
}

.contact-team-info a:hover {
    color: var(--primary-color);
}

@media (max-width: 991.98px) {
    .contact-page {
        padding-top: 4.5rem;
    }

    .contact-panel {
        padding: 1.5rem;
    }

    .contact-section-divider {
        margin: 2.5rem 0;
    }
}

/* Services Showcase */
.services-showcase {
    background-color: #fff;
}

.services-showcase-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    color: #000;
}

.services-showcase-subtitle {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-showcase-lead {
    font-size: 1.1rem;
    color: #555;
    max-width: 720px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
}

.services-showcase-divider {
    border: 0;
    border-top: 2px solid #dee2e6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 1;
}

.service-showcase-item {
    padding: 0.5rem 0;
}

.service-showcase-separator {
    border: 0;
    border-top: 1px solid #e9ecef;
    margin: 3rem 0;
    opacity: 1;
}

.service-showcase-name {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-showcase-icon {
    font-size: 1.35rem;
    line-height: 1;
}

.service-showcase-desc {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.service-showcase-list li {
    padding: 0.35rem 0;
    font-size: 1rem;
    color: #333;
}

.service-showcase-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-showcase-image img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-showcase-content {
    padding: 0.5rem 0;
}

@media (max-width: 991.98px) {
    .service-showcase-image {
        margin-bottom: 0.5rem;
    }

    .service-showcase-image img {
        height: 240px;
    }

    .service-showcase-separator {
        margin: 2rem 0;
    }
}

/* Service Offerings Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
}

.service-icon {

    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.deployment-process{
    
}

.process-timeline{

    position:relative;

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:24px;

    align-items:start;

    margin-top:50px;
}

.timeline-line{

    position:absolute;

    top:55px;

    left:8%;

    width:84%;

    height:4px;

    background:#ffaa21;

    z-index:0;
}

.process-card{

    position:relative;

    z-index:2;

    background:#fff;

    border-radius:16px;

    padding:35px 20px;

    text-align:center;
    min-height:400px;      /* Same height for all cards */
    height: 400px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid #ececec;
}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.step-circle{

    width:54px;

    height:54px;

    margin:auto;

    border-radius:50%;

    background:#ffaa21;

    color:#fff;

    font-weight:700;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:18px;

    margin-bottom:18px;
}

.step-icon{

    width:75px;

    height:75px;

    margin:auto;

    border-radius:50%;

    background:#fff7eb;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    color:#ffaa21;

    margin-bottom:20px;
}

.process-card h5{

    font-weight:700;

    margin-bottom:12px;
}

.process-card p{

    color:#666;

    font-size:14px;

    line-height:1.6;
}

/* Deployment timeline: prevent horizontal overflow on smaller screens */
@media (max-width: 991.98px) {
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
    }

    .timeline-line {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-card {
        height: auto;
        min-height: unset;
        padding: 28px 20px;
    }
}

/* Services Hero (header of the Services section) */
.services-hero {
    padding: 1rem 0 2.5rem;
}

.services-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: left;
}

.services-hero-eyebrow-dash {
    display: inline-block;
    width: 16px;
    height: 10px;
    background: var(--primary-color);
}

.services-hero-title {
    text-align: left;
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #14203a;
    margin-bottom: 0.75rem;
}

.services-hero-subtitle {
    text-align: left;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 700;
    color: #14203a;
    margin-bottom: 1rem;
}

.services-hero-desc {
    text-align: left;
    color: #555;
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.services-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
}

.services-hero-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.services-hero-badge-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 170, 33, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.services-hero-badge-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #14203a;
}

.services-hero-badge-text p {
    text-align: left;
    margin: 0;
    font-size: 0.8rem;
    color: #666;
}

.services-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.services-hero-banner {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-color: #ffffff;
  
  /* Background image positioned to the right */
  background-image: 
    linear-gradient(
      to right, 
      #ffffff 25%, 
      rgba(255, 255, 255, 0.85) 50%, 
      rgba(255, 255, 255, 0) 65%
    ),
    url('../assets/images/services1.png'); /* Use your new wide cover image */
  
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

/* Badge styling helper for horizontal flex arrangement */
.services-hero-badges {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.services-hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
  .services-hero-banner {
    background-image: 
      linear-gradient(
        to bottom, 
        rgba(255, 255, 255, 0.95) 40%, 
        rgba(255, 255, 255, 0.4) 100%
      ),
      url('assets/images/sevices1.png');
    padding: 40px 0;
  }
}

@media (max-width: 991.98px) {
    .services-hero-image img {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .services-hero {
        padding: 0.5rem 0 2rem;
    }

    .services-hero-badges {
        gap: 1.25rem;
    }

    .services-hero-image img {
        height: 220px;
    }
}

/* Why Choose Us (Services section) */
.services-why-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.services-why-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 170, 33, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.services-why-text h5 {
    position: relative;
    padding-bottom: 0.85rem;
    margin-bottom: 0.75rem;
}

.services-why-text h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    background: var(--primary-color);
}

/* Services Banner */
.services-banner {
    background: linear-gradient(135deg, #0b1f3a 0%, #122b52 100%);
    padding: 2.5rem 0;
}

.services-banner-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.services-banner-lead {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1 1 260px;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.services-banner-lead-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border-radius: 16px;
}

.services-banner-lead h4 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0.4rem;
}

.services-banner-lead p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    margin: 0;
}

.services-banner-item {
    flex: 1 1 180px;
    text-align: center;
}

.services-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0 auto 0.6rem;
    border-radius: 50%;
    background: rgba(255, 170, 33, 0.15);
    color: var(--primary-color);
    font-size: 1.2rem;
}

.services-banner-item h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.services-banner-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 991.98px) {
    .services-banner-lead {
        flex: 1 1 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 0;
        padding-bottom: 1.5rem;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: #fff;
    overflow: hidden;
}

.gallery-grid {
    column-count: 1;
    column-gap: 1.25rem;
}

@media (min-width: 576px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        column-count: 3;
    }
}

@media (min-width: 1400px) {
    .gallery-grid {
        column-count: 4;
    }
}

.gallery-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 1.25rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transform: translateZ(0);
}

.gallery-item.is-visible {
    animation-delay: var(--gallery-delay, 0s);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 31, 58, 0) 40%, rgba(11, 31, 58, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover .gallery-item-overlay,
.gallery-item:focus-visible .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transform: translateY(10px) scale(0.85);
    transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-item-icon {
    transform: translateY(0) scale(1);
}

.gallery-item-caption {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    padding: 0 1rem;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.35s ease 0.05s, opacity 0.35s ease 0.05s;
}

.gallery-item:hover .gallery-item-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1080;
    background: rgba(6, 14, 28, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-figure {
    max-width: min(90vw, 1100px);
    max-height: 88vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.gallery-lightbox-figure img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-lightbox.active .gallery-lightbox-figure img {
    opacity: 1;
    transform: scale(1);
}

.gallery-lightbox-figure figcaption {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.gallery-lightbox-close {
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
}

.gallery-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
}

.gallery-lightbox-nav:hover {
    transform: translateY(-50%) scale(1.08);
}

.gallery-lightbox-prev {
    left: 24px;
}

.gallery-lightbox-next {
    right: 24px;
}

@media (max-width: 575.98px) {
    .gallery-item-overlay {
        opacity: 1;
        justify-content: flex-end;
        background: linear-gradient(180deg, rgba(11, 31, 58, 0) 55%, rgba(11, 31, 58, 0.85) 100%);
    }

    .gallery-item-icon {
        display: none;
    }

    .gallery-item-caption {
        transform: translateY(0);
        opacity: 1;
        padding-bottom: 0.75rem;
    }

    .gallery-lightbox-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .gallery-lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .gallery-lightbox-prev {
        left: 10px;
    }

    .gallery-lightbox-next {
        right: 10px;
    }
}

/* Accessibility: visible keyboard focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible,
.form-select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Subtle icon hover polish inside cards */
.card .bi {
    transition: transform 0.3s ease;
}

.card:hover .bi {
    transform: scale(1.08) rotate(-3deg);
}

/* Footer: center-align content */
footer .col-lg-3,
footer .col-md-6 {
    text-align: center;
}

/* Scroll reveal animation (progressive enhancement) */
/* Uses the `animation` property (not `transition`) so it never collides
   with components that already declare their own hover transitions. */
.reveal {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
    }

    .reveal.is-visible {
        animation: reveal-fade-up 0.6s ease forwards;
    }

    @keyframes reveal-fade-up {
        from {
            opacity: 0;
            transform: translateY(24px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Sequential reveal for the deployment timeline */
    .process-timeline .process-card:nth-child(2).is-visible { animation-delay: 0.05s; }
    .process-timeline .process-card:nth-child(3).is-visible { animation-delay: 0.1s; }
    .process-timeline .process-card:nth-child(4).is-visible { animation-delay: 0.15s; }
    .process-timeline .process-card:nth-child(5).is-visible { animation-delay: 0.2s; }
    .process-timeline .process-card:nth-child(6).is-visible { animation-delay: 0.25s; }
    .process-timeline .process-card:nth-child(7).is-visible { animation-delay: 0.3s; }
}