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

body{
  height:100%;
  margin:0;
  scroll-behavior:smooth;
  font-family: Segoe UI;
  background: #0b0b0b;
  color: #fff
}


   .page-wrapper::-webkit-scrollbar{
  width:0;
  display:none;
}

.page-wrapper{
  height:100vh;
  overflow-y:scroll;
  scroll-snap-type:y mandatory;
  scrollbar-width:none;     /* Firefox */
  -ms-overflow-style:none;
}


.screen{
  min-height:100vh;               /* 🔥 height नाही */
  scroll-snap-align:start;
  scroll-snap-stop:always;
  position:relative;

  display:flex;
  justify-content:center;         /* center horizontally */
  align-items:flex-start;         /* 🔥 NOT center vertically */

  padding:80px 20px;              /* content breathing space */

  /* Animation base */
  opacity:0;
  transform:translateY(40px) scale(0.98);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* ACTIVE SECTION (FIXED SELECTOR) */
.screen.active{
  opacity:1;
  transform:translateY(0) scale(1);
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(10px);
  transition: .4s;
  z-index: 999;
}

.navbar.scrolled {
  background: #000;
  padding: 5px 0;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  transition: .4s;
}

.logo span {
  color: #ff9800
}

.logo.shrink {
  transform: scale(.85)
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 2000;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #fff;
}

/* MEGA MENU */
.mega-wrapper {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  /* Courses च्या खालून */
  /* margin-top:5px;  */
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  display: none;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 20px;
  padding: 25px;
  border-radius: 12px;
  z-index: 1500;
  max-width: 90vw;
}

.mega-wrapper:hover .mega-menu {
  display: grid;
}

.mega-menu h4 {
  color: #ff9800
}

.mega-menu a {
  display: block;
  padding: 6px 0;
  cursor: pointer;
}

/* ================= LOGIN BUTTON ================= */

.nav-menu button{
  background:none;
  border:none;
  padding:0;
  margin-left:12px;
}

/* anchor as button */
.nav-menu button a{
  display:inline-block;
  padding:10px 26px;
  border-radius:30px;

  background:linear-gradient(
    90deg,
    #00e5ff,
    #7c4dff,
    #00e5ff
  );
  background-size:200% 200%;
  animation:loginGlow 3s linear infinite;

  color:#fff;
  font-size:14px;
  font-weight:600;
  text-decoration:none;

  transition:transform .3s ease, box-shadow .3s ease;
}

/* hover */
.nav-menu button a:hover{
  transform:translateY(-2px) scale(1.05);
  box-shadow:0 10px 25px rgba(0,229,255,0.4);
}

/* animation */
@keyframes loginGlow{
  0%{ background-position:0% 50%; }
  100%{ background-position:100% 50%; }
}

@media(max-width:768px){
  .nav-menu button{
    margin:16px 0 0;
  }

  .nav-menu button a{
    width:100%;
    text-align:center;
  }
}

/* Desktop hover */
@media(min-width:769px) {
  .mega-wrapper:hover .mega-menu {
    display: grid;
  }
}


/* MOBILE */
.hamburger {
  display: none
}

@media(max-width:768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px
  }

  .screen{
    min-height:auto;              /* 🔥 content allowed */
    scroll-snap-align:none;       /* snap off on mobile */
    padding:60px 16px;
  }

  .page-wrapper{
    scroll-snap-type:y proximity;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding: 15px;
    transform: translateX(100%);
    transition: .4s;
    z-index: 2000;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu>a,
  .mega-link {
    width: 100%;
    padding: 14px 12px;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* 🔥 FINAL ACCORDION LOGIC */
  .mega-wrapper {
    width: 100%;
  }

  .mega-menu {
    max-height: fit-content;
    overflow: hidden;
    transition: max-height .35s ease;
    background: #111;
    border-radius: 10px;
    margin-top: 6px;
  }

  .mega-menu.active {
    max-height: 1000px;
    /* 🔥 enough to show content */
  }

  .mega-inner {
    padding: 15px;
  }

  .mega-col {
    margin-bottom: 18px;
  }

  .mega-col h4 {
    font-size: 16px;
    color: #ff9800;
    margin-bottom: 8px;
  }

  .mega-col a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}


/* ================= HERO SECTION ================= */

.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#courseCanvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background:#525151;
  z-index:-1;
}

#textCanvas{
  position:absolute;
  inset:0;
  z-index:-2;
  pointer-events:none;
}

/* CONTENT */
.hero-content {
  max-width:900px;
  padding:20px;
  z-index:2;
}

.hero-title {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-title span {
  display: block;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 500;
  color: #ff9800;
  margin-top: 6px;
}

.hero-sub {
  font-size: 18px;
  opacity: .9;
  margin-bottom: 35px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 38px;
  border-radius: 40px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

/* Primary */
.btn.primary {
  background: linear-gradient(45deg, #ff9800, #ff5722);
  color: #fff;
}

.btn.primary:hover {
  transform: scale(1.08);
}

/* Outline */
.btn.outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn.outline:hover {
  background: #fff;
  color: #000;
  transform: scale(1.08);
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:1;
}

/* MOBILE */
@media(max-width:768px) {
  .hero-sub {
    font-size: 16px;
  }
}




/* ================= COURSES SECTION ================= */

.courses-section{
  padding:90px 20px;
  background:#ffffff;
  color:#000000;
}

.container{
  max-width:1200px;
  margin:auto;
}

.section-title{
  text-align:center;
  font-size:clamp(28px,4vw,42px);
  font-weight:700;
}

.section-sub{
  text-align:center;
  margin-top:12px;
  opacity:.85;
}

/* Categories */
.course-categories{
  margin:40px auto 50px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.course-categories span{
  padding:10px 18px;
  border-radius:30px;
  font-size:14px;
  background:rgba(0,229,255,0.08);
  border:1px solid rgba(0,229,255,0.25);
  color:#0a4046;
}

/* Course Grid */
.course-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* Course Card */
.course-card{
  background:#000000;
  padding:28px;
  border-radius:18px;
  transition:.35s ease;
  position:relative;
  overflow:hidden;
  color: #ffffff;
}

.course-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(0,229,255,0.15),
    transparent
  );
  opacity:0;
  transition:.35s;
}

.course-card:hover::before{
  opacity:1;
}

.course-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,.4);
}

.course-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.course-desc{
  font-size:15px;
  opacity:.85;
  margin-bottom:22px;
}

/* Meta */
.course-meta{
  display:flex;
  justify-content:space-between;
  font-size:14px;
  color:#00e5ff;
}

/* Mobile */
@media(max-width:768px){
  .course-meta{
    flex-direction:column;
    gap:6px;
  }
}



/* ================= WHY CHOOSE US ================= */

.why-section{
  position:relative;
  color:#fff;
  overflow:hidden;
}

.why-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    #f4f5f7,
    #ffffff,
    #96dbf1,
    #b7cfee,
    #a7f5ea
  );
  background-size:300% 300%;
  animation:gradientMove 14s ease infinite;
  z-index:-2;
}

/* soft dark overlay for readability */
.why-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(126, 123, 123, 0.35);
  z-index:-1;
}

.why-section::before{
  filter:hue-rotate(0deg);
  animation:gradientMove 14s ease infinite,
           hueShift 20s linear infinite;
}

@keyframes hueShift{
  0%{ filter:hue-rotate(0deg); }
  100%{ filter:hue-rotate(20deg); }
}

/* animation */
@keyframes gradientMove{
  0%{ background-position:0% 50%; }
  50%{ background-position:100% 50%; }
  100%{ background-position:0% 50%; }
}

.why-wrapper{
  max-width:1300px;
  margin:auto;
  padding:80px 20px;
  text-align:center;
}

/* ROW */
.why-row{
  margin-top:50px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
  animation:floatRow 8s ease-in-out infinite;
}

.why-row.delay{
  animation-delay:4s;
}

/* CARD */
.why-card{
  background:#0c111e;
  padding:28px;
  border-radius:18px;
  transition:.4s ease;
  position:relative;
  overflow:hidden;
}

/* Glow line */
.why-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(0,229,255,0.18),
    transparent
  );
  opacity:0;
  transition:.4s;
}

.why-card:hover::before{
  opacity:1;
}

/* Hover */
.why-card:hover{
  transform:translateY(-14px) scale(1.03);
  box-shadow:0 25px 45px rgba(0,0,0,.5);
}

.why-card h3{
  font-size:18px;
  margin-bottom:10px;
  color:#00e5ff;
}

.why-card p{
  font-size:15px;
  opacity:.85;
}

/* Floating animation */
@keyframes floatRow{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
  100%{ transform:translateY(0); }
}

/* CTA */
.why-cta{
  margin-top:70px;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .why-row{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .why-row{
    grid-template-columns:1fr;
    animation:none; /* mobile calm */
  }
}


/* ================= CTA SECTION ================= */

.cta-section{
  position:relative;
  color:#fff;
  overflow:hidden;
}

/* Moving fresh gradient */
.cta-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    120deg,
    #081226,
    #0b3a4a,
    #0f5c6d,
    #0b3a4a,
    #081226
  );
  background-size:300% 300%;
  animation:gradientMove 12s ease infinite;
  z-index:-2;
}

/* Dark overlay */
.cta-section::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:-1;
}

@keyframes gradientMove{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* Wrapper */
.cta-wrapper{
  max-width:1200px;
  padding:80px 20px;
  margin:auto;
  text-align:center;
}

/* Title */
.cta-title{
  font-size:clamp(32px,4.5vw,48px);
  font-weight:800;
  margin-bottom:14px;
}

.cta-sub{
  font-size:18px;
  opacity:.9;
}

/* Grid */
.cta-grid{
  margin:60px 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* Cards */
.cta-card{
  background:rgba(12,17,30,0.85);
  backdrop-filter:blur(8px);
  padding:30px;
  border-radius:20px;
  transition:.4s ease;
  animation:floatCard 6s ease-in-out infinite;
}

.cta-card:nth-child(2){ animation-delay:1.5s; }
.cta-card:nth-child(3){ animation-delay:3s; }

@keyframes floatCard{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-12px); }
  100%{ transform:translateY(0); }
}

.cta-card:hover{
  transform:translateY(-18px) scale(1.03);
  box-shadow:0 30px 50px rgba(0,0,0,.5);
}

.cta-card h3{
  color:#00e5ff;
  margin-bottom:10px;
}

/* Actions */
.cta-actions{
  display:flex;
  justify-content:center;
  gap:24px;
  flex-wrap:wrap;
}

/* Pulse animation for main CTA */
.pulse{
  animation:pulseGlow 2s infinite;
}

@keyframes pulseGlow{
  0%{ box-shadow:0 0 0 0 rgba(255,152,0,.6); }
  70%{ box-shadow:0 0 0 18px rgba(255,152,0,0); }
  100%{ box-shadow:0 0 0 0 rgba(255,152,0,0); }
}

/* Responsive */
@media(max-width:900px){
  .cta-grid{
    grid-template-columns:1fr;
  }
}



/* ================= TEAM SECTION ================= */
/* ================= TEAM SLIDER ================= */

.team-section{
  position:relative;
  color:#fff;
  overflow:hidden;
}

.team-wrapper{
  max-width:1200px;
  margin:auto;
  padding:80px 20px;
  text-align:center;
}

/* Slider layout */
.team-slider{
  position:relative;
  margin-top:60px;
  display:flex;
  align-items:center;
  gap:12px;
}

.team-track{
 display:flex;
  flex-wrap:nowrap;          /* 🔥 one row only */
  gap:30px;
  overflow-x:auto;           /* mobile scroll */
  scroll-behavior:smooth;
  width:100%;
  padding:10px 0;
}

.team-track::-webkit-scrollbar{
  display:none;                /* Chrome */
}

/* NAV BUTTONS */
.nav{
  background:none;
  border:none;
  color:#00e5ff;
  font-size:36px;
  cursor:pointer;
  padding:10px;
}

/* CARD *//* ================= PROFESSIONAL CARD ================= */

.pro-card{
  position:relative;
  border-radius:22px;
  padding:2px;

  /* 🔥 FIX WIDTH */
  min-width:280px;
  max-width:280px;
  flex-shrink:0;     /* 🔥 prevents squeeze */
  flex:0 0 280px;           /* 🔥 fixed card width */
 
  background:linear-gradient(
    90deg,
    #00e5ff,
    #ff9800,
    #7c4dff,
    #00e5ff
  );
  background-size:400% 400%;
  animation:fastBorder 2.5s linear infinite;
}

@keyframes fastBorder{
  0%{ background-position:0% 50%; }
  100%{ background-position:100% 50%; }
}

/* INNER CARD */
.pro-card-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background:#0c111e;
  border-radius:20px;
  padding:30px 24px;
  text-align:center;
  color:#fff;
  transition:.35s ease;
}

/* Hover */
.pro-card:hover .pro-card-inner{
  transform:translateY(-10px);
  box-shadow:0 25px 45px rgba(0,0,0,.45);
}

/* Image */
.pro-card-inner img{
  width:110px;
  height:110px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:16px;
  border:3px solid rgba(0,229,255,.4);
}

/* Role badge */
.role-badge{
  display:inline-block;
  padding:6px 16px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:10px;
  background:rgba(0,229,255,.12);
  color:#00e5ff;
}

/* Title */
.pro-card-inner h3{
  font-size:18px;
  margin-bottom:8px;
}

/* Text */
.pro-card-inner p{
  font-size:14px;
  opacity:.85;
  line-height:1.6;
}


/* Role */
.team-role{
  display:inline-block;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  margin-bottom:8px;
  background:rgba(0,229,255,.15);
  color:#00e5ff;
}

/* .team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
} */

/* Responsive */
@media(max-width:768px){

  .team-slider{
    padding:0 5px;
    align-items:flex-start;
  }

  .team-track{
    gap:16px;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x mandatory;
  }

  .pro-card{
    scroll-snap-align:start;
    min-width:48%;
   
    max-width:240px;
    flex: 0 0 48%;

  }

  .nav{
    display:none;
  }
}

/* ================= CONTACT SECTION ================= */

.contact-section{
  background:#05070d;
  color:#fff;
  
}

.contact-wrapper{
  max-width:100%;
  margin:auto;
  padding:90px 20px;
  text-align:center;
}

/* GRID */
.contact-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:stretch;
}

/* CARD */
.contact-pro{
  width:100%;
  overflow:hidden;
}

/* INNER */
.contact-inner{
  height:100%;
  padding:42px 38px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
}

/* INFO LIST */
.contact-list{
  list-style:none;
  padding:0;
  margin:18px 0 30px;
  font-size:15px;
  line-height:1.9;
  opacity:.9;
  word-break:break-word;
}

/* ACTIONS */
.contact-actions{
  display:flex;
  gap:18px;
  margin-top:auto;
  flex-wrap:wrap;
  justify-content:center;
}

/* ================= FORM ================= */

.contact-form{
  width:100%;                /* 🔥 100% width */
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* TWO COLUMN */
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:none;
  outline:none;
  background:#12182a;
  color:#fff;
  font-size:15px;
  box-sizing:border-box;
}

/* TEXTAREA */
.contact-form textarea{
  resize:none;
}

/* AUTH */
.auth-check{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  opacity:.85;
  justify-content:center;
}

.auth-check input{
  accent-color:#00e5ff;
}

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

@media(max-width:600px){
  .form-row{
    grid-template-columns:1fr;
  }
}





/* ================= MEGA FOOTER ================= */

.mega-footer{
  background:#05070d;
  color:#fff;
  position:relative;
  overflow:hidden;
}

/* Moving gradient line */
.mega-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(
    90deg,
    #00e5ff,
    #ff9800,
    #7c4dff,
    #00e5ff
  );
  background-size:400% 400%;
  animation:footerLine 4s linear infinite;
}

@keyframes footerLine{
  0%{background-position:0% 50%}
  100%{background-position:100% 50%}
}

.footer-wrapper{
  max-width:1300px;
  margin:auto;
  padding:80px 20px 50px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:30px;
}

/* Columns */
.footer-col h3,
.footer-col h4{
  color:#00e5ff;
  margin-bottom:14px;
}

.footer-col p{
  font-size:14px;
  opacity:.85;
  line-height:1.6;
}

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

.footer-col ul li{
  margin-bottom:10px;
  font-size:14px;
  opacity:.9;
}

.footer-col ul li a{
  color:#fff;
  text-decoration:none;
  transition:.3s;
}

.footer-col ul li a:hover{
  color:#00e5ff;
  padding-left:6px;
}

/* Bottom bar */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  text-align:center;
  padding:18px;
  font-size:13px;
  opacity:.8;
}

/* Responsive */
@media(max-width:1024px){
  .footer-wrapper{
    grid-template-columns:repeat(3,1fr);
  }
}

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



/* ================= POLICY PAGE ================= */

.policy-section{
  background:#070a12;
  color:#fff;
  min-height:100vh;
  padding:80px 20px;
}

.policy-container{
  max-width:900px;
  margin:auto;
}

.policy-container h1{
  font-size:36px;
  margin-bottom:10px;
}

.updated{
  font-size:14px;
  opacity:.7;
  margin-bottom:40px;
}

.policy-container h2{
  font-size:20px;
  margin-top:30px;
  margin-bottom:10px;
  color:#00e5ff;
}

.policy-container p,
.policy-container li{
  font-size:15px;
  line-height:1.7;
  opacity:.85;
}

.policy-container ul{
  padding-left:20px;
}


/* ================= TERMS & CONDITIONS ================= */

.terms-section{
  background:#05070d;
  color:#ffffff;
}

.terms-wrapper{
  max-width:1000px;
  margin:auto;
  padding:80px 20px;
}

/* Title & subtitle */
.terms-section .section-title{
  text-align:center;
  font-size:clamp(28px,4vw,42px);
  font-weight:700;
  margin-bottom:10px;
}

.terms-section .section-sub{
  text-align:center;
  font-size:16px;
  opacity:.85;
  margin-bottom:50px;
}

/* Content box */
.terms-content{
  background:#0c111e;
  padding:40px 35px;
  border-radius:18px;
  line-height:1.8;
}

/* Headings */
.terms-content h3{
  font-size:18px;
  margin:28px 0 8px;
  color:#00e5ff;
}

/* Paragraphs */
.terms-content p{
  font-size:15px;
  opacity:.9;
  margin-bottom:12px;
}

/* Mobile */
@media(max-width:768px){
  .terms-wrapper{
    padding:60px 16px;
  }

  .terms-content{
    padding:28px 20px;
  }

  .terms-content h3{
    font-size:16px;
  }

  .terms-content p{
    font-size:14px;
  }
}

#terms{
  opacity:1 !important;
  transform:none !important;
}
#refund{
  opacity:1 !important;
  transform:none !important;
}

/* ================= BRANCH CONTACT SECTION ================= */

.branch-contact-section{
  background:#05070d;
  color:#fff;
}

.branch-contact-wrapper{
  max-width:1200px;
  margin:auto;
  padding:80px 20px;
}

/* Grid */
.branch-contact-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:stretch;
}

/* MAP */
.branch-map-card{
  border-radius:20px;
  overflow:hidden;
  border:2px solid rgba(0,229,255,.3);
}

.branch-map-card iframe{
  width:100%;
  height:100%;
  min-height:420px;
  border:0;
}

/* FORM CARD */
.branch-form-card{
  background:#0c111e;
  padding:40px 30px;
  border-radius:22px;
  border:2px solid transparent;
  background-clip:padding-box;
  position:relative;
}

/* Gradient outline */
.branch-form-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:24px;
  background:linear-gradient(
    90deg,
    #00e5ff,
    #ff9800,
    #7c4dff,
    #00e5ff
  );
  background-size:400% 400%;
  animation:fastBorder 3s linear infinite;
  z-index:-1;
}

@keyframes fastBorder{
  0%{background-position:0% 50%}
  100%{background-position:100% 50%}
}

.branch-tag{
  display:inline-block;
  margin:10px 0 20px;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  background:rgba(0,229,255,.15);
  color:#00e5ff;
}

.branch-info{
  list-style:none;
  padding:0;
  margin-bottom:25px;
  font-size:15px;
  line-height:1.7;
  opacity:.9;
}

/* FORM */
.branch-form input,
.branch-form select{
  width:100%;
  padding:12px 14px;
  margin-bottom:14px;
  border-radius:10px;
  border:none;
  outline:none;
  background:#12182a;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:900px){
  .branch-contact-grid{
    grid-template-columns:1fr;
  }

  .branch-map-card iframe{
    min-height:300px;
  }
}


#branch-contact{
  opacity:1 !important;
  transform:none !important;
}

