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



#satya-history {
    padding: 40px 20px;
    background-color: var(--bg-body);
    position: relative;
    overflow: hidden;
   
}

.hist-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
     border: 1px solid rgba(0, 0, 0, 0.214);
}

.hist-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* Text wider than image */
    gap: 80px;
    align-items: start;
}

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

.hist-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 30px;
}

.hist-desc p {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: var(--text-grey);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.hist-desc strong {
    color: var(--satya-blue);
}

/* Salient Features List */
.salient-features {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feat-head {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 25px;
    font-weight: 700;
}

.feat-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    /* Single column list for clean look */
    gap: 15px;
}

.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 15px;
    color: var(--text-grey);
    font-family: 'Manrope';
    font-weight: 500;
}

.feat-list li i {
    color: var(--satya-gold);
    font-size: 16px;
    margin-top: 4px;
    /* Align with text top */
    flex-shrink: 0;
}

/* Right Image */
.hist-image-col {
    position: relative;
    top: 20px;
}

.hist-img-frame {
    position: relative;
    /* border-radius: 20px; */
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 600px;
}

.hist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hist-img-frame:hover .hist-img {
    transform: scale(1.05);
}

/* Floating Badge */
.hist-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--satya-blue);
    color: white;
    padding: 25px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    border: 4px solid white;
}

.badge-num {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: var(--satya-gold);
}

.badge-text {
    font-family: 'Rajdhani';
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    #satya-history {
        padding: 60px 0;
    }

    .hist-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hist-container {
        padding: 40 20px;
    }

    .hist-img-frame {
        height: 350px;
        width: 100%;
    }

    .hist-badge {
        left: 20px;
        bottom: -20px;
        padding: 15px 25px;
    }

    .badge-num {
        font-size: 32px;
    }
}