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

body {
  font-family: 'Poppins', sans-serif;
  background: #050b1f;
  color: white;
  overflow-x: hidden;
}

/* ================= HEADER ================= */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(5, 15, 40, 0.65);
  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
}

.logo img {
  width: 40px;
  height: 40px;
}

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

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #cddcff;
  font-size: 14px;
  position: relative;
}

nav a:hover {
  color: white;
}

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

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0 20px;

  background:
    radial-gradient(circle at 20% 30%, rgba(120,170,255,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(60,120,255,0.12), transparent 45%),
    linear-gradient(135deg, #0b3d91 0%, #050b1f 55%, #020617 100%);
}

/* Soft luxury glow haze */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(120,170,255,0.12), transparent 60%);
  opacity: 0.6;
}

/* Logo watermark */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("Images/logo.jpeg") center/420px no-repeat;
  opacity: 0.04;
  filter: blur(1px);
}

.hero-content {
  position: relative;
  max-width: 950px;
  z-index: 2;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  line-height: 1.08;
}

/* Highlighted words */
.hero h1 span {
  background: linear-gradient(90deg, #7fa6ff, #cddcff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 17px;
  color: #b8ccff;
  margin-bottom: 34px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Premium primary button */
button.glow {
  background: white;
  color: #0b3d91;
  border-radius: 28px;
  padding: 12px 26px;
  font-weight: 600;
  transition: 0.35s;
}

button.glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(120,170,255,0.9);
}

/* Premium outline */
button.outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 28px;
  padding: 12px 26px;
  transition: 0.35s;
}

button.outline:hover {
  border-color: #7fa6ff;
  box-shadow: 0 0 25px rgba(120,170,255,0.35);
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 15px;
  }
}

/* ================= SECTIONS ================= */

.section {
  padding: 110px 20px 80px;
  text-align: center;
}

.dark {
  background: #020617;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.section p {
  max-width: 720px;
  margin: auto;
  color: #9fbaff;
  line-height: 1.6;
  font-size: 15px;
}

/* ================= ABOUT SPLIT ================= */

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.about-content {
  text-align: left;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: 0.4s;
}

.about-image img:hover {
  transform: scale(1.02);
}

/* ================= SPLIT SECTIONS ================= */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.split .image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Philosophy */
.philosophy {
  background: linear-gradient(to bottom, #050b1f, #0b3d91);
}

/* ================= FEATURES ================= */

.features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.features div {
  background: rgba(255, 255, 255, 0.04);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

.features div:hover {
  box-shadow: 0 0 25px rgba(120, 170, 255, 0.35);
  transform: translateY(-4px);
}

/* ================= SERVICES ================= */

.services {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.services div {
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.services div:hover {
  box-shadow: 0 0 25px rgba(120, 160, 255, 0.35);
  transform: translateY(-3px);
}

/* ================= IMAGE BREAKS ================= */

.image-break {
  height: 280px;
  background: url("Images/Image-7.jpeg") center/cover no-repeat;
  background-attachment: fixed;
  opacity: 0.35;
}

.image-break-2 {
  height: 260px;
  background: url("Images/Image-3.jpeg") center/cover no-repeat;
  background-attachment: fixed;
  opacity: 0.35;
}

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

.cta {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to bottom, #0b3d91, #020617);
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta p {
  color: #b8ccff;
  margin-bottom: 25px;
}

/* ================= BUTTONS ================= */

button {
  background: white;
  color: #0b3d91;
  border: none;
  padding: 11px 22px;
  border-radius: 26px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  transform: translateY(-2px);
}

button.glow:hover {
  box-shadow: 0 0 30px rgba(120, 170, 255, 0.9);
}

/* Outline Button */
button.outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

button.outline:hover {
  border-color: #7fa6ff;
  box-shadow: 0 0 20px rgba(120, 170, 255, 0.4);
}

/* ================= ANIMATIONS ================= */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

footer {
  text-align: center;
  padding: 30px;
  font-size: 12px;
  color: #7fa6ff;
}

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

@media (max-width: 768px) {

  .hero h1 {
    font-size: 30px;
  }

  nav {
    display: none;
  }

  .header {
    padding: 16px 20px;
  }

  .about-section,
  .split {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .image-break,
  .image-break-2 {
    background-attachment: scroll;
  }
}
/* ================= CONTACT HERO ================= */

.contact-hero {
  height: 55vh;
  background: linear-gradient(to bottom, #0b3d91, #050b1f);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: url("Images/logo.jpeg") center/contain no-repeat;
  opacity: 0.05;
}

.contact-hero-content {
  position: relative;
}

.contact-hero h1 {
  font-size: 38px;
  margin-bottom: 10px;
}

.contact-hero p {
  color: #b8ccff;
}

/* ================= CONTACT LAYOUT ================= */

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 40px;
}

/* Form Wrapper */
.contact-form-wrapper {
  background: rgba(255,255,255,0.04);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.contact-form-wrapper h2 {
  margin-bottom: 18px;
}

/* Contact Info */
.contact-info {
  text-align: left;
  color: #9fbaff;
}

.contact-info h3 {
  margin-bottom: 20px;
  color: white;
}

.contact-info p {
  margin-bottom: 16px;
}

/* Contact Image */
.contact-image img {
  width: 100%;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

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

@media (max-width: 768px) {

  .contact-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-form-wrapper,
  .contact-info {
    text-align: center;
  }

  .contact-hero h1 {
    font-size: 26px;
  }
}

/* CONTACT WRAPPER */
.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  margin-top: 40px;
}

/* Glass Card */
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  text-align: left;
}

.contact-card h2 {
  margin-bottom: 20px;
  font-size: 26px;
}

/* Form Layout */
.contact-form .row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: white;
  font-family: inherit;
}

.contact-form textarea {
  margin-bottom: 16px;
  resize: none;
}

/* Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details .info {
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.contact-details h3 {
  margin-bottom: 16px;
}

/* Image */
.contact-visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.4);
  transition: 0.4s;
}

.contact-visual img:hover {
  transform: scale(1.03);
}

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

  .contact-card,
  .contact-details .info {
    text-align: center;
  }

  .contact-form .row {
    flex-direction: column;
  }
}
/* ================= PLANS HERO ================= */

.plans-hero {
  height: 45vh;
  background: linear-gradient(to bottom, #0b3d91, #050b1f);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.plans-overlay {
  position: absolute;
  inset: 0;
  background: url("Images/logo.jpeg") center/380px no-repeat;
  opacity: 0.05;
}

.plans-hero-content {
  position: relative;
}

.plans-hero h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.plans-hero p {
  color: #b8ccff;
  font-size: 15px;
}


/* ================= PLANS LAYOUT ================= */

.cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}


/* ================= PLAN CARDS ================= */

.card {
  background: rgba(255,255,255,0.04);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.35s ease;
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}


/* ================= FEATURED PLAN ================= */

.card.featured {
  transform: scale(1.05);
  border: 1px solid rgba(120,170,255,0.6);
  box-shadow: 0 0 35px rgba(120,170,255,0.25);
}


/* ================= BADGE ================= */

.badge {
  display: inline-block;
  font-size: 11px;
  background: #7fa6ff;
  color: #050b1f;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 12px;
  font-weight: 600;
}


/* ================= TYPOGRAPHY ================= */

.card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.card p {
  font-size: 14px;
  color: #9fbaff;
  margin-bottom: 18px;
}

.card ul {
  list-style: none;
  margin-bottom: 20px;
}

.card ul li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #cddcff;
}


/* ================= BUTTON SPACING ================= */

.card button {
  margin-top: 10px;
}


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

@media (max-width: 768px) {

  .plans-hero {
    height: 35vh;
    padding: 0 20px;
  }

  .plans-hero h1 {
    font-size: 26px;
  }

  .plans-hero p {
    font-size: 13px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .card.featured {
    transform: scale(1);
  }
}
/* ================= PREMIUM DROPDOWN ================= */

.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  color: white;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  margin-bottom: 14px;
  appearance: none;              /* Removes default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;

  /* Custom arrow */
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='20' width='20' xmlns='http://www.w3.org/2000/svg'><polygon points='0,0 20,0 10,10'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  cursor: pointer;
}

/* Hover */
.contact-form select:hover {
  border-color: rgba(120,170,255,0.6);
}

/* Focus */
.contact-form select:focus {
  border-color: #7fa6ff;
  box-shadow: 0 0 0 2px rgba(120,170,255,0.25);
}

/* Dropdown options */
.contact-form select option {
  background: #050b1f;
  color: white;
}

/* Label styling */
.form-label {
  display: block;
  margin: 10px 0 6px;
  font-size: 13px;
  color: #9fbaff;
}
/* ================= CHECKBOX SERVICES ================= */

.services-checkbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin: 10px 0 18px;
  text-align: left;
}

.services-checkbox label {
  background: rgba(255,255,255,0.04);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  font-size: 13px;
  transition: 0.25s ease;
}

.services-checkbox label:hover {
  border-color: rgba(120,170,255,0.6);
  background: rgba(120,170,255,0.08);
}

/* Checkbox */
.services-checkbox input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #7fa6ff;
  cursor: pointer;
}

/* Phone field spacing */
.contact-form input[type="tel"] {
  width: 100%;
  margin-top: 10px;
}
/* ================= SERVICES CHECKBOX ================= */

.services-checkbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 12px 0 22px;
}

/* Individual Box */
.services-checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;

  background: rgba(255,255,255,0.04);
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);

  cursor: pointer;
  font-size: 14px;
  transition: 0.3s ease;
  position: relative;
}

/* Hover */
.services-checkbox label:hover {
  border-color: rgba(120,170,255,0.6);
  background: rgba(120,170,255,0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Checkbox */
.services-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #7fa6ff;
  cursor: pointer;
}

/* Text */
.services-checkbox span {
  color: #cddcff;
  transition: 0.2s ease;
}

/* Checked */
.services-checkbox input[type="checkbox"]:checked + span {
  color: white;
  font-weight: 600;
}

/* Glow */
.services-checkbox input[type="checkbox"]:checked {
  box-shadow: 0 0 10px rgba(120,170,255,0.8);
}

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

.form-label {
  display: block;
  margin: 10px 0 8px;
  font-size: 13px;
  color: #9fbaff;
  text-align: left;
}

/* ================= INPUT FOCUS GLOW ================= */

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #7fa6ff;
  box-shadow: 0 0 0 2px rgba(120,170,255,0.25);
}
/* ================= LINK BUTTON FIX ================= */

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 28px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.35s ease;
  cursor: pointer;
}

/* Glow button */
.btn.glow {
  background: white;
  color: #0b3d91;
}

.btn.glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(120,170,255,0.9);
}

/* Outline button */
.btn.outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
}

.btn.outline:hover {
  border-color: #7fa6ff;
  box-shadow: 0 0 25px rgba(120,170,255,0.35);
  transform: translateY(-2px);
}

