@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Kannada:wght@300;400;500;600;700;800;900&family=Tiro+Kannada:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #457b9d;
    --light-color: #f1faee;
    --dark-color: #1d3557;
    --success-color: #2a9d8f;
    --text-color: #333;
    --light-text: #666;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    /* Space for fixed navbar (padding + logo); tweak if nav sizes change */
    --navbar-offset: 83px;
}

body {
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: white;
}

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

/* Navbar Styles */
/* ── Top Announcement Bar ── */
.topbar {
    background: #1a2a1a;
    color: #d4d4d4;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    transition: transform 0.35s ease;
}

.topbar i {
    color: #e63946;
    margin-right: 8px;
}

.topbar strong {
    color: #e63946;
}

/* ── Navbar ── */
.navbar {
    background: #04152d;
    padding: 8px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: -1px;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    border-bottom: none;
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.solid-nav {
    background: rgba(4, 21, 45, 0.95);
    padding: 10px 0;
}

.navbar.scrolled {
    background: #0d1b3e;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.navbar.scrolled:hover {
    background: #0d1b3e;
}

.navbar.scrolled::before {
    display: none;
}

.navbar.scrolled::after {
    display: none;
}


.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: none;
    position: relative;
    overflow: visible;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #222;
}

.nav-brand a img {
    height: 112px;
    width: auto;
    margin: -12px 0 -16px 0;
    object-fit: contain;
}

.nav-brand:hover {
    background: transparent;
}

.logo {
    height: 112px;
    max-width: 380px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    margin: -12px 0 -16px 0;
    display: block;
}

.brand-name {
    color: white;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px; /* Increased gap to prevent overlaps when scaled */
    align-items: center;
}

.nav-menu a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding: 6px 12px;
    background: transparent;
    border: none;
    overflow: visible !important;
    z-index: 2;
    display: inline-block;
}

.navbar.scrolled .nav-menu a {
    color: rgba(255,255,255,0.85);
}

/* Active Link State */
.nav-menu a.active {
    color: var(--primary-color) !important;
}

/* Vertical Side Borders on Hover */
.nav-menu a::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: calc(100% + 8px);
    border-left: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    background: transparent;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: scaleY(0.4) translateY(5px);
    pointer-events: none;
}

/* Subtext base styles */
.nav-menu a::after {
    display: block;
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    pointer-events: none;
}

/* Subtext content mappings based on target href */
.nav-menu a[href*="index.html"]::after { content: "Home Page"; }
.nav-menu a[href*="about.html"]::after { content: "Our Story"; }
.nav-menu a[href*="products.html"]::after { content: "Machinery"; }
.nav-menu a[href*="contact.html"]::after { content: "Get In Touch"; }
.nav-menu a[href*="gallery.html"]::after { content: "Photos"; }

/* Hover Effects */
.nav-menu a:hover {
    color: var(--primary-color) !important;
    transform: scale(1.15) translateY(-2px);
}

.nav-menu a:hover::before {
    opacity: 1;
    transform: scaleY(1) translateY(0);
    transition-delay: 0.1s;
}

.nav-menu a:hover::after {
    opacity: 1;
    color: var(--primary-color);
    transform: translateX(-50%) translateY(0);
    transition-delay: 0.2s;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quote-btn {
    background: #e63946;
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230,57,70,0.35);
    white-space: nowrap;
}

.quote-btn:hover {
    background: #c0303d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,57,70,0.5);
}

.mobile-quote-item {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.2s;
}

.mobile-menu-btn:hover {
    background: rgba(0,0,0,0.14);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .mobile-menu-btn span {
    background: white;
}

/* Hero Section — sits behind fixed navbar + topbar */
.hero-section {
    margin: 0;
    padding: 0;
    position: relative;
    height: 100vh;
    min-height: 580px;
    max-width: 1672px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    width: 100%;
    left: 0;
    right: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

/* Removed hero-section::before fade */

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 10;
    overflow: hidden;
}

.hero-wave svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-wave .wave-1 {
    fill: var(--light-color);
    animation: wave 8s ease-in-out infinite;
}

.hero-wave .wave-2 {
    fill: white;
    animation: wave 6s ease-in-out infinite reverse;
    opacity: 0.5;
}

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

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    overflow: hidden;
}

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

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s ease;
}

.slide.active img {
    /* Disable zoom-in kenBurns animation on home/banner slides */
    animation: none !important;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

.hero-section::after {
    display: none;
}

/* Slide dark overlay */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.35) 100%);
    z-index: 2;
}

/* Hero Keyword Text Overlay */
.hero-keywords {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    pointer-events: none;
}

.hero-kw-row {
    display: flex;
    gap: 40px;
    align-items: baseline;
}

.hero-kw-top span, .hero-kw-bot span {
    font-size: clamp(22px, 3.5vw, 46px);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.hero-kw-mid {
    margin: 4px 0;
}

.hero-kw-mid .kw-big {
    font-size: clamp(36px, 6vw, 90px);
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.6);
    line-height: 1;
}

/* Vertical Side Text */
.hero-side-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    z-index: 6;
    pointer-events: none;
}

.hero-side-left {
    left: 18px;
    transform: translateY(-50%) rotate(180deg);
}

.hero-side-right {
    right: 18px;
}

/* Hero CTA Button */
.hero-cta {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.hero-contact-btn {
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), #e84a5f);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.hero-contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.5);
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 28px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
}

.modal-content h2 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 32px;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
}

.modal-content > p {
    color: var(--light-text);
    margin-bottom: 30px;
}

.modal-contact-form .form-group {
    margin-bottom: 20px;
}

.modal-contact-form input,
.modal-contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    transition: all 0.3s ease;
}

.modal-contact-form input:focus,
.modal-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.modal-contact-form textarea {
    resize: vertical;
}

.modal-contact-form .submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-contact-form .submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 90%;
    max-width: 1200px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: #c1121f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
    width: auto;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slider-dots span:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dots span.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    border-color: var(--primary-color);
    box-shadow: 0 0 12px var(--primary-color), 0 0 24px rgba(230, 57, 70, 0.3);
    animation: dotGlow 2s ease-in-out infinite;
}

@keyframes dotGlow {
    0%, 100% { box-shadow: 0 0 12px var(--primary-color), 0 0 24px rgba(230, 57, 70, 0.3); }
    50% { box-shadow: 0 0 18px var(--primary-color), 0 0 36px rgba(230, 57, 70, 0.4); }
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--light-text);
}

/* ── Tractor Carousel Section ── */
.carousel-section {
    background: transparent;
    padding: 60px 20px 50px;
    overflow: hidden;
}

.impl-carousel-section {
    padding-top: 20px;
}

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

.carousel-header {
    text-align: center;
    margin-bottom: 40px;
}

.carousel-header h2 {
    font-family: 'DM Sans', 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.carousel-header p {
    font-size: 16px;
    color: var(--light-text);
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    height: 600px;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.7s cubic-bezier(0.22, 0.68, 0.35, 1.0);
    padding: 40px 0;
    will-change: transform;
    align-items: center;
}

.carousel-card {
    flex: 0 0 480px;
    background: transparent;
    border: none;
    text-decoration: none;
    color: inherit;
    padding: 30px 24px 14px;
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
    filter: blur(0px);
}

.carousel-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.carousel-card-active {
    flex: 0 0 480px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 30px 24px 14px;
    opacity: 1;
    transform: scale(1.16);
    box-shadow: none;
    z-index: 2;
    filter: blur(0px);
}

.carousel-card-side {
    opacity: 0.45;
    transform: scale(0.82);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-card-side:hover {
    opacity: 0.7;
    transform: scale(0.87);
}

.carousel-card-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
}

.carousel-card-img img {
    max-width: 420px;
    max-height: 340px;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.carousel-card-active .carousel-card-img img {
    animation: cardFloat 3s ease-in-out infinite;
}

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

.carousel-card-active .carousel-card-img::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: shadowPulse 3s ease-in-out infinite;
}

@keyframes shadowPulse {
    0%, 100% { width: 60%; opacity: 1; }
    50% { width: 50%; opacity: 0.6; }
}

.carousel-card-info {
    padding-top: 8px;
    transform: translateY(12px);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-card-active .carousel-card-info {
    transform: translateY(0);
}

.carousel-card-name {
    font-family: 'DM Sans', 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2px;
    text-decoration: none;
    transition: font-size 0.4s ease, color 0.3s ease;
}

.carousel-card-active .carousel-card-name {
    text-decoration: none;
    color: var(--secondary-color);
}

.carousel-card-series {
    font-size: 13px;
    color: var(--light-text);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    text-decoration: none;
    transition: font-size 0.4s ease;
}

.carousel-card-active .carousel-card-series {
    text-decoration: none;
}

.carousel-card-colors {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.carousel-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-card-active .carousel-color-dot {
    animation: dotPop 0.5s ease forwards;
}

.carousel-card-active .carousel-color-dot:nth-child(2) { animation-delay: 0.08s; }
.carousel-card-active .carousel-color-dot:nth-child(3) { animation-delay: 0.16s; }
.carousel-card-active .carousel-color-dot:nth-child(4) { animation-delay: 0.24s; }

@keyframes dotPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.3); }
    100% { transform: scale(1); opacity: 1; }
}

.carousel-color-dot:hover {
    transform: scale(1.4);
    box-shadow: 0 0 8px currentColor;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.carousel-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.carousel-arrow:hover::before {
    width: 60px;
    height: 60px;
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow-prev:hover {
    animation: arrowBounceLeft 0.4s ease;
}

.carousel-arrow-next:hover {
    animation: arrowBounceRight 0.4s ease;
}

@keyframes arrowBounceLeft {
    0%, 100% { transform: scale(1.15) translateX(0); }
    50% { transform: scale(1.15) translateX(-4px); }
}

@keyframes arrowBounceRight {
    0%, 100% { transform: scale(1.15) translateX(0); }
    50% { transform: scale(1.15) translateX(4px); }
}

/* ── Carousel Responsive ── */
@media (max-width: 900px) {
    .hero-section {
        height: 450px;
    }

    .carousel-viewport {
        overflow: hidden;
        height: 420px;
    }

    .carousel-card {
        flex: 0 0 280px;
        padding: 20px 16px 10px;
    }

    .carousel-card-active {
        flex: 0 0 280px;
        padding: 20px 16px 10px;
        transform: scale(1.08);
    }

    .carousel-card-side {
        opacity: 0.4;
        transform: scale(0.8);
    }

    .carousel-card-img img {
        max-width: 220px;
        max-height: 180px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        height: 380px;
        min-height: auto;
    }
    .slider-dots {
        bottom: 15px;
    }
    .slide img {
        object-fit: fill;
    }
    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .hero-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    .hero-cta {
        bottom: 20px;
    }
    .carousel-section {
        padding: 40px 0 30px;
    }

    .carousel-container {
        padding: 0 10px;
    }

    .carousel-header h2 {
        font-size: 26px;
    }

    .carousel-viewport {
        overflow: hidden;
        height: 420px;
    }

    .carousel-track {
        gap: 12px;
        padding: 30px 0;
    }

    .carousel-card {
        flex: 0 0 75vw;
        padding: 14px 12px 10px;
        min-width: 0;
    }

    .carousel-card-active {
        flex: 0 0 75vw;
        padding: 14px 12px 10px;
        transform: scale(1.05);
    }

    .carousel-card-side {
        opacity: 0.35;
        transform: scale(0.78);
    }

    .carousel-card-name {
        font-size: 15px;
    }

    .carousel-card-series {
        font-size: 10px;
    }

    .carousel-card-img img {
        max-width: 100%;
        max-height: 250px;
    }

    .carousel-card-active .carousel-card-img::after {
        width: 50%;
        height: 14px;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .carousel-nav {
        margin-top: 20px;
        gap: 12px;
    }

    .carousel-color-dot {
        width: 10px;
        height: 10px;
    }

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

/* Products Section */
.products-section {
    background: var(--light-color);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light-color);
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -1px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s;
}

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-radius: 25px;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.product-category {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 15px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.product-specs span {
    background: var(--light-color);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 10px;
    color: var(--accent-color);
}

.product-price {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-btn {
    width: 100%;
    padding: 12px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.product-btn:hover::before {
    width: 200px;
    height: 200px;
}

.product-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

/* Features Section */
.features-section {
    background: white;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: -1px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--success-color));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-radius: 25px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--light-text);
    font-size: 14px;
}

/* Showcase Section */
.showcase-section {
    background: var(--secondary-color);
    padding: 60px 0;
    position: relative;
}

.showcase-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.showcase-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--secondary-color);
    border-radius: 50% 50% 0 0;
    z-index: 1;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.showcase-item {
    position: relative;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.video-container {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-container-small {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    z-index: 10;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.play-button svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -1px;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
    z-index: 5;
}

.video-thumbnail:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: -1px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
}

.showcase-overlay h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.showcase-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Implements Section */
.implements-section {
    background: var(--light-color);
    position: relative;
}

.implements-section::before {
    display: none;
}

.implements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.implement-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.implement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -1px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
    opacity: 0;
    transition: opacity 0.3s;
}

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

.implement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-radius: 25px;
}

.implement-image {
    height: 180px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.implement-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.implement-info {
    padding: 20px;
    text-align: center;
}

.implement-info h3 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.implement-info p {
    font-size: 13px;
    color: var(--light-text);
}

/* Contact Section */
.contact-section {
    background: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: white;
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-card {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/contact image 1.png');
    background-size: cover;
    background-position: center;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

.contact-form-card h3 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
}

.contact-form-card > p {
    font-size: 16px;
    color: var(--light-text);
    margin: 0 0 30px 0;
}

.contact-form-styled {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-styled {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-styled label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group-styled input,
.form-group-styled textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    transition: all 0.3s ease;
}

.form-group-styled input:focus,
.form-group-styled textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group-styled textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn-styled {
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
}

.submit-btn-styled:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}

.contact-image-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-image-side {
        order: 2;
    }
}

.contact-info h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 30px;
}

.service-centers-list {
    margin-bottom: 30px;
}

.service-centers-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    grid-template-areas:
        "left-top right-top"
        "left-bottom right-bottom";
    gap: 15px;
    margin-bottom: 20px;
    align-items: stretch;
}

.service-centers-columns > .service-center-card:nth-child(1) {
    grid-area: left-top;
}

.service-centers-columns > .service-center-card:nth-child(2) {
    grid-area: right-top;
}

.service-centers-columns > .service-center-card:nth-child(3) {
    grid-area: left-bottom;
}

.service-centers-columns > .service-center-card:nth-child(4) {
    grid-area: right-bottom;
}

.service-center-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: auto;
    height: auto;
    min-width: 0;
}

.service-center-card:hover {
    background: #fafafa;
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.15);
}

.service-center-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-center-card p {
    font-size: 13px;
    color: var(--light-text);
    line-height: 1.5;
    margin: 5px 0;
}

.service-center-contact {
    margin: 10px 0;
    padding: 8px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.service-center-contact p {
    font-size: 13px;
    margin: 5px 0;
}

.service-center-contact p strong {
    color: var(--primary-color);
}

.service-center-card .direction-btn {
    margin-top: auto;
    align-self: flex-start;
}

.service-center-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.service-center-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-center-item strong {
    font-size: 18px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.service-center-item p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
    margin: 0 0 10px 0;
}

.direction-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.direction-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-mobile {
    padding: 20px 0;
    color: var(--secondary-color);
}

.contact-mobile h3 {
    font-size: 18px;
    margin: 0 0 15px 0;
    color: var(--primary-color);
}

.contact-mobile p {
    font-size: 16px;
    margin: 5px 0;
    color: var(--text-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--text-color);
}

.contact-icon {
    font-size: 24px;
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -1px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--success-color));
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 15px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    background: #c1121f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

/* Contact Image Section */
.contact-page-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.contact-page-section .contact-wrapper {
    align-items: stretch;
}

.contact-page-section .contact-info {
    min-width: 0;
}

.contact-page-section .contact-page-form-side {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
}

.contact-page-section .contact-page-form-card {
    width: 100%;
    max-width: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.86)), url('images/contact image 1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-page-form-card .contact-form-styled {
    flex: 1;
}

.contact-page-form-card .label-optional {
    font-weight: 400;
    color: #888;
    font-size: 13px;
}

.contact-page-form-card .contact-page-success {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-page-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive: service center cards stack in reading order */
@media (max-width: 700px) {
    .service-centers-columns {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "left-top"
            "left-bottom"
            "right-top"
            "right-bottom";
    }
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer .container {
    max-width: 100%;
    padding: 0 40px;
}

.footer::before {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(200px, 1.2fr) minmax(0, 2.6fr) minmax(200px, 1fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
    justify-items: stretch;
}

.footer-logo-section {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.footer-service-section {
    min-width: 0;
}

.footer-contact-section {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-service-section h4,
.footer-contact-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.service-centers-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
    align-items: start;
}

@media (min-width: 1100px) {
    .service-centers-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px 24px;
    }
}

.service-center {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
    min-width: 0;
}

.service-center strong {
    color: white;
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.service-center-tel {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.service-center-tel a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.service-center-tel a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.footer-contact-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0;
}

.footer-contact-section p strong {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

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

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
        justify-items: stretch;
    }

    .footer-logo-section,
    .footer-contact-section {
        align-items: flex-start;
        max-width: 100%;
    }
    
    .service-centers-row {
        grid-template-columns: 1fr;
    }
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-logo {
    height: 110px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 18px;
    display: block;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Manufacturing Badge Section */
.manufacturing-badge-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0d1f37 100%);
}

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

.manufacturing-content {
    text-align: left;
}

.manufacturing-badge {
    display: inline-block;
    margin-bottom: 15px;
}

.badge-img {
    max-width: 200px;
    height: auto;
    display: block;
}

.manufacturing-content h2 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: rgb(221, 101, 21);
    margin: 0 0 10px 0;
}

.manufacturing-content h4 {
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
}

.manufacturing-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background: #000;
}

.video-container iframe {
    display: block;
    width: 100%;
    height: 400px;
}

/* Story Line Section */
.story-line-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0d1f37 100%);
}

.story-line-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.story-line-content h2 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: rgb(209, 82, 23);
    margin: 0 0 10px 0;
}

.story-line-content h3 {
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
}

.story-line-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.video-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-container-small {
    background: #000;
}

.video-container-small iframe {
    display: block;
    width: 100%;
    height: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .nav-right .quote-btn {
        display: none;
    }

    .mobile-quote-item {
        display: block;
        margin-top: 20px;
        text-align: center;
    }
    
    .mobile-quote-item .quote-btn {
        display: inline-block;
        padding: 12px 24px;
        background: #e63946;
        color: #fff;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: -1px;
        background: var(--secondary-color);
        padding: 20px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-menu li {
        margin: 15px 0;
        text-align: center;
        display: flex;
        justify-content: center;
    }
    
    .nav-menu a {
        padding: 10px 16px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: inline-block;
        width: auto;
        text-align: center;
        position: relative;
    }
    
    .nav-menu a:hover {
        background: transparent;
        color: var(--primary-color) !important;
        transform: scale(1.1) translateY(-2px);
    }

    /* Adjust subtext position for mobile spacing */
    .nav-menu a::after {
        bottom: -10px;
    }
    
    .hero-content h1 {
        font-size: 25px;
    }

    .hero-content p {
        font-size: 16px;
    }
    
    .hero-contact-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .manufacturing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .manufacturing-content {
        text-align: center;
    }
    
    .manufacturing-badge {
        display: block;
        margin: 0 auto 30px;
    }
    
    .video-container iframe {
        height: 300px;
    }
    
    .story-line-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-line-content {
        text-align: center;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-container-small iframe {
        height: 250px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .products-grid,
    .features-grid,
    .implements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 24px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

/* Decorative Curved Shapes */
.curve-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.curve-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.curve-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    top: 60%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.curve-3 {
    width: 150px;
    height: 150px;
    background: var(--success-color);
    bottom: 20%;
    right: 15%;
    animation: float 7s ease-in-out infinite;
}

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

/* ── Contact Page Styles ── */
.contact-hero {
    margin-top: 10px;
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1d3557 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
}

.contact-hero-overlay {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
}

.contact-hero-overlay h1 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero-overlay p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-page-section {
    padding: 80px 0;
    background: white;
}

.contact-info .contact-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-info .contact-item div strong {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}

.contact-info .contact-item div span {
    font-size: 14px;
    color: var(--text-color);
}

.contact-form h3 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-success {
    background: var(--light-color);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow);
}

.success-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.contact-success h3 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-success p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.map-section {
    padding: 60px 0;
    background: var(--light-color);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

@media (max-width: 820px) {
    .contact-hero {
        height: 250px;
    }

    .contact-hero-overlay h1 {
        font-size: 36px;
    }

    .contact-hero-overlay p {
        font-size: 15px;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }
    
    .hero-contact-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .contact-page-section {
        padding: 50px 0;
    }
}

@media (max-width: 600px) {
    .contact-hero {
        height: 200px;
    }

    .contact-hero-overlay h1 {
        font-size: 28px;
    }

    .contact-hero-overlay p {
        font-size: 13px;
    }
}

/* ── About Page Styles ── */

/* ── Home About Section ── */
.home-about {
    padding: 60px 20px 100px;
    background: url('images/home content banner.png') no-repeat center center;
    background-size: cover;
    position: relative;
    /* Extra padding at bottom to account for the overlapping feature bar */
}

.home-about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: -1px; bottom: 0;
    /* Soft white glow positioned exactly behind the text on the left */
    background: radial-gradient(circle at 25% 50%, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 40%, rgba(255,255,255,0) 70%);
    z-index: 1;
}

.home-about .container {
    position: relative;
    z-index: 2;
}

.home-about-grid {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.home-about-text {
    flex: 1;
}

.home-about-text h2,
.home-about-title {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.home-about-title-underline {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 20px;
}

.home-about-subtitle {
    margin-bottom: 24px;
    font-weight: bold;
}

.home-about-text p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 14px;
}

.home-about-stats {
    display: flex;
    gap: 20px;
    margin: 24px 0 0 0;
    align-items: center;
}

.home-about-stat {
    text-align: center;
}

.home-about-stat-num {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-color);
}

.home-about-stat-label {
    display: block;
    font-size: 10px;
    color: #e30613;
    font-weight: 600;
}

.home-about-btn {
    display: none;
}

.home-about-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-about-images img {
    width: 100%;
    border-radius: 20px;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* Feature Bar */
.home-features-bar {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    z-index: 10;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    padding: 0 10px;
    border-right: 1px solid #eee;
}

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

.feature-icon-wrapper {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-feature-icon {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-text {
    padding-left: 5px;
}

.feature-text h4 {
    font-size: 13px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 11px;
    color: var(--light-text);
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .home-about-grid {
        flex-direction: column;
    }

    .home-about-image {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .home-about {
        padding: 40px 12px 60px;
    }
    
    .home-about::before {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .home-about-grid {
        gap: 24px;
    }

    .home-features-bar {
        position: relative;
        flex-direction: column;
        padding: 15px;
        bottom: auto;
        left: 0;
        transform: none;
        width: 100%;
        margin: 30px 0 0;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
        width: 100%;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .home-about-text h2,
    .home-about-title {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .home-about-subtitle {
        margin-bottom: 12px;
    }

    .home-about-text p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 6px;
    }

    .home-about-stats {
        flex-wrap: wrap;
        gap: 12px;
        margin: 16px 0;
    }

    .home-about-stat {
        flex: 0 0 calc(50% - 6px);
        max-width: calc(50% - 6px);
    }
    
    .home-about-stat-num {
        font-size: 26px;
    }

    .home-about-btn {
        padding: 10px 22px;
        font-size: 14px;
        margin-top: 6px;
    }
}

/* ── About Page Styles ── */
.about-hero {
    margin-top: 10px;
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    overflow: hidden;
}

.about-hero-overlay {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 20px;
}

.about-hero-overlay h1 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-overlay p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 20px;
}

.about-story-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-story-text {
    flex: 1;
}

.about-story-text h2 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.5;
}

.about-story-text p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 14px;
}

.about-story-image {
    flex: 1;
    max-width: 500px;
}

.about-story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Local Story - Chamrajnagar */
.about-local-story {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-local-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.about-local-content p {
    font-size: 17px;
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
}

.about-local-content strong {
    color: var(--primary-color);
}

/* ========== NEW ABOUT US PAGE STYLES ========== */

/* New Hero Section */
.about-hero-new {
    position: relative;
    margin-top: var(--navbar-offset);
    min-height: 600px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(135deg, rgba(29, 53, 87, 0.88) 0%, rgba(13, 31, 55, 0.78) 45%, rgba(29, 53, 87, 0.9) 100%),
        url('images/c%20ban.png') center / cover no-repeat;
}

.about-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: -1px;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(230, 57, 70, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(230, 57, 70, 0.1) 0%, transparent 50%);
}

.about-hero-new .container {
    position: relative;
    z-index: 2;
}

/* Banner image inserted directly in the about page */
.about-hero-new .container {
    padding: 0;
}

.about-hero-new .about-hero-banner {
    width: 100%;
    height: 600px;
    max-height: 80vh;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

@media (max-width: 1024px) {
    .about-hero-new .about-hero-banner { height: 480px; }
}

@media (max-width: 768px) {
    .about-hero-new { margin-top: calc(var(--navbar-offset) + 10px); }
    .about-hero-new .about-hero-banner { height: 320px; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; }
}

@media (max-width: 480px) {
    .about-hero-new .about-hero-banner { height: 220px; }
}

.about-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    line-height: normal !important; /* Restore normal line height to prevent text overlap */
}

.about-hero-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.2);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(230, 57, 70, 0.3);
}

.about-hero-badge i {
    margin-right: 8px;
}

.about-hero-content h1 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: white;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.about-hero-content h2 {
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0 0 20px 0;
}

.about-hero-tagline {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

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

.hero-stat-number {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.2);
}

.about-hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: -1px;
    height: 150px;
    background: white;
    clip-path: ellipse(80% 100% at 50% 100%);
    z-index: 3;
}

/* Section Label */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #e84a5f);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-label.light {
    background: rgba(255,255,255,0.2);
    color: white;
}

.section-label i {
    margin-right: 8px;
}

/* Founder Section */
.about-founder {
    padding: 60px 20px 0px 20px;
    background: white;
}

.founder-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    background: linear-gradient(145deg, var(--light-color), #e8eef5);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.founder-img {
    width: 100%;
    height: auto;
    min-height: 520px;
    max-height: 960px;
    object-fit: contain;
    display: block;
    padding: 20px;
    border-radius: 20px;
}

.founder-placeholder {
    width: 300px;
    height: 350px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.founder-placeholder i {
    font-size: 100px;
    color: #ccc;
}

.founder-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #e84a5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.founder-badge i {
    font-size: 30px;
    color: white;
}

.founder-quick-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.founder-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.founder-info-item:hover {
    background: #ff6b35;
    transform: translateX(10px);
}

.founder-info-item:hover i,
.founder-info-item:hover span {
    color: white;
}

.founder-info-item i {
    font-size: 18px;
    color: #ff6b35;
    transition: color 0.3s ease;
}

.founder-info-item span {
    font-size: 14px;
    font-weight: 500;
    color: #e30613;
    transition: color 0.3s ease;
}

.founder-content {
    padding-top: 20px;
}

.founder-title {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 16px 0;
}

.founder-title .highlight {
    color: var(--primary-color);
}

.founder-subtitle {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #eee;
}

.founder-story p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: justify;
}

.founder-story strong {
    color: var(--primary-color);
}

/* Features Strip */
.about-features-strip {
    padding: 60px 20px 30px 20px; /* Reduced bottom padding */
    background: #f8f9fa; /* Light neutral gray background instead of blue */
}

.features-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-strip-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: #ffffff; /* Solid white card background */
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-strip-item:hover {
    background: #ffffff;
    border-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(230, 57, 70, 0.12);
}

.feature-strip-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-strip-icon i {
    font-size: 22px;
    color: white;
}

.feature-strip-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d3557; /* Deep Navy theme color */
    margin: 0 0 5px 0;
}

.feature-strip-content p {
    font-size: 13px;
    color: #556275; /* Slate gray text color for readability */
    margin: 0;
    line-height: 1.4;
}

/* Stats Section New */
.about-stats-new {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0d1f37 100%);
    position: relative;
    overflow: hidden;
}

.about-stats-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -1px;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(230, 57, 70, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.05) 0%, transparent 40%);
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.stats-header h2 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.about-stats-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-stat-card-new {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.about-stat-card-new:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
    border-color: rgba(230, 57, 70, 0.3);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #e84a5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 24px;
    color: white;
}

.about-stat-number-new {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about-stat-label-new {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Section New */
.about-values-new {
    padding: 100px 20px;
    background: #f8f9fa;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 10px 0;
}

.values-header p {
    font-size: 18px;
    color: var(--light-text);
}



.about-vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.vision-card, .mission-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border-top: 5px solid var(--primary-color);
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.vision-icon, .mission-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.vision-card h3, .mission-card h3 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.vision-card p, .mission-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

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

.about-values-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-value-card-new {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border-top: 4px solid;
    transition: all 0.4s ease;
}

.about-value-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.value-icon-new {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon-new i {
    font-size: 32px;
    color: white;
}

.about-value-card-new h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 15px 0;
}

.about-value-card-new p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Timeline New */
.about-timeline-new {
    padding: 100px 20px;
    background-image: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.65) 12%, rgba(255, 255, 255, 0.65) 88%, #ffffff 100%), url('images/about-timeline-bg.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}

.timeline-header h2 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 10px 0;
}

.timeline-header p {
    font-size: 18px;
    color: var(--light-text);
}

.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-items {
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: var(--primary-color);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.3);
}

.timeline-content:hover .timeline-year,
.timeline-content:hover h3,
.timeline-content:hover p {
    color: white;
}

.timeline-year {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.timeline-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 21px;
    height: 20px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-dot i {
    display: none;
}

/* CTA New */
.about-cta-new {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e84a5f 50%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-new::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

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

.cta-content h2 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

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

.btn-cta-primary,
.btn-cta-secondary,
.btn-cta-brochure {
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
}

.btn-cta-primary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-cta-brochure {
    background: var(--secondary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-cta-brochure:hover {
    background: #0d1f37;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Particle Animation for Download Button */
.btn-cta-brochure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.btn-cta-brochure .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    pointer-events: none;
}

.btn-cta-brochure .particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 20%;
    animation-delay: 0s;
}

.btn-cta-brochure .particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 40%;
    animation-delay: 0.2s;
}

.btn-cta-brochure .particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 60%;
    animation-delay: 0.4s;
}

.btn-cta-brochure .particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 80%;
    animation-delay: 0.6s;
}

.btn-cta-brochure .particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 30%;
    animation-delay: 0.8s;
}

.btn-cta-brochure .particle:nth-child(6) {
    width: 6px;
    height: 6px;
    left: 50%;
    animation-delay: 1s;
}

.btn-cta-brochure .particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 70%;
    animation-delay: 1.2s;
}

.btn-cta-brochure .particle:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 90%;
    animation-delay: 1.4s;
}

.btn-cta-brochure:hover .particle {
    animation: particle-float 1.5s ease-in-out infinite;
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) translateX(10px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) translateX(-10px) scale(0);
    }
}

/* Ripple Animation for Primary Buttons */
.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Glow Animation for Secondary Buttons */
.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    position: relative;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: button-glow 1.5s ease-in-out infinite;
}

@keyframes button-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
    }
}

/* Detail Page Buttons */
.detail-btn-primary,
.detail-btn-secondary,
.detail-btn-brochure {
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.detail-btn-primary {
    background: var(--primary-color);
    color: white;
}

.detail-btn-primary:hover {
    background: #c0303d;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
    position: relative;
    overflow: hidden;
}

.detail-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.detail-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.detail-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.detail-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
    animation: detail-glow 1.5s ease-in-out infinite;
}

@keyframes detail-glow {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
    }
    50% {
        box-shadow: 0 12px 30px rgba(230, 57, 70, 0.5);
    }
}

.detail-btn-brochure {
    background: var(--secondary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.detail-btn-brochure:hover {
    background: #0d1f37;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.detail-btn-brochure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.detail-btn-brochure .particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    pointer-events: none;
}

.detail-btn-brochure .particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 20%;
    animation-delay: 0s;
}

.detail-btn-brochure .particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 40%;
    animation-delay: 0.2s;
}

.detail-btn-brochure .particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 60%;
    animation-delay: 0.4s;
}

.detail-btn-brochure .particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 80%;
    animation-delay: 0.6s;
}

.detail-btn-brochure .particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 30%;
    animation-delay: 0.8s;
}

.detail-btn-brochure .particle:nth-child(6) {
    width: 6px;
    height: 6px;
    left: 50%;
    animation-delay: 1s;
}

.detail-btn-brochure .particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 70%;
    animation-delay: 1.2s;
}

.detail-btn-brochure .particle:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 90%;
    animation-delay: 1.4s;
}

.detail-btn-brochure:hover .particle {
    animation: particle-float 1.5s ease-in-out infinite;
}

/* Responsive Styles for New About Page */
@media (max-width: 1024px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .founder-image {
        order: 2;
    }
    
    .founder-content {
        order: 1;
    }
    
    .founder-image-wrapper {
        min-height: 420px;
    }

    .founder-img {
        min-height: 380px;
        max-height: 520px;
        padding: 16px;
    }
    
    .features-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-values-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    
    .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 48px;
    }
    
    .about-hero-content h2 {
        font-size: 24px;
    }
    
    .about-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-founder {
        padding-top: 30px;
    }
    
    .hero-stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .founder-title {
        font-size: 24px;
        margin-bottom: 6px;
    }
    
    .founder-subtitle {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
    
    .founder-story p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
        text-align: left;
    }
    
    .founder-image-wrapper {
        min-height: 340px;
    }

    .founder-img {
        min-height: 300px;
        max-height: 420px;
        padding: 12px;
    }
    
    .features-strip-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid-new {
        grid-template-columns: 1fr;
    }
    
    .about-values-grid-new {
        grid-template-columns: 1fr;
    }
    
    .stats-header h2,
    .values-header h2,
    .timeline-header h2,
    .cta-content h2 {
        font-size: 32px;
    }
    
    .about-cta-buttons-new {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-brochure {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
.about-section-title {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 8px;
}

.about-section-subtitle {
    font-size: 16px;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 40px;
}

/* Stats */
.about-stats {
    padding: 70px 20px;
    background: var(--light-color);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-stat-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

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

.about-stat-number {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 14px;
    color: var(--light-text);
    font-weight: 500;
}

/* Values */
.about-values {
    padding: 70px 20px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-value-card {
    background: white;
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

.about-value-card:hover {
    transform: translateY(-4px);
}

.about-value-icon {
    font-size: 40px;
    margin-bottom: 14px;
}

.about-value-card h3 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.about-value-card p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
}

/* Timeline */
.about-timeline-section {
    padding: 70px 20px;
    background: var(--light-color);
}

.about-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-timeline-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
    position: relative;
}

.about-timeline-year {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

.about-timeline-dot {
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary-color);
    position: absolute;
    left: -33px;
}

.about-timeline-event {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

/* CTA */
.about-cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
}

.about-cta h2 {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.about-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.about-cta .btn-primary {
    padding: 14px 32px;
    background: white;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s;
}

.about-cta .btn-primary:hover {
    transform: scale(1.05);
}

.about-cta .btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s;
}

.about-cta .btn-secondary:hover {
    transform: scale(1.05);
    background: rgba(255,255,255,0.1);
}

/* About Responsive */
@media (max-width: 900px) {
    .about-story-grid {
        flex-direction: column;
    }

    .about-story-image {
        max-width: 100%;
    }

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

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-hero-new {
        min-height: auto;
        aspect-ratio: 1672 / 941;
    }
    .about-hero-bg {
        background-size: contain;
    }
    .about-hero-content {
        padding: 20px 10px;
    }
    .about-hero-badge {
        padding: 6px 15px;
        font-size: 11px;
        margin-bottom: 15px;
    }
    .about-hero-content h1 {
        font-size: 32px;
    }
    .about-hero-content h2 {
        font-size: 18px;
    }
    .about-hero-tagline {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .hero-stat-number {
        font-size: 28px;
    }
    .hero-stat-label {
        font-size: 10px;
    }
    .about-hero-shape {
        height: 60px;
    }
    .about-hero {
        height: 280px;
    }

    .about-hero-overlay h1 {
        font-size: 32px;
    }

    .about-hero-overlay p {
        font-size: 15px;
    }

    .about-story-text h2,
    .about-section-title {
        font-size: 28px;
    }

    .about-local-content {
        padding: 30px 20px;
    }

    .about-local-content p {
        font-size: 15px;
    }

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

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-cta h2 {
        font-size: 26px;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* =========================================
   BEST-IN-CLASS FEATURES SECTION
   Add these styles to your styles.css file
   ========================================= */

.best-in-class-section {
    padding: 80px 0;
}

/* ── Header block (left side text + "Know More" button) ── */
.bic-header {
    max-width: 780px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.bic-label {
    display: inline-block;
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e8631a;          /* orange accent — matches your primary colour */
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.bic-title {
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0 0 20px;
}

.bic-intro {
    font-family: 'DM Sans', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 0.97rem;
    color: #e30613;
    line-height: 1.75;
    margin-bottom: 12px;
}

.bic-know-more-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 13px 36px;
    background: #e8631a;
    color: #ffffff;
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.bic-know-more-btn:hover {
    background: #c7511a;
    transform: translateY(-2px);
}

/* ── 4-column card grid ── */
.bic-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .bic-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .best-in-class-section {
        padding: 40px 0 10px;
    }
    .bic-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Individual card ── */
.bic-card {
    border: 1px solid #ebebeb;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.bic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(232, 99, 26, 0.15);
}

/* ── Image area ── */
.bic-card-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;          /* consistent height until you add images */
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

/* SVG / image styling inside cards */
.bic-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;    /* contain works best for SVG icons */
    display: block;
    padding: 20px;          /* breathing room around SVG */
    transition: transform 0.4s ease;
    box-sizing: border-box;
}

.bic-card:hover .bic-card-img-wrap img {
    transform: scale(1.06);
}

/* ── Placeholder shown until you add your images ── */
.bic-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff4ee 0%, #ffe8d6 100%);
    color: #e8631a;
}

.bic-card-img-placeholder i {
    font-size: 2.4rem;
    opacity: 0.7;
}

.bic-card-img-placeholder span {
    font-family: 'DM Sans', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 0.78rem;
    color: #aaa;
    letter-spacing: 0.04em;
}

/* ── Card text body ── */
.bic-card-body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bic-card-title {
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.bic-card-desc {
    font-family: 'DM Sans', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 0.88rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
}/* =========================================
   INNOVATION TIMELINE SECTION
   ========================================= */

.innovation-timeline-section {
    padding: 70px 0 80px;
    overflow: hidden;
}

.timeline-intro { margin-bottom: 48px; }

.timeline-label {
    display: inline-block;
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #e8631a;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.timeline-heading {
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 16px;
}

.timeline-desc {
    font-family: 'DM Sans', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 0.95rem;
    color: #e30613;
    line-height: 1.75;
    max-width: 960px;
    margin: 0;
}

/* ── Cards row ── */
.timeline-cards {
    display: flex;
    align-items: center;   /* all cards vertically centred */
    gap: 0;
    min-width: 1150px;
    position: relative;
}

/* ── BASE card ── */
.timeline-card {
    flex: 1;
    min-width: 120px;
    position: relative;
    background: transparent;
    border: none;
    border-left: 1.5px solid #e0e0e0;
    border-radius: 0;
    overflow: visible;
    cursor: pointer;
    /* normal height — just year+gen visible, centred */
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    transition: height 0.45s cubic-bezier(0.4,0,0.2,1),
                background 0.35s ease,
                border-color 0.3s ease,
                border-radius 0.35s ease;
}

.timeline-card:last-child {
    border-right: 1.5px solid #e0e0e0;
}

/* ── HOVER state — expands, peach bg, rounded ── */
.timeline-card:hover {
    height: 360px;
    background: #fdf0e8;
    border-left-color: #e8631a;
    border-radius: 14px;
    align-items: flex-start;   /* content shifts to top on expand */
    z-index: 2;
}

.timeline-card:last-child:hover {
    border-right-color: #e8631a;
}

/* ── Year + Gen info ── */
.timeline-card-info {
    position: absolute;
    /* centred vertically in rest state */
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    right: 8px;
    transition: top 0.4s ease, transform 0.4s ease;
}

.timeline-card:hover .timeline-card-info {
    top: 20px;
    transform: translateY(0);
}

.timeline-year {
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
    transition: color 0.25s ease;
}

.timeline-card:hover .timeline-year {
    color: #e8631a;
}

.timeline-gen {
    font-family: 'DM Sans', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 0.8rem;
    color: #888;
    display: block;
}
.timeline-gen sup { font-size: 0.58em; }

/* ── Image box — hidden, slides up from below ── */
.timeline-card-hover-img {
    position: absolute;
    bottom: 20px;
    left: 12px;
    right: 12px;
    height: 200px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.38s ease 0.08s,
                transform 0.38s ease 0.08s;
    pointer-events: none;
}

.timeline-card:hover .timeline-card-hover-img {
    opacity: 1;
    transform: translateY(0);
}

.timeline-card-hover-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.timeline-dot { display: none; }
@media (max-width: 768px) {
    .innovation-timeline-section {
        padding: 20px 0 50px;
    }
    .timeline-line {
        display: none !important;
    }

    .timeline-track-wrap {
        overflow: visible;
    }

    .timeline-cards {
        flex-direction: column;
        min-width: unset;
        align-items: stretch;
        gap: 16px;
    }

    .timeline-card {
        flex: none;
        width: 100%;
        min-width: unset;
        border: 1.5px solid #e0e0e0;
        border-radius: 12px;
    }

    .timeline-card:hover {
        border-color: #e8631a;
    }
}
.timeline-line {
  display: none !important;
}

@media (max-width: 1000px) {
  .timeline-line {
    display: none;
  }
}

.about-hero-new {
  padding: 0 !important;
  margin: 0 !important;
  margin-top: 120px !important;
  background: none !important;
  line-height: 0 !important;
  min-height: unset !important;
  display: block !important;
  overflow: visible !important;
}

.about-hero-new .container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.about-hero-banner {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: unset !important;
  max-height: unset !important;
  border-radius: 0 !important;
}

/* ── Premium Footer Styles ── */
.footer {
    background: var(--secondary-color) !important; /* Match header navbar color */
    color: #e0e6ed;
    padding: 40px 0 20px;
    position: relative;
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
}

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

.footer-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
}

.footer-title-new {
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title-new i {
    color: #e63946; /* Accent color matching your theme */
    font-size: 18px;
}

.footer-text-new {
    font-size: 14px;
    line-height: 1.8;
    color: #a0aab8;
    margin-bottom: 15px;
}

.footer-contact-new,
.footer-email-new {
    font-size: 14px;
    color: #a0aab8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-new i,
.footer-email-new i {
    color: #e63946;
}

.footer-email-new a {
    color: #a0aab8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email-new a:hover {
    color: #e63946;
}

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

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

.footer-links-new li a {
    color: #a0aab8;
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links-new li a i {
    font-size: 10px;
    color: #e63946;
    transition: transform 0.3s ease;
}

.footer-links-new li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links-new li a:hover i {
    transform: translateX(3px);
}

/* Column 3: Contact Form */
.footer-form-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-input-new,
.footer-textarea-new {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

.footer-input-new:focus,
.footer-textarea-new:focus {
    border-color: #e63946;
    background: rgba(255, 255, 255, 0.08);
}

.footer-textarea-new {
    height: 70px;
    resize: none;
}

.footer-submit-new {
    background: #e63946;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-submit-new:hover {
    background: #c1121f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

/* Column 4: Stay Connected & Box */
.footer-social-new {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.social-btn-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn-new.fb { background: #3b5998; }
.social-btn-new.ig { background: #e1306c; }
.social-btn-new.yt { background: #ff0000; }
.social-btn-new.ln { background: #0077b5; }
.social-btn-new.tg { background: #0088cc; }

.social-btn-new:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.footer-call-box-new {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px dashed rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.call-icon-wrapper-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(230, 57, 70, 0.1);
    color: #e63946;
    font-size: 18px;
}

.call-text-wrapper-new {
    display: flex;
    flex-direction: column;
}

.call-label-new {
    font-size: 11px;
    color: #a0aab8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.call-number-new {
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
}

.footer-bottom-new {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    font-size: 13.5px;
    color: #7f8b9b;
}

/* Floating WhatsApp Button & Scroll to Top */
.floating-actions-new {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.float-btn-new.whatsapp {
    background: #25d366;
    font-size: 26px;
}

.float-btn-new.scroll-top {
    background: #1d3557;
    font-size: 18px;
}

.float-btn-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

/* Responsive Footer styling */
@media (max-width: 992px) {
    .footer-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 60px 0 30px;
    }
}

/* ── About Us 4-Image Grid Collage ── */
.about-collage-header {
    margin-bottom: 28px;
    animation: fadeSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.collage-pretitle {
    font-family: 'Barlow Condensed', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.collage-pretitle i {
    font-size: 14px;
}

.collage-subtitle {
    font-family: 'Tiro Kannada', 'Noto Serif Kannada', 'Poppins', serif;
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    color: #1d3557; /* Deep Navy theme color */
    line-height: 1.4;
    position: relative;
    padding-bottom: 12px;
}

.collage-subtitle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-grid-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    padding-top: 20px; /* offset the top stagger shift */
    padding-bottom: 20px; /* offset the bottom stagger shift */
    animation: fadeSlideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.collage-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    aspect-ratio: 1 / 1; /* Make it square to increase height and fill the vertical gap */
    background: #f1faee;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Stagger columns layout for extra premium dynamic design */
.collage-item.item-1, .collage-item.item-3 {
    transform: translateY(-20px);
}

.collage-item.item-2, .collage-item.item-4 {
    transform: translateY(20px);
}

.collage-item.item-1:hover, .collage-item.item-3:hover {
    transform: translateY(-28px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.2);
}

.collage-item.item-2:hover, .collage-item.item-4:hover {
    transform: translateY(12px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.2);
}

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

/* Keyframe animations */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Adjust grid for responsiveness */
@media (max-width: 768px) {
    .about-grid-collage {
        gap: 16px;
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .collage-item.item-1, .collage-item.item-3,
    .collage-item.item-2, .collage-item.item-4 {
        transform: none; /* Remove stagger on smaller screens */
    }
    
    .collage-item.item-1:hover, .collage-item.item-3:hover,
    .collage-item.item-2:hover, .collage-item.item-4:hover {
        transform: translateY(-5px); /* Simple hover lift on mobile */
    }
    
    .collage-subtitle {
        font-size: 24px;
        line-height: 1.3;
    }
}

/* ── Vision & Mission Section ── */
.about-vision-mission-section {
    padding: 40px 0 80px 0; /* Reduced top padding to pull it closer to the features strip */
    background: #ffffff;
    overflow: hidden;
}

.about-vision-mission-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 45px; /* Reduced gap between rows */
}

.vm-row:last-child {
    margin-bottom: 0;
}

.vision-row {
    grid-template-areas: "text img";
}

.mission-row {
    grid-template-areas: "img text";
}

.vision-row .vm-text-col { grid-area: text; }
.vision-row .vm-image-col { grid-area: img; }

.mission-row .vm-image-col { grid-area: img; }
.mission-row .vm-text-col { grid-area: text; }

.vm-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vm-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.08);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.vm-title {
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1d3557;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.vm-title .highlight {
    color: var(--primary-color);
}

.vm-description {
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #4a5768;
    margin: 0;
}

/* Image containers */
.vm-image-col {
    position: relative;
    width: 100%;
}

.vm-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.vm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.vm-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.15);
}

.vm-image-wrapper:hover .vm-img {
    transform: scale(1.06);
}

/* Single Image constraints (Vision) */
.single-image-col .vm-image-wrapper {
    aspect-ratio: 1.4 / 1;
    width: 100%;
}

/* Double Image constraints (Mission) */
.double-image-col {
    display: flex;
    gap: 24px;
    padding: 20px 0; /* Reduced vertical padding for stagger transform */
}

.double-image-col .vm-image-wrapper {
    flex: 1;
    aspect-ratio: 4 / 5; /* Elegant portrait crop */
}

.double-image-col .img-left {
    transform: translateY(-20px);
}

.double-image-col .img-right {
    transform: translateY(20px);
}

.double-image-col .img-left:hover {
    transform: translateY(-28px);
}

.double-image-col .img-right:hover {
    transform: translateY(12px);
}

/* Responsive grid layouts */
@media (max-width: 992px) {
    .vm-row {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .vm-row:last-child {
        margin-bottom: 0;
    }
    
    .vision-row {
        grid-template-areas: 
            "text"
            "img";
    }
    
    .mission-row {
        grid-template-areas: 
            "text"
            "img";
    }
    
    .double-image-col {
        padding: 0;
    }
    
    .double-image-col .img-left,
    .double-image-col .img-right {
        transform: none; /* remove stagger on mobile/tablet */
    }
    
    .double-image-col .img-left:hover,
    .double-image-col .img-right:hover {
        transform: translateY(-5px);
    }
    
    .about-vision-mission-section {
        padding: 40px 0 10px 0;
    }
}

@media (max-width: 576px) {
    .vm-title {
        font-size: 26px;
    }
    
    .vm-description {
        font-size: 14.5px;
    }
    
    .double-image-col {
        flex-direction: column;
        gap: 16px;
    }
    
    .double-image-col .vm-image-wrapper {
        aspect-ratio: 1.4 / 1; /* landscape crop on mobile stack */
    }
}

/* Key Points List */
.vm-points-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.vm-points-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.point-icon {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.point-text {
    font-family: 'Poppins', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: #4a5768;
}

.point-text strong {
    color: #1d3557;
    font-weight: 600;
}

/* ── Tractor Moving Animation Section ── */
.about-tractor-animation-section {
    padding: 20px 0 60px 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.about-tractor-animation-section .container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.loop-wrapper {
    margin: 0 auto;
    position: relative;
    display: block;
    width: 100%;
    max-width: 800px;
    height: 200px;
    overflow: hidden;
    border-bottom: 3px solid #1d3557; /* Navy road line */
    background: transparent; /* Clean transparent background */
}

.mountain {
    position: absolute;
    right: -900px;
    bottom: -20px;
    width: 2px;
    height: 2px;
    box-shadow: 
        0 0 0 50px #f1f5f9,
        60px 50px 0 70px #f1f5f9,
        90px 90px 0 50px #f1f5f9,
        250px 250px 0 50px #f1f5f9,
        290px 320px 0 50px #f1f5f9,
        320px 400px 0 50px #f1f5f9;
    transform: rotate(130deg);
    animation: mtn 40s linear infinite; /* Slowed down from 20s */
    z-index: 1;
}

.hill {
    position: absolute;
    right: -900px;
    bottom: -50px;
    width: 400px;
    border-radius: 50%;
    height: 20px;
    box-shadow: 
        0 0 0 50px #e2e8f0,
        -20px 0 0 20px #e2e8f0,
        -90px 0 0 50px #e2e8f0,
        250px 0 0 50px #e2e8f0,
        290px 0 0 50px #e2e8f0,
        620px 0 0 50px #e2e8f0;
    animation: hill 8s 4s linear infinite; /* Slowed down from 4s 2s */
    z-index: 2;
}

.tree {
    position: absolute;
    height: 60px;
    width: 40px; /* Adjusted to match viewBox 60x90 aspect ratio */
    bottom: 0;
    z-index: 3;
}

.tree-1 { animation: tree-loop 8s linear infinite; }          /* Slowed down from 4s */
.tree-2 { animation: tree-loop 5.6s 0.6s linear infinite; }    /* Slowed down from 2.8s 0.3s */
.tree-3 { animation: tree-loop 14s 2.4s linear infinite; }     /* Slowed down from 7s 1.2s */

.rock {
    position: absolute;
    bottom: -2px;
    width: 8px;
    height: 6px;
    border-radius: 50% 50% 0 0;
    background: #94a3b8;
    animation: rock-loop 7s -1.6s linear infinite; /* Slowed down from 3.5s -0.8s */
    z-index: 3;
}

/* Tractor Container & Bumping animation */
.tractor-container {
    position: absolute;
    width: 65px; /* Reduced size for better proportion */
    height: 43.3px; /* 1.5 : 1 ratio */
    bottom: -2.2px; /* Pull down slightly so wheels touch the road line exactly */
    right: 50%;
    margin-right: -32.5px;
    z-index: 4;
    animation: tractor-bump 8s ease infinite; /* Slowed down from 4s */
}

.tractor-body {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
}

/* Rotating wheels (Scalable percentage rules) */
.tractor-wheel {
    position: absolute;
    transform-origin: center;
    animation: wheel-spin 1.6s linear infinite; /* Slowed down from 0.8s to match halved scenery speed */
    z-index: 6;
}

.wheel-back {
    width: 30.8%; /* 37/120 */
    height: auto;
    aspect-ratio: 1 / 1;
    left: 10.4%; /* 12.5/120 */
    top: 49%;    /* 39.5/80 */
}

.wheel-front {
    width: 21.6%; /* 26/120 */
    height: auto;
    aspect-ratio: 1 / 1;
    left: 66.7%; /* 80/120 */
    top: 65%;    /* 52/80 */
}

/* Exhaust smoke */
.smoke {
    animation: smoke-rise 1.5s ease-out infinite;
    transform-origin: center;
}

.smoke-1 { animation-delay: 0s; }
.smoke-2 { animation-delay: 0.5s; }
.smoke-3 { animation-delay: 1s; }

/* Keyframe animations */
@keyframes tree-loop {
    0% { transform: translateX(900px); }
    100% { transform: translateX(-100px); }
}

@keyframes rock-loop {
    0% { right: -100px; }
    100% { right: 900px; }
}

@keyframes wheel-spin {
    100% { transform: rotate(360deg); }
}

@keyframes tractor-bump {
    0%, 100% { transform: translateY(0); }
    5% { transform: translateY(0); }
    7% { transform: translateY(-4px); }
    9% { transform: translateY(0); }
    10% { transform: translateY(-1px); }
    12% { transform: translateY(0); }
    45% { transform: translateY(0); }
    47% { transform: translateY(-3px); }
    49% { transform: translateY(0); }
    50% { transform: translateY(-1px); }
    52% { transform: translateY(0); }
}

@keyframes smoke-rise {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.6);
    }
    20% {
        opacity: 0.7;
    }
    100% {
        opacity: 0;
        transform: translate(-15px, -20px) scale(1.6);
    }
}

@keyframes mtn {
    100% {
        transform: translateX(-1000px) rotate(130deg);
    }
}

@keyframes hill {
    100% {
        transform: translateX(-1000px);
    }
}

/* ── Mega Menu / Site Directory Navigation ── */
.mega-menu {
  display: flex;
  flex-direction: row;
  background-color: var(--secondary-color); /* Match header navbar color exactly */
  color: #ffffff;
  padding: 40px 40px 10px;
  gap: 30px;
  font-family: 'Poppins', 'Segoe UI', 'Tiro Kannada', 'Noto Serif Kannada', sans-serif;
  width: 100%;
  box-sizing: border-box;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mega-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mega-section .section-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-transform: none;
  letter-spacing: 0.3px;
}

.mega-section .col-heading {
  color: var(--primary-color); /* Match brand orange/red accent */
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.mega-columns {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.mega-col {
  min-width: 140px;
}

.mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mega-col ul li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s, padding-left 0.2s;
}

.mega-col ul li a:hover {
  color: var(--primary-color);
  padding-left: 3px;
}

.mega-divider {
  width: 1px;
  background-color: rgba(255,255,255,0.2);
  align-self: stretch;
  margin: 0 10px;
}

@media (max-width: 900px) {
  .mega-menu {
    flex-direction: column;
    padding: 30px 20px;
    gap: 24px;
  }

  .mega-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }

  .mega-columns {
    flex-wrap: wrap;
    gap: 20px;
  }

  .mega-col {
    min-width: 120px;
  }
}

@media (max-width: 600px) {
  .mega-menu {
    padding: 24px 16px;
    gap: 20px;
  }

  .mega-columns {
    flex-direction: column;
    gap: 16px;
  }
}


/* ── Gallery Page Styling ── */
.gallery-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2b3d52 100%);
    padding: 140px 0 60px 0; /* Padding-top offset for fixed navbar */
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: -1px; bottom: 0;
    background: radial-gradient(circle at top right, rgba(230, 57, 70, 0.15), transparent 60%);
    pointer-events: none;
}

.gallery-hero .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.15);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(230, 57, 70, 0.3);
}

.gallery-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-transform: none;
}

.gallery-hero p {
    font-size: 16.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.gallery-filter-section {
    padding: 30px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: center;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-buttons button {
    background: white;
    color: var(--secondary-color);
    border: 1px solid #cbd5e1;
    padding: 10px 22px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-buttons button:hover {
    background: #f1f5f9;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-buttons button.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.gallery-grid-section {
    padding: 60px 0;
    background: #ffffff;
}

.gallery-grid-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(230, 57, 70, 0.2);
}

.gallery-img-wrapper {
    position: relative;
    aspect-ratio: 1.5 / 1;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    z-index: 1;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-flat-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.gallery-overlay i {
    color: white;
    font-size: 32px;
    transform: scale(0.6);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-info {
    padding: 20px;
}

.gallery-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 6px;
    transition: color 0.3s ease;
    margin-top: 0;
    text-transform: none;
    letter-spacing: normal;
}

.gallery-card:hover .gallery-info h3 {
    color: var(--primary-color);
}

.gallery-info p {
    font-size: 13.5px;
    color: #4a5768;
    line-height: 1.5;
    margin: 0;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0; left: 0; right: -1px; bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-overlay {
    position: absolute;
    top: 0; left: 0; right: -1px; bottom: 0;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 10;
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.6);
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s;
    z-index: 20;
}

.lightbox-close:hover {
    background: rgba(230, 57, 70, 0.8);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.6);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
    z-index: 20;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 15px;
}

.lightbox-next {
    right: 15px;
}

.lightbox-img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #0f172a;
    display: block;
}

.lightbox-caption {
    padding: 24px;
    background: white;
}

.lightbox-caption h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
    margin-top: 0;
    text-transform: none;
}

.lightbox-caption p {
    font-size: 15px;
    color: #4a5768;
    line-height: 1.6;
    margin: 0;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 32px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Google Reviews / Testimonials Section ── */
.testimonials-section {
    padding: 80px 20px 70px;
    background: linear-gradient(180deg, #f8faf8 0%, #eef2ee 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #f8faf8;
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.testimonials-header h2 {
    font-family: 'DM Sans', 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.testimonials-header p {
    font-size: 16px;
    color: var(--light-text);
}

/* Google Summary Card */
.google-summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 8px 32px rgba(29, 53, 87, 0.1);
    margin: 0 auto 40px;
    max-width: 420px;
    text-align: center;
    border: 1px solid rgba(29, 53, 87, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.google-summary-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(29, 53, 87, 0.14);
}

.google-summary-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.google-summary-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.google-logo-icon {
    width: 18px;
    height: 18px;
}

.google-summary-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--light-text);
}

.google-rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.google-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.google-stars i {
    color: #fbbc04;
    font-size: 18px;
    animation: starTwinkle 2s ease-in-out infinite;
}

.google-stars i:nth-child(2) { animation-delay: 0.15s; }
.google-stars i:nth-child(3) { animation-delay: 0.3s; }
.google-stars i:nth-child(4) { animation-delay: 0.45s; }
.google-stars i:nth-child(5) { animation-delay: 0.6s; }

.google-rating-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: 'DM Sans', 'Poppins', sans-serif;
    line-height: 1;
    display: flex;
    align-items: center;
}

.google-rating-count {
    font-size: 16px;
    color: var(--light-text);
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    margin-top: 6px;
}

/* Testimonials Slider Grid */
.testimonials-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 0 30px;
    scrollbar-width: none; /* Firefox */
}

.testimonials-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* Review Cards */
.testimonial-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(29, 53, 87, 0.08);
    border: 1px solid rgba(29, 53, 87, 0.05);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 48px;
    color: rgba(230, 57, 70, 0.12);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(230, 57, 70, 0.15);
    border-color: rgba(230, 57, 70, 0.15);
}

.testimonial-card-top {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #c0303d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-meta {
    flex: 1;
    min-width: 0;
}

.testimonial-meta h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-meta span {
    font-size: 10px;
    color: var(--light-text);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    width: 100%;
    margin-top: 2px;
}

.testimonial-stars i {
    color: #fbbc04;
    font-size: 10px;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-color);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Scroll-reveal initial state */
.testimonials-animate-ready .testimonials-header,
.testimonials-animate-ready .google-summary-card,
.testimonials-animate-ready .testimonials-grid {
    opacity: 0;
    transform: translateY(30px);
}

.testimonials-visible .testimonials-header {
    animation: testimonialFadeUp 0.6s ease 0.1s forwards;
}

.testimonials-visible .google-summary-card {
    animation: testimonialFadeUp 0.6s ease 0.25s forwards;
}

.testimonials-visible .testimonials-grid {
    animation: testimonialFadeUp 0.6s ease 0.4s forwards;
}

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



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

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 16px 50px;
    }

    .testimonials-header h2 {
        font-size: 28px;
    }

    .google-summary-card {
        padding: 20px;
        max-width: 100%;
    }

    .testimonial-card {
        flex: 0 0 280px;
        padding: 20px;
    }

    .testimonials-marquee {
        animation-duration: 35s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .google-stars i {
        animation: none;
    }

    .testimonials-animate-ready .testimonials-header,
    .testimonials-animate-ready .google-summary-card,
    .testimonials-animate-ready .testimonials-grid {
        opacity: 1;
        transform: none;
    }
}

/* ── Blogs Section ── */
.blogs-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blogs-section .section-header {
    margin-bottom: 50px;
}

.slider-container {
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.15);
}

.slider-arrow.carousel-arrow-prev {
    left: -24px;
}

.slider-arrow.carousel-arrow-next {
    right: -24px;
}

@media (max-width: 768px) {
    .slider-arrow {
        display: none !important;
    }
}

.blogs-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 30px;
    padding-bottom: 20px;
    scrollbar-width: none; /* Firefox */
}

.blogs-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.blog-card {
    flex: 0 0 min(100%, 350px);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-size: 1.15rem;
    color: #e30613;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.blog-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content p.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color, #e30613);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 12px;
    padding: 0;
    cursor: pointer;
    text-align: left;
    align-self: flex-start;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #b30000;
    text-decoration: underline;
}

/* ========================================= */
/* ── BLOG PAGE CSS ── */
/* ========================================= */

/* Blog Hero */
.blog-hero {
    background: url('images/trac about.png') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 100px 0 80px;
    color: #fff;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: -1px; bottom: 0;
    background: rgba(4, 21, 45, 0.85); /* Dark blue overlay */
    z-index: 1;
}

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

.blog-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.blog-hero-left h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-hero-left .breadcrumb,
.blog-breadcrumb {
    font-size: 1rem;
    color: #ccc;
    font-weight: 500;
}

.blog-hero-left .breadcrumb span,
.blog-breadcrumb span {
    color: #e30613; /* Primary red */
}

/* Make Home links white and turn red on hover */
.blog-hero-left .breadcrumb a,
.blog-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-hero-left .breadcrumb a:hover,
.blog-breadcrumb a:hover {
    color: #e30613;
}

.blog-hero-divider {
    width: 2px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
}

.blog-hero-right h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-hero-right h2 span {
    color: #e30613;
}

.blog-hero-right p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.5;
}

/* Blog Grid Layout */
.blog-page-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

@media (max-width: 991px) {
    .blog-page-grid {
        grid-template-columns: 1fr;
    }
    .blog-hero-content {
        flex-direction: column;
        text-align: center;
    }
    .blog-hero-divider {
        width: 100px;
        height: 2px;
    }
}

/* Blog Page Card */
.blog-page-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}

.blog-page-card .blog-image {
    height: auto;
    background: #f0f0f0;
}

.blog-page-card .blog-image img {
    height: auto;
    object-fit: contain;
    max-height: 250px;
}

/* Red Ribbon */
.blog-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    background: #e30613;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-bottom-right-radius: 12px;
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

/* Meta Data */
.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #e30613;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Read More Button */
.blog-page-read-more {
    background: #0B1E36; /* Dark blue */
    color: #fff;
    border: none;
    padding: 0;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    cursor: pointer;
    margin-top: 20px;
    align-self: flex-start;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.blog-page-read-more:hover {
    transform: translateY(-2px);
}

.blog-page-read-more {
    padding-left: 20px;
}

.blog-page-read-more .arrow-block {
    background: #e30613;
    color: #fff;
    padding: 12px 15px;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.blog-page-read-more:hover .arrow-block {
    background: #cc0000;
}

/* Gallery Video Card Styles */
.gallery-card.video-card {
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}

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

.gallery-video-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #000;
}

.gallery-video-wrapper video {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #000;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: none;
    z-index: 2;
}

.gallery-video-wrapper:hover .video-play-overlay {
    background: #e60000;
    border-color: #e60000;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    z-index: 2;
}

.video-card-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #e30613;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-card-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #666;
}

/* YouTube Shorts Style Video Section */
.shorts-section {
    padding: 80px 0;
    background: #f4f4f4;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.short-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.short-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.short-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 1;
    pointer-events: none;
}

.short-ui {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
}

.short-info {
    color: #fff;
    width: 70%;
}

.short-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.short-info p {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.short-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    gap: 5px;
    transition: transform 0.2s;
}

.action-btn:hover {
    transform: scale(1.1);
}

.action-btn i {
    font-size: 22px;
}

.action-btn span {
    font-size: 10px;
    font-weight: 600;
}

.short-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 3;
    transition: all 0.3s ease;
    pointer-events: none;
}

.short-card:hover .short-play-btn {
    background: #e30613;
    border-color: #e30613;
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 992px) {
    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shorts-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .short-card {
        aspect-ratio: 4 / 5;
    }
}
/* -- Global Scroll Reveal Animations -- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-up.delay-1 { transition-delay: 0.1s; }
.reveal-up.delay-2 { transition-delay: 0.2s; }
.reveal-up.delay-3 { transition-delay: 0.3s; }
.reveal-up.delay-4 { transition-delay: 0.4s; }
.reveal-up.delay-5 { transition-delay: 0.5s; }


/* -- Additional Reveal Animations -- */
.reveal-pop {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* bouncy pop effect */
  will-change: opacity, transform;
}

.reveal-pop.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}


/* -- Logo Animations -- */
@keyframes pulseLogo {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.logo, .footer-logo-img {
  animation: pulseLogo 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.logo:hover, .footer-logo-img:hover {
  animation: none;
  transform: scale(1.08);
}


/* -- Redesigned Key Features Section -- */
.redesign-features {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.redesign-features-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.redesign-features-left {
  flex: 1;
  max-width: 60%;
}
.redesign-features-right {
  flex: 1;
  max-width: 40%;
  display: flex;
  justify-content: center;
}
.redesign-tractor-img {
  max-width: 130%;
  height: auto;
  object-fit: contain;
  margin-left: -15%;
}
.redesign-header {
  margin-bottom: 40px;
}
.redesign-subheading {
  font-size: 18px;
  font-weight: 700;
  color: #d1121c;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.redesign-subheading .red-line {
  width: 40px;
  height: 2px;
  background-color: #d1121c;
}
.redesign-header h2 {
  font-size: 52px;
  font-weight: 900;
  color: #1a2a3a;
  line-height: 1.1;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.redesign-header h2 .red-text {
  color: #d1121c;
}
.redesign-header p {
  font-size: 18px;
  color: #e30613;
  max-width: 80%;
}
.redesign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.redesign-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 15px 30px 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
}
.redesign-card-icon {
  font-size: 30px;
  color: #d1121c;
  margin-bottom: 15px;
}
.redesign-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #d1121c;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.redesign-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}
.redesign-card-number {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #d1121c;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 5px 25px;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

@media (max-width: 992px) {
  .redesign-features-container {
    flex-direction: column;
  }
  .redesign-features-left, .redesign-features-right {
    max-width: 100%;
  }
  .redesign-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .redesign-tractor-img {
    margin-left: 0;
    max-width: 100%;
  }
  .redesign-features {
    background-image: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.95)), url('images/feature bg image.png') !important;
    background-position: right center; /* Focus on the tractor */
    padding: 40px 0 30px 0;
  }
  .redesign-header h2 {
    font-size: 36px;
  }
  .redesign-header p {
    font-size: 16px;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .redesign-grid {
    grid-template-columns: 1fr;
    gap: 30px; /* More vertical gap for the number tags */
  }
  .redesign-features {
    padding: 20px 0;
  }
  .redesign-header h2 {
    font-size: 32px;
  }
}


/* New Banner CSS */
.new-hero-banner { background-size: cover; background-position: center; position: relative; padding: 160px 0 30px; color: #fff; text-align: center; }
.new-hero-banner::before { content: ''; position: absolute; top: 0; left: 0; right: -1px; bottom: 0; background: linear-gradient(to bottom, rgba(4, 21, 45, 0.95), rgba(4, 21, 45, 0.7)); z-index: 1; }
.new-hero-banner .container { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.new-hero-banner h1 { font-size: 4rem; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.new-hero-banner p { font-size: 1.2rem; color: #ddd; max-width: 700px; margin: 0 auto 30px; line-height: 1.6; }
.new-breadcrumb { font-size: 1.1rem; color: #ccc; font-weight: 500; }
.new-breadcrumb a { color: #fff; text-decoration: none; transition: color 0.3s ease; }
.new-breadcrumb a:hover, .new-breadcrumb span { color: #e30613; }
@media (max-width: 768px) {
  .new-hero-banner h1 { font-size: 2.5rem; }
  .new-hero-banner { padding: 120px 0 30px; }
}

/* Home Navbar Transparent Overlay */
.home-navbar { background: transparent; box-shadow: none; }
.home-navbar::before { content: ''; position: absolute; top: 0; left: 0; right: -1px; bottom: 0; background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%); pointer-events: none; }
.home-navbar::after { content: ''; position: absolute; bottom: 0; left: 0; right: -1px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent); }
.home-navbar.scrolled { background: rgba(0, 0, 0, 0.25); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35); }
.home-navbar.scrolled::before, .home-navbar.scrolled::after { display: none; }

/* ── Mobile Bottom Navigation ── */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: -1px;
    background: #1d3557;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    padding: 4px;
    align-items: center;
    justify-content: space-around;
  }
  
  .mb-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex: 1;
    padding: 6px 2px;
    margin: 0 2px;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .mb-nav-item i {
    font-size: 18px;
    color: #e0e0e0; /* Light icons for inactive */
    margin-bottom: 2px;
  }
  
  .mb-nav-item span {
    font-size: 10px;
    font-weight: 600;
    color: #e0e0e0; /* Light text for inactive */
  }
  
  .mb-nav-item.active {
    background: #e30613; /* Orange/Red background for active */
  }
  
  .mb-nav-item.active i,
  .mb-nav-item.active span {
    color: #fff; /* White icon and text for active */
  }
}

/* Home About Section Black Text Design */
.home-about-text p, .home-about-subtitle { color: #000 !important; font-weight: 500; }
.home-about-stat-num { color: #e30613 !important; }
.home-about-stat-label { color: #000 !important; font-weight: bold; }

.timeline-desc { color: #333 !important; }

/* Floating WhatsApp Button Animation and Mobile Positioning */
@media (max-width: 768px) {
    .floating-actions-new {
        bottom: 90px; /* Moves above the new mobile bottom navigation */
    }
}

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

.float-btn-new.whatsapp {
    animation: bounceAnimation 2s infinite ease-in-out;
}

.float-btn-new.whatsapp:hover {
    animation-play-state: paused;
}

/* ── Mobile Mega Menu Overlay ── */
.mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100000;
  display: flex;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  font-family: 'DM Sans', sans-serif;
}

.mega-menu-overlay.is-open {
  transform: translateX(0);
}

.mega-menu-sidebar {
  width: 40%;
  max-width: 160px;
  background: #1d3557; /* Dark green from screenshot */
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow-y: auto;
}

.mega-menu-header {
  padding: 20px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mega-menu-close {
  background: #fff;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d3557;
  font-size: 14px;
  cursor: pointer;
}

.mega-logo {
  max-width: 80px;
  filter: brightness(0) invert(1);
}

.mega-sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 10px; /* Indent from left */
}

.mega-sidebar-nav li {
  position: relative;
  padding: 18px 10px 18px 15px;
  margin-bottom: 5px;
  cursor: pointer;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.mega-icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1d3557;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Specific icon adjustments */
.mega-sidebar-nav li:nth-child(2) .mega-icon-circle { color: #e30613; }
.mega-sidebar-nav li:nth-child(3) .mega-icon-circle { color: #2a9d8f; }

.mega-sidebar-nav li.active {
  background: #fff;
  color: #1d3557;
}

.mega-sidebar-nav li.active .mega-icon-circle {
  box-shadow: none;
}

/* Inverted Corner Cutouts */
.mega-sidebar-nav li.active::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -1px;
  width: 21px;
  height: 20px;
  background-color: transparent;
  border-bottom-right-radius: 20px;
  box-shadow: 0 10px 0 0 #fff;
  pointer-events: none;
}

.mega-sidebar-nav li.active::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -1px;
  width: 21px;
  height: 20px;
  background-color: transparent;
  border-top-right-radius: 20px;
  box-shadow: 0 -10px 0 0 #fff;
  pointer-events: none;
}

/* Right Content Area */
.mega-menu-content {
  flex: 1;
  background: #fff;
  height: 100%;
  overflow-y: auto;
  padding: 20px 15px;
}

.mega-content-pane {
  animation: fadeIn 0.3s ease;
}

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

.mega-list-links {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.mega-list-link {
  display: block;
  padding: 12px 15px;
  margin-bottom: 8px;
  border-radius: 8px;
  border: 1px solid #eee;
  text-decoration: none;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.mega-list-link:hover, .mega-list-link:active {
  background: #f8f9fa;
  border-color: #ddd;
}

.mega-content-title {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  padding-left: 5px;
}

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

.mega-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  text-decoration: none;
  color: #555;
  transition: transform 0.2s;
}

.mega-grid-item img {
  width: 100%;
  max-width: 65px;
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.mega-grid-item span {
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.mega-grid-item:active {
  background: #f8f9fa;
  transform: scale(0.97);
}

@media (min-width: 769px) {
  .mega-menu-overlay {
    display: none !important;
  }
}

/* ── Automatic Lead Generation Popup ── */
.lead-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.lead-popup-overlay.show-popup {
  opacity: 1;
  visibility: visible;
}

.lead-popup-modal {
  background: #fff;
  width: 90%;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.lead-popup-overlay.show-popup .lead-popup-modal {
  transform: translateY(0) scale(1);
}

.lead-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  font-size: 16px;
  z-index: 10;
  transition: background 0.3s;
}

.lead-popup-close:hover {
  background: rgba(0,0,0,0.2);
}

.lead-popup-header {
  background: #1d3557;
  padding: 30px 20px 20px;
  text-align: center;
  color: #fff;
}

.lead-popup-header h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
}

.lead-popup-header p {
  margin: 0;
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.4;
}

.lead-popup-form {
  padding: 25px 20px;
}

.lead-input-group {
  margin-bottom: 15px;
  position: relative;
}

.lead-input-group i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #666;
  font-size: 14px;
}

.lead-popup-input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.lead-popup-input:focus {
  outline: none;
  border-color: #e30613;
}

select.lead-popup-input {
  appearance: none;
  cursor: pointer;
}

.lead-popup-btn {
  width: 100%;
  padding: 14px;
  background: #e30613;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  margin-top: 10px;
}

.lead-popup-btn:hover {
  background: #c10410;
}

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

.lead-popup-skip-btn {
  width: 100%;
  padding: 14px;
  background: #f1f3f5;
  color: #495057;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.lead-popup-skip-btn:hover {
  background: #e9ecef;
}

.lead-popup-skip-btn:active {
  transform: scale(0.98);
}

/* ── Global Preloader ── */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 140px;
  height: auto;
  animation: pulseLogo 1.5s infinite ease-in-out;
}

@keyframes pulseLogo {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

/* ── FAQ Section ── */
.faq-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  font-family: 'DM Sans', sans-serif;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.5rem;
  color: #1d3557;
  font-weight: 800;
  margin-bottom: 15px;
}

.faq-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: #fff;
  color: #1d3557;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #e30613;
}

.faq-icon {
  font-size: 1.2rem;
  color: #e30613;
  transition: transform 0.4s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fff;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 25px;
}

/* Active State */
.faq-item.active .faq-question {
  color: #e30613;
  border-bottom: 1px solid #f1f3f5;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 25px;
}

@media (max-width: 768px) {
  .faq-section { padding: 50px 0; }
  .faq-header h2 { font-size: 2rem; }
  .faq-question { font-size: 1rem; padding: 15px 20px; }
  .faq-answer { font-size: 0.95rem; }
}

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

/* Fix for mobile scroll feeling "stuck" inside the mega menu */
.mega-menu-sidebar, 
.mega-menu-content {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain; /* Prevents scrolling the body underneath */
}

/* Ensure the body is never permanently stuck on load */

