
      /* Reset */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: #f0f4f8;
            color: #333;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img {
            display: block;
            max-width: 100%;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Container */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 0;
        }

        /* Hero Section */
        .home-div {
            position: relative;
            height: 85vh;
            background: linear-gradient(to bottom right, rgba(50, 53, 52, 0), rgba(4, 5, 5, 0.8)), url('bg-part.png') no-repeat center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .home-div .content {
            color: #fff;
            animation: fadeInDown 1.2s ease-out;
        }

        .home-div h1 {
            font-size: 2.5rem;
            /* margin-bottom: 1rem; */
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .home-div span{
            font-size: 4.5rem ;
            font-weight: bolder;

            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgb(255, 255, 46);
        }
        .home-div p {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .home-div .date {
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .promo{
            display: flex;
            justify-content: center;
        }
        .promo video{
              height: 500px; 
              width: 850px; 
              border: white 2px solid;
              border-radius: 0px;
              /*padding: 20px 0px;*/
              /*background-color: white;*/
              margin-bottom: 40px;
              margin-top: 40px;
              box-shadow: black 0px 2px 5px;
}


        /* Keyframes */
        @keyframes fadeInDown {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0); 
            }
        }

        /* Intro */
        /*.intro {*/
        /*    padding: 3rem;*/
        /*    border-radius: 12px;*/
        /*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);*/
        /*    animation: fadeIn 1.2s ease-out;*/
        /*    margin-top: 40px;*/
        /*}*/
        
        /*@keyframes fadeIn {*/
        /*    from {*/
        /*        opacity: 0;*/
        /*    }*/

        /*    to {*/
        /*        opacity: 1;*/
        /*    }*/
        /*}*/
        
        /*.intro {*/
        /* 3‑stop dark‑to‑teal gradient */
        /* background: linear-gradient(110deg,#2dd43b 0%,#25c4c4 35%,#2077da 50%,#3364ce 75%,#9c68d6 100%); */
        /*background-color: white;*/
        /* ensure it fills the area */
        /*background-size: cover;*/
        /*background-repeat: no-repeat;*/
        /*}*/
        
        /*.intro p {*/
        /*    color: black;*/
        /*    margin-bottom: 1rem;*/
        /*    font-size: 1rem;*/
        /*    font-weight: 500;*/
        /*}*/
        /*.intro .per{*/
        /*    background-color: rgb(223, 252, 252);*/
        /*    padding: 10px;*/
        /*    padding-bottom: 1px;*/
        /*    border-radius: 10px;*/
        /*    text-align: center !important;*/
    
        /*}*/
        
        
        /* Sections */
        section+section {
            margin-top: 3.5rem;
        }

        section h2 {
            position: relative;
            margin-bottom: 2rem;
            text-align: center;
            font-size: 2.75rem;
            color: #2c3e50;
        }

        section h2::after {
            content: '';
            width: 60px;
            height: 4px;
            background: #16a085;
            display: block;
            margin: 0.5rem auto 0;
            border-radius: 2px;
        }

        /* table section */
        .table-ta{
            width: 100vw;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .table-div{
            display: flex;
            flex-direction: column;
            width: 85%;

        }
        .table-div h1{
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }
        .table-img{
            height: 30%;
            width: 50%;
        }

        /* table section table */
            :root {
      --primary: #ff6a00;
      --secondary: #ee0979;
      --accent: #8e2de2;
      --light-bg: #fdf3f7;
      --dark-text: #333;
    }
    .table-img{
        display: none;
    }

    .fancy-table {
      border-collapse: separate;
      border-spacing: 0;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      width: 100%;
      max-width: 800px;
    }

    .fancy-table thead tr {
        background-color:grey;
      /* background: linear-gradient(90deg, var(--primary), var(--secondary)); */
      color: #fff;
    }
    .fancy-table thead th {
      padding: 1rem 1.5rem;
      text-align: left;
      font-size: 1.1rem;
    }

    .fancy-table tbody tr {
      background: #fff;
      transition: background .3s;
    }
    .fancy-table tbody tr:nth-child(even) {
      background: var(--light-bg);
    }
    .fancy-table tbody tr:hover {
      background: rgba(238,9,121,0.1);
    }
    .fancy-table tbody td {
      padding: 1rem 1.5rem;
      vertical-align: top;
    }

    /* Multi‑line “Timing” cell styling */
    .fancy-table .timing-cell {
      display: flex;
      flex-direction: column;
      gap: .5rem;
    }

    @media (max-width: 600px) {
      .fancy-table thead {
        display: none;
      }
      .fancy-table, 
      .fancy-table tbody, 
      .fancy-table tr, 
      .fancy-table td {
        display: block;
        width: 100%;
      }
      .fancy-table tr {
        margin-bottom: 1.5rem;
      }
      .fancy-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
      }
      .fancy-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        width: 45%;
        text-align: left;
        font-weight: 600;
      }
    }


        /* Themes */
        .themes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
        }
        #themes h3{
            margin-bottom: 5px;
            text-align: center;
            color:#2980b9;
        }
        #themes p{
            margin-bottom: 30px;
            text-align: center;
        }
        .theme-card {
            padding: 2rem 1rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(209, 206, 206, 0.05);
            text-align: center;
            transition: transform 0.4s, box-shadow 0.4s;
            /* background: linear-gradient(110deg,#2dd43b 0%, #25c4c4 35%,  #2077da 50%, #3364ce 75%, #9c68d6 100%); */
            background-color: #ffffff;
            background-size: cover;
            background-repeat: no-repeat;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .theme-card img{
            height: 50%;
            width: 50%;
        }

        .theme-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }

        .theme-card h3 {
            font-size: 1.5rem;
            /* color: #fff; */
            color:black;
        }

        /* Journey section */
        #journey{
            display: flex;
            align-items: center;
            flex-direction: column;
            background-image: url(road.png);
            background-repeat: no-repeat;
            background-position: right;
            background-color: rgb(255, 255, 255);
        }
        .old-summit-container{
         display: flex;
         gap: 20px;
         /* justify-content: center; */
         flex-direction: column;
        padding-left: 19rem;
        }
        .old-summit{
            border-radius: 10px;
            width: 40%;
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding: 20px;
            background-color: rgb(245, 220, 220);
            /* background: linear-gradient(90deg,hsl(115, 100%, 82%),violet); */
            
        }
        #journey h3{
            margin-bottom: 20px;
            text-align: center;
        }
        #journey h1{
            margin-bottom: 20px;
            margin-top: 30px;

            color: rgb(159, 159, 255);
            font-weight: bolder;
            font-size: 3rem;
            /* text-shadow: yellow 0px 2px 4px ; */
            text-align: center;
        }
        .old-summit p{
            margin-top: 10px;
            text-align: center;
        }
        .comming-summit{
            border-radius: 10px;
            width: 50%;
            height: 250px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding: 20px;
            background-color: rgb(245, 220, 220);
            /* background: linear-gradient(90deg,hsl(115, 100%, 82%),violet); */
            
        }
        .comming-summit p{
            margin-top: 10px;
            text-align: center;
        }

        /* unlock section */
        #Unlock{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        #Unlock .point{
            font-weight: bolder;
            color: black;

        }
        #Unlock img{
            height: 30%;
            width: 40%;
            margin-bottom: 20px;
            border-radius: 10px;
            margin-top: 10px;
        }
        #Unlock .par{
            text-align: left !important;
        }


        /* .wrapper {
      display: flex;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 10px;
      width: 80%;
      height: 400px;
    } */

    /* ---------- SEMICIRCLE ----------
    .semicircle {
      width: 300px;
      height: 300px;
    }

    ---------- ITEMS ----------
    .items {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .item {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .item .num {
      flex: 0 0 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--circle-bg);
      color: #fff;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .item:nth-child(1) .num { background: #0047b3; }
    .item:nth-child(2) .num { background: #0099a1; }
    .item:nth-child(3) .num { background: #33c1ff; }

    .item .box {
      padding: 0.75rem 1rem;
      border-radius: 8px;
      color: #111;
      font-weight: 600;
      line-height: 1.3;
      max-width: 320px;
    }
    .item:nth-child(1) .box {
      background: linear-gradient(90deg, #d2f998, #90e0ef);
    }
    .item:nth-child(2) .box {
      background: linear-gradient(90deg, #b0b0b0, #e0e0e0);
    }
    .item:nth-child(3) .box {
      background: linear-gradient(90deg, #7f00ff, #00e5ff);
    }

    ---------- RESPONSIVE ----------
    @media (max-width: 600px) {
      .wrapper { flex-direction: column; align-items: center; }
      .semicircle { transform: scale(0.8); }
    }
 */


/* Intro for partner */
    #partner-intro{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .type-partners{
        background-color: rgb(227, 254, 255);
        box-shadow: #000000 0px 2px 5px;
        padding: 30px;
        width: 50%;
        border-radius: 10px;
    }

    .type-partners ul{
        padding-left: 50px;
    }
    .type-partners h4{
        font-size: 1.2rem;
        color: darkgreen;
        font-weight: bold;
        margin-top: 10px;
    }
    .type-partners li{
    font-weight: bold;
    }

        /* Benefits Table */
        .benefits table {
            width: 100%;
            border-collapse: collapse;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
        }

        .benefits th,
        .benefits td {
            padding: 1rem;
            text-align: left;
        }

        .benefits th {
            background: #2980b9;
            color: #fff;
            font-size: 1rem;
        }

        .benefits tr:nth-child(even) {
            background: #eff6f8;
        }

        .benefits td {
            font-size: 0.95rem;
        }


        /* Packages */
        .packages-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .package-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            width: 340px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .package-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .package-header {
            background: #16a085;
            color: #fff;
            padding: 2rem 1rem;
            text-align: center;

        }

        .package-header h4 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
        }

        .package-price {
            font-size: 2.5rem;
            font-weight: 700;
        }

        .package-body {
            padding: 1.5rem;
        }

        .package-body ul {
            list-style: none;
        }

        .package-body li {
            position: relative;
            padding-left: 1.5rem;
            margin: 1rem 0;
        }

        .package-body li::before {
            content: '✔';
            position: absolute;
            left: 0;
            top: 0;
            color: #16a085;
        }


        /* Logos */
        .logos {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            align-items: center;
        }

        .logos .logo {
            background: #fff;
            padding: 1rem 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            height: 150px;
            width: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logos .logo:hover {
            transform: scale(1.1);
        }

        .logos .logo img {
            height: 70%;
            /* width: ; */
        }


        /*  */
        .organizers-div {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            align-items: center;
        }

        .organizers-div .logo {
            background: #fff;
            padding: 1rem 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            height: 150px;
            width: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .organizers-div .logo:hover {
            transform: scale(1.1);
        }

        .organizers-div .logo img {
            height: 50%;
            /* width: ; */
        }


        /* Key support partners */

        #support-partners{
            margin: 0 0 !important;
        }

        #support-partners h2{
            text-align: center !important;
            width: 100vw;
        }

        .carousel-container {
      height:35vh;
      width: 100vw;
      display: flex;
      align-items: center;
      overflow: hidden;
      background-color: lavender;
    }

    .track {
      display: flex;
      align-items: center;
      
      /* will set animation dynamically via JS */
    }

    .card {
      flex: 0 0 calc(100% / 5);
      padding: 10px;
    }

    .card a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 150px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-decoration: none;
      transition: transform 0.3s ease;
    }

    .card.active a {
      /* transform: scale(1.15); */
      z-index: 1;
    }

    .card a img {
      max-width: 80%;
      max-height: 80%;
      object-fit: contain;
    }

    @media (max-width: 1024px) {
      .card { flex: 0 0 calc(100% / 3); }
    }

    @media (max-width: 768px) {
      .card { flex: 0 0 100%; }
       .promo video{
    height: 180px;
    padding: 0px;
    margin-top: 30px;
    margin-bottom:0px;
    width: 300px;
  }
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(calc(-1 * var(--scroll-width))); }
    }


        /* Key organizations */
        .org-container{
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }
        .org-container h3{
            font-weight: bolder;
            font-size: 2rem;
            margin-top: 2rem;
        }
            .sec {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
            align-items: center;
        }

        .sec .logo {
            background: #fff;
            padding: 1rem 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            height: 150px;
            width: 17%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sec .logo:hover {
            transform: scale(1.1);
        }

        .sec .logo img {
            height: 90%;
            width: 90%;
        }

        /* Footer */
        footer {
            background: #16a085;
            padding: 2rem 0;
            text-align: center;
            color: #fff;
        }

        footer a {
            color: #fff;
            font-weight: 600;
        }

        .container-foot{
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        .footer-img {
            height: 350px;
            width: 450px;
            border-radius: 20px;
            /* padding: 30px; */
        }
        .mob-partner{
            display: none;
        }

        /* ──────────────── MOBILE (smartphones) ──────────────── */
/* Styles for viewports narrower than 768px */

@media (max-width: 767px) {
*{
    overflow-x: hidden;
}
.home-div h1{
    font-size: 1.5rem;
}
.home-div span{
    font-size: 2.5rem;
}
.home-div p{
    font-size: 14px;
}
.container h2{
    font-size: 2rem;
}
.fancy-table{
    display: none;
}
.table-img{
    display: inline;
    height: 300px;
    width: 90%;
}
.old-summit-container{
    flex-direction: column;
}
.old-summit{
    width: 100%;
}
.comming-summit{
    width: 100%;
}
#journey h1{
    font-size: 1rem;
}
#Unlock img{
    width: 90%;
}

/* Themes */
.themes{
    width: 100vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.theme-card{
    height: 90%;
    width: 40%;
    gap: 5px;
}
.theme-card h3{
    font-size: 10px;
}
/* journey */
#journey{
    background-image: none;
}
.old-summit-container{
    padding-left: 0rem;
}
.type-partners{
    width: 100%;
}

#journey h2,#Unlock h2,#partner-intro h2,#packages h2,#support-partners h2,#key-organizations h2{
    font-size: 1.4rem;
}
.container{
    padding: 2.5rem 0;
}

#Unlock .par{
    margin-bottom: 10px;
}
.type-partners ul{
    padding-left: 30px;
}
.logos{
    display: flex;
    flex-direction: row;
    width: 90vw;
    gap: 10px;
    height: 400px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.logos .logo{
    height: 80px;
    width: 145px;
}
.sec{
    gap: 1rem;
}
.sec .logo{
    width: 45%;
    height: 100px;
}
.organizers-div{
    flex-direction: row;
}
.organizers-div .logo{
    height: 70px;
    width: 84px;
}
.organizers-div .logo img{
    height: 100%;
    width: 100px;
}
.organizers-div .logo{
    padding: 1rem .5rem;
}
.footer-img{
    height: 50%;
}
.card a{
    width: 14%;
}
.carousel-container{
    display: none;
}
.mob-partner{
    display: block;
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.mob-partner .dive{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 39%;
    border-radius: 10px;
    height: 50px;
    background-color: white;
    border-radius: 10%;
}
.mob-partner a{
    display: flex;
    justify-content: center;
    align-items: center;
}
.mob-partner img{
    height: 30px;
    width: 90%;
}
}
/* ──────────────── TABLET (portrait & small landscape) ──────────────── */
/* Styles for viewports between 768px and 1023px */

@media (min-width: 768px) and (max-width: 1023px) {
    .themes{
    display: flex;
    justify-content: center;
    align-items: center;
}
.themes .theme-card {
    width: 23%;
    height: 250px;
    gap: 20px;
}
.theme-card h3{
    font-size: 1rem;
}
.old-summit-container{
    padding-left: 2rem;
    padding-top: 5rem;
}
.comming-summit{
    margin-top: 7.7rem;
}
.type-partners{
    width: 77%;
}
}

/* ──────────────── DESKTOP (laptops & large screens) ──────────────── */
/* Styles for viewports 1024px and wider */

@media (min-width: 1024px) {

}