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

/* Proxima Nova - Light (300) */
@font-face {
    font-family: 'ProximaNova';
    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-weight: 300;
    font-style: normal;
}

/* Proxima Nova - Regular (400) */
@font-face {
    font-family: 'ProximaNova';
    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-weight: 400;
    font-style: normal;
}

/* Proxima Nova - Bold (700) */
@font-face {
    font-family: 'ProximaNova';
    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-weight: 700;
    font-style: normal;
}

/* Heading Now Trial */
@font-face {
    font-family: 'Heading Now Trial';
    src: url('heading-now-trial-webfont/heading-now-trial.woff2') format('woff2'),
         url('heading-now-trial-webfont/heading-now-trial.woff') format('woff');
    font-weight: normal;
    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: 'ProximaNova', 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: 'Heading Now Trial', sans-serif;
    font-weight: normal; /* 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: 'ProximaNova', sans-serif;
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px;
    z-index: 10;
    font-family: 'Heading Now Trial', sans-serif;
    font-weight:600;
}






/* 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);
}


/* Pehle se jo aapki classes hain unko barqarar rakhein, mobile ke liye niche wala code end pe dalen */

/* 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 ke liye (Responsive Media Query) */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block; /* Mobile par toggle button nazar aaye */
    }

    .nav-links {
        display: none; /* Shuru mein saare links chhup jayein */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Aapki navbar ki height ke mutabiq */
        left: 0;
        width: 100%;
        background-color: #111; /* Background color aap badal sakte hain */
        padding: 20px;
        text-align: center;
    }

    /* Jab javascript se class 'active' hogi toh menu dikhega */
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a {
        padding: 10px 0;
    }
}

/* ==========================================
   ABOUT ME SECTION - PIXEL PERFECT FIGMA MATCH
   ========================================== */
.about-section {
    background-color: #ffffff; 
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    position: relative;
}

/* 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: linear-gradient(135deg, #FFF2F4 0%, #FFD9DF 100%);
    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;
}

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

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

/* See More Button - Dark Theme with Figma Lime/Green Text */
.btn-figma-dark {
    background-color: #1D1F11;
    color: #C2E428; /* Exact custom glowing lime text code */
    padding: 16px 36px;
    font-size: 22px;
    font-weight: 300;
    border-radius: 14px;
    text-decoration: none;
    border: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 18px rgba(29, 31, 17, 0.25);
    cursor: pointer;
font-family: 'Heading Now Trial', sans-serif;}

.btn-figma-dark:hover {
    background-color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* 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: 'Heading Now Trial', 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; }

/* NAVBAR */
.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px;
    z-index: 10;
    
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 22px;
    font-size: 20px;
    font-weight: 300;
    transition: color 0.3s ease;
     font-family: 'Heading Now Trial', sans-serif;
}

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding:0px;
    color: #ffffff;
    align-items: flex-end;
}

.hero-section {
    display: flex;
    align-items: flex-end;  
    padding-bottom: 20px; 
}

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

.hero-subtitle {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 10px;
}

.hero-desc {
    font-size: 20px;
    line-height: 1.3;
    opacity: 0.85;
    font-family: ProximaNova;
}



/* ABOUT ME SECTION */
.about-section {
    background-color: #000000;
    color: #ffffff;
    padding: 120px 20px;
}

.about-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
    background: radial-gradient(circle at bottom right, rgb(234 76 137 / 40%), #ffffff 20%);
    padding: 60px;
    border-radius: 28px;
    border: 1px solid rgb(255 255 255);
}


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

.image-wrapper img {
    width: 100%;
    max-width: 340px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.social-share-bar {
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 40px;
    display: flex;
    gap: 22px;
    margin-top: -24px;
    box-shadow: 0 12px 30px rgba(234, 76, 137, 0.35);
}

.social-share-bar a {
    color: #000000;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-share-bar a:hover {
    color: #76B900;
    transform: scale(1.25);
}

.about-text-side { flex: 1.4; }
.about-text-side p {
    line-height: 1.85;
    margin-bottom: 40px;
    font-size: 1.05rem;
    opacity: 0.9;
}
.about-buttons { display: flex; gap: 20px; }

/* Sirf About Section ke peeche half dark aur half white background */
.about-section {
    width: 100%;
    padding: 80px 0; /* Upar aur neeche thoda space dene ke liye */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Yeh line aapke section ke peeche aadha dark aur aadha white color banayegi */
    background: linear-gradient(to bottom, #121212 50%, #ffffff 50%);
}

/* MY JOURNEY TIMELINE */

/* Journey Section Styling */
.journey-section {
    width: 100%;
    padding: 60px 20px;
    background-image: url('images/jouny_bg_img.png'); 
    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;
}



.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: 'Heading Now Trial', 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 {
    display: none;
    position: absolute;
    background-color: #111; /* Dark theme background */
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
    z-index: 999;
    border-radius: 4px;
    top: 100%; 
    left: 0;
}

/* 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;
}
.chapter-card {
    scroll-margin-top: 100px; /* Target section header ke piche nahi chupega */
}

/* Centered Rounded Image Structure */
.chapter-img-wrapper {
    max-width: 850px;
    width: 100%;
    margin: 0 auto 25px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

/* Card Titles and Text descriptions */
.chapter-title {
    font-family: 'Heading Now Trial', sans-serif;
    font-weight: 600;
    font-size: 35px;
    color: #1a0f0f;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.chapter-desc {
 color: #333333;
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
    text-align: center;
    font-family: Proxima Nova;
}

.read-more {
    color: #a2e000;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Show More Interactive Action Button */
.journey-btn-container {
    text-align: center;
    margin-top: 50px;
}

.journey-btn {
    background-color: #211c04; /* Theme matching olive/dark shade */
    color: #ccff00; /* Neon text */
    border: none;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.journey-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


/* 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: sans-serif; /* Ya jo bhi font aap pooray navbar me use kr rrhay hain */
}

.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: 23px;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

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

/* Cards Ki Styling */
.impact-card {
    background-color: #111111; /* Thoda mazeed dark backdrop cards ke liye */
    border: 2px solid #262626;  /* Subtle grey border */
    border-radius: 16px;       /* Smooth rounded corners */
    padding: 30px 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Card par mouse le jane ka effect */
.impact-card:hover {
    transform: translateY(-5px);
    border-color: #7ce600;     /* Border aapka brand green hojayega */
}

/* Headings inside cards */
.card-heading {
    color: #7ce600;            /* Bright green headings */
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Horizontal line elements split karne ke liye */
.card-divider {
    height: 1px;
    background-color: #333;
    margin: 15px auto;
    width: 85%;
}

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

.card-list li {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px dashed #262626; /* Dots wali horizontal line */
    letter-spacing: 0.5px;
}

/* 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 {
    color: #ffffff !important;
    text-decoration: none;   /* Underline khatam karne ke liye */
    display: block;          /* Poori line ko clickable banane ke liye */
    width: 100%;
    transition: color 0.2s ease;
    font-family: Proxima Nova;
    font-weight: 600;
}

/* 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: 15px;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

/* 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: 50px 20px 40px 20px;
}

.footer-logo {
  color: #325500;
    font-size: 8rem;
    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 { display: none; }
    .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; }
}

/* --- DESKTOP STYLING (Default) --- */
.navbar {
    display: flex;
    justify-content: ;
    align-items: center;
    
}

.nav-links {
    display: flex;
    align-items: center;
    
}

.menu-toggle {
    display: none; /* Desktop par toggle button chhup jaye */
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* --- MOBILE RESPONSIVE STYLING --- */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block; /* Mobile par burger icon nazar aaye */
    }

    .nav-links {
        display: none; /* Mobile par shuru mein menu GAYAB ho jaye */
        flex-direction: column;
        position: absolute;
        top: 20px; /* Navbar ki height ke mutabiq adjust karein */
        left: 0;
        width: 100%;
        background-color: #111111; /* Menu ka background color */
        padding: 20px 0;
        z-index: 1000;
    }

    /* ⚡ JAB TOGGLE CLICK HO TOH YEH CLASS CHALEGI ⚡ */
    .nav-links.open {
        display: flex; /* Click hone par menu wapas show hoga */
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
}




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

.journey-container {
gap: 0px;
}

    }
}

/* 2. TABLETS TO IPADS (768px se 1023px tak) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .nav-links {
        gap: 12px; /* Tablet par space thodi kam */
    }
    .nav-links {
        gap: 0px;
    }
    .nav-links a {
    margin: 0 10px;
  
}
.hero-title {
    font-size: 70px;}

    
.hero-subtitle {
    font-size: 23px;}

    .hero-content {
    padding: 50px;}

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




}

/* 3. LARGE MOBILES TO PORTRAIT TABLETS (480px se 767px tak)
   (Yahan par mobile hamburger toggle active hoga) */
@media screen and (min-width: 425px) and (max-width: 767px) {
    .menu-toggle {
        display: block; /* Toggle button show hoga */
    }
    
    .nav-links {
        display: none; /* Menu shuru mein band rahega */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #111111;
        padding: 20px 0;
        z-index: 1000;
    }

        .nav-links a {
        width: 100%;
        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: 0px;}

    .journey-btn-container {
    margin-bottom: 40px;
}

.gallery-left {
        text-align: center;
    }
.gallery-right {
    display: grid;}


    /* Jab JavaScript se 'open' class trigger hogi */
    .nav-links.open {
        display: flex; 
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }
}

/* 4. STANDARD MOBILE SCREENS (320px se 479px tak)
   (Is range mein sabse zyada CSS adjust karni parti hai) */

@media screen and (min-width: 320px) and (max-width: 424px) {
    .menu-toggle {
        display: block; /* Mobile toggle button */
    }

    .gallery-right {
    display: grid;}

    .chapter-num {
    font-size: 30px;}

        .chapter-title {
        font-size: 20px;
    }


    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 55px; /* Thoda mazeed upar */
        left: 0;
        width: 100%;
        background-color: #111111;
        padding: 15px 0;
        z-index: 1000;
    }
    .hero-title {
        font-size: 1.8rem;
    }
        .hero-subtitle {
        font-size: 14px;
    }
    .hero-desc {
    font-size: 14px;}

    .about-heading {
    font-size: 2rem;}

    .about-text-side p {

    font-size: 14px;}

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        font-size: 14px; /* Font size thoda chota */
    }


   .menu-toggle {
        display: block; /* Toggle button show hoga */
    }
    
    .nav-links {
        display: none; /* Menu shuru mein band rahega */
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #111111;
        padding: 20px 0;
        z-index: 1000;
    }

        .nav-links a {
        width: 100%;
        font-size: 16px;}

        .hero-section {
    height:45vh;
        }
    .about-section {
    padding: 30px 0;}

    .journey-section {
    padding: 10px 20px;}


    .impact-subtitle {
    font-size: 16px;}

        .gallery-left {
      text-align:center
    }


    .journey-container {
    gap: 0px;}

    .journey-btn-container {
    margin-bottom: 40px;

 
 .gllery-left {
        text-align: center;
    }
    .nav-links.open {
        display: flex; 
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    
    .navbar {
        padding: 10px 15px;
    }
  

}
}