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


/* * ==========================================
         * ROOT VARIABLES (LOCKED - NO CHANGES)
         * ========================================== */

:root {
    /* Colors */
    --satya-blue: #0047AB;
    --satya-blue-dark: #002A66;
    --satya-gold: #C5A059;
    /* Backgrounds */
    /* --bg-body: #FFFFFF; */
    --bg-body: #eef1f4;
    --bg-glass: rgba(255, 255, 255, 0.95);
    /* Text */
    --text-main: #0B0F19;
    --text-grey: #4B5563;
    /* Dimensions */
    --nav-height: 95px;
    --grey: #525252;
}


/* * ==========================================
         * GLOBAL RESET & TYPOGRAPHY
         * ========================================== */

html {
    background-color: #ffffff;
    /* FORCE WHITE BASE */
    height: 100%;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Manrope', sans-serif;
    overflow-x: hidden;
    margin: 0;
}

@media(max-width:750px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }
}


/* ... existing styles ... */


/* * ==========================================
         * SCROLL FIX (Essential)
         * ========================================== */

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
    /* Disable native smooth scroll to fix jerkiness */
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}


/* Added Global Heading Styles */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}


/* NEW HERO SECTION */
#gallery-hero {
    position: relative;
    height: 40vh;
    /* Reduced height as requested */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/banners/message-hero-ban.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    filter: grayscale(100%);
}

.hero-title {
    position: relative;
    z-index: 2;
    font-family: 'Syne', sans-serif;
    /* Halved the font size approx */
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.hero-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--satya-gold);
    margin: 10px auto 0;
}

/* * ==========================================
         * CHAIRMAN'S MESSAGE SECTION
         * ========================================== */
#cm-chairman-msg {
    padding: 50px 0;
    background-color: var(--bg-body);
    position: relative;
}

.cm-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cm-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Image slightly narrower */
    gap: 80px;
    align-items: start;
}

/* Image Column */
.cm-image-col {
    position: relative;
    top: 0;
}

.cm-img-frame {
    position: relative;
    /* border-radius: 12px; */
    overflow: hidden;
    /* Offset shadow effect */
    box-shadow: 20px 20px 0px var(--bg-light-grey);
}

.cm-owner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.cm-img-frame:hover .cm-owner-img {
    transform: scale(1.03);
}

.cm-quote-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: var(--satya-blue);
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 5px solid var(--bg-body);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Content Column */
.cm-content-col {
    padding-top: 20px;
}

.cm-tag {
    font-family: 'Rajdhani', sans-serif;
    color: var(--text-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.cm-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 30px 0;
    line-height: 1.1;
}

.cm-text-body p {
    font-family: sans-serif;
    font-size: 16px;
    color: #434242;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Signature Area */
.cm-signature-block {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.cm-regards {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-style: italic;
    color: var(--satya-blue);
    margin-bottom: 10px;
}

.cm-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.771);
    margin: 0;
}

.cm-role {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #646464;
    font-weight: 500;
    margin-top: 5px;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .cm-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cm-img-frame {
        max-width: 500px;
        margin: 0 auto;
    }

    .cm-image-col {
        text-align: center;
    }
}

@media (max-width: 768px) {
    #cm-chairman-msg {
        padding: 60px 0;
    }

    .cm-container {
        padding: 0 20px;
    }

    .cm-img-frame {
        width: 100%;
        box-shadow: 10px 10px 0px var(--bg-light-grey);
    }

    .cm-quote-badge {
        width: 60px;
        height: 60px;
        font-size: 24px;
        bottom: -10px;
        right: -10px;
    }
}

/* Desktop Sticky Image */
@media (min-width: 1201px) {
    .cm-image-col {
        position: sticky;
        top: 120px;
        /* header ke niche gap */
        align-self: flex-start;
    }
}

@media (max-width: 1200px) {
    .cm-image-col {
        position: relative;
        top: auto;
    }
}