/* ==========================================================================
   HAMDARD CAMPAIGN - MASTER MASTER STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   SECTION A: GLOBAL DESIGN TOKENS (:root variables)
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --primary-bg: #fff; /* Warm sand/cream background */
    --text-main: #000; /* Charcoal black for headings */
    --text-muted: #555555; /* Muted grey-brown body text */
    --accent-gold: #fbab17; /* Hamdard signature gold */
    --accent-gold-hover: #a57e1e; /* Darker active gold state */
    --color-white: #ffffff;
    --color-black: #000000;

    /* Typography Font Families */
    --font-poppins: 'Poppins', sans-serif;
    --font-playfair: 'Playfair Display', serif;

    /* Spacing Scales */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 3.5rem;

    /* Container & Layout Scales */
    --container-max-width: 1250px;
    --border-radius-card: 8px;

    /* Transitions & Shadow Details */
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s ease;
    --box-shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --------------------------------------------------------------------------
   SECTION B: UNIVERSAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--primary-bg);
}

body {
    font-family: var(--font-poppins);
    color: var(--text-main);
    background-color: var(--primary-bg);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold-hover);
}

/* Base Typo resets */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-poppins);
    font-weight: 700;
    color: var(--text-main);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

p {
    color: var(--text-muted);
}

.header{
    background-color: #fff;
    box-shadow: 2px 3px 3px #eee;
    padding-top: 10px;
    height: 80px;
    position: fixed;
    width: 100%;
    z-index: 999;
}

.header .logo{
    float: left;
    width: 17%;
    text-align:right;
    
}

.header .logo img{
    width: 160px;
    
}


.header .menu{
    float: left;
    width: 60%;
    display: block;
    text-align: center;
    padding-top: 20px;
    margin-left: 0%;
}

.header .menu ul{
    display: block;
}

.header .menu ul li{
    display: inline-block;
    font-size: 1rem;
}


.header .menu ul  a li{
    color: #000;
    padding-left: 15px;
    padding-right: 15px;
      transition: 0.3s;
}

.header .menu ul  a:hover li{
    color: #fcae1a;
}



/* --------------------------------------------------------------------------
   SECTION C: REUSABLE UTILITY CLASSES
   -------------------------------------------------------------------------- */
.section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-xl) 1rem;
    width: 100%;
}

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

.desktop-only {
    display: inline;
}
#menu-icon {
    display: none;
}

.contact {
background-image: url(/new/wp-content/themes/buzztribe-theme/assets/case-studies/assets/imgs/news-bg.webp);
background-repeat: no-repeat;
background-size: contain;
padding-bottom: 60px;
overflow: hidden;
}

.buzzus {
width: 80%;
margin: 0px auto;
padding: 50px 0px;
}

.buzzus .left, .buzzus .right {
float: left;
width: 50%;
}

.buzzus .left h2 {
font-size: 5rem;
line-height: 1;
width: 15%;
}

.buzzus .left h2 span {
color: rgb(252, 174, 26);
}

.buzzus .left p {
 font-family: var(--font-poppins);
font-size: 1.2rem;
}  
.buzzus .left p a {
color: rgb(0, 0, 0);
transition: 0.3s;
}

    .buzzus .left address {
        font-style: normal;
        width: 30%;
        font-size: 1.1rem;
        font-family: var(--font-poppins);
     
        font-weight: 400;
        line-height: 1.2;
    }

        .buzzus .right h3 {
        font-size: 2rem;
        line-height: 1;
         font-family: var(--font-poppins);
       font-weight: 700;
        padding-bottom: 20px;
    }

        .buzzus .right h3 span {
        color: rgb(252, 174, 26);
    }

        .buzzus .right form {
        padding-top: 30px;
    }

        .buzzus .right form p {
        padding-bottom: 60px;
    }

        .buzzus .right form p label {
        width: 25%;
        display: block;
        float: left;
    }

        .buzzus .right form p input {
        width: 50%;
        display: block;
        float: left;
        border-width: 0px 0px 2px;
        border-style: none none solid;
        border-color: currentcolor currentcolor rgb(215, 214, 214);
        border-image: none;
    }

    .buzzus .right form button {
       font-family: var(--font-poppins);
       font-weight: 700;
        border: 0px;
        background: rgb(252, 174, 26);
        font-size: 1rem;
        color: rgb(255, 255, 255);
        padding: 10px 25px;
        cursor: pointer;
        transition: 0.3s;
    }

        .buzzus .right form button img {
        position: relative;
        top: 0px;
        left: 3px;
        width: 15px;
    }
     .buzzus .right form button:hover{
        background: #000;
    }
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
        .header .logo {
        padding: 0px 25px;
    }
        #menu-icon {
        display: block;
        position: absolute;
        top: 25px;
        right: 1em;
        color: #000;
        text-decoration: none;
        font-weight: bold;
        cursor: pointer;
        opacity: 1;
        padding: 0 0.4em;
        font-size: 25px;
        display: none;
    }
        .header .menu {
        display: none;
        width: 100%;
        background: #edbb43;
        margin-top: 10px;
        box-shadow: 2px 3px 3px #eee;
        padding-top: 0px;
        margin-left: 0px;
    }

    .header .menu ul a li {
        color: #fff;
        display: block;
        font-size: 16px;
        padding: 10px;
        background: #f4b533;
        /* border-bottom: 1px solid #ffffff; */
        text-align: left;
    }
    .header .menu ul li:focus{
      color: #fff;
        background: #000;
    }
    .header .menu ul  a li{
        color: #fff;
    }
    .header .menu ul  a:hover li{
        color: #000;
        background:#fcae1abd;
    }

        .contact {
        background-image: url(/new/wp-content/themes/buzztribe-theme/assets/case-studies/assets/imgs/news-bg.webp);
        background-repeat: no-repeat;
        background-size: cover;
        padding-bottom: 60px;
        overflow: hidden;
        margin-top: 80px;
    }

        .buzzus {
        width: 90%;
        margin: 0px auto;
        padding: 0px;
    }

        .buzzus .left, .buzzus .right {
        float: none;
        width: 100%;
    }
        .buzzus .left h2 {
        font-size: 2.5rem;
        line-height: 1;
        width: 100%;
    }
        .buzzus .left h2 span {
        color: rgb(252, 174, 26);
    }
    .buzzus .left p{
        font-size: 1.2rem;
    }
        .buzzus .left p a {
        color: rgb(0, 0, 0);
        transition: 0.3s;
    }    .buzzus .left address {
        font-style: normal;
        width: 70%;
        font-size: 1.1rem;
       font-family: var(--font-poppins);
        font-weight: 400;
        line-height: 1.2;
    }

        .buzzus .right {
        margin-top: 40px;
    }
        .buzzus .right h3 {
        font-size: 2rem;
        line-height: 1;
        font-family: var(--font-poppins);
        padding-bottom: 20px;
    }
        .buzzus .right h3 span {
        color: rgb(252, 174, 26);
    }

        .buzzus .right form {
        padding-top: 30px;
    }
    .buzzus .right form p {
        padding-bottom: 80px;
    }
        .buzzus .right form p label {
        width: 50%;
        display: block;
        float: left;
    }
    .buzzus .right form p input {
        width: 100%;
        display: block;
        float: left;
        border-width: 0px 0px 2px;
        border-style: none none solid;
        border-color: currentcolor currentcolor rgb(215, 214, 214);
        border-image: none;
        height: 40px;
        margin-bottom: 5px;
    }
}

/* Shared Brand Button */
.cta-button {
    background-color: var(--accent-gold);
    color: var(--color-white);
    padding: 0.6rem 1.15rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 10px rgba(197, 155, 39, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cta-button:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(197, 155, 39, 0.25);
}

.hero-section__line-2-gap {
    padding-left: 90px;
}

.extra {
    height: 100vh;
}

/* Editorial Line Dividers */
.unani-campaign .editorial-header, 
.madhvan-campaign .editorial-header {
    display: flex;
    align-items: center;
    width: 100%;
    /* margin-bottom: var(--spacing-sm); */
}

.unani-campaign .editorial-header__tag,
.madhvan-campaign .editorial-header__tag {
    font-family: var(--font-poppins);
    font-size: 1.4rem;
    font-weight: 500;
    color: #000; /* Strictly rich black */
    text-transform: capitalize;
    margin-right: 1.25rem;
    white-space: nowrap;
}

.unani-campaign .editorial-header__line,
.madhvan-campaign .editorial-header__line {
    flex-grow: 1;
    max-width: 600px;
    height: 2px;
    background-color: var(--accent-gold);
    transform-origin: left center;
}

.b-content {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
}

.unani-campaign .story-brand .section-container, 
.madhvan-campaign .story-brand .section-container {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.unani-campaign .story-brand__title,
.unani-campaign .story-brand__desc,
.unani-campaign .story-brand .editorial-header,
.diagnostic-approach .editorial-header,
.diagnostic-approach .diagnostic-approach__subtext,
.unani-campaign .editorial-header,
.unani-campaign .execution-section__intro,
.unani-campaign .execution-section__list,
.unani-campaign .impact-metrics__intro, 
.madhvan-campaign .editorial-header,
.madhvan-campaign .story-brand__title, 
.story-brief .story-brand__desc, 
.story-insight .story-brand__desc, 
.story-execution .story-brand__desc, 
.story-impact .story-brand__desc {
    margin-left: 70px !important;
    padding-left: 0 !important;
}

.story-brief .story-brand__desc,
.story-brief .story-brand__title, 
.story-insight .story-brand__title,
.story-execution .story-brand__title,
.story-impact .story-brand__title {
    margin-bottom: 20px !important;
    width: 570px;
    line-height: 1.2 !important;
}

.story-insight .story-brand__title {
    width: 650px !important;
}

.story-brief .section-container {
    padding: 0px 0px 60px 00px !important;
}

.story-insight .section-container {
    padding: 80px 0px 60px 0px !important;
}

.story-execution .section-container, 
.story-impact .section-container {
 padding: 0px 0px 60px 0px !important;
}

/* Offset smart quote for optical left-alignment */
.unani-campaign .story-brand__title,
.madhvan-campaign .story-brand__title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
    /* margin-left: -0.22em !important;  */

    /* Offsets quote character so letters align perfectly flush */
}

.unani-campaign .story-brand__desc,
.madhvan-campaign .story-brand__desc {
    font-family: var(--font-poppins);
    font-size: 1.2rem;
    line-height: 1.4;
    color: #222222; /* Crisp rich text color */
    max-width: 780px; /* Exact word-per-line wrapping */
    margin-bottom: var(--spacing-md);
}


.impact-metrics__desc p {
    padding-bottom: 10px;
}

.projects-header-centered {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    width: 100%;
}

.projects-header-centered__title {
    font-family: var(--font-poppins);
    font-size: 2.25rem;
    font-weight: 700;
    color: #111111;
    text-transform: capitalize;
    letter-spacing: -0.01em;
}

.footer-showcase__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

.footer-showcase__card {
    flex: 1;
    max-width: 320px;
    width: 100%;
    aspect-ratio: 0.73;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition-smooth);
    background-color: var(--primary-bg);
}

.footer-showcase__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-showcase__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

body.cursor-hover .custom-cursor {
    width: 4px;
    height: 4px;
    background-color: #111111;
}

body.cursor-hover .custom-cursor-glow {
    width: 60px;
    height: 60px;
    border-color: #111111;
    background-color: rgba(0, 0, 0, 0.03);
}

margi {
    margin: 50px auto !important;
}

.cont {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
}

#brand .section-title {
    font-family: var(--font-poppins) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #111111 !important;
    text-transform: capitalize !important;
    letter-spacing: normal !important;
    white-space: nowrap !important;
}

.info-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 40px !important;
    /* margin: 0 auto 40px auto !important; */
    max-width: var(--container-max-width) !important;
    width: 100% !important;
}

.info-left {
    width: 35% !important;
}

.info-title {
    font-family: var(--font-poppins) !important;
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
    color: var(--text-main) !important;
    line-height: 1.2 !important;
}

.info-right {
    width: 65% !important;
    /* text-align: right !important;  */
    margin: 0px 50px 10px 4px;
    padding: 0px 251px 0px 0px;
}

.info-desc {
    font-family: var(--font-poppins) !important;
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
    color: #222222 !important;
    text-align: right !important;
}

#brand .brand-video-container,
#brand .brand-video-wrapper {
    width: 100% !important;
    /* max-width: 90% !important; */
    margin: 60px auto !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important; */
}

#brand #brand-youtube-player {
    width: 100% !important;
    height: 600px !important;
    border: none !important;
    display: block !important;
    border-radius: 20px !important;
}

.brand-banner-container {
    width: 100% !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.brand-banner-container img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
}

@media (max-width: 768px) {
    .more-projects-card{
            width: 90%;
    }
    .info-container {
        flex-direction: column !important;
        gap: 20px !important;
    }
    .info-left,
    .info-right {
        width: 100% !important;
    }
    .brand-video-wrapper iframe {
        height: 280px !important;
    }
}

.hero-bg-wrapper {
    position: absolute !important;
    top: 0px !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    overflow: hidden !important;
    border-radius: 24px !important;
}

#hero-bg-banner {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transform: scale(1.05); /* Slight offset to support mouse parallax */
}

.hero-gradient-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.55) 100%
    ) !important;
    pointer-events: none !important;
    border-radius: 24px !important;
}

#hero-floating-bottle {
    height: 90vh !important;
    /* max-height: 560px !important; */
    width: auto !important;
    /* display: block !important; */
    margin: 0 auto !important;
    /* z-index: 10 !important; */
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.75)) !important;
}

.hero-bottle-shadow {
    position: absolute !important;
    bottom: 12% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 320px !important;
    height: 25px !important;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0) 70%
    ) !important;
    border-radius: 50% !important;
    filter: blur(8px) !important;
    /* z-index: 4 !important; */
    pointer-events: none !important;
}

.hero-particles {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 3 !important;
    pointer-events: none !important;
    overflow: hidden !important;
}

.hero-particle {
    position: absolute !important;
    background: rgba(245, 166, 35, 0.45) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
}

*/

.paddi {
    margin-top: 50px;
}

.p-paddi {
    padding: 20px 695px 0px 0px;
    line-height: 1.6 !important;
}

.width-control {
    width: 70%;
}

.infinite-grid-section .grid-track,
.infinite-grid-section .grid-container,
.infinite-grid-container {
    width: 100% !important;
    max-width: 100% !important;
}

.col-track img {
    width: 260px !important;
    height: 315px;
}

.footer-char {
    position: absolute !important;
    object-fit: contain !important;
    opacity: 0;
    z-index: 2 !important;
}

/* Position exactly matching the reference layout relative to center */
.footer-girl-1 {
    top: -6% !important;
    left: 50% !important;
    margin-left: -190px !important;
    height: 42% !important;
}

.footer-man-1 {
    bottom: 2% !important;
    left: 50% !important;
    margin-left: -380px !important;
    height: 70% !important;
}

.footer-man-2 {
    top: -6% !important;
    left: 50% !important;
    margin-left: 60px !important;
    height: 65% !important;
}

.footer-girl-2 {
    bottom: 2% !important;
    left: 50% !important;
    margin-left: 70px !important;
    height: 55% !important;
}

.footer-bottle-glow {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 320px !important;
    height: 320px !important;
    background: radial-gradient(
        circle,
        rgba(245, 166, 35, 0.55) 0%,
        transparent 70%
    ) !important;
    border-radius: 50% !important;
    filter: blur(25px) !important;
    z-index: 8 !important;
    opacity: 0;
    pointer-events: none !important;
}

/* ==========================================================================
   PART III: MERGED RESPONSIVE GLOBAL RULES
   ========================================================================== */

/* Unani Scoped Media Queries */
@media (max-width: 1024px) {

    .unani-campaign .hero-section{
            height: 40vh;
    }
    .unani-campaign .hero-section__content{
            margin-top: 20px;
    }
    .unani-campaign .section-container {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    .unani-campaign .hero-section__subtitle{
            font-size: 2rem;
    }
    .unani-campaign .hero-section__title-main {
        font-size: 10rem;
    }
    .unani-campaign .hero-section__title-pre {
        font-size: 2rem;
    }
    .unani-campaign .campaign-media-grid__columns {
        gap: 1.25rem;
    }
    .unani-campaign .campaign-media-grid__column {
        gap: 1.25rem;
    }
    .unani-campaign .footer-showcase__grid {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    .unani-campaign .footer-showcase__card {
        aspect-ratio: 1.33;
        max-width: 480px;
        width: 100%;
        margin: 0 auto;
    } 
    
    .unani-campaign .story-brand__title, 
    .unani-campaign .story-brand__desc,
     .unani-campaign .story-brand .editorial-header{
                padding-left: 100px !important;
     }
     
    .diagnostic-approach .editorial-header, 
    .diagnostic-approach .diagnostic-approach__subtext, 
    .unani-campaign .editorial-header, 
    .unani-campaign .execution-section__intro, 
    .unani-campaign .execution-section__list, 
    .unani-campaign .impact-metrics__intro, 
    .madhvan-campaign .editorial-header, 
    .madhvan-campaign .story-brand__title, 
    .story-brief .story-brand__desc, 
    .story-insight .story-brand__desc, 
    .story-execution .story-brand__desc, .story-impact .story-brand__desc{
            margin-left: 0px !important;
            padding-left: 70px !important;
    }
}

@media (max-width: 768px) {
.header .logo{
    float: left;
    width: 35%;
    text-align:center;
    
}
    .unani-campaign .story-brand .section-container, .madhvan-campaign .story-brand .section-container{
            padding-left: 20px !important;
    padding-right: 20px !important;
    }
   .madhvan-campaign #hero.hero-section{
            height: 40vh;
            margin: 40px 0px 0px;
    }
    .hero-bg-wrapper{
        border-radius: 0px !important;
    }
    #hero-bg-banner{
            transform: scale(1);
    }
    .madhvan-campaign .hero-card{
        width: 100% !important;
    }
    .madhvan-campaign .hero-card-glow{
        width: 100% !important;
    }
    .madhvan-campaign .b-content .story-brand__desc{
        width: 100%;
    }
    .b-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
}
    .unani-campaign .story-brand .section-container, 
    .unani-campaign .diagnostic-approach .section-container
    {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    #brand .brand-video-container, 
    #brand .brand-video-wrapper{
    margin: 30px auto !important;
    }
    .story-brief .section-container{
        padding: 0px 20px 0px 0px !important;
        margin-top: -40px;
        margin-bottom: 40px;
    }
    .story-brief .story-brand__desc, 
    .story-brief .story-brand__title, 
    .story-insight .story-brand__title, 
    .story-execution .story-brand__title, 
    .story-impact .story-brand__title{
        width: auto;
    }
        .hero-section__line-2-gap{
            padding-left: 0px;
        }
        .unani-campaign .story-brand__title, 
        .unani-campaign .story-brand__desc, 
        .unani-campaign #story.story-brand .editorial-header, 
        .unani-campaign .editorial-header,
        .diagnostic-approach .editorial-header, 
        .diagnostic-approach .diagnostic-approach__subtext, 
        .unani-campaign #story.editorial-header, 
        .unani-campaign .execution-section__intro, 
        .unani-campaign .execution-section__list, 
        .unani-campaign .impact-metrics__intro{
            margin-left: 10px !important;
            padding-left: 0px !important;
        }

        .unani-campaign .editorial-header__line{
                max-width: 180px;
                height: 1px;
        }

        .unani-campaign .story-brand__desc, 
        .unani-campaign .diagnostic-approach__subtext, 
        .unani-campaign .execution-section__intro, 
        .unani-campaign .impact-metrics__desc p, 
        .madhvan-campaign .b-content .story-brand__desc, 
        .madhvan-campaign .story-brand__desc
        {
                font-size: 1rem;
        }
        .unani-campaign .impact-metrics__desc p{
                padding: 10px 10px;
        }
        .unani-campaign .execution-section__list{
            padding-left: 0px !important;
        }

        .unani-campaign .execution-section__item{
                font-size: 1rem;
        }

    .unani-campaign .section-container, 
    .madhvan-campaign .section-container,
    .tetrapak-campaign .section-container
    {
        padding: 1rem 2rem;
    }
.unani-campaign .hero-section__content{
        margin-top: 0px;
}
    .unani-campaign .brand-header {
        padding: 0.85rem 1.5rem;
    }
    .unani-campaign .brand-header__nav {
        display: none;
    }
    .unani-campaign .hero-section__title-main {
        font-size: 4.2rem;
    }
    .unani-campaign .hero-section__title-pre {
        font-size: 1.5rem;
    }
    .unani-campaign .hero-section__subtitle {
        font-size: 1rem;
    }
    .unani-campaign .story-brand__title {
        font-size: 1.85rem;
    }
  
    .unani-campaign .diagnostic-approach__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-top: 0px;
    }
    .unani-campaign .campaign-media-grid__columns {
        flex-direction: column;
        gap: 1.25rem;
    }
    .unani-campaign .campaign-media-grid{
        padding-top: 30px;
    }
    .unani-campaign .campaign-media-grid__card {
        aspect-ratio: 0 !important;
    }
    .unani-campaign .campaign-media-grid__card-full {
        aspect-ratio: 1.5;
    }
    .unani-campaign .impact-metrics__stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .unani-campaign .impact-metrics__value {
        font-size: 1.4rem;
    }
    .unani-campaign .impact-metrics__label{
            font-size: 0.6rem;
    }
    .unani-campaign .brand-footer__branding {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-md);
        text-align: center;
    }
    .unani-campaign .brand-footer__branding-text {
        margin: 0 auto;
    }
    .unani-campaign .brand-footer__branding-right {
        align-items: center;
    }
    .unani-campaign .newspaper-parallax-wrapper .newspaper-parallax-img{
      
        width: 90%;
    
    }

    .unani-campaign .footer-showcase__card{
                aspect-ratio: 0;
    }

}

@media (max-width: 480px) {
    .unani-campaign .hero-section__title-main  {
        font-size: 4rem;
    }
    .unani-campaign .hero-section__title-pre {
        font-size: 1.25rem;
    }
    .unani-campaign .story-brand__title,    
    .madhvan-campaign .story-brand__title {
        font-size: 1.6rem;
    }
}

/* SECTION 3 & 4: The Brief and The Insight spacing */
.brief-section p,
.insight-section p,
.brief-section .body-p,
.insight-section .body-p,
.brief-section .section-desc,
.insight-section .section-desc,
.brief-section .text-body,
.insight-section .text-body {
    margin-bottom: 28px !important;
    line-height: 1.6 !important;
}

/* SECTION 6: The Impact vertical separation */
.stats-grid .stats-row-top {
    /* margin-bottom: 40px !important; */
}

/* Brand video section */
.brand-video-wrapper {
    pointer-events: none !important;
}

/* Parallax banner container */
.banner-placeholder {
    overflow: hidden !important;
    position: relative !important;
}

/* Initial hidden state for bottle */
.collage-bottle-wrapper {
    opacity: 0;
    will-change: transform, opacity;
}

/* Center-align Footer Showcase Section */
.footer-showcase,
.footer-showcase__wrapper,
.footer-showcase-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}

.footer-showcase__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
}

.footer-showcase__card {
    width: 100% !important;
    will-change: transform, opacity !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 auto !important;
}

.footer-showcase__card-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
}

/* Remove all internal padding so images fill the card completely */
.brief-media-box .split-card {
    padding: 0 !important;
    position: relative !important;
    background: #060b19 !important; /* Deep Navy Blue Background */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
}

.brief-media-box .split-card img.brief-card-img,
.brief-media-box .split-card img.media-img {
    /* position: absolute !important; */
    inset: 0 !important;
    /* width: 100% !important; */
    height: 100% !important;
    /* object-fit: cover !important; */
    object-position: center !important;
    /* display: block !important; */
    /* margin: 0 !important; */
    /* padding: 0 !important; */
    /* transform: scale(1.15) !important; */
}

/* 50/50 Layout CSS Refactored from Inline Styles */
.brief-media-box {
    position: relative;
    width: 100%;
    min-height: 550px;
    /* border-radius: 20px; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brief-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.brief-cards-container {
    position: relative;
    z-index: 10;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important; /* Allows cards to stretch to full height */
    justify-content: center !important;
    gap: 30px;
    width: 100%;
    max-width: 1200px; /* Increased by 200px to allow boxes to grow */
    margin: 0 auto;
    padding: 40px 20px;
}

.card-outer-box {
    position: relative;
    width: 50%;
    max-width: 500px; /* Increased by 100px per box */
}

.blue-glow-bg {
    position: absolute;
    inset: -12px;
    background: radial-gradient(
        circle,
        rgba(20, 50, 140, 0.8) 0%,
        rgba(5, 15, 45, 0.4) 100%
    );
    border-radius: 20px;
    filter: blur(20px);
    z-index: 2;
}

.brief-media-box .split-card {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    min-height: 850px; /* Increased height significantly */
    background: #0b1329 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid rgba(30, 58, 138, 0.5) !important;
}

.ecosystem-section,
.brief-section,
.tetrapak-recart-section,
.tetrapak-grid-section,
.game-changer-section {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .ecosystem-section,
    .brief-section,
    .tetrapak-recart-section,
    .tetrapak-grid-section,
    .game-changer-section {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

.ecosystem-bg,
.brief-container,
.recart-card-container,
.tetrapak-grid-section,
.game-changer-section {
    width: 100%;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* --- Ecosystem Section Styles --- */
.ecosystem-section {
    min-height: auto; /* Reduced from 80vh */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 160px; /* Reduced from 50px */
    padding-bottom: 20px; /* Reduced from 50px */

}

.ecosystem-bg {
    background-color: var(--brand-blue);
    border-radius: 16px; /* Standardized radius */
    position: relative;
    /* Initial state for GSAP */
    opacity: 0; 

    width: 100%;
    padding: 150px 80px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ecosystem-text {
    width: 61%;
    text-align: left;
    color: var(--text-light);
    z-index: 2;
    position: relative;
}

.ecosystem-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2px;
    color: #FFFFFF;
    margin: 0;
}

.ecosystem-text h1 {
      font-family: 'Poppins', sans-serif;
    font-size: 6rem;
    line-height:1;
    font-weight: 700;
    letter-spacing: -2px;
    color: #FFFFFF;
    margin: 10px 0 0 0;
}

/* --- Section 1 Responsive Typography --- */



.ecosystem-images {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 550px;
    height: 650px;
    z-index: 3;
    /* Initial state for GSAP */
    opacity: 0;
}

.ecosystem-images img {
    position: absolute;
    height: auto;
    display: block;
    /* Add a subtle drop shadow to make the product pop */
    filter: drop-shadow(0px 30px 40px rgba(0, 0, 0, 0.25));
}

.box-two {
    /* Coconut Cream Box (Top left) */
    top: -10px; /* Breaks out of the top */
    left: 20px;
    width: 360px; /* Larger box */
    z-index: 1;
    transform: rotate(-8deg); /* Tilted left */
}

.box-one {
    /* Coconut Milk Box (Bottom right) */
    bottom: -40px; /* Breaks out of the bottom */
    right: -20px;
    width: 320px; /* Slightly smaller or overlapping */
    z-index: 2;
    transform: rotate(6deg); /* Tilted right */
}

/* --- The Brief Section Styles --- */
.brief-section {
    width: 100%;
    height: auto; /* Reduced from 330px */
    padding: 40px 120px; /* Reduced vertical padding */
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.brief-container {
    width: 100%;
    max-width: 1100px;
}

.brief-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 20px;
}

.brief-header h2 {
       font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    white-space: nowrap;
    
}

.brief-line {
    width: 0%;
    height: 2px;
    background-color: #fbab17; /* Orange from mockup */
}

.brief-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #000000;
    font-weight: 400;
    max-width: 1100px;
    margin-bottom: 24px;
    padding: 0px;
    /* Initial state for GSAP */
    opacity: 0;
}

/* Section 2 Responsive Adjustments */




/* ==========================================================================
   TETRAPAK SECTION 2: RECART BANNER (SVG FILL OVERRIDE & LAYOUT)
   ========================================================================== */

/* Fallbacks for layout in case Tailwind is not present */
.tetrapak-recart-section {
    position: relative;
    width: 100%;
    padding: 2rem 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
    background-color: #ffffff;
}

.recart-card-container {
    position: relative;
    width: 100%;
    max-width: 1152px;
    border-radius: 24px;
    overflow: hidden;
    padding: 32px;
    min-height: auto; /* Removed 500px height limit */
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.recart-bg-layer {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 0;
}

/* --- Recart Banner Specific Layout --- */
.recart-card-container {
    padding: 0 101px;
    max-width: 1380px !important; /* Match Section 1 exactly */
    min-height: auto; /* Removed 80vh height limit */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px; /* Reduced from 50px */
    padding-bottom: 30px; /* Reduced from 50px */
}

/* Base Styles */
.recart-bg-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recart-bg-layer div {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

/* Cyan Border Animation (Handled purely by GSAP now) */
.animated-blue-border {
    width: calc(100% - 22px);
    height: calc(100% - 22px);
    stroke-width: 24px !important; /* Thickened uniformly across all banners */
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;
    /* CSS transition removed to prevent fighting with GSAP timeline */
}

/* SVG Container Inset */
.recart-border-svg {
    position: absolute;
    top: 24px;
    left: 24px;
    width: calc(100% - 48px);
    height: calc(100% - 48px);
    pointer-events: none;
    z-index: 20;
}

.recart-stroke-rect {
    fill: none !important;
    fill-opacity: 0 !important;
    stroke: #00aeef !important;
    stroke-width: 24px !important; /* Thickened to match mockup */
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;
}

.recart-content {
    position: relative;
    z-index: 30;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 64px 48px; /* Restored padding inside the thick cyan border */
}

.recart-text-block {
    color: #ffffff;
    flex: 0 0 55%; /* Strict width constraint to prevent stacking */
    padding-right: 20px;
}

.recart-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 12px 0;
    color: #ffffff;
    white-space: normal; /* Allow breaks */
}

.recart-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.54rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
}

.recart-features {
        font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.8;
    margin-top: 40px;
    font-weight: 300;
}

.recart-image-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recart-main-pack {
    width: 100%;
    max-width: 380px; /* Make it large and prominent */
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.4));
}

/* Small Product Packs Layout */
.recart-small-packs-row {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 8px;
}

.recart-padding {
    padding: 0px 148px 0px 0px;
}

.small-pack-item {
    height: 90px; /* Slightly taller to match image proportions */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

/* ==========================================================================
   TETRA RECART TEXT BLOCK
   ========================================================================== */
.tetra-recart-text-section {
    width: 100%;
    margin: 0 auto;
    padding: 0px 0 40px 0;
    box-sizing: border-box;
}

.recart-text-container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding-left: 185px; /* Reduced from 131px to increase text width */
    padding-right: 60px; /* Reduced from 101px to increase text width */
    box-sizing: border-box;
}

.recart-orange-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.25rem;
    color: #fbab17;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.recart-black-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    color: #000;
    max-width: 1200px;
}

/* ==========================================================================
   TETRA RECART MEDIA SHOWCASE GRID
   ========================================================================== */
.tetrapak-grid-section {
    padding-bottom: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 6rem;
    padding-right: 6rem;
    box-sizing: border-box;
}

.grid-header {
    margin-bottom: 32px;
}

.recart-media-grid {
    display: grid;
   grid-template-columns: repeat(12, 1fr);
    gap: 15px;
}

.grid-card-main {
        grid-column: span 8;
        aspect-ratio: 15/9;
    }

.grid-card-main-2 {
        grid-column: span 8;
        aspect-ratio: 30/9;
    }

.grid-card-small,
    .md\:col-span-4 {
        grid-column: span 4;
    }

.grid-card-banner {
        grid-column: span 12;
    }

.grid-card-bottom { grid-column: span 12; height: 340px; }

.grid-card-shelf {
        grid-column: span 8; /* Approx 70% width */
    }

.grid-card-coco-milk {
        grid-column: span 4; /* Approx 30% width */
    }

.grid-card-stack-right {
        grid-column: span 4;
        display: flex;
        flex-direction: column;
        gap: 15px;
        height: 100%;
    }

.grid-card-stack-right .grid-card {
        flex: 1;
        height: auto;
    }

.game-padding {
    padding: 0px 120px 0px 0px;
}

.grid-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background-color: #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-xl fallback */
}

/* Explicit heights for cards without inline classes */
.grid-card-shelf,
.grid-card-coco-milk {
    height: 260px;
}

@media (min-width: 768px) {
    .grid-card-shelf,
    .grid-card-coco-milk {
        height: 340px;
    }
}

.grid-card img,
.grid-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-card:hover img {
    transform: scale(1.05);
}

/* Campaign Header Styles */
.campaign-header {
    margin-bottom: 40px;
    padding-left: 0;
}

.campaign-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color:  #fbab17; /* Orange from mockup */
    margin: 0 0 16px 0;
    line-height: 1.1;
}

.campaign-header p {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #333;
    font-weight: 400;
    margin: 0;
}

/* Main Video Overlay Styles */
.collage-overlay {
    background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.overlay-text-top {
    position: absolute;
    top: 40px;
    left: 40px;
    color: white;
}

.overlay-text-top h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.overlay-text-top h3 strong {
    font-size: 3.2rem;
    font-weight: 800;
    display: block;
}

.play-btn-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.grid-card:hover .play-btn-overlay {
    background-color: rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   TETRAPAK GAME-CHANGING BANNER & APPROACH
   ========================================================================== */
.game-changer-section {
    padding-top: 64px;
    padding-bottom: 20px;
}

.game-changer-card {
    position: relative;
    padding: 64px;
    min-height: 480px;
    margin-bottom: 64px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background image handling identical to Section 2 */
.game-changer-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 0;
}

.game-changer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-changer-bg div {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 10;
}

/* SVG Border stretching identical to Section 2 */
.game-changer-svg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 24px;
    width: 95%;
    height: 100%;
    pointer-events: none;
    z-index: 20;
}

.game-changer-stroke {
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;
}

.game-changer-content {
    position: relative;
    z-index: 30;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
}

.game-changer-text {
    flex: 1;
    min-width: 300px;
    padding: 0px !important;
    /* text-align: center; */
}

.game-changer-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem; /* Matched recart-subtitle */
    font-weight: 500;
    color: #e5e7eb;
    margin-bottom: 12px;
}

.game-changer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem; /* Matched recart-title */
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.game-padding {
    padding: 0px 120px 0px 0px;
    line-height: 1.4;
}

.game-changer-packs {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
   /* Floating Boxes Animation */
.box-one, .box-two, .box-three {
    position: absolute;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
    transition: transform 0.5s ease;
}

.box-one {
    width: 280px;
    top: -40px;
    right: 200px;
    z-index: 10;
    transform: rotate(-10deg);
}

.box-two {
    width: 250px;
    top: 180px;
    right: 80px;
    z-index: 20;
    transform: rotate(5deg);
}

.box-three {
    width: 230px;
    top: 100px;
    right: -40px;
    z-index: 5;
    transform: rotate(15deg);
}
}

.pack-left, .pack-right {
    width: 250px;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.4));
    transition: transform 0.4s ease;
}

.pack-left {
    transform: rotate(-8deg);
}

.pack-right {
    transform: rotate(8deg);
    margin-left: -30px; /* Overlap */
}

/* The Approach Block */

.approach-block {
    max-width: 1200px;
    padding-left: 0px; /* Keep aligned to left axis */
}

.approach-header-row {
    display: flex;
    align-items: center;
    gap: 20px;
    /* margin-bottom: 30px; Matched brief-header margin-bottom */
}

.approach-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem; /* Matched recart-title scale */
    font-weight: 700;
    color: #000000;
    margin: 0;
    white-space: nowrap;
}

.approach-divider {
    flex-grow: 1;
    height: 2px;
    background-color:  #fbab17; /* Orange from mockup */
    border-radius: 4px;
    transform-origin: left;
    transform: scaleX(0); /* For GSAP */
}

.approach-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    padding: 10px 287px 0px 0px; /* Matched brief padding */
}

/* ==========================================================================
   CAMPAIGN HIGHLIGHTS TEXT SECTION
   ========================================================================== */
.campaign-highlights-section {
    position: relative;
    width: 100vw;
    /* padding-top: 80px; */
    padding-bottom: 20px;
    box-sizing: border-box;
}

.highlights-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .highlights-container { padding: 0 2rem; }
}

.highlights-text-container {
    max-width: 1200px;
    margin-bottom: 0;
}

.highlights-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px 0;
}

.highlights-subtitle {
    font-size: 2.25rem;
    font-weight: 700;
    color: #fbab17; /* Orange */
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.highlights-desc {
        font-size: 1.2rem;
    line-height: 1.4;
    color: #000;
    font-weight: 400;
    margin: 0;
        padding: 0px 58px 0px 0px;
}

/* ==========================================================================
   LAPTOP VIDEO SHOWCASE SECTION
   ========================================================================== */
.laptop-showcase-section {
    position: relative;
    width: 100vw;
    padding-top: 20px;
    padding-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}

/* Thick horizontal cyan strip running behind the laptop */
.laptop-blue-stripe {
    position: absolute;
    top: 49%;
    left: 0;
    width: 100%;
    height: 419px;
    margin-top: -249px;
    background-color: rgb(1, 190, 245);
    z-index: 0;
    transform-origin: center;
    transform: scaleY(0);
}

.laptop-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.laptop-frame-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    /* GSAP Starting state applied to container so image AND video bounce together */
    opacity: 0;
    transform: translateY(50px) scale(0.95);
}

.laptop-mockup-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 10; /* Image acts as the frame base */
    filter:drop-shadow(0 30px 15px rgba(0, 0, 0, 0.4));
}

/* Strictly Bounded Screen Area ON TOP of the solid laptop image */
.laptop-screen-viewport {
    position: absolute;
    top: 7%;
    left: 7.6%;
    width: 83.7%;
    height: 69.5%;
    z-index: 20;
    background-color: #000;
    overflow: hidden;
    box-sizing: border-box;
    /* border: 6px solid #00aeef; */
    /* border-radius: 4px; */
}

.laptop-inner-video {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    object-fit: fill; /* Forces video to exactly map to the screen bounds without cropping controls */
}

.laptop-inner-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Screen Overlay Typography & Play Button */
.laptop-screen-text-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3); /* Subtle dim for text readability */
    z-index: 30;
    pointer-events: none; /* Let clicks pass to the video controls */
}

.laptop-overlay-heading {
    color: #ffffff;
    font-size: 2.8vw; /* Responsive font size relative to viewport width */
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    font-family: 'Arial', sans-serif; /* Adjust to match brand font */
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

@media (min-width: 1024px) {
    .laptop-overlay-heading { font-size: 3rem; }
}

.play-btn-symbol {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 0.8em;
    height: 0.8em;
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 4px;
    margin: 0 0.2em;
    font-size: 1em;
    vertical-align: middle;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.2s, background-color 0.2s;
}

.play-btn-symbol:hover {
    transform: scale(1.1);
    background-color: #00aeef;
}

/* ==========================================================================
   STARTUP INDIA CAMPAIGN
   ========================================================================== */
.startup-india-section {
    width: 100%;
    max-width: 1308px;
    margin: 0 auto;
    padding: 60px 2rem;
    box-sizing: border-box;
}

.startup-container {
    max-width: 900px;
}

.startup-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: rgb(251, 171, 23);
    margin: 0px 0px 0px;
    line-height: 1.1;
}

.startup-desc {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

/* ==========================================================================
   DESKTOP MONITOR SHOWCASE
   ========================================================================== */
.monitor-showcase-section {
    position: relative;
    width: 100vw;
    padding: 60px 0;
    overflow: hidden;
}

.monitor-blue-stripe {
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    height: 400px;
    margin-top: -200px;
    background-color: #00aeef;
    z-index: 0;
    transform-origin: center;
    transform: scaleY(0);
}

.monitor-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.monitor-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.monitor-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.monitor-frame-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

.monitor-screen-area {
    position: absolute;
    z-index: 20;
    top: 6.5%;
    left: 1%;
    width: 90%;
    height: 61%;
    overflow: hidden;
}

.monitor-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.monitor-text-overlay {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 30;
}

.monitor-heading {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
}

/* Media query for responsiveness */


/* ==========================================================================
   DAIRY INDUSTRY CONFERENCE
   ========================================================================== */
.dairy-conference-section {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 2rem;
    box-sizing: border-box;
}

.dairy-container {
    max-width: 900px;
}

.dairy-title {
       font-size: 2.6rem;
    font-weight: 800;
    color: rgb(251, 171, 23);
    margin: 0px;
    line-height: 1.1;
}

}
.dairy-desc {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 24px;
}

.dairy-metric {
    display: flex;
    align-items:baseline;
    gap: 8px;
    color:  #fbab17;
}

.dairy-metric p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.dairy-metric h3 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
}

/* ==========================================================================
   BOTTOM ORANGE CARDS
   ========================================================================== */
.bottom-orange-cards-section {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 2rem 80px 2rem;
    box-sizing: border-box;
}

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

.orange-card {
    background-color: #fbab17;
    height: 160px;
    border-radius: 12px;
    /* GSAP target */
    opacity: 0;
    transform: translateY(30px);
}

/* ==========================================================================
   GAME-CHANGER SVG STRICT BORDER FIX
   ========================================================================== */
.game-changer-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    padding: 3rem; /* Inner padding so text clears the border */
}

/* .game-changer-svg {
    position: absolute !important;
    inset: 0 !important;
    width: 95% !important;
    height: 100% !important;
    pointer-events: none;
}

*/

/* --- Strict CSS Animation for Big Coconut Cream Pack --- */
.recart-main-pack {
    opacity: 0;
    transform: translateY(30px) rotate(0deg);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.recart-main-pack.active {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.game-changer-stroke {
    fill: none !important;
    stroke: #00aeef !important;
    stroke-width: 24px !important;
    vector-effect: non-scaling-stroke;
    stroke-dasharray: 4000;
    stroke-dashoffset: 4000;
}

/* ==========================================================================
   BOTTOM SECTIONS STYLING
   ========================================================================== */
.horizontal-orange-divider {
        width: 100%;
    max-width: 1111px;
    height: 3px;
    background-color: #fbab17;
    margin: 0 auto;
    /* opacity: 0.3; */
}

/* ==========================================================================
   STARTUP & DAIRY SECTION TYPOGRAPHY (MATCHING 'THE BRIEF')
   ========================================================================== */
.startup-india-section,
.dairy-conference-section {
       padding: 0 94px;
    box-sizing: border-box;
}

.startup-container,
.dairy-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* .dairy-title {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 30px;
    text-align: left;
}

*/

.startup-desc,
.dairy-desc {
       font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    color: #000000;
    text-align: left;
}

/* ==========================================================================
   FEATURE BANNER 2 (Game Changer)
   ========================================================================== */
.game-changer-section {
    position: relative;
    width: 100%;
    padding: 2rem 6rem;
}

.game-changer-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 4rem;
    min-height: 550px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    /* background-color: rgb(13, 20, 36); */
}

.game-changer-bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 0;
}

.game-changer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-changer-bg-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(0, 0, 0, 0.5); /* bg-black/50 */
    z-index: 10;
}

.game-changer-content {
    position: relative;
    z-index: 30;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 64px 48px; /* Matches recart-content */
}

.game-changer-text {
    color: #ffffff;
    flex: 0 0 55%;
    max-width: 55%;
}

.game-changer-subtitle {
    font-family: Poppins, sans-serif;
    font-size: 3.4rem;
    color: #fff;
    font-weight: 700;
}

.game-changer-subtitle sup {
      font-weight: 300;
    font-size: 3.2rem;
    position: relative;
    top: 10px;
    right: 2px;
}

.game-changer-packs {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 0 0 40%;
    max-width: 40%;
}

.pack-left {
    width: 9rem; /* w-36 */
    height: auto;
    transform: rotate(-6deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .pack-left {
        width: 12rem; /* md:w-48 */
    }
}

.pack-right {
    width: 9rem; /* w-36 */
    height: auto;
    transform: rotate(6deg);
    margin-left: -2rem; /* -ml-8 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .pack-right {
        width: 12rem; /* md:w-48 */
    }
}

.approach-block > * + * {
    margin-top: 1rem; /* space-y-4 */
}

/* ==========================================================================
   MIDDLE SECTIONS REFACTORING (Startup India, Monitor Showcase, Laptop)
   ========================================================================== */
.laptop-inner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.startup-container {
    padding-top: 3rem; /* py-12 */
    /* padding-bottom: 3rem; */
}

.startup-header-row {
    display: flex;
    align-items: center;
    gap: 1rem; /* gap-4 */
}

/* .startup-title {
    font-size: 1.5rem; /* text-2xl 
    font-weight: 800; font-extrabold 
    white-space: nowrap;
    margin: 0;
}

*/
@media (min-width: 768px) {
    /* .startup-title {
        font-size: 1.875rem; /* md:text-3xl 
    } */
}

.monitor-showcase-section {
    position: relative;
    width: 100%;
      padding: 6rem 0 3rem 0rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.monitor-blue-stripe {
    position: absolute;
    top: 60%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #00aeef;
    transform: translateY(-50%);
    z-index: 0;
}

/* ==========================================================================
   DAIRY CONFERENCE UPDATES
   ========================================================================== */
.dairy-conference-section {
    padding-top: 3rem; /* py-12 */
    padding-bottom: 3rem;
}

.dairy-container {
    margin-top: 2rem; /* mt-8 */
}

/* .dairy-desc {
    margin-bottom: 2rem; 
}

*/
.dairy-metric-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.dairy-metric-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dairy-metric-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: black;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  text-align: left;
}

.dairy-metric-value {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color:#fbab17;
  margin: 0;
  padding: 0;
  line-height: .8;
  text-align: left;
}

/* ==========================================================================
   FEATURE BANNER 3 (PROTEIN)
   ========================================================================== */
.protein-banner-section {
    position: relative;
    width: 100%;
    padding: 4rem 6rem; /* py-16 px-4 */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .protein-banner-section {
        /* padding-left: 3rem; 
        padding-right: 3rem; */
    }
}

.protein-card {
    max-width: 72rem; /* max-w-6xl */
    min-height: 700px;
    border-radius: 20px; /* rounded-3xl / inline style */
}

.protein-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.protein-content {
    padding: 3rem; /* p-12 */
}

.protein-title {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 800; /* font-extrabold */
    line-height: 1.25; /* leading-tight */
    color: white;
    letter-spacing: 0.025em; /* tracking-wide */
    margin: 0;
}

@media (min-width: 768px) {
    .protein-title {
        font-size: 3.75rem; /* md:text-6xl */
    }
  
    .dairy-container {
margin: 2rem !important;
    }
}

/* ==========================================================================
   BOTTOM ORANGE CARDS
   ========================================================================== */
.bottom-orange-cards-section {
    padding: 4rem 1rem; /* py-16 px-4 */
    width: 100%;
    max-width: 72rem; /* max-w-6xl */
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bottom-orange-cards-section {
        padding-left: 3rem; /* md:px-12 */
        padding-right: 3rem;
    }
}

.orange-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* gap-8 */
}

@media (min-width: 768px) {
    .orange-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.orange-card {
    width: 100%;
    height: 16rem; /* h-64 */
    background-color: #ff9900;
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
    transition: transform 0.3s ease;
}

.orange-card:hover {
    transform: translateY(-0.5rem); /* hover:-translate-y-2 */
}

@media (min-width: 768px) {
    .orange-card {
        height: 20rem; /* md:h-80 */
    }
}

/* ==========================================================================
   GRID CARD UPDATES
   ========================================================================== */
.video-card {
    position: relative;
}

.grid-inner-video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}


/* --- More Projects Section --- */
.more-projects-section {
    padding: 60px 5%;
    background: transparent;
}

.more-projects-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

.more-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.more-projects-card {
    overflow: hidden;
    border-radius: 12px;
    opacity: 0; /* Handled by GSAP */
}

.more-projects-link {
    text-decoration: none;
}

.more-projects-figure {
    width: 100%;
    border-radius: 12px;
    margin: 0;
    background: none;
}

.more-projects-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.more-projects-title {
    margin-top: 1px;
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
}

/* Hover effect */
.more-projects-card:hover .more-projects-image {
    transform: scale(1.05);
}

/* Tab & Mobile Adjustments */
@media (max-width: 992px) {
    .more-projects-heading {
        font-size: 2.2rem;
    }
    .more-projects-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .more-projects-section {
        padding: 40px 5%;
    }
    .more-projects-heading {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .more-projects-grid {
        gap: 10px;
    }
    .more-projects-title {
        font-size: 1rem;
        margin-top: 0px;
    }
}

@media (max-width: 480px) {
    .more-projects-heading {
        font-size: 1.5rem;
        text-align: center;
    }
    .more-projects-title {
        font-size: 0.8rem;
        line-height: 1.2;
        text-align: center;
    }
    .more-projects-grid {
        gap: 5px;
    }
}




/* ==========================================================
   MORE PROJECTS - HEADING ON TOP + 3 CARDS IN 1 ROW (FIXED)
   ========================================================== */
@media screen and (max-width: 767px) {
    /* 1. Parent Wrapper */
    .more-projects-section,
    .more-projects-grid,
    .projects-grid,
    [class*="more-projects"] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important; /* Heading ko upar break karne ke liye zaroori */
        justify-content: space-between !important;
        align-items: flex-start !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 2px 2px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    /* 2. More Projects Heading - Poori Upar Ki Line Legi */
    .more-projects-section h2,
    .more-projects-title,
    [class*="more-projects"] h2,
    h2.more-projects-title {
        flex: 0 0 100% !important; /* Full width row on top */
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        font-size: 1.6rem !important;
        font-weight: 700 !important;
        margin: 15px 0 10px 0 !important;
    }

    /* 3. Teeno Project Cards - Heading ke Neeche 1 Row mein 31% width */
    .more-projects-section .project-card,
    .more-projects-grid > div:not(h2),
    .projects-grid > div:not(h2),
    [class*="more-projects"] [class*="card"],
    [class*="more-projects"] [class*="col"],
    [class*="more-projects"] .project-item {
        width: 31% !important;
        max-width: 31% !important;
        flex: 0 0 31% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* 4. Images - Clean Size */
    .more-projects-section img,
    [class*="more-projects"] img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1.1 !important;
        object-fit: cover !important;
        display: block !important;
        border-radius: 8px !important;
        margin: 0 auto !important;
    }

    /* 5. Card Text - Neeche Clean Alignment */
    [class*="more-projects"] h3,
    [class*="more-projects"] h4,
    [class*="more-projects"] p,
    [class*="more-projects"] span,
    [class*="more-projects"] a,
    .project-card h3,
    .project-card p {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #111111 !important;
        font-size: 0.8rem !important;
        line-height: 1.25 !important;
        font-weight: 600 !important;
        margin-top: 6px !important;
        margin-bottom: 0 !important;
        text-align: center !important;
        overflow: visible !important;
        white-space: normal !important;
    }
}






