/*
Theme Name: Swachhalaya
Theme URI: https://example.com/
Author: NIKHIL ROY
Author URI: https://example.com/
Description: 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
*/

@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 {
    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 ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 14px;
    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: 10px;
    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;
    }
}

/* ================Sections ==================== */
.hero_section .hero_bg {
    width: 100%;
    max-width: 100%;
    /* Create a relative height based on viewport width, capping at 1013px */
    height: auto;
    aspect-ratio: 1920 / 1013;
    max-height: calc(100vh - 100px);
    /* Prevent it from being taller than the screen */
    object-position: center;
    display: block;
    pointer-events: none;
}

/* Responsive adjustments for the hero banner height */
@media (max-width: 1200px) {
    .hero_section .hero_bg {
        object-fit: contain;
        aspect-ratio: auto;
    }
}

@media (max-width: 992px) {
    .hero_section .hero_bg {}
}

@media (max-width: 768px) {
    .hero_section .hero_bg {}
}

@media (max-width: 480px) {
    .hero_section .hero_bg {}
}

.hero_section {
    position: relative;
}

.hero_section .hero_title {
    position: absolute;
    top: 15%;
    left: 45%;
    display: flex;
    flex-direction: column;
    color: #ec1c24;
    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(28px, 4vw, 42px);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.sustainable-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.sustainable-desc {
    font-size: clamp(18px, 2.5vw, 26px);
    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-title {
    color: #fee614;
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}

.about-divider {
    width: 100%;
    height: 2px;
    background-color: #fee614;
    margin-bottom: 25px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0px;
}

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

.solutions-header h2 {
    display: inline-block;
    background-color: #898888;
    /* match previous dark grays */
    color: #fee614;
    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);
    /* Slight elevation */
}

.solutions-header .highlight {
    color: #fee614;
    font-weight: 600;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: end;
    /* Aligns them nicely if height differs slightly */
}

.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-label {
    background-color: #fee614;
    color: #000;
    text-align: center;
    font-size: clamp(10px, 2.5vw, 14px);
    padding: 8px 5px;
    width: 85%;
    margin-top: -14px;
    /* Pulls it up over the grey background */
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    line-height: 1.3;
    font-weight: 400;
}

.solution-label strong {
    font-size: clamp(12px, 3vw, 17px);
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 50px 15px 20px 15px;
    }

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

    .solutions-container {
        padding: 40px 10px;
        /* Remove side padding on small mobile */
    }

    .bracket {
        display: none;
        /* Hide brackets if too tight */
    }

    .solution-card {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .solutions-section {
        padding: 35px 10px 15px 10px;
    }

    .solutions-grid {
        gap: 20px 10px;
    }

    .solution-card {
        padding: 0 5px;
    }

    .solutions-header h2 {
        padding: 12px 15px;
        letter-spacing: 1px;
    }
}

/* ================== 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 #B5B5B5;
    /* 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: 55%;
    padding: 80px 40px 20px 80px;
    position: relative;
}



.vision-title-bg {
    background-color: #8C8C8C;
    display: inline-block;
    padding: 6px 30px;
    margin-bottom: 25px;
}

.vision-title-bg h3 {
    color: #fee614;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
}

.vision-top-text p {
    font-size: 15px;
    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: 40px 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: -20px;
    /* slightly shifted if necessary */
    top: 0;
    bottom: 0;
    width: 50%;
    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: 0%;
    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: 90%;
    max-width: 1300px;
    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 30px;
    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: #8C8C8C;
    width: 90%;
    max-width: 250px;
    padding: 8px 10px;
    margin-bottom: 15px;
}

.feature-title-bg h3 {
    color: #fee614;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-item p {
    font-size: 12px;
    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: #8C8C8C;
}

/* 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 20px;
    background-color: #FFFFFF;
    font-family: 'Gelion', sans-serif;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.needful-header {
    text-align: center;
    margin-bottom: 30px;
}

.needful-header h2 {
    color: #000;
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
}

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

.products-header-pill {
    background-color: #8C8C8C;
    padding: 12px 60px;
    margin: 0 auto 40px auto;
    display: table;
}

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

@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: stretch;
    background: linear-gradient(to right, #fee614 50%, #FFFFFF 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: 700;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 40px;
    color: #000;
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #000;
}

.product-specs-table th {
    text-align: right;
    padding: 8px 10px 8px 0;
    font-weight: 500;
    white-space: nowrap;
}

.product-specs-table td {
    text-align: left;
    padding: 8px 0 8px 5px;
    font-weight: 600;
}

.model-badge {
    background-color: #000;
    color: #fee614;
    padding: 5px 15px;
    border-radius: 0px;
    /* looks rectangular in design */
    font-weight: 700;
    display: inline-block;
}

.product-main-img {
    width: 32%;
    background-color: #808080;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.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: flex-start;
    gap: 40px;
    margin-top: 20px;
}

.footer-col {
    flex: 1;
}

/* Column 1 */
.col-about {
    padding-right: 30px;
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 15px;
}

.col-about p {
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    font-weight: 500;
    margin: 0;
}

/* Column 2 */
.col-contact {
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
}

.footer-sankalp-logo {
    max-width: 180px;
    margin-bottom: 15px;
    align-self: center;
}

.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: #8C8C8C;
    color: #fee614;
    display: inline-block;
    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: 15px;
    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;
    }

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