* { box-sizing: border-box; margin: 0; padding: 0; }

/* ── HERO SHELL ── */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: var(--font-body);
}

/* ── BG IMAGE ── */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.38) saturate(1.1);
}

/* ── GRADIENT OVERLAY ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,  rgba(5,12,35,0.80) 0%, rgba(5,12,35,0.2) 55%, rgba(5,12,35,0.20) 100%),
    linear-gradient(to bottom, rgba(5,12,35,0.10) 0%, rgba(5,12,35,0.2) 100%);
}

/* ── INNER GRID ── */
.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: clamp(30px, 4vw, 60px) clamp(1rem, 5vw, 8%) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(260px, 28vw, 380px);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
}

/* ══════════════════════════
   LEFT SIDE
══════════════════════════ */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,208,96,0.14);
  border: 1px solid rgba(255,208,96,0.45);
  color: #ffd060;
  font-size: clamp(9px, 0.85vw, 11px);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
  white-space: nowrap;
  animation: fadeSlideDown .5s ease both;
}

/* ── TICKER ── */
.ticker-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 22px;
  animation: fadeSlideUp .6s .1s ease both;
  width: 100%;
  overflow: hidden;
}

.ticker-static {
  font-size: clamp(20px, 2.8vw, 48px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
  font-family: var(--font-display);
  white-space: nowrap;
}

.ticker-stage {
  position: relative;
  height: clamp(28px, 3.8vw, 60px);
  overflow: hidden;
  width: 100%;
}

.ticker-item {
  position: absolute;
  top: 0;
  left: 20%;
  transform: translateX(-50%) translateY(100%);
  display: flex;
  align-items: left;
  justify-content: left;
  font-size: clamp(20px, 2.8vw, 48px);
  font-weight: 1000;
  color: var(--secondary);
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  font-family: var(--font-display);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
}

.ticker-item.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.ticker-item.out {
  opacity: 0;
  transform: translateX(-50%) translateY(-100%);
}

/* Sub text */
.hero-sub {
  font-size: clamp(12px, 1.1vw, 16px);
  color: rgba(255,255,255,0.72);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 22px;
  animation: fadeSlideUp .6s .25s ease both;
}

/* Trust row */
.trust-row {
  display: flex;
  flex-direction: row;
  gap: clamp(6px, 1vw, 12px);
  margin-bottom: 28px;
  flex-wrap: wrap;
  animation: fadeSlideUp .6s .35s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon.aicte { background: #E8580A; }
.trust-icon.place { background: #16a34a; }
.trust-icon.smart { background: #2563eb; }

.trust-title { font-size: clamp(12px, 1.1vw, 15px); font-weight: 700; color: #fff; line-height: 1.2; }
.trust-sub   { font-size: clamp(10px, 0.85vw, 12px); color: rgba(255,255,255,0.50); margin-top: 1px; }

/* Buttons */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeSlideUp .6s .45s ease both;
}

.hero-btns .btnPrimary {
  background: var(--primary);
  color: #fff;
  padding: clamp(7px, 0.7vw, 10px) clamp(14px, 2vw, 28px);
  border-radius: 50px;
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition: transform .22s, box-shadow .22s;
  border: none;
}

.hero-btns .btnPrimary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(232,88,10,0.60);
  color: #fff;
}

.hero-btns .btnGhost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: clamp(7px, 0.7vw, 10px) clamp(14px, 2vw, 28px);
  border-radius: 50px;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: all .22s;
  backdrop-filter: blur(6px);
}

.hero-btns .btnGhost:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
  color: #fff;
}

/* ══════════════════════════
   RIGHT SIDE — FORM
══════════════════════════ */
.hero-right {
  animation: fadeSlideUp .7s .2s ease both;
  min-width: 0;
}

.form-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.40), 0 0 0 1px rgba(255,255,255,0.08);
}

/* Form header */
.form-top {
  padding: clamp(12px, 1.2vw, 18px) clamp(14px, 1.5vw, 22px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-top-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,208,96,0.5);
  border: 1px solid rgba(255,208,96,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-top-title { font-size: clamp(13px, 1.1vw, 16px); font-weight: 800; line-height: 1.2; }
.form-top-sub   { font-size: clamp(10px, 0.85vw, 11px); margin-top: 3px; }

/* Form body */
.form-body {
  padding: clamp(14px, 1.4vw, 20px) clamp(14px, 1.5vw, 22px) clamp(16px, 1.6vw, 22px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 10px;
  font-weight: 800;
  color: #374151;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  padding: clamp(7px, 0.75vw, 11px) 12px;
  border: 1.5px solid var(--themeColorRGBA03);
  border-radius: 8px;
  font-size: clamp(12px, 1vw, 14px);
  color: #111827;
  background: #f9fafb;
  outline: none;
  font-family: inherit;
  transition: border-color .2s, background .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}

.field input:focus,
.field select:focus {
  border-color: #E8580A;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,88,10,0.12);
}

.field input::placeholder { color: #b0b7c3; }

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

/* Submit */
.form-btn {
  width: 100%;
  padding: clamp(10px, 1vw, 14px);
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  transition: transform .2s, box-shadow .2s;
  font-family: inherit;
}

.form-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,88,10,0.55);
}

.form-btn:disabled { cursor: default; }

/* Trust line */
.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: clamp(10px, 0.85vw, 11.5px);
  color: #6b7280;
  margin-top: -4px;
}

/* ══════════════════════════
   ANIMATIONS
══════════════════════════ */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) clamp(240px, 34vw, 340px);
    gap: clamp(16px, 2.5vw, 28px);
    padding: clamp(30px, 4vw, 55px) clamp(1rem, 4vw, 32px) 0;
  }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 5% 52px;
    gap: 40px;
  }
  .hero-left {
    align-items: center;
    text-align: center;
  }
  .ticker-wrap   { align-items: center; }
  .ticker-static { text-align: center; }
  .hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .trust-row  { justify-content: center; }
  .hero-btns  { justify-content: center; }
  .hero-right {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .ticker-static { font-size: 24px; }
  .ticker-item   { font-size: 28px; }
  .trust-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-inner { padding: 28% 5% 40px;}
  .hero-btns {
    flex-direction: row;
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  .btnPrimary,
  .btnGhost { max-width: 150px; white-space: nowrap; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .form-body { padding: 16px 16px 18px; }
  .form-top  { padding: 14px 16px; }
}

@media (max-width: 360px) {
  .ticker-static,
  .ticker-item { font-size: clamp(18px, 6vw, 24px); }
  .hero-btns { gap: 8px; }
  .btnPrimary,
  .btnGhost { max-width: 140px; }
  .trust-title { font-size: 13px; }
  .trust-sub   { font-size: 11px; }
}

@media (max-width: 1600px) {
  .hero-btns .btnPrimary {
  padding: 10px  25px; 
  font-size: 10px;
}
.hero-btns .btnGhost {
 padding: 10px 25px; 
 font-size: 10px;
}

.field label {
  font-size: 8px; 
}

.field input,
.field select {
  width: 100%;
  padding: 8px; 
  font-size: 10px; 
}
.form-btn { 
  padding: 10px; 
  font-size: 10px; 
}
.form-top-icon svg{
  height: 20px;
  width: 20px;
}
.form-top-title { font-size: 12px; font-weight: 800; line-height: 1.2; }
.form-top-sub   { font-size: 8px; margin-top: 3px; }

.hero-badge { 
  font-size: 8px; 
  padding: 5px 14px; 
}

 .logo-text .andaman { font-size: 12px; }
    .logo-text .paradise { font-size: 9px; }
    nav.scrolled .logo-text .andaman { font-size: 13px; }
    nav.scrolled .logo-text .paradise { font-size: 8px; }
    .logo img { height: 48px; }
    nav.scrolled .logo img { height: 38px; }
    .nav-links a { 
    font-size: 10px; 
}
 
 
}