
/* ==========================================
   1. FONTS IMPORT (Proxima Nova & Heading Now)
   ========================================== */

/* Proxima Nova - Light (300) */
@font-face {
    font-family: 'Proxima Nova';
    src: url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_1_0.eot');
    src: url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_1_0.eot?#iefix') format('embedded-opentype'),
         url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_1_0.woff2') format('woff2'),
         url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_1_0.woff') format('woff'),
         url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_1_0.ttf') format('truetype'),
         url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_1_0.svg#wf') format('svg');
    font-display: swap;
    font-weight: 300;
    font-style: normal;
}

/* Proxima Nova - Regular (400) */
@font-face {
    font-family: 'Proxima Nova';
    src: url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_4_0.eot');
    src: url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_4_0.eot?#iefix') format('embedded-opentype'),
         url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_4_0.woff2') format('woff2'),
         url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_4_0.woff') format('woff'),
         url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_4_0.ttf') format('truetype'),
         url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_4_0.svg#wf') format('svg');
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}

/* Proxima Nova - Bold (700) */
@font-face {
    font-family: 'Proxima Nova';
    src: url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_5_0.eot');
    src: url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_5_0.eot?#iefix') format('embedded-opentype'),
         url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_5_0.woff2') format('woff2'),
         url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_5_0.woff') format('woff'),
         url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_5_0.ttf') format('truetype'),
         url('https://d25purrcgqtc5w.cloudfront.net/dist/fonts/proximanova/302D42_5_0.svg#wf') format('svg');
    font-display: swap;
    font-weight: 700;
    font-style: normal;
}

/* ==========================================
   2. GLOBAL RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Default Body Styling (Normal text ke liye Proxima Nova) */
body {
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
    font-family: 'Proxima Nova', sans-serif;
    line-height: 1.6;
}

/* ==========================================
   3. FONT ASSIGNMENTS (Specific Elements)
   ========================================== */

/* Headings aur main design titles par "Heading Now Trial" apply hoga */
h1, h2, h3, h4, h5, h6, 
.logo, 
.navbar-brand, 
.heading-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 800; /* Is font ka style default broad hai */
}

/* Paragraphs, links, lists, inputs, aur normal text par "Proxima Nova" apply hoga */
p, 
span, 
a, 
li, 
button, 
input, 
textarea {
    font-family: 'Proxima Nova', sans-serif;
}

/* ==========================================
   navbar
   ========================================== */

/* --- UPDATED NAVBAR BASE --- */
.navbar {
    position: fixed; /* Screen par fixed rahega */
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center; /* Links ko hamesha center rakhega */
    padding: 30px 0; /* Shuru me thoda upar se gap */
    z-index: 1000;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    transition: all 0.4s ease-in-out; /* Har change ko smooth banayega */
}

/* Base Nav-Links Container (Shuru me transparent) */
.nav-links {
    display: flex;
    align-items: center;
    gap: 10px; /* Links ke darmiyan space */
    padding: 10px 20px;
    background-color: transparent;
    border-radius: 50px;
    transition: all 0.4s ease-in-out; /* Smooth transition */
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 18px;
    display: inline-block;
}

/* ----------------------------------------------------
   SCROLLED STATE: Jab user scroll karega
------------------------------------------------------- */


/* Yeh main part hai jo links ko black round capsule me band karega */
.navbar.scrolled .nav-links {
    background-color: rgba(0, 0, 0, 0.95) !important; /* Matte black background */
    border-radius: 50px !important;
    padding: 12px 30px !important; /* Capsule ke andar padding */
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4) !important; /* Soft premium shadow */
}


/* PREMIUM SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    transition: all 0.9s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Default desktop par toggle button chhupane ke liye */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}


/* --- MOBILE SCREENS (Responsive) --- */
@media screen and (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 20px 18px;
    }

    .navbar.scrolled {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 15px 18px;
    }

    .navbar.scrolled .nav-links {
        background-color: rgba(0, 0, 0, 0.96);
        box-shadow: none;
        border-radius: 50px;
        padding: 12px 20px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        background-color: rgba(17, 17, 17, 0.98);
        padding: 16px 18px;
        text-align: center;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
        margin: 0 auto;
        transform: none;
    }

    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 14px 0;
        width: 100%;
        color: #ffffff;
    }
} 








/* ==========================================
   ABOUT ME SECTION - PIXEL PERFECT FIGMA MATCH
   ========================================== */

.about-section {
    background-color: #ffffff; 
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    background: linear-gradient(to bottom, #121212 50%, #ffffff 50%);
}

/* Beautiful soft pink-to-white wash gradient container */
.about-container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    background: radial-gradient(circle at bottom right, rgb(94 76 234 / 40%), #ffffff 20%);
    padding: 60px;
    border-radius: 32px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.04);
}

.about-image-side {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-wrapper {
    width: 100%;
    max-width: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Figma Floating Box Style */
.social-floating-bar {
    position: absolute;
    bottom: -22px;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(234, 76, 137, 0.15);
    z-index: 3;
}

.social-floating-bar .social-icon {
    color: #000000;
    font-size: 1.05rem;
    text-decoration: none;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-floating-bar .social-icon:hover {
    transform: scale(1.15);
}

/* Active LinkedIn state with high contrast dark box */
.social-floating-bar .social-icon.active-link {
    background-color: #1A1315;
    color: #ffffff;
    border-radius: 8px;
    font-weight: bold;
}

.about-text-side {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-heading {
    color: #1A1315;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    font-family: 'Oswald', sans-serif;
}

.about-paragraph {
    color: #333333;
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
    text-align: left;
    font-family: 'Proxima Nova', sans-serif;
}

.about-action-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* See More Button - Dark Theme with Figma Lime/Green Text */


/* Download CV Button - Precise Clean Dark Outline */
/* Base styling aapke original box ke mutabiq */
.btn-figma-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;                  /* Icon aur text ke darmiyan ka gap */
    background-color: transparent;
    color: #000000;             /* Black text color jesa design me hai */
    border: 2px solid #000000;  /* Pure black smooth border */
    border-radius: 14px;        /* Rounded smooth edge layout corners */
    padding: 21px 20px;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;      /* Underline hatane ke liye */
    text-transform: uppercase;  /* Taake letters unique aur clean capital rahein */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Premium micro animation */
    font-family: 'Oswald', sans-serif;
}

/* Icon rotation aur micro placement setup */
.btn-figma-outline i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* ==========================================
   HOVER / ACTIVE STATES (Button logic)
   ========================================== */

/* Mouse le jaane par solid premium fill ho jana */
.btn-figma-outline:hover {
    background-color: #000000;
    color: #ffffff;             /* Text white ho jayega instant */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12); /* Subtle luxury soft shadow */
}

/* Hover par download icon smooth thoda sa niche push hoga */
.btn-figma-outline:hover i {
    transform: translateY(2px);
}

/* Active State: Jab button par click dabaye rakhein (Pressed feedback) */
.btn-figma-outline:active {
    transform: scale(0.97);     /* Real button ki tarah down click touch feel */
}
/* Responsive adjustment for clean view on phones */
@media (max-width: 850px) {
    .about-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }
    .about-text-side {
        text-align: center;
    }
    .about-paragraph {
        text-align: center;
    }
    .about-action-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    .btn-figma-dark, .btn-figma-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Main Container Jo Image Ke Upar Float Kar Raha Hai */
.social-floating-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff; /* Pure white background */
    padding: 10px 24px;
    border-radius: 20px;       /* Smooth rounded design corners */
    gap: 18px;                 /* Icons ke darmiyan ka barabar space */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); /* Soft premium drop shadow */
    width: fit-content;
}

/* Base style for all links inside bar */
.social-icon {
    color: #000000;            /* Default black color elements */
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

/* Hover karne par icon smooth thoda upar uthega */
.social-icon:hover {
    transform: translateY(-3px) scale(1.08);
}

/* Specific Platforms Hover Colors */
.social-icon.fb:hover { color: #1877F2; }
.social-icon.globe:hover { color: #7ce600; } /* Theme green color */
.social-icon.insta:hover { color: #E1306C; }
.social-icon.behance:hover { color: #0057ff; }

/* Special LinkedIn Card Style (Jesa aapki image me black block bana hai) */
.social-icon.linkedin-card {
    background-color: #111111; /* Solid dark black box container */
    color: #ffffff;            /* LinkedIn logo icon white inside */
    width: 36px;
    height: 34px;
    border-radius: 10px;       /* Sleek soft block edges */
    font-size: 15px;
    transition: all 0.3s ease;
}

/* LinkedIn box ka apna unique hover color function */
.social-icon.linkedin-card:hover {
    background-color: #0077B5; /* Official LinkedIn Blue */
    color: #ffffff;
    transform: translateY(-3px);
}

/* Click feedback effect */
.social-icon:active {
    transform: scale(0.95);
}

/* UTILITY COMPONENTS */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(118, 185, 0, 0.4);
}

.btn-green {
    background-color: #76B900;
    color: #000000;    
    border: 2px solid #7ce600;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-green:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
        background-color: #111111;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #76B900;
    color: #000000;
    border-color: #76B900;
}

.section-title {
    color: #76B900;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-title-dark {
    color: #000000;
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-subtitle-dark {
    color: #666666;
    font-size: 1rem;
    margin-bottom: 25px;
}

.text-center { text-align: center; }



/* Paragraph Container Setup */
.read-more-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* 2 Lines Clamp Effect */
.read-more-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    transition: all 0.3s ease;
}

/* Jab Class Active ho gi to text 3 lines par truncate hoga */
.read-more-text.line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Exactly 3 lines dikhane ke liye */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More Button Styling */
.read-more-btn {
    background: transparent;
    border: none;
    color: #000000;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.read-more-btn:hover {
    color: #555555;
}




/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 22px 0;
    z-index: 1000;
    background: transparent;
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}

.navbar.nav-hidden {
    transform: translateY(-110%);
    opacity: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 20px;
    background: rgba(0,0,0,0.18);
    border-radius: 999px;
    transition: all 0.35s ease;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 14px;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease, background 0.3s ease;
    font-family: 'Oswald', sans-serif;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: #76B900;
}


.navbar.scrolled .nav-links {
    background: rgba(0,0,0,0.96);
    border-radius: 50px;
    padding: 12px 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 95vh;
    background-image: url('images/hero image.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 0, 14, 0.14);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20%;
}

.hero-title {
    font-size: 90px;
    font-weight: 900;
    color: #76B900;
    letter-spacing: 1px;
    margin-bottom: 0px;
    font-family: 'Oswald', sans-serif;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.hero-desc {
    font-size: 20px;
    line-height: 1.3;
    opacity: 0.85;
    font-family: 'Proxima Nova', sans-serif;
}



/* MY JOURNEY TIMELINE */

/* Journey Section Styling */
.journey-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #edf4ff40;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Poppins', sans-serif;
}
   

.journey-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px; /* Chapters ke darmiyan gap */
}

/* Individual Chapter Card Setup */

.chapter-card {
    scroll-margin-top: 100px; /* Is value ko apne header ki height ke mutabiq adjust kar sakte hain */
}

/* Smooth scrolling ke liye */
html {
    scroll-behavior: smooth;
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a; /* Aapki website ke dark theme ke mutabiq background color */
    min-width: 140px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    text-align: left;
    border-radius: 4px;
}

/* Dropdown ke andar links ki styling */
.dropdown-content a {
    color: white;
    padding: 0px 0px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

/* 1. Journey Dropdown ko baqi links jaisa style karne ke liye */
.journey-dropdown {
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    margin: 0px 0px;
    margin-left: 20px;
    font-size: 20px;
    font-weight: 300;
    transition: color 0.3s ease;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    
    /* Dropdown ka default black arrow (V) hatane ke liye */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    
}

/* 2. Dropdown ke andar jo Chapters khulenge unka background dark karne ke liye */
.journey-dropdown option {
    background-color: #111 !important; /* White background ko dark black karne ke liye */
    color: #fff !important;            /* Chapters ka text white karne ke liye */
    padding: 20px;
    font-size: 16px;
}




/* Hover karne par text/background color change */
.dropdown-content a:hover {
    background-color: #333;
    color: #7ce600; /* Jo aapka light green color theme hai */
}

/* Hover karne par dropdown show karna */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Mega dropdown (Journey) styles */
.mega-menu {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: auto;
    min-width: 600px;
    background: #141414;
    border-radius: 28px;
    padding: 28px 32px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    z-index: 1200;
}
.custom-dropdown:hover .mega-menu { display: block; }
    .mega-row { display: flex; gap: 0px; align-items: center; justify-content: space-between; }
    .mega-col { flex: 1; }
.mega-badge { display: none; } /* remove title boxes */

/* Column background styles (image-friendly with gradient fallback) */
    .mega-col { flex: 0 0 auto; padding: 12px 0px; color: #fff; text-align: center; border-radius: 12px; }

.mega-col::before {
    content: '';
    display: block;
    height: 12px;
}
    .mega-col ul { list-style: none; padding: 0; margin: 0; display: flex;  align-items: center; }
    .mega-col li { padding: 0; }
    .mega-col li a { color: #ffffff; text-decoration: none; font-weight: 700; display: inline-block; padding: 8px 12px; }
.mega-col li a:hover { color: #96E820; background: rgba(255,255,255,0.03); border-radius: 6px; }

/* Responsive: full width on small screens */
@media (max-width: 990px) {
    .mega-menu { position: static; transform: none; width: 100%; border-radius: 0; padding: 18px; }
    .mega-row { flex-direction: column; gap: 12px; }
}

/* Simple redesigned dropdown for Journey (restore look) */
.custom-dropdown { position: relative; display: inline-block; }
.custom-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #111;
    padding: 10px 12px;
    border-radius: 10px;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1200;
}
.custom-dropdown .dropdown-menu a { display: block; padding: 10px 12px; color: #fff; text-decoration: none; font-weight: 600; }
.custom-dropdown .dropdown-menu a:hover { background: rgba(255,255,255,0.02); color: #96E820; }
.custom-dropdown:hover .dropdown-menu { display: block; }
.custom-dropdown.open .dropdown-menu { display: block; }



.chapter-card {
    width: 100%;
    padding: 0px 0; /* Left/Right padding khatam taake content full width ho sake */
    text-align: center;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    transform: translateY(0);
}

/* Initial state for hidden elements */
.chapter-card.hidden-chapter {
    display: none;
    opacity: 0;
    transform: translateY(30px);
}

/* Reveal State via Class Trigger */
.chapter-card.reveal-chapter {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Heading Typography */

.chapter-num {
    /* Font family Heading Now Trial aur sans-serif backup */
    font-family: 'Oswald', sans-serif !important;
    font-size: 56px; /* Exact 56px size */
    font-weight: bold; /* Bold style */
    color: #111111; /* Pure dark #111111 color */
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    
    /* Glitch aur extra shadow hatane ke liye */
    text-shadow: none !important;
    -webkit-text-stroke: 0px transparent !important;
}

.chapter-num .highlight {
    /* Number ke liye Roboto font */
    font-family: 'Roboto', sans-serif !important;
    color: #96E820; /* Exact neon color jo aapne bataya */
    font-weight: bold;
    margin-left: 0px; /* Dono ke beech ka gap */
    text-shadow: none !important;
}

.journey-dropdown .highlight {
    /* Number ke liye Roboto font */
    font-family: 'Roboto', sans-serif !important;
    color: #96E820; /* Exact neon color jo aapne bataya */
    font-weight: bold;
    margin-left: 12px; /* Dono ke beech ka gap */
   
}

/* 1. Journey block ko baki links ke barabar ek line mein lane ke liye */
.custom-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0 15px; /* Is se baki links ke sath gap equal ho jayega */
}

/* 2. Main 'Journey' text ka style */
.custom-dropdown .dropbtn {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

/* 3. Dropdown Box Jo mouse lane par niche khulega */
.custom-dropdown .dropdown-menu {
    top: 140%;
    left: 120px;
    display: none;
    position: absolute;
     background-color: rgb(17 17 17 / 91%);
    min-width: 160px;
    box-shadow: rgb(0 0 0 / 33%) 0px 8px 16px;
    z-index: 999;
    border-radius: 24px;

}

/* 4. Chapters ke andar text aur numbers ko perfectly show karne ke liye */
.custom-dropdown .dropdown-menu a {
    color: #fff !important;
    padding: 12px 20px !important; /* Proper padding dono taraf */
    text-decoration: none;
    display: block;
    text-align: left;
    font-family: Arial, sans-serif !important; /* Font change kiya taake numbers 1,2,3... saaf nazar aayein */
    font-size: 15px;
    font-weight: normal;
    white-space: nowrap; /* Text ko wrap ya cut hone se rokega */
    transition: background 0.2s, color 0.2s;
}

/* 5. Hover Effect: Mouse lane par text green aur background thoda change hoga */
.custom-dropdown .dropdown-menu a:hover {
    background-color: #222 !important; 
    color: #7ce600 !important; /* Aapka brand green color */
}

/* Mouse lane par dropdown menu ko display karna */
.custom-dropdown:hover .dropdown-menu {
    display: block;
}

/* Smooth scroll effect jab click ho */
html {
    scroll-behavior: smooth;
}

/* Main Grid Layout - 2 Columns for Chapters */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Full width items span both columns */
.portfolio-grid .full-width {
    grid-column: 1 / -1;
}

/* Chapter items take up one column */
.portfolio-grid .chapter-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Offset for Right Column to match staggered look */
.right-column {
    margin-top: 0;
}

/* Heading Block */


/* All Headings updated to Oswald */
h1, h2, h3, h4, .main-title {
    font-family: 'Oswald', sans-serif !important;
}

.main-title {
    font-size: 2.8rem;
    line-height: 1.05;
    letter-spacing: 1px;

    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.icon-pink {
    background-color: #ff94c2;
    color: #000;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 1.2rem;
    vertical-align: super;
}

.portfolio-grid{

    padding-bottom: 60px;
}


/* Paragraphs / Descriptions */
p, .main-description {
    font-family: 'Proxima Nova', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.main-description {
    max-width: 420px;
}

/* Card Styling */
.card {
    position: relative;
}

.image-box {
    position: relative;
    width: 100%;
    background-color: #222;
    border-radius: 12px;
    overflow: hidden;
    min-height: 280px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Text Below Image Cards */
.card-text-below h3 {
    font-size: 1.8rem;
    margin-top: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1315;
}

.card-text-below p {
    margin-top: 5px;
    font-size: 18px;
    color: #2f2f2f;
    font-family: 'Proxima Nova', sans-serif;
    font-weight: 500;
}

.chapter-summary-section {
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.chapter-summary-card {
    background: #111111;
    border: 1px solid rgba(150, 232, 32, 0.12);
    border-radius: 28px;
    padding: 32px 34px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
    display: grid;
    gap: 20px;
}

.chapter-summary-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(150, 232, 32, 0.14);
    color: #96e820;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.chapter-summary-card h3 {
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.1;
    margin: 0;
}

.chapter-summary-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 760px;
}

.chapter-summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.chapter-summary-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.6;
}

.chapter-summary-list li::before {
    content: '•';
    color: #96e820;
    font-size: 1.1rem;
    line-height: 1;
    margin-top: 4px;
}

/* Tablet + Mobile Responsive */
@media (max-width: 1024px) {
    .portfolio-grid {
        display: flex;
        flex-direction: column;
        grid-template-columns: none;
        gap: 0;
    }

    .left-column,
    .right-column {
        display: contents;
    }

    .heading-block {
        order: 0;
    }

    .chapter-1 { order: 1; }
    .chapter-2 { order: 2; }
    .chapter-3 { order: 3; }
    .chapter-4 { order: 4; }
    .chapter-5 { order: 5; }
    .chapter-6 { order: 6; }

    .right-column {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        gap: 0;
    }
}





/* MY JOURNEY end */
.timeline {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.timeline-item.reversed { flex-direction: row-reverse; }
.timeline-img {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.timeline-img img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.timeline-item:hover .timeline-img img {
    transform: scale(1.06);
}

.timeline-content { flex: 1; }

.chapter-num {
    color: #111111;
    font-weight: 800;
    font-size: 55px;
    display: block;
    margin-bottom: 8px;
    font-family: Proxima Nova;
}

.timeline-content h3 {
    font-size: 1.9rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.timeline-content p {
    line-height: 1.75;
    color: #555555;
    font-size: 1rem;
}

.read-story {
    color: #76B900;
    text-decoration: none;
    font-weight: 700;
    margin-left: 5px;
}

.center-container { text-align: center; margin-top: 50px; }

/* IMPACT GRID */
/* Impact Section Base Styling */
.impact-section {
    background-color: #1a1a1a; /* Dark background jo aapki overall theme hai */
    padding: 60px 20px;
    text-align: center;
    font-family: 'Oswald', sans-serif; 
}

.impact-main-title {
    color: #fff;
    font-size: 40px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.impact-subtitle {
        font-family: Proxima Nova;
    color: #ccc;
    font-size: 20px;
    margin-bottom: 70px;
    letter-spacing: 1px;
}

/* Grid Layout 4 Columns ke liye */
.impact-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 28px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 10px;
}

@media (max-width: 1180px) {
    .impact-container {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }
}

@media (max-width: 720px) {
    .impact-container {
        grid-template-columns: 1fr;
    }
}

/* Cards Ki Styling */
.impact-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.008));
    border: 1px solid rgba(124,230,34,0.12);
    border-radius: 24px;
    padding: 80px 30px 30px 30px;
    min-height: 320px;
    transition: transform 0.36s cubic-bezier(.2,.9,.2,1), box-shadow 0.36s ease, border-color 0.36s ease;
    text-align: left;
    box-shadow: 0 22px 50px rgba(0,0,0,0.18);
}

/* Card par mouse le jane ka effect */
.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(0,0,0,0.22), 0 0 24px rgba(124,230,34,0.08);
    border-color: rgba(124,230,34,0.45);
}

/* Headings inside cards */
.card-heading {
    display: inline-block;
    position: absolute;
    top: -20px;
    left: 20px;
    margin: 0;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(-4deg);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

/* sticker colors per card (first three match DESIGN / BUILD / GROW vibe) */
.impact-card:nth-child(1) .card-heading { background: #ffb6d5; color: #111; }
.impact-card:nth-child(2) .card-heading { background: #dfffa0; color: #111; }
.impact-card:nth-child(3) .card-heading { background: #9ef0ff; color: #072; }
.impact-card:nth-child(4) .card-heading { background: #f6d6ff; color: #111; }

/* Horizontal line elements split karne ke liye */
.card-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.03);
    margin: 12px auto 18px auto;
    width: 88%;
}

/* List Items inside Cards */
.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.04); /* subtle dashed separator */
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

/* Aakhri element se dashed line hatane ke liye */
.card-list li:last-child {
    border-bottom: none;
}

/* Card ke andar ke links ki default styling */
.card-list li a {
    position: relative;
    z-index: 2;
    color: #ffffff !important;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 12px 0;
    cursor: pointer;
    transition: color 0.18s ease, transform 0.18s ease;
    font-family: Proxima Nova;
    font-weight: 600;
    pointer-events: auto;
}



/* Hover Effect: Jab link par mouse jaye toh color change ho */
.card-list li a:hover {
    color: #7ce600 !important; /* Aapka brand green color */
}

/* HIGH-FIDELITY ACHIEVEMENTS CAROUSEL (EXACT MATCH FOR IMAGE 2) *//* Achievements Section Wrapper */
/* Achievements Main Setup */
.achievements-section {
    background-color: #000;
    padding: 60px 20px;
    text-align: center;
    font-family: sans-serif;
    overflow: hidden;
}

.ach_title {
    color: #fff;
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ach_subtitle {
    color: #ccc;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.achievements-carousel {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.achievements-carousel .row {
    width: 100%;
    overflow: hidden;
    display: block;
    margin: 8px 0 22px 0;
    white-space: nowrap;
}

.achievements-carousel .slide {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    animation: scroll-left 90s linear infinite;
    flex-wrap: nowrap;
    width: max-content;
    white-space: nowrap;
    will-change: transform;
}

.achievements-carousel .row-bottom .slide {
    animation-direction: reverse;
}

.achievements-carousel .slide:hover {
    animation-play-state: paused;
}

.achievements-carousel:hover .slide {
    animation-play-state: paused;
}

.ach_item {
    display: inline-block;
    width: 240px;
    min-width: 240px;
    max-width: 240px;
    height: 190px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #111;
    vertical-align: top;
}

.ach_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ach_item:hover img { transform: scale(1.06); }

.ach_item .ach_overlay_box {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(26,19,21,0.7);
    padding: 12px 14px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.ach_item:hover .ach_overlay_box { opacity: 0; transform: translateY(10px); }

.ach_item:hover { box-shadow: 0 10px 30px rgba(124,230,32,0.08), 0 2px 6px rgba(0,0,0,0.6); }

.ach_item:hover::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(124,230,32,0.12);
    pointer-events: none;
}

.achievements-carousel:hover .slide { animation-play-state: paused; }

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ach_slider_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: scroll; /* Dynamic sliding enable karne ke liye */
    padding-bottom: 15px;
    scroll-behavior: smooth; /* Click par jhatke se nahi balkay smooth slide hoga */
}

/* Scrollbar ko mukammal chupanay ke liye taake dots bure na lagain */
.ach_slider_wrapper::-webkit-scrollbar {
    display: none;
}
.ach_slider_wrapper {
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.ach_container {
    display: flex;
    gap: 24px;
}

.ach_card {
    position: relative;
    flex: 0 0 calc(50% - 12px); /* Ek screen par exact 2 cards */
    min-width: calc(50% - 12px);
    height: 340px;
    border-radius: 24px;
    overflow: hidden;
    background-color: #111;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

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

.ach_card:hover img {
    transform: scale(1.05);
}

.ach_overlay_box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1a1315b5;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 22px;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ach_card:hover .ach_overlay_box {
    opacity: 1;
    transform: translateY(0);
}

.ach_card_title {
    color: #7ce600;
    font-size: 24px;
    margin: 0 0 8px 0;
}

.ach_card_desc {
    color: #e0e0e0;
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
    font-family: Proxima Nova;
}

/* Dots Styling */
.ach_slider_dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
}

.ach_dot {
    width: 12px;
    height: 12px;
    background-color: #444;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ach_dot.active {
    width: 40px;
    background-color: #7ce600;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .ach_card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    /* Enhanced Impact card visuals to match 'Build, Design and Grow' style */
    .impact-card {
        background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.015));
        border: 1px solid rgba(124,230,32,0.08);
        padding: 32px 24px;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
        transition: transform 0.36s cubic-bezier(.2,.9,.2,1), box-shadow 0.36s ease, border-color 0.36s ease;
    }
    .impact-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 60px rgba(0,0,0,0.6), 0 0 18px rgba(124,230,32,0.06);
        border-color: rgba(124,230,32,0.6);
    }
    .impact-card .card-heading { color: #96E820; }

    /* Achievements continuous two-row carousel */
    .achievements-carousel {
        width: 100%;
        overflow: hidden;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
    }
    .achievements-carousel {
        width: 100%;
        overflow: hidden;
    }
    .achievements-carousel .row {
        width: 100%;
        overflow: hidden;
        display: block;
        margin: 8px 0 22px 0;
        white-space: nowrap; /* keep children on one line */
    }
    .achievements-carousel .slide {
        display: inline-flex; /* behave as long inline horizontal track */
        gap: 20px;
        align-items: center;
        animation: scroll-left 90s linear infinite;
        flex-wrap: nowrap;
        white-space: nowrap;
        width: max-content; /* let it grow horizontally */
    }
    .achievements-carousel .row-bottom .slide {
        animation: scroll-left 90s linear infinite;
        animation-direction: reverse;
    }

    .ach_item {
        display: inline-block;
        width: 220px; /* fixed card width */
        min-width: 220px;
        max-width: 220px;
        height: 160px;
        border-radius: 16px;
        overflow: hidden;
        position: relative;
        background: #111;
        vertical-align: top;
    }
    .ach_item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }
    .ach_item:hover img { transform: scale(1.06); }

    .ach_item .ach_overlay_box {
        position: absolute;
        left: 12px;
        right: 12px;
        bottom: 12px;
        background: rgba(26,19,21,0.7);
        padding: 12px 14px;
        border-radius: 10px;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }
.ach_item:hover .ach_overlay_box { opacity: 0; transform: translateY(10px); }

    .ach_item:hover { box-shadow: 0 10px 30px rgba(124,230,32,0.08), 0 2px 6px rgba(0,0,0,0.6); }

    /* Green glow on hovered image (soft) */
    .ach_item:hover::after {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 18px;
        box-shadow: 0 12px 40px rgba(124,230,32,0.12);
        pointer-events: none;
    }

    /* Pause both rows when hovering anywhere over the carousel */
    .achievements-carousel:hover .slide { animation-play-state: paused; }

    @keyframes scroll-left {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    @media (max-width: 900px) {
        .ach_item { flex: 0 0 180px; height: 140px; }
    }
}

/* GALLERY SECTION */
/* Gallery Section Layout */
.gallery-section {
    background-color: #ffffff; /* White background jesa image me hai */
    padding: 80px 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    font-family: sans-serif;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Content Area */
.gallery-left {
    flex: 0 0 320px; /* Text ki width fix rakhe ga */
    text-align: left;
}

.gallery-title {
    color: #000000;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.gallery-desc {
    color: #333333;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: Proxima Nova;
}

/* See More Button styling with dark look and green outline border */
.see-more-btn {
    background-color: #111111;
    color: #7ce600; /* Green color text */
    border: 2px solid #7ce600; /* Green outline border */
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background-color: #7ce600;
    color: #111111;
}

/* Right Side Slider Box */
.gallery-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow: hidden;
}

.gallery-slider-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    padding-bottom: 40px;
}

/* Hide default horizontal scrollbar lines */
.gallery-slider-wrapper::-webkit-scrollbar {
    display: none;
}
.gallery-slider-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Gallery Individual Cards Structure */
.gallery-card {
    flex: 0 0 300px; /* Image cards ki custom scaling width */
    height: 320px;
    border-radius: 24px; /* Image jesa perfect curved round corners */
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.04);
}

/* Gallery Dots Container Layout */
.gallery-dots-container {
    display: flex;
    justify-content: flex-end; /* Right align jesa image me dikh rha hai */
    align-items: center;
    gap: 8px;
    padding-right: 40px;
}

.g-dot {
    width: 10px;
    height: 10px;
    background-color: #000000; /* Non-active black dots */
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Active Oval Shape Dot Style */
.g-dot.active {
    width: 35px; /* Oval structure design width */
    height: 10px;
    background-color: #7ce600; /* Signature theme green color */
    border-radius: 20px;
}

/* Mobile responsive layout shift */
@media (max-width: 991px) {
    .gallery-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
    }
    .gallery-left {
        flex: 1;
        max-width: 100%;
    }
    .gallery-dots-container {
        justify-content: center;
        padding-right: 0;
    }
}



/* FOOTER */
.footer-section {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 20px 20px 40px 20px;
}

.footer-logo {
  color: #325500;
    font-size: 7rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 4px;
}

.contact-title { font-size: 20px; margin-bottom: 15px; }
.contact-desc { max-width: 650px; margin: 0 auto 40px auto; 
    opacity: 0.7; font-family: Proxima Nova;}
    
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 40px 0;
}

.footer-divider { border: 0; height: 1px; background: #161616; margin-bottom: 35px; }

.footer-bottom {
    font-family: Proxima Nova;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    max-width: 1140px;
    margin: 0 auto;
    
}

.footer-bottom p{
    font-family: Proxima Nova;

}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 900px) {
    .achievement-slide-group { flex-direction: column; align-items: center; }
    .achievement-mock-card { width: 100%; max-width: 100%; }
}

@media (max-width: 768px) {
    .navbar { justify-content: space-between; }
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title, .section-title-dark { font-size: 2.1rem; }

    .impact-container{
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    }
    
    .about-container { flex-direction: column; padding: 30px; }
    .about-buttons { flex-direction: column; width: 100%; }
    
    .timeline-item, .timeline-item.reversed { flex-direction: column; text-align: center; }
    
    .gallery-layout { flex-direction: column; text-align: center; }
    .gallery-group img { height: 160px; }
    .right-dots { justify-content: center; }
    
    .contact-buttons { flex-direction: column; align-items: center; }
    .contact-buttons .btn { width: 100%; }
    .footer-logo { font-size: 2.5rem; }
    .footer-bottom { 
        flex-direction: column; 
        gap: 20px; 
        text-align: center; }
}

/* --- MOBILE RESPONSIVE STYLING --- */
@media screen and (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 16px 18px;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        background-color: rgba(17, 17, 17, 0.98);
        padding: 18px 0 22px;
        border-radius: 0 0 22px 22px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
        margin: 0;
        overflow-y: auto;
        max-height: calc(100vh - 74px);
        box-sizing: border-box;
        z-index: 1000;
    }
    .nav-links.open,
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 14px 18px;
        font-size: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-links a:first-child {
        border-top: none;
    }
}


/* 1. LARGE LAPTOPS TO SMALL DESKTOPS (1024px se 1200px tak) */
@media screen and (min-width: 1024px) and (max-width: 1200px) {
    .container {
        width: 92%;
        margin: 0 auto;
    }
    .journey-container {
        gap: 10px;
    }


    .hero-content {
    padding: 50px;}

    .hero-title {
    font-size: 80px;}

    .about-container {
    max-width: 700px;}


.chapter-desc {

    margin-bottom: 0px;}

    .impact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));}

    .gallery-left {
    text-align: center;
}

.footer-logo {
    font-size: 4rem;
    margin-bottom: 10px;

}

    .contact-title {
    font-size: 40px;}

    .footer-section {
    padding: 50px 20px 20px 20px;}

    .gallery-right {
    display: grid;}




}

@media screen and (min-width: 768px) and (max-width: 1023px) {

.custom-dropdown .dropdown-menu{

        min-width: 280px;
        left: 30px;
    }
.hero-content .hero-title {
    font-size: 70px;}





}









/* 3. LARGE MOBILES TO PORTRAIT TABLETS (425px se 767px tak) */
@media screen and (min-width: 425px) and (max-width: 767px) {
    .navbar {
        justify-content: space-between;
        padding: 20px 18px;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background-color: #111111;
        padding: 18px 0;
        z-index: 1000;
        border-radius: 0 0 20px 20px;
    }
 
    .nav-links.open,
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 16px;
        
    }
    .hero-section {
        height: 60vh;
    }
    .about-section {
        padding: 30px 0;
    }
    .journey-section {
        padding: 10px 20px;
    }
    .chapter-title {
        font-size: 30px;
    }
    .journey-container {
        gap: 10px;
    }
    .journey-btn-container {
        margin-bottom: 40px;
    }
    .impact-container {
        gap: 20px;
    }


    .custom-dropdown .dropdown-menu{

        min-width: 280px;
        left: 10px;
    }
}


@media screen and (min-width: 320px) and (max-width: 424px) {


 .custom-dropdown .dropdown-menu{

       min-width: 280px;
        left: 30px;
    }
    .impact-container {
    gap: 48px;}

     .nav-links {
        left: 0;
    }

.hero-section {
    position: relative;
    height: 65vh;

}
.nav-links{
        border-radius: 0 0 20px 20px;
}
    .hero-title {
        font-size: 30px;


}}

/* ===== FIXED NAVBAR + HERO RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: clamp(3.2rem, 6vw, 4.8rem);
    }
    .hero-subtitle {
        font-size: clamp(1.1rem, 2vw, 1.5rem);
    }
    .hero-desc {
        font-size: clamp(1rem, 1.4vw, 1.1rem);
        max-width: 760px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 850px) {
    .hero-content {
        padding-top: 120px;
        padding-left: 18px;
        padding-right: 18px;
    }
    .nav-links {
        justify-content: center;
        gap: 0;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 14px 18px;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        background-color: #111111;
        padding: 18px 0;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
        margin: 0 auto;
        transform: none;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: 1rem;
        white-space: normal;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-links a:first-child {
        border-top: none;
    }
    .hero-section {
        min-height: 72vh;
        padding-bottom: 60px;
    }
    .hero-content {
        padding-top: 100px;
    }
    .hero-title {
        font-size: 2.6rem;
        letter-spacing: 0.4px;
        margin-bottom: 8px;
    }
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    .hero-desc {
        max-width: 88%;
        margin: 0 auto;
        line-height: 1.6;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        min-height: 65vh;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-subtitle {
        font-size: 0.94rem;
        letter-spacing: 2px;
    }
    .nav-links a {
        font-size: 0.95rem;
        padding: 12px 16px;
    }
}

/* Ensure desktop nav restores properly after mobile widths */
@media screen and (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
    .nav-links {
        display: flex !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: auto !important;
        background: rgba(0,0,0,0.18) !important;
        padding: 12px 20px !important;
        border-radius: 999px !important;
        box-shadow: none !important;
        transform: none !important;
    }
    .nav-links.active {
        display: flex !important;
    }
    .nav-links a {
        width: auto !important;
        text-align: left !important;
        padding: 10px 14px !important;
    }
}

/* Keep mobile menu hidden until toggle is tapped */
@media screen and (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 14px 18px;
    }
    .menu-toggle {
        display: block !important;
    }
    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        background-color: rgba(17, 17, 17, 0.98) !important;
        padding: 16px 0 22px !important;
        border-radius: 0 0 22px 22px !important;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35) !important;
        margin: 0 !important;
        overflow-y: auto !important;
        max-height: calc(100vh - 78px) !important;
        box-sizing: border-box !important;
        z-index: 1000 !important;
    }
    .nav-links.active {
        display: flex !important;
    }
    .nav-links a {
        width: 100% !important;
        text-align: center !important;
        padding: 14px 18px !important;
        font-size: 1rem !important;
        white-space: normal !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    }
    .nav-links a:first-child {
        border-top: none !important;
    }
    .hero-section {
        min-height: 72vh !important;
        padding-bottom: 60px !important;
    }
    .hero-content {
        padding-top: 100px !important;
    }
    .hero-title {
        font-size: 2.6rem !important;
        letter-spacing: 0.4px !important;
        margin-bottom: 8px !important;
    }
    .hero-subtitle {
        font-size: 1rem !important;
        letter-spacing: 3px !important;
    }
    .hero-desc {
        max-width: 88% !important;
        margin: 0 auto !important;
        line-height: 1.6 !important;
    }
    .journey-section {
        padding: 60px 16px 50px !important;
    }
    .journey-container {
        gap: 18px !important;
    }
    .chapter-card {
        min-height: auto !important;
        padding: 24px !important;
    }
    .chapter-img-wrapper {
        height: 220px !important;
    }
    .chapter-title {
        font-size: 1.75rem !important;
    }
    .read-more-btn {
        width: 100% !important;
        text-align: center !important;
    }
    .journey-btn-container {
        margin-bottom: 40px !important;
    }
    .custom-dropdown .dropdown-menu,
    .custom-dropdown .mega-menu {
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: calc(100% - 32px) !important;
        min-width: auto !important;
    }
}

.chapter-card-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex: 1;
}

.chapter-card-body .chapter-title {
    margin: 0;
}

.read-more-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.read-more-text {
    line-height: 1.8 !important;
}

/* ===== CONSOLIDATED RESPONSIVE FIXES ===== */
@media (max-width: 1200px) {
    .hero-title { font-size: clamp(3rem, 4vw, 4.5rem); }
    .hero-subtitle { font-size: clamp(1.2rem, 2vw, 1.6rem); }
    .hero-desc { max-width: 90%; margin: 0 auto; }
    .about-container, .portfolio-grid, .impact-container, .achievements-carousel, .footer-bottom {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-container {
        flex-direction: column;
        padding: 32px 20px;
        gap: 32px;
    }
    .timeline-item, .timeline-item.reversed {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .impact-container {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
        gap: 24px;
    }
    .hero-section {
        min-height: 70vh;
    }
    .hero-content {
        padding-top: 12%;
    }
}

@media (max-width: 768px) {
    .navbar { padding: 14px 16px; }
    .hero-section { min-height: 62vh; }
    .hero-content { padding-top: 90px; }
    .hero-title { font-size: 2.1rem; }
    .hero-subtitle { font-size: 0.98rem; letter-spacing: 2px; }
    .hero-desc { font-size: 0.95rem; line-height: 1.6; }
    .portfolio-grid, .impact-container, .about-container, .achievements-carousel {
        width: 100%;
    }
    .column { gap: 28px; }
    .right-column { margin-top: 0; }
    .nav-links {
        width: 100% !important;
        top: 100% !important;
    }
    .ach_item {
        width: 180px !important;
        min-width: 180px !important;
        max-width: 180px !important;
        height: 145px !important;
    }
    .achievements-carousel .row {
        margin: 10px 0 20px;
    }
    .achievements-carousel .slide {
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .hero-section { min-height: 55vh; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.85rem; letter-spacing: 1.5px; }
    .nav-links a { font-size: 0.95rem; padding: 12px 14px; }
    .ach_item {
        width: 160px !important;
        min-width: 160px !important;
        height: 130px !important;
    }
    .about-container { padding: 24px 16px; }
    .impact-container { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 18px; }
    .chapter-summary-card {
        padding: 24px 22px;
    }
}


