:root{
  --primary-dark:#1e2346;
  --coral:#f26761;
  --white:#ffffff;
  --blue:#4dabf7;
  --green:#51cf66;
  --font:'Poppins',sans-serif;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:var(--font);
  color:#fff;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */

.site-header{
  position:absolute;
  width:100%;
  padding:20px 0;
  z-index:10;
}

.header-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:28px;
  font-weight:700;
}

.logo span{
  color:var(--coral);
}

.main-nav ul{
  display:flex;
  gap:30px;
}

.main-nav a{
  color:white;
  font-weight:500;
  text-decoration:none;
}

/* BUTTONS */

.btn{
  border:none;
  padding:14px 28px;
  font-weight:600;
  cursor:pointer;
  border-radius:4px;
  transition:0.3s;
}

.btn-sm{
  padding:10px 20px;
  font-size:14px;
}

.btn-lg{
  font-size:18px;
}

.btn-coral{
  background:var(--coral);
  color:white;
}

.btn-coral:hover{
  background:#e0554f;
}

.btn-white{
  background:white;
  color:#1e2346;
}

.btn-white:hover{
  background:#eee;
}

.half-btn{
  width:50%;
}

/* HERO */

.hero-section{
  height:100vh;
  background-image:url("images/index background.jpg");
  background-size:cover;
  background-position:center;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  text-align:center;
}

.hero-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(30,35,70,0.85);
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-content h1{
  font-size:64px;
  margin-bottom:20px;
}

.dot{
  color:var(--coral);
}

.subheadline{
  font-size:20px;
  max-width:700px;
  margin:auto;
  margin-bottom:40px;
  opacity:0.9;
}

.highlight-underline{
  text-decoration:underline;
  text-underline-offset:4px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
}

/* ABOUT SECTION */

.about-section{
  background:#f6f7fb;
  color:#1e2346;
  padding:100px 0;
}

.about-content{
  text-align:center;
  max-width:900px;
}

.about-content h2{
  font-size:42px;
  margin-bottom:30px;
}

.about-content p{
  font-size:18px;
  line-height:1.7;
}

/* STYLISH TEXT */

.color-accent{color:var(--coral);font-weight:600;}
.color-blue{color:var(--blue);font-weight:600;}
.color-green{color:var(--green);font-weight:600;}

.underline-text{
  text-decoration:underline;
  text-underline-offset:5px;
}

/* POPUP */

.popup{
  position:fixed;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  background:#1e2346;
  color:white;
  padding:15px 25px;
  border-radius:6px;
}

.hidden{
  display:none;
}

/* RESPONSIVE */

@media(max-width:900px){

  .main-nav{display:none;}

  .hero-content h1{
    font-size:48px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .half-btn{
    width:100%;
  }

}







/* CONTACT SECTION */

.contact-section{
  background:#1e2346;
  padding:90px 0;
  color:white;
}

.contact-content{
  text-align:center;
}

.contact-content h2{
  font-size:42px;
  margin-bottom:50px;
}

.contact-grid{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.contact-box{
  background:rgba(255,255,255,0.08);
  padding:30px 40px;
  border-radius:10px;
  min-width:220px;
}

.contact-box h4{
  color:#f26761;
  font-size:18px;
  margin-bottom:10px;
}

.contact-box p{
  font-size:16px;
  line-height:1.5;
}












/* CENTER LOGO IN HEADER */

.header-flex{
  position: relative;
}

.logo{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}


/* ABOUT SECTION LEFT ALIGN */

.about-content{
  text-align: left;
  max-width: 900px;
}

.about-content h2{
  text-align: left;
}

.about-content p{
  text-align: left;
  line-height: 1.8;
}









.about-section{
  background:#f7f8fc;
  color:#1a1f3d;
}













/* =========================
   REGISTER SECTION
========================= */

.register-section {
    padding: 100px 0;
       background-image:url("images/index background.jpg");
    color: white;
    text-align: center;
}

.register-container {
    max-width: 600px;
}

.register-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-text {
    color: var(--coral-accent);
    text-decoration: underline;
    text-underline-offset: 6px;
}

.register-subtitle {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 40px;
}

/* Form styling */

.register-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    font-family: var(--font-stack);
    outline: none;
    background: rgba(255,255,255,0.95);
}

.form-group input::placeholder {
    color: #666;
}

.form-group select {
    color: #444;
    cursor: pointer;
}

.register-btn {
    margin-top: 20px;
    width: 50%;          /* 👈 HALF SIZE BUTTON */
    align-self: center;
    border-radius: 30px;
    font-size: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242,103,97,0.4);
}














/* =========================
   LEGAL LINKS
========================= */

.legal-links{
  text-align: center;
  font-size: 13px;
  color: #666;
  margin: 40px 0 20px;
}

.legal-links a{
  color: #2563eb;
  font-weight: 500;
  cursor: pointer;
}

.legal-links a:hover{
  text-decoration: underline;
}

/* =========================
   POLICY MODAL
========================= */

.policy-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.policy-modal.hidden{
  display: none;
}

.policy-box{
  background: #ffffff;
  width: 90%;
  max-width: 720px;
  max-height: 80vh;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.policy-header{
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.policy-header h3{
  font-size: 16px;
  font-weight: 600;
}

.policy-header button{
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
}

.policy-content{
  padding: 20px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.policy-content h4{
  margin-top: 18px;
  font-size: 15px;
  font-weight: 600;
}
















.video-section {
  padding: 80px 0;
  background: #f9fafb;
}

.video-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.video-text h2 {
  color: #000;
  font-size: 36px;
  margin-bottom: 16px;
}

.video-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.video-points {
  list-style: none;
  padding: 0;
}

.video-points li {
  margin-bottom: 10px;
  font-weight: 500;
  color: #111;
}

.video-box video,
.video-box iframe {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 900px) {
  .video-container {
    grid-template-columns: 1fr;
  }
}















/* =========================
   SLIDESHOW SECTION
========================= */

.slideshow-section {
  padding: 80px 0;
  background: #f8fafc;
}

.slideshow-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 40px;
}

.slideshow-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slideshow-track {
  display: flex;
  gap: 24px;
  animation: slide-scroll 25s linear infinite;
}

.slideshow-track img {
  height: 280px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* Auto-scroll animation */
@keyframes slide-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.slideshow-wrapper:hover .slideshow-track {
  animation-play-state: paused;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .slideshow-track img {
    height: 200px;
  }
}



















.plans-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.plan-card {
  border: 2px solid #e5e7eb;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  transition: 0.25s;
  background: #fff;
}

.plan-card:hover {
  border-color: #ff6b5f;
  transform: translateY(-4px);
}

.plan-card.selected {
  border-color: #ff6b5f;
  background: #fff5f3;
}

.plan-card .price {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0;
}

.plan-card.popular {
  position: relative;
}

.plan-card .badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background: #ff6b5f;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
}





.plan-card h3,
.plan-card h4,
.plan-card h6,
.plan-card span,
.plan-card p {

   color : #000;
}
















/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.pricing-container {
    display: flex;
    gap: 30px; /* Space between cards */
    flex-wrap: wrap;
    justify-content: center;
}

/* --- Card Structure --- */
.card {
    width: 360px;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* --- Free Card Specifics --- */
.card-free {
    background-color: #ffffff;
    color: #0d0f40; /* Dark Navy Text */
}

/* --- Pro Card Specifics --- */
.card-pro {
    background-color: #ffffff; /* Deep Navy Background */
    color: #0d0f40;
}

/* --- Typography & Elements --- */
.plan-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 5px;
}

.currency {
    font-size: 32px;
    font-weight: 600;
    margin-right: 4px;
}

.amount {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 16px;
    font-weight: 400;
    color: #999;
    margin-left: 8px;
}

/* Adjust period color for pro card */
.card-pro .period {
    color: rgba(255, 255, 255, 0.6);
}

.fee-text {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
}

.green-text {
    color: #6fcf97; /* Light green */
}

.dark-green-text {
    color: #27ae60; /* Darker green (on dark bg looks cleaner) or keep same */
    color: #4ade80; /* Bright green for visibility on dark blue */
}

/* --- Button --- */
.btn-action {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background-color: #2d6efd; /* Bright Blue */
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 35px;
    font-family: inherit;
    transition: background 0.2s;
}

.btn-action:hover {
    background-color: #1a5cff;
}

/* --- Feature List --- */
.feature-list {
    list-style: none;
    width: 100%;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.feature-item.align-top {
    align-items: flex-start;
}

/* Icons styling */
.icon-box, .icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0; /* Prevents icon squishing */
    margin-right: 15px;
}

/* The Orange "1" Box */
.orange-box {
    width: 22px;
    height: 22px;
    background-color: #ff914d; /* Orange */
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

/* The Blue Check Circle */
.check-blue {
    width: 22px;
    height: 22px;
    background-color: #2d6efd; /* Blue */
    border-radius: 50%;
    color: white;
    font-size: 12px;
}

/* The Grey Cross Circle */
.cross-grey {
    width: 22px;
    height: 22px;
    background-color: #e0e0e0; /* Light Grey */
    border-radius: 50%;
    color: #ffffff;
    font-size: 12px;
}

/* Disabled Text Styling (Free Card) */
.card-free .disabled .text {
    color: #a0a0a0;
}

.sub-text {
    display: block;
    font-size: 13px;
    opacity: 0.8;
    margin-top: 2px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
}













/* =========================
   PRICING LAYOUT FIX
========================= */

.pricing-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap; /* allows stacking only on small screens */
  margin: 40px 0;
}

/* Ensure cards have same width */
.pricing-container .card {
  width: 360px;
}

/* Mobile fallback */
@media (max-width: 900px) {
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
}








/* =========================
   FIX REGISTER WIDTH FOR PLANS
========================= */

.register-container {
  max-width: 800px;   /* 🔥 THIS IS THE FIX */
}

.register-form {
  width: 100%;
}
