/*
Theme Name: Swachhalaya Theme
Theme URI: http://example.com/
Author: NlDEV
Author URI: http://example.com/
Description: A custom WordPress theme for Swachhalaya.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: swachhalaya
*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #ec1c24;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@font-face {
    font-family: 'Gelion';
    src: url('./Fonts/Gelion Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('./Fonts/Gelion SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('./Fonts/Gelion Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('./Fonts/Gelion Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('./Fonts/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Shreelipi';
    src: url('./Fonts/Shreelipi_4672.TTF') format('truetype');
}

/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gelion', sans-serif;
    color: #000;
    -webkit-font-smoothing: antialiased;
}

/* Header Container Settings */
.header,
.header-main,
.header .container,
.main-nav,
.nav-products-dropdown {
    overflow: visible;
}

.header {
    width: 100%;
    position: relative;
    z-index: 100;
}

/* Top thin bar */
.top-bar {
    height: 12px;
    background-color: #333333;
    /* Dark gray border above */
    width: 100%;
}

/* Main header */
.header-main {
    background-color: #fff100;
    /* Vibrant yellow */
    padding: 15px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Area */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #000;
}

.logo-placeholder img {
    max-height: 50px;
}

.logo-text {
    display: block;
    font-family: 'Shreelipi', sans-serif;
    transform: skewX(5deg);
}

/* Navigation */
.main-nav {
    margin-left: auto;
    margin-right: 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}

/* Call to Action Button */
.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
    /* space between toggle and button if they sit side-by-side */
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: 0.3s ease;
}

/* Toggle active animation */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.call-btn {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
}

/* Pill shape for text */
.call-text {
    border: 1.5px solid #000;
    border-radius: 6px;
    padding: 4px 12px 4px 12px;
    /* Extra padding on left for icon overlap */
    margin-left: 15px;
    /* Space for the icon circle to jut out */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    min-width: 140px;
}

.call-subtitle {
    font-size: 11px;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.call-number {
    font-size: 18px;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.5px;
}

/* Circle shape for the icon overlapping the border */
.call-icon {
    width: 25px;
    height: 25px;
    border: 1.5px solid #000;
    border-radius: 50%;
    background-color: #fee614;
    /* Match header background */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    z-index: 2;
}

.call-icon svg {
    width: 14px;
    height: 14px;
    color: #000;
}

/* Hover effects for button */
.call-btn:hover .call-text {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Responsive considerations */
@media (max-width: 992px) {
    .container {
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
    }

    .header-action {
        order: 2;
        margin-left: auto;
        /* Pushes the call button to the right */
        margin-right: 20px;
        /* Space between call btn and toggle */
    }

    .mobile-toggle {
        display: flex;
        order: 3;
        /* Put toggle on the far right */
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        /* Slide in from left */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fee614;
        z-index: 100;
        padding-top: 80px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
        gap: 20px;
    }

    .main-nav a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    /* Let's shrink the logo image if we don't have enough space */
    .logo-placeholder img {
        max-height: 40px;
    }

    .call-btn {
        transform: scale(0.9);
        transform-origin: right center;
    }

    .header-action {
        margin-right: 15px;
        /* slightly less space on mobile */
    }
}

@media (max-width: 480px) {
    .call-btn {
        transform: scale(0.75);
    }

    .logo-placeholder img {
        max-height: 30px;
    }

    .header-action {
        margin-right: 10px;
    }
}

/* ================== Breadcrumb Section ================== */
.breadcrumb-section {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./images/about-us/WhatsApp-Image-2026-02-19-at-3.42.11-PM.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Ensure items start from left */
    position: relative;
}

.breadcrumb-section .container {
    width: 100%; /* Take full width of its max-width (1280px) */
    display: flex;
    justify-content: flex-start; /* Ensure content inside container is left-aligned */
}

.breadcrumb-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff; /* Changed to white for better visibility on dark background */
}

.breadcrumb-title {
    font-family: 'Gotham', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    color: #fff;
}

.breadcrumb-nav {
    font-family: 'Gelion', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.breadcrumb-nav a {
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s;
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

.breadcrumb-nav span {
    color: #fff;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        height: 200px;
    }

    .breadcrumb-title {
        font-size: 32px;
    }

    .breadcrumb-nav {
        font-size: 12px;
    }
}

/* ================== Sanitation Innovation Section ================== */
.sanitation-innovation-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Gelion', sans-serif;
}

.innovation-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.innovation-image-area {
    flex: 0 0 45%;
}

.innovation-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: visible; /* To allow badge to overflow if needed */
}

.innovation-main-img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.years-badge {
    position: absolute;
    top: 50%;
    left: 0px; /* Move it to the left to overlap the image edge */
    transform: translateY(-50%);
    z-index: 10;
}

.badge-red-box {
    background-color: #ec1c24; /* Red color */
    width: 90px; /* Wider to match design */
    padding: 40px 0 100px 0;
    border-top-right-radius: 50px; /* Fully rounded on the right */
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border: 3px solid #fff; /* White border */
    border-left: none; /* Straight edge on the left */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-text-vertical {
    color: #fff;
    font-size: 24px; /* Larger text */
    font-weight: 700;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: capitalize; /* "Years" instead of uppercase */
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-family: 'Gelion', sans-serif;
}

.badge-yellow-circle {
    background-color: #fff100; /* Yellow color */
    color: #fff;
    width: 70px; /* Larger circle */
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px; /* Larger number */
    font-weight: 700;
    position: absolute;
    bottom: 5px; /* Positioned inside/at bottom */
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #fff; /* White border for the yellow circle */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.innovation-content-area {
    flex: 1;
}

.innovation-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 25px;
}

.innovation-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 35px;
}

.dealer-enquiry-btn {
    display: inline-block;
    background-color: #fff100;
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.dealer-enquiry-btn:hover {
    background-color: #e5d900;
}

@media (max-width: 992px) {
    .innovation-flex {
        flex-direction: column;
        gap: 50px;
    }
    
    .innovation-image-area {
        flex: 0 0 100%;
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .innovation-title {
        font-size: 28px;
    }
    
    .badge-red-box {
        width: 50px;
    }
    
    .badge-text-vertical {
        font-size: 14px;
    }
    
    .badge-yellow-circle {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ================== Roadmap Section ================== */
.roadmap-section {
    padding: 100px 0;
    background-image: url('./images/about-us/map-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: #fdfdfd;
}

.sanitation-innovation-section .container,
.roadmap-section .container {
    display: block; /* Override global flex container */
}

.roadmap-header {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.roadmap-subtitle {
    color: #ec1c24; /* Bright Red */
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-family: 'Gelion', sans-serif;
}

.roadmap-title {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    font-family: 'Gelion', sans-serif;
}

.roadmap-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #ffd6c5; /* Light Coral/Orange line */
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    width: 50%;
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}

.timeline-item.left {
    padding-right: 80px;
}

.timeline-item.right {
    margin-left: auto;
    padding-left: 80px;
}

.timeline-box {
    background-color: #fff;
    padding: 35px;
    border-radius: 12px;
    border: 2px solid #ffd6c5; /* Light Coral border */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
    position: relative;
}

.timeline-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 15px;
}

.timeline-box-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
    white-space: nowrap;
}

.timeline-box-year-marker {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 10px;
}

.marker-line {
    flex: 1;
    height: 1.5px;
    background-color: #ffd6c5;
}

.marker-dot {
    width: 8px;
    height: 8px;
    background-color: #fff100; /* Yellow Dot */
    border-radius: 50%;
}

.marker-year {
    font-size: 24px;
    font-weight: 700;
    color: #ccc; /* Grayish year */
}

.timeline-box-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #888;
    margin: 0;
    font-weight: 400;
}

/* Timeline center dots on the main line */
.timeline-item::after {
    content: '';
    position: absolute;
    top: 30px;
    width: 12px;
    height: 12px;
    background-color: #fff100; /* Yellow center dot */
    border: 3px solid #ffd6c5;
    border-radius: 50%;
    z-index: 3;
}

.timeline-item.left::after {
    right: -9px;
}

.timeline-item.right::after {
    left: -9px;
}

/* Timeline horizontal connectors */
.timeline-item::before {
    content: '';
    position: absolute;
    top: 36px;
    width: 80px;
    height: 2px;
    background-color: #ffd6c5;
    z-index: 1;
}

.timeline-item.left::before {
    right: 0;
}

.timeline-item.right::before {
    left: 0;
}

@media (max-width: 992px) {
    .timeline-item.left {
        padding-right: 50px;
    }
    .timeline-item.right {
        padding-left: 50px;
    }
    .timeline-item::before {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
    }
    
    .timeline-item::after {
        left: 11px !important;
    }
    
    .timeline-item::before {
        left: 20px !important;
        width: 40px !important;
    }

    .timeline-box-header {
        flex-wrap: wrap;
    }

    .timeline-box-title {
        font-size: 22px;
    }

    .roadmap-title {
        font-size: 36px;
    }
}

/* ================== Driving Force Section ================== */
.driving-force-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
    font-family: 'Gelion', sans-serif;
}

.driving-force-section .container {
    display: block; /* Override global flex container */
}

.driving-force-content {
    max-width: 900px;
    margin: 0 auto;
}

.driving-force-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.driving-force-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 60px;
}

.driving-force-desc.secondary {
    margin-bottom: 30px;
}

.company-profile-link {
    display: block;
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.company-profile-link:hover {
    color: #000;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .driving-force-title {
        font-size: 28px;
    }
    
    .driving-force-desc {
        font-size: 16px;
    }
}

/* ================== Swachhalaya Edge Section ================== */
.swachhalaya-edge-section {
    padding: 80px 0;
    background-color: #fff100; /* Vibrant yellow */
    font-family: 'Gelion', sans-serif;
    text-align: center;
}

.swachhalaya-edge-section .container {
    display: block; /* Override global flex container */
}

.edge-header {
    margin-bottom: 60px;
}

.edge-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.edge-subtitle {
    font-size: 16px;
    color: #333;
}

.edge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.edge-card {
    border: 3px solid #fff; /* White border */
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.edge-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.edge-item-text {
    font-size: 18px;
    color: #333;
}

@media (max-width: 992px) {
    .edge-grid {
        grid-template-columns: 1fr;
    }
    
    .edge-title {
        font-size: 32px;
    }
}

/* ================Sections ==================== */
.hero-carousel {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1921.4506 / 988.346;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Responsive adjustments for the hero carousel height */
@media (max-width: 1200px) {
    .hero-carousel {
        aspect-ratio: 1920 / 1013;
        /* Keep consistency to avoid cropping */
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        aspect-ratio: 1920 / 1013;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        aspect-ratio: 1920 / 1013;
    }
}

.hero_section {
    position: relative;
}

/* Cleanup hero padding now that rooms strip is gone */
@media (max-width: 992px) {
    .hero_section {
        padding-bottom: 0;
    }
}

.hero_section .hero_title {
    position: absolute;
    top: 15%;
    left: 45%;
    display: flex;
    flex-direction: column;
    color: #ec1c24;
    z-index: 3;
    font-size: clamp(24px, 4vw, 50px);
    width: 400px;
    max-width: 90%;
    text-align: center;
    line-height: 1.2;
}

/* Responsive fixes for hero text */
@media (max-width: 1200px) {
    .hero_section .hero_title {
        left: 45%;
        width: 350px;
    }
}

@media (max-width: 992px) {
    .hero_section .hero_title {
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero_section .hero_title {
        top: 15%;
    }
}

@media (max-width: 480px) {
    .hero_section .hero_title {
        top: 10%;
        font-size: clamp(20px, 6vw, 24px);
    }
}



/* ================== Sustainable Banner Section ================== */
.sustainable-section {
    background-color: #797979;
    /* Matching the gray from the image */
    width: 100%;
    position: relative;
    border-bottom: 25px solid #fee614;
    /* Yellow bottom structural border */
}

.sustainable-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.sustainable-img-left,
.sustainable-img-right {
    flex: 0 0 auto;
}

.sustainable-img-left img {
    max-width: 180px;
    max-height: 160px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: -5px;
}

.sustainable-img-right img {
    max-width: 250px;
    max-height: 160px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: -30px;

}

.sustainable-content {
    text-align: center;
    color: #fee614;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 35px 0px;
    font-family: 'Gelion', sans-serif;
    align-self: center;
}

.sustainable-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.sustainable-subtitle {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.sustainable-desc {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Make it stack on smaller devices */
@media (max-width: 992px) {
    .sustainable-container {
        justify-content: center;
    }

    .sustainable-img-left,
    .sustainable-img-right {
        display: none;
        /* hide the left, right icon */
    }

    .sustainable-content {
        padding: 40px 10px;
    }
}

/* ================== About / Proud Venture Section ================== */
.about-section {
    background-color: #fee614;
    /* Yellow background */
    padding: 70px 20px;
    position: relative;
    width: 100%;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0;
}

.about-bg-shape {
    position: absolute;
    top: -40px;
    bottom: -40px;
    left: -20px;
    /* Slight overflow to left is fine */
    width: 97%;
    background-color: #898888;
    z-index: 1;
    clip-path: polygon(50% 0%, 78% 0, 100% 100%, 0 99%, 0 0);

}

.about-content {
    flex: 0 0 50%;
    padding: 0px 40px;
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: 'Gelion', sans-serif;
    font-family: 400;
}

.about-tag {
    display: inline-block;
    background: #fee614;
    color: #111;
    font-size: 21px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 18px 10px;
    margin: 0 0 28px;
    transform: translateY(-40px);
}

.about-title {
    color: #f3f3f3;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}

.about-divider {
    width: 100%;
    height: 2px;
    background-color: #fee614;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.24;
    font-weight: 400;
    color: #f3f3f3;
    margin-bottom: 20px;
}

.about-subtitle {
    color: #fee614;
    font-size: clamp(18px, 1.8vw, 20px);
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-read-more {
    display: inline-block;
    background-color: #fee614;
    color: #000;
    font-weight: 400;
    font-size: 14px;
    padding: 12px 35px;
    text-decoration: none;
    margin-top: 25px;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.btn-read-more:hover {
    background-color: #fff;
}

.about-image-wrapper {
    flex: 0 0 50%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    cursor: pointer;
    transition: transform 0.2s;
}

.play-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

@media (max-width: 992px) {
    .about-section {
        padding: 30px 15px;
    }

    .about-container {
        flex-direction: column;
    }

    .about-bg-shape {
        width: 100%;
        left: 0;
        top: 0;
        bottom: 0;
        clip-path: none;
    }

    .about-content {
        flex: 0 0 100%;
        padding: 40px 20px;
    }

    .about-image-wrapper {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 20px 40px 20px;
    }

    .about-img {
        width: 100%;
    }
}

/* ================== Video Modal ================== */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.video-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.video-close-btn:hover {
    color: #fee614;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    border-radius: 8px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ================== Solutions Section ================== */
.solutions-section {
    background-color: #EBEBEB;
    /* Light grey backdrop */
    padding: 100px 20px;
    padding-bottom: 30px;
    width: 100%;
    position: relative;
    font-family: 'Gelion', sans-serif;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0px 60px;
    padding-bottom: 100px;
    /* Space for corner brackets */
}

/* Yellow Corner Brackets */
.bracket {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 5px solid #fee614;
}

.bracket.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.bracket.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.bracket.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.bracket.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.solutions-header {
    text-align: center;
    margin-bottom: 40px;
}

.solutions-header h2 {
    display: inline-block;
    background-color: #898888;
    color: #fff;
    font-size: clamp(14px, 4vw, 24px);
    font-weight: 400;
    padding: 15px 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.solutions-header p {
    font-size: 21px;
    padding: 12px 20px;
    max-width: 500px;
    margin: auto;
    margin-top: 20px;
}

.solutions-no-break {
    white-space: nowrap;
}

.solutions-header .highlight {
    color: #fff;
    font-weight: 600;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.solution-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution-img-bg {
    /* Grey background of cards */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-img-bg img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.25));
    /* Puts focus on the product imgs */
}

.solution-card p {
    padding: 12px 20px;
    text-align: center;
    font-size: 18px;
}

.solution-label {
    background-color: #fee614;
    color: #000;
    text-align: center;
    font-size: 21px;
    padding: 8px 5px;
    width: 85%;
    margin-top: -14px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-weight: 400;
}

.solution-label strong {
    font-size: 24px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .solutions-header {
        margin-bottom: 28px;
    }

    .solutions-header h2 {
        font-size: 20px;
        padding: 12px 26px;
        letter-spacing: 1.2px;
    }

    .solutions-header p {
        font-size: 16px;
        line-height: 1.3;
        max-width: 560px;
        padding: 8px 12px;
        margin-top: 12px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .solution-label {
        font-size: 18px;
        width: 82%;
    }

    .solution-label strong {
        font-size: 21px;
    }

    .solution-card p {
        font-size: 15px;
        line-height: 1.35;
        padding: 10px 8px 0;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 40px 15px 14px;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 14px;
    }

    .solutions-container {
        padding: 30px 8px;
    }

    .bracket {
        display: none;
    }

    .solution-card {
        padding: 0 4px;
    }

    .solutions-header h2 {
        font-size: 16px;
        padding: 10px 16px;
    }

    .solutions-header p {
        font-size: 14px;
        line-height: 1.3;
        margin-top: 10px;
        padding: 6px 6px;
    }

    .solution-label {
        font-size: 15px;
        width: 88%;
        margin-top: -10px;
        padding: 8px 4px 7px;
        line-height: 1.2;
    }

    .solution-label strong {
        font-size: 18px;
    }

    .solution-card p {
        font-size: 13px;
        line-height: 1.32;
        padding: 8px 4px 0;
    }
}

@media (max-width: 480px) {
    .solutions-section {
        padding: 30px 10px 12px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-card {
        padding: 0;
    }

    .solutions-header h2 {
        font-size: 14px;
        padding: 10px 12px;
        letter-spacing: 1px;
    }

    .solutions-header p {
        font-size: 13px;
    }

    .solution-label {
        font-size: 14px;
        width: min(280px, 88%);
    }

    .solution-label strong {
        font-size: 17px;
    }

    .solution-card p {
        font-size: 12px;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ================== Our Vision Section ================== */
.vision-section {
    padding: 30px 20px;
    background-color: #FFFFFF;
    font-family: 'Gelion', sans-serif;
    width: 100%;
}

.vision-container {
    max-width: 1400px;
    margin: 0 auto;
}

.vision-border-box {
    border: 3px solid #A3A8AA;
    /* Thin grey border */
    position: relative;
    display: flex;
    flex-direction: column;
    /* min-height: 480px; */
    background-color: #FFFFFF;
    overflow: hidden;
    /* This perfectly crops the man image inside the border box */
}

/* Constrain content to left half */
.vision-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 3;
}

.vision-top-text {
    width: 40%;
    padding: 80px 40px 20px 80px;
    position: relative;
}



.vision-title-bg {
    background-color: #8C8C8C;
    display: inline-block;
    padding: 6px 40px;
    margin-bottom: 25px;
}

.vision-title-bg h3 {
    color: #fee614;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
}

.vision-top-text p {
    font-size: 16px;
    line-height: 1.3;
    color: #4A4A4A;
    font-weight: 500;
    margin: 0;
}

/* The yellow bar spanning across the bottom half */
.vision-yellow-bar {
    width: 100%;
    background-color: #fee614;
    padding: 20px 80px;
    margin-bottom: 50px;
    /* Space between yellow bar and bottom border */
    position: relative;
    z-index: 1;
}

.vision-quote {
    font-size: clamp(22px, 2.5vw, 28px);
    color: #000;
    margin: 0;
    max-width: 50%;
    /* Ensure text stays on the left */
    line-height: 1.2;
    letter-spacing: 1px;
}

/* The man image pinned to right side */
.vision-image {
    position: absolute;
    right: 30px;
    /* slightly shifted if necessary */
    top: 0;
    bottom: 0;
    width: 60%;
    z-index: 3;
    /* In front of yellow bar, behind left text if overlap */
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    /* pin to bottom */
    pointer-events: none;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Don't crop, just scale to fit height and width. */
    object-position: top right;
    /* Pin to bottom right corner */
}

@media (max-width: 1200px) {
    .vision-top-text {
        padding: 50px 40px;
    }

    .vision-yellow-bar {
        padding: 40px 40px;
    }
}

@media (max-width: 992px) {
    .vision-top-text {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.85);
        /* Readability */
    }

    .vision-quote {
        max-width: 100%;
    }

    .vision-image {
        opacity: 0.15;
        /* Turn into watermark for mobile */
        width: 100%;
    }

    .vision-yellow-bar {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .vision-image {
        display: none;
    }

    .vision-top-text {
        padding: 30px 20px;
    }

    .vision-yellow-bar {
        padding: 30px 20px;
    }

    .vision-border-box {
        border-width: 2px;
    }
}

/* ================== Why Swachhalaya Section ================== */
.why-section {
    position: relative;
    width: 100%;
    /* The gradient gives the top half the matching #EBEBEB background and bottom half white */
    background: linear-gradient(to bottom, #EBEBEB 50%, #FFFFFF 50%);
    padding: 80px 0;
    padding-bottom: 0;
    overflow: hidden;
    font-family: 'Gelion', sans-serif;
}

.why-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    padding: 20px;
}

.why-left-image {
    position: absolute;
    left: -50px;
    top: -30%;
    z-index: 5;
    height: 120%;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.why-left-image img {
    height: 100%;
    max-height: 350px;
    width: auto;
}

.why-yellow-pill {
    background-color: #fee614;
    border-radius: 300px;
    /* Fully rounded ends / pill shape */
    padding: 40px 150px 40px 150px;
    /* Space on left for businessmen */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* very soft shadow */
}

.why-header-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-header-pill {
    background-color: #808080;
    border-radius: 50px;
    padding: 18px 60px;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

.why-header-shadow {
    width: auto;
    max-width: 59%;
    height: 43px;
    margin-top: 0px;
    /* pulls the shadow image up so it rests underneath the pill */
    z-index: 1;
    pointer-events: none;
}

.why-header-pill h2 {
    color: #fff;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    height: 45px;
    width: auto;
    margin-bottom: 12px;
    object-fit: contain;
}

.feature-title-bg {
    background-color: #808080;
    padding: 6px 30px;
    margin-bottom: 8px;
}

.feature-title-bg h3 {
    color: #fee614;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin: 0;
    font-weight: 500;
}

.pill-bottom-bar {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 8px;
    background-color: #808080;
}

/* Responsive fixes */
@media (max-width: 1200px) {
    .why-yellow-pill {
        padding: 80px 60px 80px 180px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-yellow-pill {
        border-radius: 60px;
        /* less exaggerated pill */
        padding: 80px 40px;
        margin-left: auto;
        margin-right: auto;
    }

    .why-left-image {
        display: none;
        /* Hide businessmen on tablet so they don't block text */
    }

    .why-section {
        background: #EBEBEB;
        /* Just one solid color if pill is compact */
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-yellow-pill {
        width: 95%;
        padding: 60px 20px;
        border-radius: 40px;
    }

    .pill-bottom-bar {
        width: 200px;
    }
}

/* ================== Needful For Section ================== */
.needful-section {
    padding: 20px 30px;
    background-color: #FFFFFF;
    font-family: 'Gelion', sans-serif;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    box-sizing: border-box;
}

.sustainable-container,
.about-container,
.solutions-container,
.home-products-range-inner,
.home-product-categories-inner,
.needful-section {
    max-width: 1300px;
}

.needful-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.needful-header::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 9px;
    height: 3px;
    background: #d4c900;
}

.needful-header h2 {
    color: #111;
    display: inline-block;
    grid-area: 1 / 1;
    z-index: 2;
}

.needful-header-shape {
    width: min(620px, 100%);
    margin: 0 auto;
    position: relative;
    grid-area: 1 / 1;
    z-index: 1;
}

.needful-header-shape svg {
    display: block;
    width: 100%;
    height: auto;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 100px;
    /* Space for arrows */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.slider-arrow svg {
    width: 80px;
    height: 80px;
    stroke: #666;
    transition: stroke 0.3s;
}

.slider-arrow:hover svg {
    stroke: #000;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.needful-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    width: 100%;
    padding-bottom: 20px;
    /* small padding for focus rings if any */
}

.needful-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.needful-slide {
    flex: 0 0 calc(50% - 15px);
    /* Show 2 slides with gap 30px */
    scroll-snap-align: start;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.needful-slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.slide-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fee614;
    color: #000;
    padding: 12px 30px;
    font-size: clamp(12px, 1.2vw, 15px);
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    line-height: 1.2;
    white-space: nowrap;
}

/* Responsiveness */
@media (max-width: 992px) {
    .needful-slide {
        flex: 0 0 calc(100% - 10px);
        /* Show 1 slide */
        margin-right: 10px;
        /* safety margin */
    }

    .slider-wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .slider-wrapper {
        padding: 0 20px;
    }

    .left-arrow {
        left: -15px;
    }

    .right-arrow {
        right: -15px;
    }

    .slider-arrow svg {
        width: 30px;
        height: 30px;
    }
}

/* ================== Products Section ================== */
.products-section {
    background-color: #EBEBEB;
    padding: 0 0 40px 0;
    width: 100%;
    font-family: 'Gelion', sans-serif;
    position: relative;
    margin: 40px 0;
}

.products-header-pill {
    background-color: #808080;
    padding: 12px 60px;
    margin: 0 auto 40px auto;
    display: table;
    transform: translateY(-25px)
}

.products-header-pill h2 {
    color: #fee614;
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
}

.products-main-logo {
    text-align: center;
    margin-bottom: 40px;
}

.products-main-logo img {
    height: 80px;
    width: auto;
}

.products-filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 1px;
}

.filter-btn:hover {
    background-color: #f0f0f0;
}

.filter-btn.active {
    background-color: #fee614;
}

/* Floating Dropdown Sub-tabs */
.filter-item {
    position: relative;
    display: inline-block;
}

.sub-tabs-menu {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #fee614;
    border-radius: 20px;
    padding: 20px 30px;
    list-style: none;
    min-width: 250px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

/* Triangle/Arrow for the dropdown if needed, but in image it's just a box */

.filter-item.active .sub-tabs-menu {
    display: block;
}

.sub-tabs-menu li {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    padding: 8px 0;
    text-align: left;
    white-space: nowrap;
    cursor: pointer;
    transition: opacity 0.2s;
    letter-spacing: 0.5px;
}

.sub-tabs-menu li:hover {
    opacity: 0.6;
}

/* Media query for mobile dropdowns */
@media (max-width: 768px) {
    .sub-tabs-menu {
        min-width: 200px;
        padding: 15px 20px;
    }

    .sub-tabs-menu li {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .filter-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .filter-row {
        gap: 15px;
    }

    .products-filters {
        gap: 15px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .filter-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    .filter-row {
        gap: 8px;
    }
}

.product-display-container {
    padding: 0 40px;
    /* gives margin on sides */
    margin-bottom: 50px;
}

.product-content-wrapper {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #fee614 50%, transparent 50%);
    max-width: 1400px;
    margin: 0 auto;
}

.product-info-left {
    width: 32%;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-inline-logo {
    height: 80px;
    margin-bottom: 20px;
}

.product-hindi-title {
    font-size: 32px;
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #000;
}

.product-specs-table {
    width: auto;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 14px;
    color: #000;
}

.product-specs-table th {
    text-align: right;
    padding: 8px 25px 8px 0;
    font-weight: 400;
    white-space: nowrap;
}

.product-specs-table td {
    text-align: left;
    padding: 8px 0 8px 5px;
    font-weight: 400;
}

.product-specs-table tr:nth-child(2) th,
.product-specs-table tr:nth-child(2) td,
.product-specs-table tr:nth-child(3) th,
.product-specs-table tr:nth-child(3) td {
    border-bottom: 1px solid #000;
}

.model-badge {
    background-color: #000;
    color: #fee614;
    padding: 5px 15px;
    border-radius: 0px;
    /* looks rectangular in design */
    font-weight: 400;
    display: inline-block;
}

.product-main-img {
    width: 30%;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70%;
    background-color: #808080;
}

.product-main-img img {
    max-width: 100%;
    object-fit: cover;
}

.product-specs-right {
    width: 36%;
    padding: 60px 60px 60px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-specs-right::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background-color: #fee614;
    z-index: 1;
}

.spec-title-pill {
    background-color: #8C8C8C;
    color: #fee614;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 0 20px 0 0;
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.product-thumbnails {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.thumbnail {
    background-color: #808080;
    /* matching middle picture bg */
    width: 30%;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.spec-list-wrapper {
    margin-top: 10px;
    flex-grow: 1;
    /* Take up remaining space */
}

.spec-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    font-weight: 400;
    color: #000;
}

.spec-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 4px;
}

.spec-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.vertical-text {
    position: absolute;
    right: 50px;
    bottom: 160px;
    transform: rotate(-90deg);
    transform-origin: right bottom;
    font-size: 11px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    z-index: 2;
    font-weight: 400;
}

.product-bottom-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

.bottom-nav-title {
    background-color: #8C8C8C;
    color: #fee614;
    padding: 10px 100px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bottom-nav-bar {
    width: 100%;
    background-color: #fee614;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bottom-nav-bar a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
}

.bottom-nav-bar a:hover {
    opacity: 0.7;
}

.bottom-nav-bar .sep {
    color: #000;
    font-weight: 400;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .product-info-left {
        width: 30%;
        padding: 40px 20px;
    }

    .product-main-img {
        width: 35%;
    }

    .product-specs-right {
        width: 35%;
        padding: 40px 60px 40px 20px;
    }
}

@media (max-width: 992px) {
    .product-content-wrapper {
        flex-direction: column;
        background: #fff;
        /* Solid white background for mobile to simplify */
    }

    .product-info-left {
        width: 100%;
        background-color: #fee614;
    }

    .product-main-img {
        width: 100%;
    }

    .product-specs-right {
        width: 100%;
        padding: 40px 20px;
        background-color: #fff;
    }

    .product-specs-right::after {
        display: none;
    }

    .vertical-text {
        position: static;
        transform: none;
        display: block;
        margin-top: 15px;
        text-align: right;
    }
}

@media (max-width: 768px) {
    .thumbnail {
        width: 32%;
    }

    .product-display-container {
        padding: 0 15px;
    }

    .bottom-nav-bar {
        gap: 10px;
        padding: 20px 10px;
    }

    .bottom-nav-bar .sep {
        display: none;
        /* remove separators on mobile if they wrap weirdly */
    }
}

/* ================== Footer Section ================== */
.main-footer {
    width: 100%;
    font-family: 'Gelion', sans-serif;
    position: relative;
    /* We don't need margin-top, because upper sections have padding */
}

.footer-top {
    background-color: #fee614;
    padding: 40px 0 50px 0;
    position: relative;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.relative-container {
    position: relative;
}

/* Catalogue Button */
.catalogue-btn {
    position: absolute;
    top: -60px;
    /* Touch the very top of the yellow */
    right: 40px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

.catalogue-btn:hover {
    background-color: #333;
}

.download-icon {
    width: 24px;
    height: 24px;
}

/* Footer Grid */
.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* Stretch columns to same height */
    gap: 40px;
    margin-top: 20px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-col-content {
    margin-top: auto;
    /* Push content to bottom */
    position: relative;
    padding: 0;
}

/* Column 1 */
.col-about {
    padding-right: 30px;
}

.footer-logo {
    max-width: 220px;
    margin: 0 auto 15px auto;
    /* Centered */
    display: block;
}

.col-about p {
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    font-weight: 500;
    margin: 0;
}

/* Column 2 */
.col-contact {
    padding: 0 40px;
}

.col-contact .footer-col-content::before,
.col-contact .footer-col-content::after {
    content: "";
    position: absolute;
    top: 10px;
    /* Added gap at top */
    bottom: 10px;
    /* Added gap at bottom */
    width: 1px;
    background-color: #000;
}

.col-contact .footer-col-content::before {
    left: -40px;
}

.col-contact .footer-col-content::after {
    right: -40px;
}

.footer-sankalp-logo {
    max-width: 180px;
    margin: 0 auto 15px auto;
    /* Centered */
    align-self: center;
    display: block;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.3;
    color: #000;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-icon {
    margin-top: 2px;
}

.mt-2 {
    margin-top: 0px;
}

.mt-3 {
    margin-top: 0px;
}

/* Column 3 */
.col-links {
    padding-left: 30px;
}

.footer-links-title {
    background-color: #808080;
    color: #fee614;
    display: inline-block;
    /* Full width bar */
    padding: 6px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.col-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.col-links li {
    margin-bottom: 6px;
}

.col-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.col-links a:hover {
    opacity: 0.6;
}

/* Back To Top Button */
.back-to-top {
    position: absolute;
    bottom: -20px;
    /* Overlap the grey bar */
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fee614;
    border: none;
    padding: 12px 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 10;
    white-space: nowrap;
}

.back-to-top:hover {
    background-color: #333;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #DDE1E3;
    /* grey */
    padding: 25px 0 15px 0;
    text-align: left;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-columns {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }

    .col-about {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .col-contact {
        border-left: none;
        border-right: none;
        border-top: 1px solid #000;
        border-bottom: 1px solid #000;
        padding: 30px 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .col-contact .footer-col-content::before,
    .col-contact .footer-col-content::after {
        display: none;
    }

    .footer-col-content {
        margin-top: 0;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .col-links {
        padding-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .catalogue-btn {
        position: static;
        display: inline-flex;
        margin: 0 auto 30px 0;
    }

    .footer-top {
        padding: 40px 0 60px 0;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-logo {
        max-width: 170px;
    }

    .catalogue-btn {
        padding: 10px 20px;
        font-size: 10px;
        margin: 0 auto 20px 0;
    }

    .footer-bottom {
        text-align: center;
    }

    .back-to-top {
        padding: 10px 30px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 140px;
    }

    .catalogue-btn {
        padding: 8px 16px;
        font-size: 9px;
    }

    .footer-sankalp-logo {
        max-width: 140px;
    }

    .back-to-top {
        padding: 8px 20px;
        font-size: 10px;
        bottom: -15px;
    }
}

/* ================== Mela / Crowd Section ================== */
.mela-section {
    position: relative;
    width: 100%;
    min-height: 1128.77px;
    background: url('./images/crowd_people.png') center/cover no-repeat;
    display: flex;
    align-items: flex-start;
}

.mela-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 0 40px;
}

.mela-red-box {
    background: url('./images/shape_banner_box.png') top center / 100% 100% no-repeat;
    width: 530px;
    padding: 80px 40px 180px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
}

.mela-yellow-line {
    width: 120px;
    height: 4px;
    background-color: #fbb034;
    margin: 20px 0;
}

.mela-red-box h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 5px 0;
    letter-spacing: 1px;
    font-family: 'Gotham', 'Gelion', sans-serif;
}

.mela-red-box p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 1;
}

.mela-india-map {
    position: absolute;
    top: 60px;
    right: 20px;
    width: 350px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mela-map-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -110px;
    /* Position text over map */
    width: 100%;
}

.mela-map-text span {
    font-family: 'Shreelipi', sans-serif;
    color: #ec1c24;
    font-size: 40px;
    line-height: 1.1;
    -webkit-text-stroke: 1.5px #ffee00;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
    display: block;
    transform: skewX(-5deg);
    /* Match hero text skew */
}

.mela-india-map img {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .mela-red-box {
        width: 400px;
        border-radius: 0 0 200px 200px;
        padding-bottom: 70px;
    }

    .mela-red-box h2 {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .mela-india-map {
        width: 130px;
        top: 30px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .mela-section {
        flex-direction: column;
        align-items: center;
        min-height: auto;
        padding-bottom: 50px;
    }

    .mela-red-box {
        margin-left: 0;
        width: 100%;
        max-width: 460px;
        height: auto;
    }

    .mela-india-map {
        position: relative;
        top: 30px;
        right: 0;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .mela-red-box h2 {
        font-size: 32px;
    }

    .mela-red-box p {
        font-size: 15px;
    }
}

/* ================== Home products range banner (index.html parity) ================== */
#our-products-range {
    scroll-margin-top: 100px;
}

.home-products-range-banner {
    background: #fff;
    padding: 16px 0 12px;
}

.home-products-range-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    position: relative;
    min-height: 220px;
}

.home-products-range-strip {
    position: absolute;
    right: 20px;
}

.home-products-range-strip-gray {
    bottom: 14px;
    height: 130px;
    background: #868686;
}

.home-products-range-strip-yellow {
    bottom: 14px;
    left: 300px;
    height: 130px;
    background: #ffea00;
}

.home-products-range-person {
    position: absolute;
    left: 140px;
    bottom: 14px;
    width: 220px;
    max-width: 24vw;
    height: auto;
    z-index: 2;
}

.home-products-range-title-box {
    position: absolute;
    left: 50%;
    bottom: 52px;
    transform: translateX(-10%);
    background: #808080;
    z-index: 3;
    text-align: center;
    padding: 12px 80px;
}

.home-products-range-title-box h2,
.needful-header h2 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 0.04em;
    font-weight: 700;
    line-height: 1.05;
}

.home-products-range-title-box h2 {
    color: #fff;
}

@media (min-width: 992px) {
    .home-products-range-strip {
        left: 0;
        right: 0;
    }

    .home-products-range-strip-yellow {
        left: 300px;
    }
}

@media (max-width: 992px) {
    .home-products-range-inner {
        min-height: 170px;
        padding: 0 20px;
    }

    .home-products-range-strip {
        left: 20px;
        right: 20px;
        height: 82px;
        bottom: 10px;
    }

    .home-products-range-strip-yellow {
        left: 170px;
    }

    .home-products-range-person {
        left: 42px;
        width: 140px;
        max-width: none;
        bottom: 10px;
    }

    .home-products-range-title-box {
        left: 58%;
        transform: translateX(-50%);
        bottom: 26px;
        width: min(56%, 360px);
        padding: 10px 24px;
    }

    .home-products-range-title-box h2,
    .needful-header h2 {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .home-products-range-inner {
        min-height: 124px;
        padding: 0 12px;
    }

    .home-products-range-strip {
        left: 12px;
        right: 12px;
        height: 56px;
        bottom: 8px;
    }

    .home-products-range-strip-yellow {
        left: 82px;
    }

    .home-products-range-person {
        left: 16px;
        width: 86px;
        bottom: 8px;
    }

    .home-products-range-title-box {
        left: 61%;
        width: min(68%, 240px);
        bottom: 18px;
        padding: 7px 10px;
    }

    .home-products-range-title-box h2,
    .needful-header h2 {
        font-size: 13px;
        letter-spacing: 0.03em;
    }
}

@media (max-width: 420px) {
    .home-products-range-inner {
        min-height: 106px;
        padding: 0 8px;
    }

    .home-products-range-strip {
        left: 8px;
        right: 8px;
        height: 48px;
        bottom: 7px;
    }

    .home-products-range-strip-yellow {
        left: 62px;
    }

    .home-products-range-person {
        left: 10px;
        width: 72px;
        bottom: 7px;
    }

    .home-products-range-title-box {
        left: 62%;
        width: min(70%, 190px);
        bottom: 18px;
        padding: 6px 8px;
    }

    .home-products-range-title-box h2,
    .needful-header h2 {
        font-size: 11px;
        letter-spacing: 0.02em;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.home-product-categories-section {
    padding: 48px 0 56px;
    background-color: #fff;
    font-family: 'Gelion', 'Helvetica Neue', Arial, sans-serif;
    box-sizing: border-box;
    width: 100%;
}

.home-product-categories-inner {
    display: block;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .home-product-categories-inner {
        padding: 0 0px;
    }
}

.home-product-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 50px;
    width: 100%;
    margin: 0;
}

.home-product-cat-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    color: #000;
    background: #fff;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.home-product-cat-hero {
    position: relative;
}

.home-product-cat-img-wrap {
    background-color: #e6e6e6;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px 32px;
    border: none;
    border-radius: 0;
}

.home-product-cat-img-wrap img {
    max-width: 100%;
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.home-product-cat-title-box {
    position: absolute;
    left: 50%;
    width: 60%;
    max-width: 100%;
    z-index: 2;
    top: 100%;
    transform: translate(-50%, -50%);
    background-color: #ffeb2a;
    text-align: center;
    padding: 10px 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 26px;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.home-product-cat-title-en {
    font-weight: 700;
    font-size: 1em;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.home-product-cat-title-hi {
    font-family: 'Shreelipi', 'Gelion', sans-serif;
    font-weight: 400;
    font-size: 0.8em;
    line-height: 1.25;
    color: #000;
}

.home-product-cat-desc {
    flex: 0 1 auto;
    margin: 0;
    margin-top: clamp(46px, 5.5vw, 40px);
    padding: 10px 28px 10px;
    text-align: center;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: 1px;
    font-weight: 300;
    color: #000;
}

.home-product-cat-cta {
    display: block;
    text-align: center;
    text-decoration: none;
    background-color: #ffeb2a;
    color: #000;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.06em;
    padding: 10px 16px;
    margin: 0 28px 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
}

.home-product-cat-cta:hover {
    background-color: #ffe433;
    color: #000;
}

.home-product-cat-cta:focus-visible {
    background-color: #ffe433;
    color: #000;
    outline: 2px solid #000;
    outline-offset: 2px;
}

@media (max-width: 992px) {
    .home-product-cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 18px;
    }

    .home-product-cat-img-wrap {
        min-height: 220px;
    }
}

@media (max-width: 576px) {
    .home-product-categories-section {
        padding: 36px 0 44px;
    }

    .home-product-cat-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Footer quick links column (index.html) */
.footer-col-quicklinks {
    padding-left: 20px;
    padding-right: 10px;
    align-self: flex-end;
}

.footer-col-quicklinks .footer-col-content {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 270px;
}

.footer-quick-title {
    margin: 0 0 18px;
    padding: 0;
    background: none;
    color: #000;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.footer-quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 22px;
    width: 100%;
}

.footer-quick-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 2px solid #000;
    border-radius: 9999px;
    background: transparent;
    box-shadow: none;
}

.footer-col-quicklinks .footer-quick-btn:hover {
    color: #000;
    background: transparent;
    text-decoration: none;
    box-shadow: none;
    transform: none;
}

.footer-col-quicklinks .footer-quick-btn:focus-visible {
    color: #000;
    background: transparent;
    text-decoration: none;
    box-shadow: none;
    transform: none;
    outline: 2px solid #000;
    outline-offset: 3px;
}

.footer-social-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

.footer-social-link svg {
    display: block;
}

@media (max-width: 992px) {
    .footer-col-quicklinks {
        padding-left: 0;
        padding-right: 0;
        align-self: center;
        width: 100%;
    }

    .footer-col-quicklinks .footer-col-content {
        max-width: 360px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-quick-buttons {
        width: 100%;
    }

    .footer-quick-btn {
        width: 100%;
    }

    .footer-quick-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer-quick-buttons {
        margin-bottom: 14px;
    }

    .footer-quick-btn {
        font-size: 12px;
        padding: 7px 12px;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .footer-social-link svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    .footer-quick-title {
        font-size: 16px;
        letter-spacing: 0.05em;
    }

    .footer-col-quicklinks .footer-col-content {
        max-width: 320px;
    }

    .footer-quick-btn {
        font-size: 11px;
        padding: 6px 10px;
    }

    .footer-social-row {
        gap: 9px;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }

    .footer-social-link svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .footer-quick-title {
        font-size: 15px;
    }

    .footer-col-quicklinks .footer-col-content {
        max-width: 280px;
    }

    .footer-quick-btn {
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .footer-social-link {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }

    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }
}