/* header */

        @media (max-width: 768px) {
            body{
                overflow-x: hidden;
            }
            .header-nav {
                grid-template-columns: 1fr auto;
                gap: 10px;
            }

            .header-menu {
                display: none;
            }

            .header-auth {
                gap: 10px;
                justify-self: end;
            }

            .header-signup {
                padding: 8px 16px;
                font-size: 14px;
            }
        }
/* section1 */
 /* Responsive Design */
        @media (max-width: 768px) {
            .header-auth {
            display: none;
           
        }
         .hamburger {
    display: flex;
  }

  .header-menu {
    display: none; /* Hide menu by default on mobile */
    flex-direction: column;
    background: black;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    padding: 2rem;
    width: 100%;
     
    z-index: 10;
   

  }
  .menu-close {
  font-size: 2rem;
  text-align: right;
  cursor: pointer;
  color: white;
  display: flex;
  justify-items: end;
 
  border-bottom: 1px solid #444;
}

  .header-menu.open {
    display: flex;
  }

  .header-menu-item {
    margin: 1rem 0;
    font-size: 1.5rem;
  }


         .header-banner {
            position: fixed;
            top: 35px;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            text-align: center;
            padding: 8px 20px;
            z-index: 999;


            transform: translateY(-300%);
            /* NEW: Hide banner initially */
            transition: transform 0.3s ease;
            /* NEW: Smooth animation */
        }
          .header-logo {
            font-size: 20px;
            font-weight: 100;
            color: #ffffff;
            text-decoration: none;
            justify-self: left;
            letter-spacing: 2px;
        }
            .section1-hero {
                padding: 0px 40px;
               
            }

            .section1-heading {
            font-family: 'Georgia', serif;
            font-size: 4rem;
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: -3px;
            color: white;
            margin-bottom: 0px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            padding-top: 200px;
            text-align: center;
        }

            .section1-buttons {
                flex-direction: column;
                align-items:center;
            }

            .section1-btn {
                width: 75%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .section1-hero {
                padding: 0px 20px;
                
            }

              .section1-heading {
            font-family: 'Georgia', serif;
            font-size: 4rem;
            font-weight: 400;
            line-height: 1.1;
            letter-spacing: -3px;
            color: white;
            margin-bottom: 0px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            padding-top: 200px;
            text-align: center;
        }

            .section1-watermark {
                bottom: 20px;
                right: 20px;
                font-size: 0.8rem;
            }
        }
/* section2 */
  @media (max-width: 768px) {
            .section2-benefits-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .section2-bottom-row {
                grid-column: 0;
                grid-template-columns: 1fr;
            }

            .section2-credits,
            .section2-speaker-events,
            .section2-companies-hiring {
                grid-column: 1;
            }

            .section2-title {
                font-size: 30px;
                margin-bottom: 40px;
                 padding-top: 50px;
            }

            .section2-card-number {
                font-size: 40px;
            }

            .section2-benefit-card {
                padding: 30px;
                min-height: 150px;
            }

            .section2-active-members,
            .section2-self-paced {
                width: 100%;
                margin-left: 0;
            }
            
        .section2-benefits-grid {
            display: grid;
            grid-template-columns: 2fr 2fr;
            grid-template-rows: auto auto auto;
            gap: 20px;
            max-width: 400px;
            margin: 0 auto;
            width: 100%;
        }
        }
/* section3 */
 /* Responsive design */
        @media (max-width: 768px) {
               .section3-container {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 0px;
        }
            .section3-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
              .section3-members-grid {
            display: flex;
            gap: 5px;
            justify-content: center;
            flex-wrap: wrap;
        }

            .section3-member-card {
                width: 100%;
                height: 350px;
            }

            .section3-percentage {
                font-size: 3rem;
            }
        }

        @media (max-width: 480px) {
            .section3-members-grid {
                flex-direction: column;
                align-items: center;
            }

            .section3-member-card {
                width: 100%;
                height: 380px;
            }
        }

/* section4 */
   /* Responsive */
        @media (max-width: 768px) {
            .section4-container {
                padding: 0px 30px;
                padding-top: 0px;
            }

            .section4-title {
                font-size: 1.8rem;
                margin-bottom: 0px;
                
            }

            .section4-text-section p {
                font-size: 1.4rem;
                 letter-spacing: 0.1px;
            }

            .section4-left-shadow,
            .section4-right-shadow {
                width: 300px;
                height: 300px;
            }
             .section4-right-shadow {
            position: absolute;
            bottom: 100px;
            right: 0px;
           
            background: radial-gradient(circle, rgba(39, 105, 210, 0.6), transparent 100%);
            filter: blur(100px);
            z-index: -1;
            pointer-events: none;
        }
            .section4-container {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
            padding: 0px 50px;
            min-height: 10vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-top: 0px;
        }
        }

        @media (max-width: 480px) {
            .section4-container {
                padding: 0px 20px;
                
            }

            .section4-title {
                font-size: 1.5rem;
                margin-bottom: 30px;
            }

            .section4-text-section p {
                font-size: 1.1rem;
            }

            .section4-left-shadow,
            .section4-right-shadow {
                width: 250px;
                height: 250px;
            }
        }
/* city chapter */
 @media (max-width: 768px) {
            .city-chapter-header h1 {
                font-size: 32px;
            }

            .city-chapter-header h2 {
                font-size: 24px;
            }

            .city-chapter-polaroid {
                width: 160px;
                padding: 12px 12px 35px 12px;
            }

            .city-chapter-polaroid-image {
                height: 120px;
            }

            .city-chapter-gallery-container::before,
            .city-chapter-gallery-container::after {
                width: 80px;
            }
            .city-chapter-gallery-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
        }
    }
/* invited */
  @media (max-width: 768px) {
            .invited-image-grid {
                padding: 0 20px;
                height: 60vh;
            }
             .invited-image-section {
            position: sticky;
            top: 0;
            height: 70vh;
            display: flex;
            align-items: center;
        }

            .invited-image-card {
                min-width: 300px;
            }

            .invited-header {
                padding: 40px 20px 80px;
            }

            .invited-card-content {
                padding: 20px;
            }
        }
/* experts*/

        @media (max-width: 768px) {
            .experts-main-title {
                font-size: 2.5rem;
            }

            .experts-container {
                padding: 0px 15px;
            }

            .experts-marquee-left,
            .experts-marquee-right {
                animation-duration: 20s;
            }
        }

        @media (max-width: 480px) {
            .experts-main-title {
                font-size: 2rem;
            }

            .experts-description {
                font-size: 16px;
            }

            .experts-card {
                width: 250px;
                height: 180px;
            }
        }
/* our members */
  @media (max-width: 768px) {
         .our-members-container {
            width: 100%;
            padding: 0px 20px;
           padding-bottom: 0px;
        }
            .our-members-header h1 {
                font-size: 2.5rem;
                line-height: 40px;
            }
          
        .our-members-header p {
            color: #888888;
            font-size: 0.9rem;
            line-height: 1.1;
            max-width: 100%;
            margin: 0 auto;
             font-family: 'Poppins', 'sans-serif';
        }

            .our-members-card {
                width: 280px;
                height: 380px;
            }

            .our-members-marquee {
                width: calc(280px * 14 + 20px * 13);
            }
        }

/* curated */
  /* Responsive Design */
        @media (max-width: 768px) {
            .curated-badge {
                font-size: 12px;
                padding: 6px 16px;
                margin-bottom: 30px;
            }

            .curated-main-heading {
                font-size: clamp(2rem, 10vw, 4rem);
                margin-bottom: 15px;
                padding: 0 20px;
            }

            .curated-cta-button {
                margin-top: 30px;
                padding: 12px 25px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .curated-hero-section {
                padding: 20px;
            }

            .curated-main-heading {
                font-size: clamp(1.8rem, 12vw, 3rem);
            }
        }
/* annual */
   @media (max-width: 768px) {
            .annual-tagline {
                font-size: 12px;
                letter-spacing: 2px;
            }

            .annual-main-title span {
                display: block;
                margin: 5px 0;
                 font-size: 3rem;
            font-weight: 500;
            }
            .annual-subtitle {
            font-size: 3rem;
            font-weight: 500;
            }
            .annual-description {
                font-size: 14px;
                padding: 0 10px;
            }

            .annual-cta-button {
                padding: 15px 30px;
                font-size: 14px;
            }
        }

/* member */

        @media (max-width: 768px) {
            .member-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .member-content {
                padding-right: 0;
                order: 2;
            }

            .member-image-container {
                order: 1;
            }

            .member-quote {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .member-image {
                height: 400px;
            }
        }
/* career */
 /* Responsive adjustments */
        @media (max-width: 768px) {
            .career-title {
                font-size: 32px;
                padding: 0 20px;
            }
              .career-image-space {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 70%;
            /* Space reserved for the curve image */
            background-image: url('../images/67c02a1fe40fae8c865d1e71_Ipsita\ Work\ Group\ \(2\).avif');
            /* background-size: contain; */
            background-repeat: no-repeat;
            /* background-position: center bottom; */
            background-position: 50% 60%;
            background-size: auto 22%;
            justify-content: center;
            align-items: flex-start;
            height: 100vh;
            display: flex;
        }
        }
        /* career two */
         @media (max-width: 768px) {
            .career-two-container {
                padding: 40px 20px;
            }

            .career-two-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                    height: 100vh;
            }

            .career-two-card {
                padding: 24px;
            }

            .career-two-title {
                font-size: 14px;
            }

            .career-two-description {
                font-size: 14px;
            }

            .career-two-activate {
                top: 20px;
                right: 20px;
            }
        }
/* community */
   @media (max-width: 768px) {
            .community-container {
                padding: 40px 15px 30px;
            }

            .community-title {
                font-size: 2.2rem;
                margin-bottom: 40px;
            }

            .community-subtitle {
                font-size: 1.5rem;
            }

            .community-columns {
                flex-direction: column;
                gap: 0px;
            }

            .community-column {
                padding: 25px;
            }

            .community-list-item {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .community-title {
                font-size: 1.8rem;
            }

            .community-subtitle {
                font-size: 1.3rem;
            }

            .community-column {
                padding: 20px;
            }
        }

/* step */
  @media (max-width: 768px) {
            .step-main-title {
                font-size: 2.5rem;
            }

            .step-steps-container {
                grid-template-columns: 1fr;
            }

            .step-card {
                padding: 30px;
                min-height: 350px;
            }

            .step-number {
                font-size: 4rem;
            }
             .step-container {
            max-width: 1000px;

            margin: 0 auto;
            background-color: black;
            color: white;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            /* align-items: center; */
            padding: 0px 0px;
        }
        }
/* ecosystem */
 @media (max-width: 768px) {
            .ecosystem-container {
                padding: 40px 15px;
            }

            .ecosystem-title {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .ecosystem-testimonial,
            .ecosystem-investors {
                padding: 25px;
            }

            .ecosystem-investors-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .ecosystem-quote {
                font-size: 16px;
            }
        }
        /* faq */
        @media (max-width: 768px) {
              .faq-title {
            text-align: center;
            font-size: 3rem;
            font-weight:500;
            margin-bottom: 0px;
            letter-spacing: -3px;
            
        }
             .faq-tab {
            padding: 10px 0px;
            cursor: pointer;
            font-size: 1.2rem;
            color: #888888;
            border-bottom: 1px solid transparent;
            flex: 1;
            text-align: center;
            transition: all 0.3s ease;
            margin-bottom: 0px;
            font-family: 'Poppins', 'sans-serif';
        }
        .faq-tab-container {
            padding: 0 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 0px;
    gap: 0px;
}
                .faq-item {
            border: 0px solid #333333;
            border-radius: 8px;
            overflow: hidden;
            margin: 5px 50px;

        }
                 .faq-question {
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            font-weight: 400;
            background-color: #0f0f0f;
            transition: background-color 0.2s ease;
            font-family: 'Poppins', 'sans-serif';
        }
        

        .faq-icon {
            font-size: 2rem;
            font-weight: 300;
            color: #ffffff;
            transition: all 0.3s ease;
        }
              .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: rgb(153, 152, 152);
            font-size: 0.8rem;
            line-height: 1.6;
            font-weight: 400;
            font-family: 'Poppins', 'sans-serif';
        }
        }


/* latest */
 @media (max-width: 768px) {
        .latest-container {
           
            padding: 10px 20px;

        }
            .latest-title {
                font-size: 3rem;
            }

            .latest-articles-grid {
                grid-template-columns: 1fr;
            }

            .latest-column {
                display: block;
            }

            .latest-column .latest-article-card+.latest-article-card {
                margin-top: 20px;
            }

            .latest-podcasts-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .latest-featured-title {
                font-size: 1.5rem;
            }
               .last-section-img {
            display: flex;
            justify-items: center;
            margin-left: 0%;

            object-fit: contain;
            object-position: 50% 100%;

            inset: auto 0% -5px;
        }
        }

        @media (max-width: 480px) {
            .latest-podcasts-grid {
                grid-template-columns: 1fr;
            }
        }
        /* footer */
           @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }

            .footer-logo-section {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-container {
                padding: 40px 20px 20px;
            }
        }