* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html,
body {
    overflow-x: hidden;
}

.navbar {
    padding: 0.8rem 1rem;
}

.navbar.scrolled {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* optional shadow */
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-nav {
    gap: 1.5rem;
}

.cta-btn {
    white-space: nowrap;
}

.navbar-toggler {
    border: none;
}

nav {
    background-color: #e5f3ff !important;
}

/* ABOUT SECTION */

.about_wrapper {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 90px 0;
    

}

.about_wrapper .about-container {
    width: 80%;
    margin: 0 auto;
    background: #fff;
    padding: 45px 30px;
    border-radius: 30px;
    border: 2px solid #4ed993;
}

#elets-root {
    /* min-height: 100vh; */
    background: linear-gradient(to right, #4fd991, #04bff8);
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-family: 'DM Sans', sans-serif; */
    overflow: hidden;
    position: relative;
  }

  #elets-root::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(ellipse 60% 50% at 20% 50%, rgba(255,90,0,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 50% 60% at 80% 30%, rgba(255,180,0,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  #elets-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: elets-grid-drift 20s linear infinite;
  }

  @keyframes elets-grid-drift {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
  }

  #elets-wrapper {
    position: relative;
    z-index: 2;
    width: min(1100px, 95vw);
    padding: 80px 40px;
    text-align: center;
  }

  #elets-hashtag {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    text-align: center;
    gap: 0;
    animation: elets-slide-down 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

    #elets-hashtag2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: 0.04em;
    color: #000000;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    text-align: center;
    gap: 0;
    animation: elets-slide-down 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
    margin-top: 90px;
    margin-bottom: 40px;
  }

  #elets-hash-sym {
    color: #15580d;
    display: inline-block;
    animation: elets-pulse-hash 3s ease-in-out infinite;
  }

  @keyframes elets-pulse-hash {
    /* 0%, 100% { text-shadow: 0 0 0px #ff5a00; } */
    /* 50% { text-shadow: 0 0 30px #ff5a00aa; } */
  }

  @keyframes elets-slide-down {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  #elets-tagline {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgb(255, 255, 255);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: elets-fade-in 1s 0.3s both;
  }

  @keyframes elets-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  #elets-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ff5a00, #ffb400);
    margin-bottom: 70px;
    animation: elets-expand-line 1s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
    transform-origin: left;
  }

  @keyframes elets-expand-line {
    from { transform: scaleX(0); opacity: 0; }
    to { transform: scaleX(1); opacity: 1; }
  }

  #elets-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
  }

  @media (max-width: 700px) {
    #elets-stats-grid { grid-template-columns: repeat(2, 1fr); }
  }

  .elets-stat-cell {
    background: #00433c;
    padding: 30px 10px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background 0.4s ease;
    animation: elets-cell-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
    text-align: center;
    border-radius: 5px;
  }

  .elets-stat-cell:nth-child(1) { animation-delay: 0.5s; }
  .elets-stat-cell:nth-child(2) { animation-delay: 0.65s; }
  .elets-stat-cell:nth-child(3) { animation-delay: 0.8s; }
  .elets-stat-cell:nth-child(4) { animation-delay: 0.95s; }

  @keyframes elets-cell-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .elets-stat-cell::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, #10835c, #097f83);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .elets-stat-cell::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 120%, rgba(255,90,0,0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .elets-stat-cell:hover {
    background: #00433c;
  }

  .elets-stat-cell:hover::before { transform: scaleX(1); }
  .elets-stat-cell:hover::after { opacity: 1; }

  .elets-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 3.5rem);
    color: #fff;
    line-height: 1;
    letter-spacing: 0.02em;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    position: relative;
    z-index: 1;
  }

  .elets-stat-num-val {
    display: inline-block;
    animation: elets-count-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  }

  .elets-stat-cell:nth-child(1) .elets-stat-num-val { animation-delay: 0.6s; }
  .elets-stat-cell:nth-child(2) .elets-stat-num-val { animation-delay: 0.75s; }
  .elets-stat-cell:nth-child(3) .elets-stat-num-val { animation-delay: 0.9s; }
  .elets-stat-cell:nth-child(4) .elets-stat-num-val { animation-delay: 1.05s; }

  @keyframes elets-count-pop {
    from { opacity: 0; transform: scale(0.5) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }

  .elets-stat-suffix {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff;
    letter-spacing: 0;
    line-height: 1;
    position: relative;
    z-index: 1;
  }

  .elets-stat-label {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 500;
    color: rgb(0 183 164);
    /* letter-spacing: 0.18em; */
    /* text-transform: uppercase; */
    position: relative;
    z-index: 1;
    line-height: 1.5;
  }

  #elets-floating-orb-1 {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,90,0,0.15), transparent 70%);
    top: -100px; right: -50px;
    animation: elets-orb-float 8s ease-in-out infinite;
    pointer-events: none;
  }

  #elets-floating-orb-2 {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,180,0,0.1), transparent 70%);
    bottom: 0; left: -80px;
    animation: elets-orb-float 11s ease-in-out infinite reverse;
    pointer-events: none;
  }

  @keyframes elets-orb-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(30px) scale(1.1); }
  }

  #elets-key-highlights {
    font-size: 16px;
    font-weight: 500;
    /* letter-spacing: 0.3em; */
    text-transform: uppercase;
    color: #024f48;
    margin-bottom: 6px;
    animation: elets-fade-in 1s 0.1s both;
  }

.about_wrapper h2 {
    font-size: 36px;
    font-weight: 700;
}

.biggy {
    font-size: 80px;
    color: #42d5a4;
    display: block;
}

.biggy-mid {
    font-size: 60px;
    color: #42d5a4;
    display: block;
}

.bigsy {
    font-size: 60px;
    color: #e2e2e2;
    font-weight: 800;
    text-align: center;
}

.mobility-topics-section {
    padding: 60px 0px 120px;
    background-image: url(./assets/white_bg.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.topic-block {
    margin-bottom: 30px;
    /* text-align: center; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 15px 15px 2px 15px;
    border-radius: 5px;
    background-color: #fff;
}

.topic-block h3 {
    font-size: 18px;
    color: #004d99;
    margin-bottom: 5px;
}

.topic-block ul {
    padding-left: 0px;
    list-style-type: disc;
}

.topic-block ul li {
    margin-bottom: 6px;
    color: #555;
    font-size: 14px;
    list-style: none;
}

.audience-section {
    padding: 90px 0px;
    background: linear-gradient(to right, #4fd991, #04bff8);
}

.audience-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}


.audience-item {
    position: relative;
    padding-left: 28px;
    font-size: 18px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 10px;
    background: #fff;
    padding: 10px 10px 10px 35px;
    border-radius: 10px;
}



.audience-item::before {
    content: "✔";
    position: absolute;
    left: 10px;
    top: 10px;
    color: #4fd991;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.6;
}

.scroll-section {
    display: flex;
    width: 100%;
    height: 55vh;
}

.column {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.image-container {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    will-change: transform;
}

.left-column .image-container {
    animation: scrollUp 1s linear infinite;
}

.right-column .image-container {
    animation: scrollDown 1s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

.image-item {
    width: 90%;
    margin: 10px 0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-item img {
    width: 100%;
    height: auto;
    display: block;
}


.innovation_wrapper {
    position: relative;
    background: linear-gradient(to right, #4fd991, #04bff8);
    padding: 100px 0 120px;
}

.plant_a {
    position: absolute;
    bottom: 0px;
    width: 240px;
    opacity: 0.8;
    right: 0px;
    z-index: 3;
}



.innovation_wrapper::before {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0;
    left: 0;
    background: url(./assets/plant.png) no-repeat;
    background-position: top center;
    background-size: cover;
}


.innovate_heading h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    color: #fff;
}

.innovate_heading h2 span {
    color: #fff;
}

.innovate_heading p {
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    padding: 20px 0 0;
    color: #000;
    font-weight: 500;
}

.innovate_content p {
    font-family: "Nunito Sans", sans-serif;
    color: #fff;
    opacity: 0.7;
}

.opp_inner {
    background: #f2f2f2;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    min-height: 327px;
}

.opp_inner:hover {
    background: #b9e0ff;
}

.opp_inner p {
    font-size: 18px;
    line-height: 27px;
    min-height: 110px;
    font-family: "Nunito Sans", sans-serif;
    padding: 10px 0;
}



.opp_inner img {
    border-radius: 8px;
}



.theme_section_custom h2 {
    font-size: 25px;
    font-weight: 700;
    text-align: left;
}

.theme_section_custom h2 span {
    background: #014c32;
    color: #dff470;
    transform: rotate(352deg);
    display: inline-block;
    font-size: 29px;
    padding: 3px 10px;
    border-radius: 50px;
    margin: 0 5px;
    animation: blink 2s step-start infinite;
}

.theme_section_custom .subtitle {
    font-size: 16px;
    line-height: 27px;
    text-align: left;
    margin: 10px 0 0px;
    font-family: "Nunito Sans", sans-serif;
}

.theme_section_custom {
    background: #fff;

    position: relative;
}

.theme_section_custom .tagline {
    color: #d94b4b;
    font-weight: 600;
    margin-bottom: 10px;
}

.theme_section_custom .main_title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.content_section {
    margin: 0 20px;
}

.theme_section_custom .main_title span {
    color: #ff6a00;
}

.theme_section_custom .description {
    font-size: 16px;
    color: #555;
}

.theme_section_custom .btn {
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
}

.theme_section_custom {
    background: url('./assets/circle-img.jpg') no-repeat left/cover;

}


/* .theme_right {
    background: url('./assets/circle-img.jpg') no-repeat right/cover;
} */


.theme_slider_custom {
    position: relative;
    z-index: 2;
    padding: 140px 60px 60px;
}


.theme_card {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    /* backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgb(17 25 40 / 43%);
 
    border: 1px solid rgba(255, 255, 255, 0.125); */
    min-height: 350px;
    border-radius: 12px;
}

.theme_card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.theme_card h4 {
    font-size: 18px;
    color: #00452e;
    font-weight: 600;
}

.theme_card p {
    font-size: 14px;
    color: #000000;
}


.connect_people {
    padding: 60px 0;
    background-image: url('./assets/awards-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #00813f;
    background-blend-mode: multiply;
    background-attachment: fixed;
}

.connect_people h2 {
    font-size: 22px;
    font-weight: 700;
    padding: 0 0 30px;
    color: #fff;
}

.connect_people h4 {
    font-size: 32px;
    font-weight: 700;
    padding: 0 0 30px;
    color: #9DDA25;
    text-align: center;
}

.connect_people h5 {
    font-weight: 400;
    padding: 0 0 30px;
    color: #fff;
    text-align: center;
}

.audience_left .progress_level {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.audience_right_inner {
    border-bottom: 1px solid #eee;
    padding: 4px 8px;
    text-align: center;
    margin: 0px 0 20px;
    border-radius: 8px;
    width: 49%;
    display: inline-block;
}

.audience_right_inner p {
    margin: 0;
    color: #cfcfcf;
}

.progress {
    background-color: #e9ecef29;
    border: 1px solid #eae1e121;
    height: 1rem;
    margin: 0;
}

.ideal_txt {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin: 0px 0 30px;
    text-transform: uppercase;
}

.ideal_inner {
    margin: 0px 0 20px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #283d28;
    border-radius: 8px;
    text-align: center;
    color: #ffff;
    font-size: 15px;
    padding: 0 15px;
    line-height: 25px;

}

.ideal_inner:hover {
    filter: drop-shadow(0 0 30px rgba(255, 74, 23, .5));
    background: linear-gradient(45deg, #225a22 70%, #206720);
    transform: scale(1.02);
}

.progress-bar {
    background-color: #528752;

}

.magazines_wrapper {
    padding: 270px 0px 50px;
    background: url(https://pixor-next.vercel.app/images_16/fanfact-bg.jpg) 50% / cover no-repeat;
    z-index: 1;
    overflow: hidden;
    position: relative;
}

.bg-shape {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.home-banner-demo-ul-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-self {
    position: absolute;
    height: 100%;
    top: 0;
}

.shelf-left {
    left: 0;
    width: 82px;
    /* background: url(https://pubhtml5.com/images_16/home/shelf1.png); */
    background: url(https://events.eletsonline.com/his/images_16/shelf1.webp);
}

.shelf-mid {
    left: 82px;
    right: 82px;
    background: url(https://events.eletsonline.com/his/images_16/shelf2.webp);
}

.shelf-right {
    right: 0;
    width: 82px;
    background: url(https://events.eletsonline.com/his/images_16/shelf3.webp);
}

.home-banner-demo-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home-banner-demo-ul>.tall {
    display: inline-block;
    position: relative;
    margin: 0 31px;
    margin-top: -166px;
    margin-bottom: 80px;
}

.home-banner-demo-img-container {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.home-banner-demo-thum {
    position: relative;
    display: block;
    width: 160px;
    height: auto;
}

.magazine_wrapper_txt {
    font-size: 38px;
    text-align: center;
    font-weight: 700;
    margin: 40px 0 0;
    color: #000;
}

.upcoming {
    position: relative;
    background: #004277;
    padding-bottom: 80px !important;
}

.upcoming h2 {
    padding: 30px 0;
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 40px;
    color: #fff;
}

.upcoming .item {
    padding: 5px;
    border: 2px solid #85c9ff;
    border-radius: 5px;
    overflow: hidden;
}


.custom-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.custom-nav button {
    background-color: #9934ca;
    border: none;
    color: white;
    font-size: 15px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: all;
    transition: background 0.3s ease;
    margin: 30px 0;
    display: none;
}


.footer_above {
    /* background: #fff; */
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    padding: 60px 0 0;
}


.tree_img {
    margin-top: -340px;
    position: relative;
    z-index: -1;
}


.conty {
    padding: 15px;
    background: #ffffffd8;
    border-radius: 10px;
    box-shadow: #00427757 5px 5px 15px;
    position: relative;
    z-index: 2;
}

.conty p {
    font-size: 18px;
    font-weight: 600;
}

.menu-foot>li {
    margin-bottom: 10px;
    color: #fff;
}

.menu-foot>li>a {
    color: #e9e9e9;
    font-size: 15px;
    text-decoration: none;
}

.footer-social__v3 {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 20px;
    padding-top: 10px;
    /* border-top: 1px solid #363e6a; */
}

.footer-social__v3 h4 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

.footer-social__v3 a {
    background: transparent;
    padding: 0;
    width: 0;
    height: 0;
    color: #fff;
    margin-right: 15px;
}

.footer-social__v3 .social-icon {
    margin-right: 40px;
}

.footer-social__v3 a:hover {
    color: var(--primary_color);
}

.footer__connect {
    display: flex;
    align-items: center;
    margin: 20px 0 0;
    font-weight: 800;
}

.footer__connect p {
    margin-bottom: 0;
    margin-left: 8px;
}

.footer__connect p a {
    color: #ffffff;
}

.footer__connect .fa-phone {
    animation: pulse-animation 2s infinite;
    color: #fff;
}

.btn.btn-green-linear {
    background: linear-gradient(to right, #0235fe, #98d62b);
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    background-size: 200%;
    animation: anime 2s linear infinite;
    border-radius: 2vw;
    color: #000000;
    display: flex;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    background-size: 200%;
    animation: anime 2s linear infinite;
    border-radius: 2vw;
    color: #fff;
}

.ideal_inner img {
    width: 50px;
    padding: 0 0 10px;
}

.ideal_inner p {
    margin: 0;
}

.ideal_inner:hover img {
    filter: hue-rotate(288deg);
    transition: 0.9s;
    transform: rotateY(180deg);
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #27356c;
}

.speaker-card {
    display: flex;
    align-items: center;
    /* background: linear-gradient(to right, #4fd991, #04bff8); */
    padding: 10px 10px 0;
    border-radius: 10px;
    margin-top: 90px;
    margin-bottom: 10px;
    box-shadow: #4ed891 0px 5px 15px;
}

.speaker-info h4 {
    color: #0e7430;
    font-size: 18px;
}

.speaker-info p {
    padding-top: 0;
    font-size: 15px;
    color: #363636;
}

.speaker-card img {
    width: 280px;
}

.speaker-cards {
    /* background:linear-gradient(to top, #fff , #eee); */
    padding: 10px 0;
    border-radius: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: rgb(157 218 37) 0px 5px 15px;
    text-align: center;
}

.speaker-infos {
    padding: 10px;
    min-height: 122px;
}

.speaker-infos h4 {
    color: #9dda25;
    font-size: 18px;
}

.speaker-infos p {
    padding-top: 0;
    color: #e9e9e9;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
}

.parts {
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    margin-bottom: 30px;
    padding: 20px 10px 10px;
    border-radius: 10px;
    min-height: 190px;
}


.widget_title {
    font-size: 20px;
}

#key-highlights {
    padding: 60px 0;
    background: linear-gradient(to left, #004277, #2f689e, #004277);
}

#key-highlights h4 {
    color: #fff;
}

#key-highlights h3 {
    color: #9DDA25;
}

#key-highlights .keys h3 {
    font-size: 48px;
    font-weight: 600;
    color: #9DDA25;
}

.keys p {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.nbfc-registered-section {
    padding: 60px 30px;
    background: #ffffff;
    font-family: 'Open Sans', sans-serif;
}

.nbfc-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    align-items: flex-start;
}

.nbfc-left {
    flex: 1;
    min-width: 300px;
}

.nbfc-left h2 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px;
}

.nbfc-left h2 span {
    font-size: 18px;
    font-weight: normal;
}

.map-area {
    position: relative;
}

.south-map {
    width: 100%;
    max-width: 420px;
    display: block;
    filter: hue-rotate(400deg);
}

.state-info {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    padding: 12px;
    width: 180px;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.state-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.state-info h4 span {
    color: #007b3e;
    font-size: 14px;
    font-weight: normal;
}

.state-info p {
    margin: 0;
    line-height: 1.4;
}

.state-info.ap {
    top: 40px;
    left: 160px;
}

.state-info.kerala {
    bottom: 40px;
    left: 30px;
}

.state-info.tamilnadu {
    bottom: 20px;
    right: 30px;
}

.nbfc-right {
    flex: 1.2;
    min-width: 340px;
}

.why-chennai {
    background: #4574ee;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    margin-bottom: 30px;
}

.why-chennai h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.why-chennai ul {
    padding-left: 20px;
    list-style: disc;
    line-height: 1.6;
}

.regional-powerhouses h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.powerhouse-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ph-card {
    background: #dee7ff;
    border-left: 5px solid #4574ee;
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.ph-card strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
}

.ph-card span {
    font-weight: bold;
    color: #333;
}

.banner4 {
    width: 100%;
    margin-top: 75px;
}

/* CSS */
.button-85 {
    padding: .6em 2.4em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    text-decoration: none;
}

.button-85:before {
    content: "";
    background: linear-gradient(45deg,
            #0b8d21,
            #7bff00,
            #88ff00,
            #48ff00,
            #00ffd5,
            #002bff,
            #0400ff,
            #006eff,
            #0051ff);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 10px;
}

.speaker_wrapper {
    padding: 120px 0 0;
    margin: 0;
    background: #fff;
}

.speaker_wrapper .speaker-card h2 {
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    margin: 0 0 30px;
    background: #4ed991;
    color: #fff;
    padding: 5px 20px;
    width: fit-content;
    border-radius: 8px;
}

.discussion-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.discussion-header {
    text-align: center;
    margin-bottom: 50px;
}

.discussion-header h2 {
    font-size: 36px;
    color: #1a3e5d;
    margin-bottom: 10px;
}

.discussion-header p {
    font-size: 18px;
    color: #555;
}

.discussion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.diss-sec {
    padding: 90px 0;
}

.discussion-box {
    background: #ffffff;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 43%);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.discussion-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.discussion-box img {
    height: 50px;
    margin-bottom: 15px;
    display: none;
}

.discussion-box h3 {
    font-size: 20px;
    color: #0f3c60;
    margin-bottom: 15px;
}

.discussion-box p {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

#awards-hero {
    min-height: 100vh;
    padding-top: 150px;
}

.why-aw {
    padding: 90px 0 60px;
    text-align: center;
}

.why-aw li {
    list-style: none;
    padding: 5px 15px;
    border-radius: 10px;
    border: 1px solid #a1a1a1;
    width: fit-content;
    margin: 25px 5px;
}

.righty {
    width: 210px;

}

.lefty {
    width: 170px;
}

@media only screen and (min-width: 1200px) {
    .speaker_wrapper .col-md-3 {
        width: 20%;
    }
}

@media only screen and (max-width: 1200px) {
    .car2, .wheel2 {
        display: none;
    }
}


@media only screen and (min-width: 1400px) {
    #highlights .col-lg-4 {
        width: 20%;
    }
}

@media only screen and (min-width: 600px) {
    .righty {
        padding-right: 40px;
        margin-right: 40px;
        border-right: 2px solid #c2c2c2;
    }
}







.hero {
    height: 100vh;
    width: 100%;
    /* background-image: url(https://images.unsplash.com/photo-1517639493569-5666a7b2f494?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80); */
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-top: -360px;
}

.highway {
    height: 72px;
    width: 5000%;
    display: block;
    /* background-image: url(https://us.123rf.com/450wm/andreykuzmin/andreykuzmin1605/andreykuzmin160500066/56495798-asphalt-highway-road-marks-top-view.jpg?ver=6); */
    position: absolute;
    background-image: url(./assets/img/Road3.png);
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-repeat: repeat-x;
    animation: highway 9s linear infinite;
}

@keyframes highway {
    100% {
        transform: translateX(-3400px);
    }
}

.city {
    height: 730px;
    width: 500%;
    background-image: url(./assets/img/bg-city-blue2.png);
    /* background-image: url(./assets/img/Building3.jpg); */
    position: absolute;
    bottom: 72px;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    background-repeat: repeat-x;
    animation: city 20s linear infinite;
}

@keyframes city {
    100% {
        transform: translateX(-1400px);
    }
}

.flower {
    height: 177px;
    width: 500%;
    /* background-image: url(https://amberry.co.uk/wp/wp-content/uploads/2017/08/daisy-grass-am-1.png); */
    background: url(./assets/img/Grass.png);
    position: absolute;
    bottom: -44px;
    left: 0;
    right: 0;
    display: block;
    z-index: 1;
    background-repeat: repeat-x;
    animation: city 20s linear infinite;
}

@keyframes flower {
    100% {
        transform: translateX(-1400px);
    }
}

.car {
    width: 500px;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    position: absolute;
    z-index: 2;
    text-align: center;
}

.car img {
    width: 150px;
    animation: car 1s linear infinite;
}

@keyframes car {
    100% {
        transform: translateY(-1px);
    }

    50% {
        transform: translateY(-1px);
    }

    0% {
        transform: translateY(-1px);
    }
}

.wheel {
    left: 50%;
    bottom: 179px;
    transform: translateX(-50%);
    position: absolute;
    z-index: 2;
}

.wheel img {
    width: 30px;
    height: 30px;
    animation: wheel 1s linear infinite;
}

.back-wheel {
    left: -67px;
    top: 115px;
    position: absolute;
}

.front-wheel {
    left: 50px;
    top: 116px;
    position: absolute;
}

@keyframes wheel {
    100% {
        transform: rotate(360deg);
    }
}

.mobility-section {
    --navy: #0a1628;
    --deep: #0d2137;
    --mid: #1a3a5c;
    --accent: #3b9eff;
    --glow: #5cb8ff;
    --soft: #a8d4ff;
    --white: #ffffff;
    --offwh: #eef5fc;

    font-family: 'Sora', sans-serif;
    background: var(--navy);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.mobility-section *,
.mobility-section *::before,
.mobility-section *::after {
    box-sizing: border-box;
}

/* ─── AMBIENT BACKGROUND ─── */
.mobility-section .bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--navy);
}

.mobility-section .bg-layer::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(59, 158, 255, .12) 0%, transparent 70%);
    animation: driftA 12s ease-in-out infinite alternate;
}

.mobility-section .bg-layer::after {
    content: '';
    position: absolute;
    bottom: -25%;
    right: -15%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(91, 184, 255, .08) 0%, transparent 70%);
    animation: driftB 15s ease-in-out infinite alternate;
}

@keyframes driftA {
    to {
        transform: translate(6%, 8%) scale(1.08);
    }
}

@keyframes driftB {
    to {
        transform: translate(-5%, -6%) scale(1.1);
    }
}

/* ─── GRID DOTS ─── */
.mobility-section .grid-dots {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(59, 158, 255, .13) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 100%);
}

/* ─── WRAPPER ─── */
.mobility-section .section-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 28px 120px;
}

/* ─── HEADER ─── */
.mobility-section .header {
    text-align: center;
    margin-bottom: 80px;
}

.mobility-section .header .eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    position: relative;
    padding: 0 24px;
    opacity: 0;
    animation: fadeUp .8s .2s ease forwards;
}

.mobility-section .header .eyebrow::before,
.mobility-section .header .eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.mobility-section .header .eyebrow::before {
    right: 100%;
}

.mobility-section .header .eyebrow::after {
    left: 100%;
    background: linear-gradient(270deg, transparent, var(--accent));
}

.mobility-section .header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-top: 18px;
    opacity: 0;
    animation: fadeUp .9s .4s ease forwards;
}

.mobility-section .header h1 .highlight {
    background: linear-gradient(135deg, var(--accent), var(--glow), var(--soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobility-section .header p {
    max-width: 560px;
    margin: 22px auto 0;
    font-size: .97rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .52);
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp .9s .6s ease forwards;
}

/* ─── CARDS GRID ─── */
.mobility-section .cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 22px;
}

/* ─── SINGLE CARD ─── */
.mobility-section .card {
    position: relative;
    background: linear-gradient(145deg, rgba(26, 58, 92, .55), rgba(13, 33, 55, .7));
    border: 1px solid rgba(59, 158, 255, .14);
    border-radius: 20px;
    padding: 36px 30px 32px;
    backdrop-filter: blur(6px);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: transform .5s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease, border-color .4s;
    cursor: default;
}

.mobility-section .card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* staggered reveal handled by JS inline delay */

.mobility-section .card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 158, 255, .06) 0%, transparent 60%);
    transition: opacity .5s;
}

.mobility-section .card:hover {
    border-color: rgba(59, 158, 255, .4);
    box-shadow: 0 12px 48px rgba(0, 0, 0, .35), 0 0 28px rgba(59, 158, 255, .1);
}

.mobility-section .card:hover::before {
    opacity: 2;
}

.mobility-section .card:hover .card-icon-wrap {
    transform: scale(1.08);
}

.mobility-section .card:hover .card-number {
    opacity: .18;
}

/* ghost number */
.mobility-section .card-number {
    position: absolute;
    top: 12px;
    right: 22px;
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--white);
    opacity: .06;
    line-height: 1;
    pointer-events: none;
    transition: opacity .4s;
    user-select: none;
}

/* icon circle */
.mobility-section .card-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(59, 158, 255, .2), rgba(91, 184, 255, .08));
    border: 1px solid rgba(59, 158, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.mobility-section .card-icon-wrap svg {
    width: 26px;
    height: 26px;
}

.mobility-section .card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.mobility-section .card p {
    font-size: .82rem;
    font-weight: 300;
    color: rgba(255, 255, 255, .44);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* bottom glow stripe */
.mobility-section .card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: opacity .5s;
}

.mobility-section .card:hover::after {
    opacity: 1;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 680px) {
    .mobility-section .section-wrapper {
        padding: 70px 18px 90px;
    }

    .mobility-section .cards {
        grid-template-columns: 1fr;
    }

    .mobility-section .header h1 {
        font-size: 2rem;
    }
}

.glass-card {
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 20px 10px rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
    z-index: 1000;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.8),
            transparent,
            rgba(255, 255, 255, 0.3));
}

.speaker-card2 {
    text-align: center;
    /* background-color: #000226; */
    min-height: 460px;
    margin-bottom: 30px;
    border-radius: 10px;
}

/* Odd columns */
.row > .col-md-3:nth-child(odd) .speaker-card2 img {
    background-color: #4ED891;
    border-radius: 50%;
}

/* Even columns */
.row > .col-md-3:nth-child(even) .speaker-card2 img {
    background-color: #05BFF6;
    border-radius: 50%;
}


.speaker-card2 img {
    margin-bottom: 10px;
}

:root {
    --border: 1vh;
    --radius: 75vh
}

.button-bil{
    padding: 10px 40px;
    border-radius: 10px;
}



.car2 {
    width: 800px;
    left: 20%;
    bottom: 36px;
    transform: translateX(-50%);
    position: absolute;
    z-index: 2;
    text-align: center;
}

.car2 img {
    width: 500px;
    animation: car 1s linear infinite;
}

@keyframes car {
    100% {
        transform: translateY(-1px);
    }

    50% {
        transform: translateY(-1px);
    }

    0% {
        transform: translateY(-1px);
    }
}

.wheel2 {
    left: 20%;
    bottom: 179px;
    transform: translateX(-50%);
    position: absolute;
    z-index: 2;
}

.wheel2 img {
    width: 50px;
    height: 50px;
    animation: wheel 1s linear infinite;
}

.back-wheel2 {
    left: -140px;
    top: 87px;
    position: absolute;
}

.front-wheel2 {
    left: 105px;
    top: 87px;
    position: absolute;
}

@keyframes wheel {
    100% {
        transform: rotate(360deg);
    }
}

.logo-mane{
    position: relative;
    z-index: 2;
    top: 100px;
    padding: 10px 20px;
}

@media only screen and (max-width:1400px) {
    .logo-mane{
        top: 70px;
        padding: 5px 15px 65px !important;
    }
}

@media only screen and (max-width: 600px) {
    .logo-mane{
        margin-top: -80px;
    }
    .hero{
        height: 80vh !important;
    }
    .righty {
        width: 60%;
        margin-bottom: 20px;
    }

    .lefty {
        width: 60%;
    }

    .diss-sec {
        padding: 30px 0;
    }

    #awards-hero {
        min-height: unset !important;
        padding-top: 10px;
    }

    .speaker-card {
        flex-direction: column;
        text-align: center;
    }

    .speaker_wrapper h2 {
        text-align: center !important;
        width: 100%;
    }

    .innovate_heading h2 {
        margin-top: 20px;
        font-size: 28px;
    }

    #key-highlights h4,
    #key-highlights h3 {
        text-align: center;
    }

    .keys {
        text-align: center;
    }

    .banner4 {
        width: 100%;
        margin-top: 0;
    }

    .ideal_txt {
        font-size: 32px;
        margin: 40px 0 10px;
    }

    .navbar {
        position: relative;
    }

    .offcanvas {
        width: 80% !important;
    }

    .navbar-nav {
        gap: 10px;
    }

    .about_wrapper .container {
        width: 100%;
    }

    .about_wrapper h2 {
        font-size: 24px;
    }

    .about_wrapper h2 span {
        transform: rotate(0);
    }

    .opp_inner {
        margin: 0 0 30px;
    }

    .theme_section_custom {
        padding: 50px 0;
    }

    .theme_section_custom h2 {
        font-size: 24px;
    }

    .theme_section_custom h2 span {
        transform: rotate(0);
    }

    .theme_slider_custom {
        padding: 0;
    }

    .theme_card {
        padding: 20px 5px;
        min-height: 300px;
        margin: 0 0 30px;
    }

    .home-banner-demo-thum {
        width: 113px;
    }

    .tree_img {
        margin-top: -20px;
    }
}

