* {
    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: 120px;
}

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

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

/* Navbar Styles */
.navbar {
    background: var(--secondary-color);
    padding: 12px 0 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    transition: background 0.2s ease;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    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;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.navbar.scrolled {
    background: var(--secondary-color);
    padding: 12px 0 18px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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: white;
}

.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: 22px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 7px 14px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.nav-menu a:hover {
    background: rgba(232, 104, 42, 0.3);
    border-color: rgba(232, 104, 42, 0.5);
    color: #fff;
}

.nav-menu a.active {
    background: rgba(232, 104, 42, 0.9);
    border-color: #e8682a;
    box-shadow: 0 4px 15px rgba(232, 104, 42, 0.4), 0 0 20px rgba(232, 104, 42, 0.3);
    color: #fff;
}

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

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

/* Hero Section — margin clears fixed navbar; no padding gap */
.hero-section {
    margin-top: var(--navbar-offset);
    padding-top: 0;
    position: relative;
    height: 650px;
    max-width: 1672px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    width: 100%;
    left: 0;
    right: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--light-color));
    z-index: 5;
}

.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;
}

/* 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', 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', 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: 20px;
    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', 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: 520px;
}

.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 420px;
    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 420px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 30px 24px 14px;
    opacity: 1;
    transform: scale(1.1);
    box-shadow: none;
    z-index: 2;
    filter: blur(0px);
}

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

.carousel-card-side:hover {
    opacity: 0.7;
    filter: blur(0.5px);
    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: 340px;
    max-height: 280px;
    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', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
    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: 20px;
    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);
        filter: blur(1px);
    }

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

@media (max-width: 600px) {
    .hero-section {
        height: auto;
        aspect-ratio: 1672 / 941;
        min-height: 250px;
    }
    .slide img {
        object-fit: contain;
        background: #f4f4f4;
    }
    .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);
        filter: blur(2px);
    }

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

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

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

    .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: 0;
    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: 12px;
    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: 12px;
    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: 0;
    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: 20px;
    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: 0;
    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: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
}

.showcase-overlay h3 {
    font-size: 20px;
    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: 0;
    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', 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', 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', 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: 25px;
    margin-bottom: 30px;
    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: left-bottom;
}

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

.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: 25px;
    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: 0;
    height: 100%;
    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: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

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

.service-center-contact {
    margin: 15px 0;
    padding: 12px 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: 0;
    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', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: rgb(221, 101, 21);
    margin: 0 0 10px 0;
}

.manufacturing-content h4 {
    font-family: 'Poppins', 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', 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', 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-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        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;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .nav-menu a {
        padding: 10px 16px;
        border-radius: 8px;
        transition: background 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .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', 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', 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', 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: 40px 20px;
}

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

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

.home-about-text h2,
.home-about-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

.home-about-btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    margin-top: 10px;
}

.home-about-btn:hover {
    transform: scale(1.05);
    background: var(--secondary-color);
}

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

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

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

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

@media (max-width: 600px) {
    .home-about {
        padding: 24px 12px;
    }

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

    .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);
    }

    .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', sans-serif;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-overlay p {
    font-size: 20px;
    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', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-lead {
    font-size: 20px;
    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: 0;
    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;
}

.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', 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', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0 0 20px 0;
}

.about-hero-tagline {
    font-size: 20px;
    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', 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: 0;
    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: 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: 20px;
    color: #ff6b35;
    transition: color 0.3s ease;
}

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

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

.founder-title {
    font-family: 'Barlow Condensed', 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;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.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: rgba(255,255,255,0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-strip-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.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: white;
    margin: 0 0 5px 0;
}

.feature-strip-content p {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    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: 0;
    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', 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', 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', 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', 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: 20px;
    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', 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', 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: 20px;
    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', 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;
}

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

/* 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;
    }
    
    .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.5;
        margin-bottom: 6px;
    }
    
    .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', 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', 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', sans-serif;
    font-size: 20px;
    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', 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', 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;
    background:#F0FAF0;
}

/* ── 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', 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', 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', sans-serif;
    font-size: 0.97rem;
    color: #555;
    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', 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) {
    .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', 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', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

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

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

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

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

.timeline-heading {
    font-family: 'Poppins', 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', sans-serif;
    font-size: 0.95rem;
    color: #555;
    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', 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', 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) {
    .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 {
        border-left: none !important;
        border-right: none !important;
        border: none !important;
        border-radius: 16px !important;
        height: auto !important;
        padding: 16px;
        align-items: flex-start !important;
        background: #fff !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        display: flex;
        flex-direction: row;
        gap: 16px;
    }

    .timeline-card:hover {
        background: #fdf0e8 !important;
        border-left-color: transparent !important;
    }

    .timeline-card-info {
        position: static !important;
        transform: none !important;
        top: auto !important;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-width: 80px;
    }

    .timeline-year {
        font-size: 1.4rem;
    }

    .timeline-card-hover-img {
        position: static !important;
        opacity: 1 !important;
        transform: none !important;
        height: 110px;
        width: 130px;
        flex-shrink: 0;
        margin: 0;
        border-radius: 10px;
        padding: 8px;
        background: #f5f5f5;
    }
}
.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;
}