html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* 🔷 ROOT COLORS */
:root {
  --deep-blue: #0A0319;
  --concerto: #D9D9D8;
  --glacial-salt: #bfc9d6;
  /* lab replace (browser safe) */
  --ocean-city: #7C94B8;
  --white: #ffffff;
  --lightgray: #b2b8c6;
}

/* 🔷 RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--deep-blue);
  color: var(--white);
  overflow-x: hidden;
}

.search-box{
    position:relative;
    display:flex;
    align-items:center;
}

.search-btn{
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
}

.search-btn:hover{
    background:#49b96c;
}

.search-input{
    position:absolute;
    right:60px;
    width:0;
    opacity:0;
    visibility:hidden;
    pointer-events:none;

    padding:12px 18px;
    border-radius:30px;
    border:none;
    outline:none;

    background:#fff;
    color:#222;

    transition:.35s ease;
}

.search-box.active .search-input{
    width:260px;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

/* =================================
   ELEKORE FOOTER
================================= */

.elekore-footer {
  position: relative;
  overflow: hidden;
  color: #ffffff;

  background: transparent;
}

/* Background glow */

.elekore-footer::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -220px;

  width: 500px;
  height: 500px;

  border-radius: 50%;
  background: rgba(120, 35, 240, 0.45);
  filter: blur(115px);

  pointer-events: none;
}

.elekore-footer::after {
  content: "";
  position: absolute;
  right: -180px;
  top: -160px;

  width: 420px;
  height: 420px;

  border-radius: 50%;
  background: rgba(0, 76, 255, 0.25);
  filter: blur(100px);

  pointer-events: none;
}

.footer-main {
  position: relative;
  z-index: 2;
  padding-top: 42px;
  padding-bottom: 20px;
}

/* =================================
   BRAND
================================= */

.footer-brand {
  margin-bottom: 30px;
}

.footer-brand img {
  display: block;
  width: auto;
  height: 70px;
  object-fit: contain;
}

.footer-brand p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 400;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 40px;

  background: rgba(255, 255, 255, 0.34);
}

.footer-divider::before,
.footer-divider::after {
  content: "";
  display: block;
  position: absolute;
}

/* =================================
   MAIN GRID
================================= */

.footer-content-grid {
  display: grid;
  grid-template-columns: 1.65fr 0.65fr 0.75fr 0.65fr;
  gap: 55px;
  align-items: start;
}

/* =================================
   NEWSLETTER CARD
================================= */

.footer-newsletter {
  max-width: 560px;
  padding: 34px 34px 32px;

  color: #0a126f;
  background: #ffffff;

  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(2, 7, 48, 0.23);
}

.newsletter-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 22px;

  border-radius: 0 0 20px 0;
  background: #0a0874;
}

.footer-newsletter h2 {
    margin: 0 0 17px;
    color: #090d74;
    font-size: 34px;
    font-weight: 400;
    line-height: 44px;
    letter-spacing: -1.2px;
}

.footer-newsletter p {
  margin: 0;
  max-width: 465px;

  color: #172078;
  font-size: 18px;
  line-height: 1.55;
}

/* Newsletter button */

.newsletter-btn {
  min-height: 58px;
  margin-top: 30px;
  padding: 7px 26px 7px 26px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;

  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;

  border-radius: 50px;
  background: #347dce;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.newsletter-btn-icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #3379c3;
  background: #ffffff;
  border-radius: 50%;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.newsletter-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
  background: #54c17b;
  box-shadow: 0 13px 25px rgba(10, 19, 93, 0.2);
}

.newsletter-btn:hover .newsletter-btn-icon {
  color: #48b96b;
  transform: rotate(45deg);
}

/* =================================
   FOOTER LINK COLUMNS
================================= */

.footer-links-col h4 {
  margin: 4px 0 25px;

  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.footer-links-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links-col li {
  margin-bottom: 15px;
}

.footer-links-col a {
  position: relative;

  display: inline-block;

  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.35;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-links-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0;
  height: 1px;

  background: #00e1ff;
  transition: width 0.3s ease;
}

.footer-links-col a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-links-col a:hover::after {
  width: 100%;
}

/* =================================
   FOOTER BOTTOM
================================= */

.footer-bottom {
  margin-top: 95px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal span,
.footer-legal a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  text-decoration: none;
}

.footer-legal a {
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #00e1ff;
}

.legal-divider {
  display: block;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.55);
}

/* Social icons */

.footer-socials {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer-socials a {
  color: #ffffff;
  text-decoration: none;
  font-size: 28px;
  line-height: 1;

  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-socials a:hover {
  color: #fff;
  transform: translateY(-5px);
}

/* =================================
   LARGE TABLET
================================= */

@media (max-width: 1199px) {

  .footer-content-grid {
    grid-template-columns: 1.4fr 0.7fr 0.8fr 0.7fr;
    gap: 35px;
  }

  .footer-newsletter {
    padding: 30px;
  }

}

/* =================================
   TABLET
================================= */

@media (max-width: 991px) {

  .footer-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 55px 40px;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-bottom {
    margin-top: 70px;
    flex-direction: column;
    align-items: flex-start;
  }

}

/* =================================
   MOBILE
================================= */

@media (max-width: 575px) {

  .footer-main {
    padding-top: 45px;
    padding-bottom: 24px;
  }

  .footer-brand img {
    height: 58px;
  }

  .footer-divider {
    margin-bottom: 42px;
  }

  .footer-content-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-newsletter {
    padding: 27px 22px;
    border-radius: 15px;
  }

  .footer-newsletter h2 {
    font-size: 30px;
    letter-spacing: -0.8px;
  }

  .footer-newsletter p {
    font-size: 15px;
  }

  .newsletter-btn {
    width: 100%;
  }

  .footer-links-col {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer-bottom {
    margin-top: 48px;
    gap: 28px;
  }

  .footer-legal {
    gap: 15px 20px;
  }

  .legal-divider {
    display: none;
  }

  .footer-socials {
    gap: 22px;
  }

}

/*=========================
TOP BAR
=========================*/

.top-bar{
    height:42px;
    background:#0a0319;
    display:flex;
    align-items:center;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:all .35s ease;
    overflow:hidden;
}


.top-bar.hide{
    height:0;
    opacity:0;
}
.top-bar-inner{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    height:100%;
}

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

.top-links a{
    color:#fff;
    text-decoration:none;
    padding:0 28px;
    height:52px;
    display:flex;
    align-items:center;
    border-left:1px solid rgba(255,255,255,.15);
    font-size:16px;
}

.top-links a:last-child{
    border-right:1px solid rgba(255,255,255,.15);
}


/*=========================
NAVBAR
=========================*/

.navbar{
    position:fixed;
    top:42px;
    left:0;
    width:100%;
    height:78px;
    display:flex;
    align-items:center;
    background:rgba(18,27,103,.96); /* change according */
    transition:.05s;
    z-index:9998;
    box-shadow:0 50px 30px rgba(0,0,0,0.18);
}

.navbar .container{
    display:flex;
    align-items:center;
}

.logo{
    height:50px;
    width:auto;
}

.navbar-nav{
    margin:auto;
    gap:18px;
}

.navbar .nav-link{
    color:#fff;
    font-size:18px;
    font-weight:500;
}

.headerbtn{
    margin-left:auto;
}

/* Scroll */

.navbar.scrolled{
    background:#08184f;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    top:0;
}

/* Hero should start below header */

.hero,
.banner,
section:first-of-type{
    padding-top:130px;
}


/* Mobile */

@media(max-width:991px){

.top-bar{
    display:none;
}

.navbar{
    top:0;
    height:72px;
}

.hero,
.banner,
section:first-of-type{
    padding-top:72px;
}

}
.headerbtn.d-flex {
    justify-content: end;
}

.navbar-nav {
    justify-content: center !important;
    gap: 40px;
    padding-left: 90px !important;
}
.nav-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .navbar .container {
  max-width: 96% !important;
}
.headerbtn.d-flex {
    justify-content: end;
}
.container {
  max-width: 90% !important;
}

.headerbtn {
  width: 18%;
}

.navbar {
  background: #ffffff17;
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar-nav {
  justify-content: space-between;
}

/* 🔥 Scroll te active class */
.navbar.scrolled {
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  transform: translate(0, 0);
    background: linear-gradient(to bottom, #e2eeff6e, #0A0319);
  -webkit-backdrop-filter: blur(8px) contrast(100%);
  backdrop-filter: blur(8px) contrast(100%);
}

a.navbar-brand.d-flex.align-items-center.logo-wrapper.animate {
  margin-right: 100px;
}

/* 🔷 Nav Links */
.nav-link {
  display: block;
  padding: 10px 18px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

/* 🔥 Hover Effect */
.nav-link:hover {
  color: var(--glacial-salt);
}

/* .navbar-nav {
    justify-content: end;
    gap: 18px;
    padding-left: 92px;
} */
/* 🔥 Underline Animation */
/* .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0%;
  height: 2px;
  background: var(--white);
  transition: 0.3s ease;
} */

.nav-link:hover::after {
  width: 100%;
}

/* 🔥 Active Link */
.nav-link.active {
  color: var(--white);
}

.nav-link.active::after {
  width: 100%;
}

.custom-home-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url('../../images/restart_2026/home\ svg.svg') no-repeat center;
  background-size: contain;
  margin-top: 6px;
}

/* ===== CUSTOM DROPDOWN ===== */
.custom-dropdown {
  position: relative;
}

/* ✅ Plus icon default */
.dropdown-arrow {
  display: inline-block;
  margin-left: 4px;
  font-style: normal;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* ✅ Hover te rotate (+ becomes x) */
.custom-dropdown:hover .dropdown-arrow {
  transform: rotate(45deg);
}

/* ✅ Bridge - nav link aur dropdown darmiyan gap fill karta hai */
.dropdown-bridge {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
  /* top gap jitna */
  background: transparent;
}

.custom-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  /* bridge height jitna */
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  width: 750px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

/* Triangle pointer */
.custom-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--white);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}

/* ✅ Hover show */
.custom-dropdown:hover .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.custom-dropdown-inner {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.dropdown-links {
 display: none;
}

.dropdown-links a {
  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-links a:hover {
  background: var(--white);
  color: #133061;
}

.dropdown-cards {
  display: flex;
  gap: 16px;
}

.dropdown-card {
  width: 50%;
}

.dropdown-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.dropdown-card img {
  width: 62%;
  border-radius: 10px;
  margin-bottom: 10px;
  display: block;
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin: 0 0 4px;
    line-height: 28px;
}

.card-desc {
  font-size: 16px;
  color: #666;
  margin: 0 0 8px;
  line-height: 1.4;
}

.card-btn {
  display: inline-block;
  font-size: 12px;
  color: var(--deep-blue);
  text-decoration: none;
  border: 1.5px solid var(--deep-blue);
  border-radius: 20px;
  padding: 4px 14px;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
}

.card-btn:hover {
  background: var(--deep-blue);
  color: var(--white);
}

/* Wrapper */
.logo-wrapper {
  position: relative;
  width: 120px;
  height: 50px;
  overflow: hidden;
}

.logo {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  transform-origin: center;
}

/* 🔶 COLOR LOGO */
.color-logo {
  opacity: 0;
  animation: colorSpin 4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* 🤍 WHITE LOGO */
.white-logo {
  opacity: 0;
  animation: whiteFade 4s ease forwards;
}

/* 🔥 COLOR: left entry + full 360 rotate */
@keyframes colorSpin {
  0% {
    opacity: 0;
    transform: translateX(-80px) rotate(-360deg);
  }

  40% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }

  70% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translateX(0) rotate(0deg);
  }
}

/* 🔥 WHITE: clean appear (no rotation → no teda) */
@keyframes whiteFade {
  0% {
    opacity: 0;
    transform: translateX(0) rotate(0deg);
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

/* ===== FOOTER WRAPPER ===== */

/* FOOTER */
.footer {
  /* background: #133061; */
  color: white;

}

/* ===== MAIN BOX ===== */
.footer-container {
    background: linear-gradient(to bottom, #e2eeffa6, #3f5f9100);
    border-radius: 50px 50px 0px 0px;
    padding: 40px 50px;
    margin: auto;
    padding-bottom: 20px;
}

/* ===== LOGO TOP ===== */
.footer-top {
  margin-bottom: 30px;
}

.footer-logo img {
  width: 63px;
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

/* ===== GRID LAYOUT ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1.5fr 1fr;
  gap: 50px;
  color: #fff;
}

/* ===== DESCRIPTION ===== */
.footer-col p {
 font-size: 18px;
    line-height: 24px;
    max-width: 90%;
    font-weight: 300;
    opacity: 1;
    letter-spacing: .5px;
    margin-top: 45px;
}

/* ===== HEADINGS ===== */
.footer-col h4 {
  font-size: 22px;
  margin-bottom: 7px;
  font-weight: 600;
}

/* ===== LIST ===== */
.footer-col ul {
  list-style: none;
  padding: 0;
}


/* ===== LINKS ===== */
.footer-col ul l a {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  transition: all 0.3s ease;

}

/* 🔥 HOVER EFFECT */
.footer-col ul li a:hover {
  color: #fff;
  padding-left: 6px;
}

/* ===== BOTTOM ===== */
.footer-bottom {
  margin: auto;
  padding: 20px 50px 0px 50px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  /* left + right corners */
  align-items: center;
  flex-wrap: wrap;
  /* responsive layi */
}

/* ===== BOTTOM LINKS ===== */
.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

footer .des {
  font-size: 14px;
  text-align: end;
}

/* ===== RESPONSIVE ===== */
/* @media(max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: start;
  }


  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
} */

/* 🔷 TYPOGRAPHY */
h1,h2{
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
}
p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  color: #ffffff;
}

a {
  color: rgb(255 255 255);
  text-decoration: none;
  font-weight: 300;
  letter-spacing: .5px;
  font-size: 16px;
  line-height: 26px
}

/* 🔷 GLOBAL WIDTH SYSTEM */
/* ✅ GLOBAL WIDTH CONTROL */
.wrapper,
.nav-container,
.footer-container,
.offer-content,
.news-section,
.insight-container,
.conf-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* 🔷 BUTTONS */
.btn-blue {
  display: inline-flex;
  align-items: center;
  padding: 7px 15px;
  border-radius: 50px;
  background: var(--deep-blue);
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
  justify-content: space-between;
}

.btn-blue:hover {
  background: #000000;
  transform: translateY(-2px);
}

.btn-blue i {
  transition: 0.3s;
}

.btn-blue:hover i {
  transform: translateX(5px);
}
a.btn-blue.reg {
background-color: #0e2347;
}
/* 🔷 GLASS BUTTON */
.btn-glass {
    padding: 5px 27px;
    border-radius: 50px;
    background: rgb(255 255 255 / 0%);
    color: var(--white);
    gap: 0px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    text-decoration: none;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* ✅ Scroll Reveal — White background te BLACK text */
.scroll-reveal-dark .char {
  color: #818a99;
  transition: color 0.3s ease;
}

.scroll-reveal-dark .char.lit {
  color: #000000;
}

/* ✅ Scroll Reveal — Dark background te WHITE text */
.scroll-reveal-light .char {
  color: #becee8;
  transition: color 0.3s ease;
}

.scroll-reveal-light .char.lit {
  color: #ffffff;
}

.scroll-reveal-dark,
.scroll-reveal-light {
  word-break: break-word;
  white-space: normal;
}

.scroll-reveal-dark .char,
.scroll-reveal-light .char {
  display: inline;
}

.desc.scroll-reveal-light {
  font-size: 18px;
}

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
li.nav-item.custom-dropdown {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
}
/* Background video */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Dark overlay */
.overlay {
position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(2, 19, 61, 0.866);
    mix-blend-mode: multiply;
}

.overlay::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom,
      rgba(55, 88, 143, 0) 0%,
      rgb(19, 48, 97) 40%,
      rgb(19, 48, 97) 70%,
      #133061 100%);

  pointer-events: none;
}

/* Content on top */
.hero .content {
  position: relative;
  z-index: 3;

}

h1.fade-in {
  display: flex;
  justify-content: center;
  text-align: start;
}

.hero h1 {
  letter-spacing: 2px;
  font-size: 90px;
  line-height: 110px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
      color: white;
}

.heading {
  display: inline-block;
  margin-right: 40px;
  font-size: 80px;
  line-height: 90px;
  font-weight: 700;
  color: white;
  text-transform: capitalize;
  font-family: 'Manrope', sans-serif;
  margin-top: -20px;
}

h1 {
  display: flex;
  justify-content: center;
  text-align: left;
  align-items: center;
}

/* .hero h1 {

    letter-spacing: 2px;
    font-size: 110px;
    line-height: 122px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
} */
.content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.content p {
  font-size: 17px;
  font-weight: 300;
  color: var(--white);
  padding-top: 10px;
}

section .hero {
  position: sticky;
  top: 0;
  z-index: 1;
  /* or increasing per section */
}

.cta-outer {
  background: linear-gradient(to bottom, #e2eeffa6, #3f5f9100);
  border-radius: 50px 50px 0px 0px;
  padding: 0px 60px;
  margin-bottom: 69px;
  margin: auto;
  gap: 36px;
  font-family: 'Manrope', sans-serif;
      margin-top: 40px;
      margin-bottom: 20px;
}

/*// get in touch// */
.getintouch {
  text-align: center;
  padding: 40px;
  gap: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  justify-content: space-between;

}

.cta-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
  width: 544px;
  margin: 0;
}
.cta-icons2 {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: start;
  margin-top: 50px;
}

.cta-icons {
  display: grid;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    grid-template-columns: repeat(6, 1fr);
}
.cta-btn {
  grid-column: 1 / -1; /* poori row occupy karega */
  justify-self: center;
}

.cta-icon-box i {
  font-size: 20px;
  color: #133061 ;
}


.cta-icon-box {
  width: 46px;
  height: 46px;
  border: none;
  /* border-radius: 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.85);
}

.cta-icon-box:hover {
  background: rgba(255, 255, 255, 1);
}

.cta-icon-box i {
  font-size: 20px;
  /* ← outline color */
}

.cta-btn {
  border: 0px solid rgba(255, 255, 255, 0.7);
  padding: 16px 41px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  background: #4081cb !important  ;
background-size: 200% 200%;
animation: gradientMove 4s ease infinite;
transition: 0.5s;
}
.cta-btn:hover{
  background: #54C17B !important;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* .cta-btn:hover {
  background: rgba(255, 255, 255, 0.12);
} */

/* testimonial */
.eventbox {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.event_boxcontent {
  background: #728eb5;
  width: 28%;
  padding: 40px;
  border-radius: 25px;
}

.event_boxcontent span {
  display: flex;
  justify-content: end;
}

.event_boxcontent span img {
  width: 140px;
  height: 42px;
  padding-top: 12px;
  object-fit: cover;
}

.event_content .tab-btn {
  cursor: pointer;
}


/* responsive header */
/* ============================= */
/* 📱 RESPONSIVE NAVBAR FIX */
/* ============================= */

@media (max-width: 1024px) {
  .footer-bottom {
    margin: auto;
    padding: 0px 00px 20px 00px;
}
  ul.navbar-nav.w-100.d-flex.align-items-center {
    padding: 0 !important;
}
  .custom-dropdown-menu{
    background: rgb(73 91 122 / 45%) !important;
            backdrop-filter: blur(18px);
  }
  .custom-dropdown-menu::before{
    display: none;
  }
  .dropdown-links a {
    color: #fff;
}
.dropdown-cards{
display: none;
}
  .dropdown-links{
     display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 200px;
  padding-right: 24px;
  border-right: 1px solid var(--deep-blue);
  }
.footer-col p {
    font-size: 16px;
    line-height: 24px;
    max-width: 90%;
    margin-top: 0px;
}
a {
    font-size: 14px;
    line-height: 20px;
}
.footer-col h4 {
    font-size: 20px;
}
  /* CONTAINER FIX */
  .container {
    max-width: 100% !important;
    padding: 0 15px;
  }

  p {
    font-size: 15px;
  }

  /* Dropdown cards (images wala section) hide karo */
  .dropdown-cards {
    display: none !important;
  }

  /* Links section full width le le */
  .dropdown-links {
    border-right: none;
    border-bottom: none;
    width: 100%;
    padding: 0;
  }

  .cta-icons {
    display: flex;
    gap: 34px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
/* .dropdown-bridge {
    display: none;
}
span.dropdown-arrow {
    display: none;
} */
  /* Inner stack */
   /* .custom-dropdown-menu {
    display: none !important;
  } */

  .custom-dropdown.active .custom-dropdown-menu {
    display: block;
  }

  header .navbar .container {
    max-width: 100% !important;
  }

  /* NAVBAR BG */

  .navbar {
    background: rgb(49 79 129 / 30%) !important;
    backdrop-filter: blur(10px);
  }

  /* REMOVE BIG GAP */
  .navbar-nav {
    gap: 10px !important;
    align-items: flex-start !important;
  }
.navbar-nav {
    justify-content: center;
    gap: 80px;
    padding-left: 0px;
}
  /* STACK MENU */
  .navbar-collapse {
    background: rgb(32 57 106);
    padding: 20px;
    margin-top: 10px;
    border-radius: 15px;
  }

  .navbar-nav {
    flex-direction: column !important;
    width: 100%;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    font-size: 14px;
    padding: 2px 0;
  }

  /* FIX HEADER BUTTON */
  .headerbtn {
    width: 100%;
    margin-top: 15px;
  }

  .headerbtn .btn-glass {
    width: 100%;
    display: block;
    text-align: center;
  }
.headerbtn {
    flex-direction: row !important;
    gap: 10px;
    margin-top: 15px;
}
  /* LOGO SIZE */
  .logo-wrapper {
    width: 110px;
    height: 50px;
  }

/* DESKTOP DROPDOWN */
.custom-dropdown {
  position: relative;
}

.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 520px;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 999;
}

.custom-dropdown:hover .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown-inner {
  display: flex;
  gap: 20px;
}

.dropdown-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.dropdown-card {
  background: #f7f9fc;
  padding: 12px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.dropdown-card:hover {
  transform: translateY(-4px);
}

.dropdown-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}

.card-title {
  font-weight: 700;
  margin: 12px 0 6px;
  color: #133061;
}

.card-desc {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.dropdown-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: 0.3s ease;
}

.custom-dropdown:hover .dropdown-arrow {
  transform: rotate(45deg);
}

/* TABLET + MOBILE */
@media (max-width: 991px) {

  .navbar-nav {
    align-items: stretch !important;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    padding: 12px 0;
  }

  .dropdown-toggle-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .custom-dropdown-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 15px;
    margin-top: 8px;
    border-radius: 12px;
    box-shadow: none;
    background: #ffffff;
  }

  .custom-dropdown.active .custom-dropdown-menu {
    display: block;
  }

  .custom-dropdown:hover .custom-dropdown-menu {
    transform: none;
  }

  .custom-dropdown-inner {
    flex-direction: column;
  }

  .dropdown-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dropdown-card img {
    height: 170px;
  }

  .custom-dropdown.active .dropdown-arrow {
    transform: rotate(45deg);
  }

  .headerbtn {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .headerbtn .btn-glass {
    width: 100%;
    text-align: center;
    margin-left: 0 !important;
  }
}

/* SMALL MOBILE */
@media (max-width: 575px) {
  .dropdown-card img {
    height: 140px;
  }

  .custom-dropdown-menu {
    padding: 12px;
  }

  .card-desc {
    font-size: 13px;
  }
}

  .hero {
    height: 88vh;
    position: relative;
    overflow: hidden;
  }

  .heading {
    font-size: 91px;
    line-height: 100px;
    margin-right: 10px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 37px;
  }

  .content h1 {
    font-size: 45px;
    line-height: 36px;
  }

  .content {
    top: 39%;
    transform: translateY(-50%);
    padding: 0 15px;
  }

  .content p {
    font-size: 15px;
    font-weight: 300;
    color: var(--white);
    padding-top: 10px;
  }

  p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    color: #ffffff;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1.5fr 1fr;
    gap: 0px;
    color: #fff;
  }

  p.footer.desc {
    width: 63%;
  }

  .footer-container {
    background: linear-gradient(to bottom, #eeeeeeab, #3f5f9100);
    border-radius: 20px 20px 0px 0px;
    padding: 44px 50px;
    margin: auto;
  }

  .cta-outer {
    background: linear-gradient(to bottom, #e2eeffa6, #3f5f9100);
    border-radius: 20px 20px 0px 0px;
    padding: 60px 60px;
    margin-bottom: 69px;
    margin: auto;
    gap: 36px;
    font-family: 'Manrope', sans-serif;
  }

  .cta-icon-box {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cta-btn {
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    padding: 11px 21px;
    color: #fff;
    background: transparent;
    font-size: 16px;
    border-radius: 40px;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
  }
  .getintouch {
    display: grid;
}
}

@media (max-width:767px) {
  .navbar-nav {
    justify-content: center !important;
    gap: 10px !important;
    padding-left: 10px !important;
  }

  .logo-wrapper {
    width: 110px;
    height: 50px;
  }

  .footer-bottom {
    margin: auto;
    padding: 15px 0px 20px !important;
}
  footer.elekore-footer {
    padding-top: 30px !important;
}

  .container.text-white.content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: -180px;
  }

  .hero h1 {
    font-size: 29px;
    line-height: 33px;
  }

  .cta-outer {
    background: linear-gradient(to bottom, #e2eeffa6, #3f5f9100);
    border-radius: 20px 20px 0px 0px;
    padding: 60px 60px;
    margin-bottom: 69px;
    margin: auto;
    gap: 36px;
    font-family: 'Manrope', sans-serif;
  }

  .heading {
    display: inline-block;
    margin-right: 11px;
    font-size: 80px;
    line-height: 90px;
    font-weight: 800;
    color: #dadad8;
    text-transform: capitalize;
    font-family: 'Manrope', sans-serif;
    margin-top: -4px;
  }

  .footer-container {
    background: linear-gradient(to bottom, #eeeeeeab, #3f5f9100);
    border-radius: 20px 20px 0px 0px;
    padding: 15px 26px;
    margin: auto;
  }

  .footer-bottom-inner {
    display: flex;
    align-items: flex-start;
    padding: 0px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: start;
  }

  .footer-bottom {
    margin: auto;
    padding: 0px;
  }

  p.footer.desc {
    width: 100%;
    padding-bottom: 0px;
  }

  .cta-text {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    width: fit-content;
    margin: 0;
  }

  .cta-outer {
    background: linear-gradient(to bottom, #e2eeffa6, #3f5f9100);
    padding: 40px 40px;
  }

  .cta-icons {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-btn {
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    padding: 11px 21px;
    color: #fff;
    background: transparent;
    font-size: 14px;
    border-radius: 40px;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .getintouch {
    text-align: center;
    padding: 0px;
    gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
  }
}

/* Keep the responsive navigation usable without relying on Bootstrap's icon asset. */
@media (max-width: 991px) {
  .navbar-toggler {
    width: 46px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 10px;
    box-shadow: none !important;
  }

  .navbar-toggler-icon {
    position: relative;
    width: 23px;
    height: 2px;
    display: block;
    background: #ffffff !important;
    background-image: none !important;
    border-radius: 2px;
  }

  .navbar-toggler-icon::before,
  .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 23px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
  }

  .navbar-toggler-icon::before {
    top: -7px;
  }

  .navbar-toggler-icon::after {
    top: 7px;
  }
}
