:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F9EFD7;
  --cream: #FDF8EE;
  --white: #FFFFFF;
  --navy: #233260;
  --teal: #1C7A74;
  --teal-light: #25A89F;
  --coral: #E05C3A;
  --soft-gray: #F4F4F0;
  --text-dark: #2C2C2C;
  --text-mid: #555555;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

.logo img,
.nav-logo img {
  width: 100px;
  border-radius: 10px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  border-bottom: 2px solid var(--gold);
}


.nav-logo .brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: #0d3d4a;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.4s;
}

.nav-logo .sub {
    font-family: var(--ff-body);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ff0000;
    margin-top: 2px;
    font-weight: bolder;
}

.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  color: #ff0000;
  text-decoration: none;
  font-size: .95rem;
  font-family: sans-serif;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color .2s;
  font-weight: bolder;
}

.nav-links a:hover {
    color: #ff0000;
}

.nav-cta {
  background: #ff0000;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 10px;
  transition: background .2s;
  color: #ffffff;
}

.nav-cta:hover {
    background: #ff0000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(13, 61, 74, 0.15) 0%,
      rgba(13, 61, 74, 0.4) 50%,
      rgba(13, 61, 74, 0.75) 100%),
    url('https://images.unsplash.com/photo-1548574505-5e239809ee19?w=1800&q=85&fit=crop') center/cover no-repeat;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}

.hero-bg.loaded {
  transform: scale(1);
}

.nav-top {
    display: flex;
    justify-content: center;
}
@media(max-width: 1100px) {
.hero {
 min-height: 60vh !important;
}
}

.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy) 50%, #1B4F72 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201, 168, 76, .18) 0%, transparent 65%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
}

.hero-badge,
.section-divider {
  display: inline-block;
  margin-bottom: 28px;
}

.hero-badge {
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 2px;
  animation: fadeDown .8s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeDown .8s .15s ease both;
}

.hero h1 span,
.section-title span {
  color: var(--gold-light);
}

.hero-sub {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
  animation: fadeDown .8s .3s ease both;
}

.hero-address {
  color: var(--gold);
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 36px;
  animation: fadeDown .8s .4s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown .8s .5s ease both;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
  padding: 14px 32px;
}

.btn-primary {
  background: var(--gold);
  color: var(--deep-navy);
  box-shadow: 0 4px 20px rgba(201, 168, 76, .35);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid rgba(201, 168, 76, .6);
  color: var(--gold-light);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  background: rgba(201, 168, 76, .1);
}

.section {
  padding: 135px 5%;
  padding-bottom: 40px;
}

.section.alt-bg {
  background: var(--soft-gray);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 10px;
  text-align: center;
}

.section-sub {
  color: #000000;
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0 auto 16px;
}

.stats-strip {
  background: var(--deep-navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
}

.stat-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08);
  transition: background .25s;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(201, 168, 76, .08);
}

section.marquee-section {
    margin-top: 70px;
    background-color: white;
    color: #000000;
    font-size: 18px;
    padding: 5px 0px;
}

@media (max-width: 1224px ) {
 section.marquee-section {
    margin-top: 0px;
}
}

section.section-home {
    padding: 80px 5%;
    padding-top: 30px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
}

.stat-label {
  color: #000000;
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.plan-cards,
.tours-grid,
.binary-grid {
  display: grid;
  gap: 28px;
  margin-top: 52px;
}

.plan-cards,
.tours-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.binary-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.plan-card,
.tour-card,
.binary-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
  transition: transform .25s, box-shadow .25s;
}

.plan-card:hover,
.tour-card:hover,
.binary-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.plan-card-header,
.tour-card-body,
.binary-card {
  padding: 28px;
}

.plan-card-header {
  background: linear-gradient(135deg,var(--navy));
  position: relative;
  overflow: hidden;
}

.plan-card-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: rgba(201, 168, 76, .12);
  border-radius: 50%;
}

.plan-badge,
.tour-plan-type {
  display: inline-block;
  background: var(--gold);
  color: var(--deep-navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.plan-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.plan-subtitle,
.binary-card p,
.cta-section p {
  color: #ffffff;
  font-size: .88rem;
  line-height: 1.5;
}

.tour-card-body p {
    color: #979797;
    font-size: .88rem;
    line-height: 1.5;
}

.plan-card-body {
  padding: 28px;
}

.plan-income {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 20px;
}

.plan-income small {
  font-size: 1rem;
  color: var(--text-mid);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.plan-features {
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.4;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: .7rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.binary-section {
  background: linear-gradient(135deg, #0D5C57, #1a7a74);
  padding: 90px 5%;
  text-align: center;
}

.binary-section .section-title,
.cta-section .section-title {
  color: var(--white);
}



.binary-section .section-sub {
   color: #ffffff;
}

.binary-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(201, 168, 76, .2);
  padding: 32px 24px;
  text-align: center;
}

.binary-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.binary-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.big-num {
  font-family: serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-top: 8px;
}

.levels-wrapper {
  overflow-x: auto;
  margin-top: 52px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

thead tr {
  background: var(--deep-navy);
}

thead th {
  padding: 16px 18px;
  text-align: left;
  color: var(--gold-light);
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s;
}

tbody tr:hover {
  background: var(--gold-pale);
}

tbody td {
  padding: 14px 18px;
  font-size: .9rem;
  color: var(--text-dark);
}

.level-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .5px;
}

.silver { background: #e8e8e8; color: #555; }
.pearl { background: #e8f4f8; color: #1a6a85; }
.saphire { background: #dbeafe; color: #1d4ed8; }
.gold-b { background: #fef3c7; color: #92400e; }
.platinum { background: #f3e8ff; color: #6b21a8; }
.emerald { background: #d1fae5; color: #065f46; }
.diamond { background: #dbeafe; color: #1e3a8a; }
.royal { background: #fce7f3; color: #9d174d; }
.crown { background: linear-gradient(90deg, #fde68a, #fca5a5); color: #7f1d1d; }
.ambassador { background: linear-gradient(90deg, var(--gold), var(--gold-light)); color: var(--deep-navy); font-weight: 800; }

.income-cell { color: var(--teal); font-weight: 700; }
.tour-cell { color: var(--coral); font-weight: 600; font-size: .82rem; }

.tours-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.tour-card {
  border-radius: 14px;
}

.tour-card-img {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.t-kerala { background: linear-gradient(135deg, #1a9a6c, #0d7a55); }
.t-goa { background: linear-gradient(135deg, #e07b39, #b85d20); }
.t-shimla { background: linear-gradient(135deg, #4a90d9, #2567b0); }
.t-rajasthan { background: linear-gradient(135deg, #e0a030, #b57a10); }
.t-thailand { background: linear-gradient(135deg, #9b59b6, #6c3483); }
.t-egypt { background: linear-gradient(135deg, #e67e22, #ca6f1e); }
.t-japan { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.t-america { background: linear-gradient(135deg, #2e86c1, #1a5276); }

.tour-card-body { background: var(--white); padding: 22px; }

.tour-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--deep-navy);
  margin-bottom: 6px;
}

.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, #0D5C57 100%);
  padding: 90px 5%;
  text-align: center;
}

.cta-card {
  display: inline-flex;
  gap: 48px;
width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  background-color: #c9a84c;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  padding: 36px 48px;
  margin-bottom: 40px;
}

.cta-detail { text-align: left; }

.cta-detail label {
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}


.cta-detail span { color: var(--white); font-size: .98rem; font-weight: 600; }

footer {
  background: var(--deep-navy);
  padding: 48px 5% 24px;
  text-align: center;
  border-top: 2px solid var(--gold);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #c9a84c;
  font-weight: 700;
  margin: 8px 0px;
}

.footer-tagline { color: #000000; font-size: .85rem; margin-bottom: 28px; }

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-links a {
  color: #000000;
  text-decoration: none;
  font-size: .82rem;
  transition: color .2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-copy { color: #3d5470; font-size: .78rem; }

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hamburger { display: none; }

@media(max-width: 1225px) {
  nav { padding: 0 18px; position: relative; display: flex; flex-wrap: wrap; }
  .hamburger { display: block; cursor: pointer; font-size: 1.5rem; color: var(--gold-light); order: 3; }
  .nav-links { 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    background: rgba(255, 255, 255, 0.97); 
    flex-direction: column; 
    padding: 20px 0; 
    display: none; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    order: 4;
  }
  .nav-links.active { display: flex; }
  .nav-links li { margin: 10px 0; text-align: center; }
  .nav-links.active ~ div { display: flex !important; }
  nav > div:last-child { 
    position: absolute; 
    top: 287px; 
    left: 0; 
    width: 100%; 
    background: rgba(255, 255, 255, 0.97); 
    flex-direction: column; 
    gap: 10px;
    padding: 20px;
    display: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  nav > div:last-child a { 
    text-align: center; 

  }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .cta-card { padding: 24px; gap: 24px; }
}

.home-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.summary-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  text-align: left;
}

.summary-card h3 {
  font-size: 1.2rem;
  color: var(--deep-navy);
  margin-bottom: 14px;
}

.summary-card p {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 18px;
}

.summary-card a {color: red; font-weight: 700; text-decoration: none; }


.tour-card-img img {
    width: 100%;
}
.section-centered { max-width: 900px; margin: 0 auto; }

@media(max-width: 500px) {
.brand {
    display: none;
}
.sub {
    display: none;
}
}

@media(max-width: 1225px) {
.nav-links {
    gap: 8px;
}
}

@media(max-width: 1225px) {
a.nav-cta-nav {
    display: none;
}
}


@media(max-width:1225px) {
    .section {
            padding: 50px 5%;
        }
}

.nav-cta-nav {
    background: var(--gold);
        padding: 9px 22px;
        border-radius: 4px;
        font-weight: 700;
        font-size: .82rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none;
        margin-left: 10px;
        transition: background .2s;
        color: #ffffff;
}





        .login-container {
            max-width: 420px;
            margin: 120px auto 0;
            padding: 40px;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }
    
        .login-container h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--deep-navy);
            margin-bottom: 28px;
            text-align: center;
        }
    
        .form-group {
            margin-bottom: 20px;
        }
    
        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
    
        .form-group input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: border-color 0.2s;
        }
    
        .form-group input:focus {
            outline: none;
            border-color: var(--gold);
        }
    
        .login-btn {
            width: 100%;
            padding: 14px;
            background: var(--gold);
            color: var(--deep-navy);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: background 0.2s;
            text-transform: uppercase;
        }
    
        .login-btn:hover {
            background: var(--gold-light);
        }
    
        .login-footer {
            text-align: center;
            margin-top: 20px;
            color: var(--text-mid);
            font-size: 0.9rem;
        }
    
        .login-footer a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
        }
    
        .login-footer a:hover {
            color: var(--gold-light);
        }
        @media (max-width: 1224px) {
    .page {
        margin-top: 0px !important;
    }
}

