
body{  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  word-spacing: -0.4px;}
/* CONTACT STRIP */
.top-contact-strip {
  background: linear-gradient(90deg, #0a508e, #1e6fb8);
  padding: 8px 0;
}

.contact-strip-inner {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.strip-item {
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.strip-item:hover {
  opacity: 0.8;
}

/* ================================
   NAVBAR
================================ */
.main-navbar {
  position: relative;
  background: #ffffff;
  padding: 18px 0;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  overflow: visible; /* ✅ IMPORTANT FIX */
  z-index: 1000;
}

/* ================================
   DECORATIVE SHAPE
================================ */
.nav-shape {
  position: absolute;
  top: -60px;

  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(10, 80, 142, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

/* ================================
   LOGO
================================ */
.navbar-brand img {
  height: 90px;
}

/* ================================
   NAV LINKS
================================ */
.main-navbar .nav-link {
  font-size: 17px;
  font-weight: 500;
  color: #1e293b;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease;
}

.main-navbar .nav-link:hover {
  color: #0a508e;
}

/* Hover underline */
.main-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #0a508e;
  transition: width 0.3s ease;
}

.main-navbar .nav-link:hover::after {
  width: 100%;
}

/* ================================
   CTA BUTTON
================================ */
.nav-cta {
  background: linear-gradient(90deg, #0a508e, #1e6fb8);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 17px;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(10, 80, 142, 0.4);
}

/* ================================
   TOGGLER
================================ */
.navbar-toggler {
  border: none;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ================================
   MOBILE MENU FIX
================================ */
@media (max-width: 991px) {

  .main-navbar {
    overflow: visible; /* ✅ MOBILE FIX */
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    margin-top: 12px;
    border-radius: 17px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    z-index: 9999;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    font-size: 17px;
    margin: 0;
  }

  .nav-cta {
    margin-top: 15px;
  }
}




/* HERO BASE */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #0a508e, #062f55);
  padding: 120px 0;
  color: #ffffff;
  overflow: hidden;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 17px;
  margin-bottom: 20px;
}

/* GOLDEN HEADING */
.gold-text {
  font-size: 46px;
  font-weight: 800;
  background: linear-gradient(90deg, #f5c542, #ffd700, #f5c542);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 30px;
  font-weight: 500;
  display: block;
  margin-top: 6px;
}

/* TEXT */
.hero-subtitle {
  font-size: 19px;
  font-weight: 500;
  margin: 18px 0 10px;
}

.hero-text {
  font-size: 17px;
  max-width: 620px;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* CTA BUTTON */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #ffd700, #f5c542);
  color: #000;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* IMAGE */
.hero-image {
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

/* IMAGE FLOAT */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* SHAPES */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape-gold {
  width: 260px;
  height: 260px;
  background: #ffd700;
  top: -80px;
  left: -80px;
}

.shape-blue {
  width: 420px;
  height: 420px;
  background: #ffffff;
  bottom: -180px;
  right: -180px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-section {
    padding: 90px 0;
    text-align: center;
  }

  .gold-text {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 22px;
  }

  .hero-text {
    max-width: 100%;
  }
}











/* PREMIUM TRUST SECTION */
.trust-premium {
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  padding: 60px 0;
}

/* WRAPPER */
.trust-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.trust-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-radius: 17px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border-top: 4px solid transparent;
}

/* ICON */
.trust-card i {
  font-size: 34px;
  color: #0a508e;
  margin-bottom: 12px;
}

/* TEXT */
.trust-card h6 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #000;
}

.trust-card p {
  font-size: 17px;
  margin: 0;
  color: #111;
}


/* HOVER */
.trust-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

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

@media (max-width: 576px) {
  .trust-wrapper {
    grid-template-columns: 1fr;
  }

  .trust-card.highlight {
    transform: none;
  }
}










/* SECTION BACKGROUND */
.about-luxury-bg {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
  overflow: hidden;
}

/* FINANCE SHAPES */
.finance-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.35;
}

.shape-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,80,142,0.25), transparent 70%);
  top: -80px;
  left: -80px;
}

.shape-wave {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(10,80,142,0.15), transparent 70%);
  bottom: -120px;
  right: -120px;
}

/* ABOUT BOX */
.about-box {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 22px;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.12);
}

/* LEFT */
.about-label {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #0a508e;
  display: inline-block;
  margin-bottom: 17px;
}

.about-heading {
  font-size: 38px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  position: relative;
  padding-bottom: 18px;
}

/* ACCENT LINE UNDER HEADING */
.about-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0a508e, #3b82f6);
  border-radius: 4px;
}

/* RIGHT TEXT */
.about-text {
  font-size: 17px;
  line-height: 1.9;
  color: #111;
  margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-box {
    grid-template-columns: 1fr;
    padding: 50px 35px;
  }

  .about-heading {
    font-size:24px !important; text-align: left !important;
  }
}







.pillars-animated {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

/* HEADER */
.pillars-title {
  font-size: 36px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 70px;
}

/* GRID */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.pillar-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* GLOW SHAPE */
.pillar-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(59,130,246,0.18),
    transparent 70%
  );
}

/* ICON */
.pillar-card img {
  width: 100%;
  margin-bottom: 22px;
  animation: floatIcon 3s ease-in-out infinite;
}

/* TEXT */
.pillar-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #0a508e;
  margin-bottom: 17px;
}

.pillar-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #111;
}

/* HOVER */
.pillar-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.18);
}

/* ICON FLOAT ANIMATION */
@keyframes floatIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

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

@media (max-width: 576px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}








.founder-clean {
  padding: 70px 0;
}

/* LAYOUT */
.founder-clean-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */
.founder-photo img {
  width: 100%;
  max-width: 380px;
  border-radius: 17px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* TEXT */
.founder-tag {
  font-size: 12px;
  letter-spacing: 2.5px;
  color: #8c8c8c;
  display: inline-block;
  margin-bottom: 18px;
}

.founder-title {
  font-size: 36px;
  font-weight: 600;
  color: #0a508e;
  margin-bottom: 28px;
}

.founder-title span {
  position: relative;
}

.founder-title span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #f5c542);
  border-radius: 2px;
}

/* PARAGRAPHS */
.founder-text {
  font-size: 17px;
  line-height: 1.9;
  color: #111;
  margin-bottom: 22px;
  max-width: 650px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .founder-clean-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

  .founder-photo img {
    margin: 0 auto;
  }

  .founder-text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .founder-title {
    font-size: 30px;
  }

  .founder-clean {
    padding: 110px 0;
  }
}






/* =========================
   OFFER / PRODUCT SECTION
========================= */

.offer-section {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    #f6f9ff 0%,
    #ffffff 65%
  );
}

/* Section Title */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0f1b2d;
  margin-bottom: 60px;
}

/* Grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

/* Card */
.offer-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 17px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(15, 27, 45, 0.12);
}

/* Image */
.offer-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.offer-card:hover img {
  transform: scale(1.05);
}

/* Content Panel */
.offer-content {
  padding: 28px 26px;
  color: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Title */
.offer-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;

}

/* Text */
.offer-content p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 4;   
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Color Variants */
.offer-content.blue {
  background: #4f74b8;
}

.offer-content.green {
  background: #4fa47a;
}

.offer-content.navy {
  background: #2f4b6e;
}

.offer-content.purple {
  background: #6a5fa8;
}

.offer-content.gold {
  background: #c9a24d;
}

.offer-content.teal {
  background: #3fa3a3;
}

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

  .offer-image img {
    height: 220px;
  }

  .section-title {
    font-size: 30px;
  }
}











/* SECTION */
.process-dark {
  padding: 120px 0;
  background: linear-gradient(135deg, #071a2f, #0c2d4f);
  color: #ffffff;
}

/* HEADER */
.process-dark-header {

  margin-bottom: 70px;
}

.pd-label {
  font-size: 17px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #ffd700;
  display: inline-block;
  margin-bottom: 12px;
}

.pd-title {
  font-size: 36px;
  font-weight: 600;
}

/* GRID */
.process-dark-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
}
/* BASE BOX */
.pd-box {
  position: relative;
  border-radius: 20px;
  padding: 40px 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  transition: all 0.4s ease;
  background-size: cover;
  background-position: center;
}

/* DARK OVERLAY (same for all) */
.pd-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 45, 0.75),
    rgba(10, 25, 45, 0.9)
  );
  z-index: 1;
}

/* CONTENT ABOVE OVERLAY */
.pd-box * {
  position: relative;
  z-index: 2;
}

/* DIFFERENT BACKGROUND IMAGES */
.bg-1 {
  background-image: url("../images/pitch-report.webp");
}

.bg-2 {
  background-image: url("../images/analys.jpg");
}

.bg-3 {
  background-image: url("../images/development.webp");
}

.bg-4 {
  background-image: url("../images/process-4.png");
}

.bg-5 {
  background-image: url("../images/review.png");
}

/* HOVER */
.pd-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.6);
}


/* STEP NUMBER */
.pd-step {
  font-size: 28px;
  font-weight: 600;
  color: #ffd700;
  display: inline-block;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

/* TEXT */
.pd-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.pd-box p {
  font-size: 17px;
  line-height: 1.6;
  color: #dbe6f3;
  position: relative; text-align: left;
  z-index: 2;
}

/* HOVER */
.pd-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .process-dark-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .process-dark-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-title {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .process-dark-grid {
    grid-template-columns: 1fr;
  }
}









/* SECTION */
.calculator-luxury {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(135deg, #071b30, #0c2f52);
  color: #ffffff;
}

.lux-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255,215,0,0.08),
    transparent 60%
  );
}

/* LAYOUT */
.lux-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: center;
}

/* LEFT TEXT */
.lux-tag {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #ffd700;
  display: inline-block;
  margin-bottom: 17px;
}

.lux-text h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 18px;
}

.lux-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #dbe6f3;
  max-width: 460px;
}

/* BOX AREA */
.lux-box-area {
  display: flex;
  gap: 40px;
}

/* COLUMN */
.lux-column {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* BOX */
.lux-box {
  position: relative;
  width: 235px;
  height: 145px;
  border-radius: 20px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
}

/* INNER SHAPE */
.lux-box::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  background: radial-gradient(
    circle,
    rgba(255,215,0,0.25),
    transparent 70%
  );
}

/* ICON */
.lux-box img {
  width: 42px;
  margin-bottom: 17px;
  position: relative;
  z-index: 2;
}

/* TEXT */
.lux-box span {
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* HOVER */
.lux-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 90px rgba(0,0,0,0.65);
}

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

  .lux-box-area {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .lux-box {
    width: 100%;
    max-width: 280px;
  }
}





/* =========================
   MODERN TESTIMONIAL
========================= */

.testimonial-modern{
  padding: 90px 0;
  background: #f8fafc;
}

.testimonial-row{
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 35px;
  box-shadow: 0 25px 50px rgba(15,23,42,0.12);
  position: relative;
}

/* Image */
.testimonial-img img{
  width: 120px;
  height: 120px;
  border-radius: 17px;
  object-fit: cover;
  border: 4px solid #0a508e;
}

/* Content */
.testimonial-content p{
  font-size: 17px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 15px;
}

.testimonial-content h5{
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.testimonial-content span{
  font-size: 17px;
  color: #64748b;
}

/* Arrows – close to card */
.tm-prev,
.tm-next{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0a508e;
  top: 50%;
  transform: translateY(-50%);
}

.tm-prev{
  left: -25px;   /* 👈 closer */
}

.tm-next{
  right: -25px;  /* 👈 closer */
}

.tm-prev .carousel-control-prev-icon,
.tm-next .carousel-control-next-icon{
  filter: brightness(0) invert(1);
}

/* Mobile */
@media (max-width: 768px){
  .testimonial-row{
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .tm-prev,
  .tm-next{
    display: none;
  }
}








.final-cta {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, #0a508e, #0f2f55);
  overflow: hidden;
}

/* TEXT */
.cta-title {
  font-size: 38px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-text {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  background: linear-gradient(90deg, #ffd700, #ffd700);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
background: #086d06;   color: #fff;
}

/* PULSE ANIMATION (ACTIVE FEEL) */
.pulse {
  animation: pulseGlow 2.2s infinite;
}

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

/* SHAPES */
.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
}

.cta-shape-1 {
  width: 220px;
  height: 220px;
  background: #ffd700;
  top: -80px;
  left: -80px;
}

.cta-shape-2 {
  width: 300px;
  height: 300px;
  background: #1e6fb8;
  bottom: -120px;
  right: -120px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-title {
    font-size: 30px;
  }

  .final-cta {
    padding: 90px 0;
  }
}













/* MODAL WRAPPER */
.book-call-modal{
  border-radius: 18px;
  overflow: hidden;
  border: none;
}

/* HEADER */
.book-call-modal .modal-header{
  display: block;
  border-bottom: none;
  padding: 30px 30px 10px;
}

.book-call-modal .modal-header h3{
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.book-call-modal .modal-header p{
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 0;
}

/* CLOSE BUTTON */
.book-call-modal .btn-close{
  position: absolute;
  top: 18px;
  right: 18px;
  opacity: 0.6;
}

.book-call-modal .btn-close:hover{
  opacity: 1;
}

/* BODY */
.book-call-modal .modal-body{
  padding: 20px 30px 30px;
}

/* INPUTS + SELECT */
.book-call-modal input,
.book-call-modal select{
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  color: #111827;
  background: #fff;
}

/* PLACEHOLDER */
.book-call-modal input::placeholder{
  color: #9ca3af;
}

/* FOCUS */
.book-call-modal input:focus,
.book-call-modal select:focus{
  outline: none;
  border-color: #0a508e;
  box-shadow: 0 0 0 3px rgba(10, 80, 142, 0.12);
}

/* SELECT ARROW CLEAN */
.book-call-modal select{
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
}

/* SUBMIT BUTTON */
.submit-btn{
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover{
  opacity: 0.95; 
  transform: translateY(-1px); color:#fff; background:#086d06 ;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 576px){
  .book-call-modal .modal-header{
    padding: 25px 20px 10px;
  }

  .book-call-modal .modal-body{
    padding: 15px 20px 25px;
  }
}














/* ================= FOOTER MAIN ================= */
.footer-main {
  background: linear-gradient(180deg, #0d2746 0%, #091c33 100%);
  color: #d6e0ee;
  padding: 80px 0 40px;
  font-size: 17px;
  line-height: 1.8;
}

/* ================= TOP SECTION ================= */
.footer-top {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
  position: relative;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 17px;
}

.footer-col p {
  color: #fff; font-size:17px;
  margin-bottom: 10px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* CONTACT LINKS */
.footer-col a {
  color: #ffffff;
  text-decoration: none; font-size: 17px;
}

.footer-col a:hover {
  color: #ffd700;
}

/* ================= DIVIDER ================= */
.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,215,0,0.6),
    transparent
  );
  margin: 40px 0 30px;
}

/* ================= DISCLAIMER ================= */
.footer-disclaimer {

  margin-bottom: 35px;
}

.footer-disclaimer p {
  color: #d6e0ee;
  margin-bottom: 12px; font-size:17px;
}

.footer-disclaimer .amfi {
  margin-top: 17px;
  color: #ffffff;
}

/* ================= BOTTOM ================= */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  color: #9fb1c7;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
}

/* CREDIT */
.footer-credit a {
  margin-left: 6px;
  padding: 6px 17px;
  background: rgba(255,215,0,0.15);
  border-radius: 20px;
  color: #ffd700;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-credit a:hover {
  background: rgba(255,215,0,0.25);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}








/* ===== FLOATING CONTACT LEFT ===== */
.floating-contact {
  position: fixed;
  left: 18px;
  bottom: 120px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.call-btn {
  background: #ed3237;
}

.whatsapp-btn {
  background: #25d366;
}

.float-btn:hover {
  transform: translateY(-4px);
}

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  right: 22px;
  bottom: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ed3237, #ed3237);
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 26px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  z-index: 999;
}

#backToTop:hover {
  transform: translateY(-4px);
}









.calculator-hero {
  position: relative;
  padding: 120px 0;
  background: url("../images/calc.jpg") center/cover no-repeat;
  color: #fff;
}

.calculator-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, 0.75);
}

/* MAIN LAYOUT */
.calculator-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

/* TEXT */
.calculator-text h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.calculator-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #dbe6f3;
}

/* =========================
   CALCULATOR GRID – DESKTOP
========================= */


.calculator-hero{
  position: relative;
  padding: 90px 0;
  background: url("../images/calc.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* OVERLAY (BACKGROUND ONLY) */
.calculator-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(2, 20, 40, 0.88),
    rgba(2, 20, 40, 0.88)
  );
  z-index: 1;
  pointer-events: none; /* 🔑 */
}

/* CONTENT ABOVE OVERLAY */
.calculator-hero .container{
  position: relative;
  z-index: 2;
}

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

.calculator-layout{
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  text-align: center;
}

/* TEXT */
.calculator-text h2{
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.calculator-text p{
  color: #cbd5e1;
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
}

/* =========================
   BOX AREA
========================= */

.calculator-box-area{
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: center;
}

/* ROW */
.calc-row{
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* LINK RESET */
.calc-link{
  text-decoration: none;
  position: relative;
  z-index: 3;
}

/* =========================
   CALC BOX
========================= */

.calc-box{
  width: 240px;
  height: 180px;
  background: #ffffff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  transition: all 0.35s ease;
  cursor: pointer;
  text-align: center;
}

/* ICON */
.calc-box img{
  width: 77px;
  height: auto;
}

/* TEXT */
.calc-box span{
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

/* HOVER EFFECT */
.calc-box:hover{
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 25px 60px rgba(10,80,142,0.45);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px){
  .calculator-text h2{
    font-size: 34px;
  }
}

@media (max-width: 768px){

  .calculator-layout{
    gap: 40px;
  }

  .calc-row{
    flex-direction: column;
    gap: 20px;
  }

  .calc-box{
    width: 100%;
    max-width: 340px;
    height: 170px;
  }
}



/* =========================
   MOBILE FIX (IMPORTANT)
========================= */

/* =========================
   MOBILE LAYOUT FIX
========================= */

@media (max-width: 767px){

  /* text upar, boxes niche */
  .calculator-layout{
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .calculator-text{
    width: 100%;
    text-align: left;
  }

  .calculator-box-area{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 17px;
  }

  .calc-column{
    width: 100%;
    gap: 17px;
  }

.calc-link {
        width: 100%;
        display: block;
        padding: 0px 40px;
    }

  .calc-box{
    width: 100%;
    min-height: 90px;
    padding: 18px;
  }
}






.hero-slider {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hero-slider img {
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
}










.testimonial-light {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc, #eef4fb);
  position: relative;
  overflow: hidden;
}

/* FINANCE SHAPES */
.testimonial-light::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(10,80,142,0.12), transparent 70%);
}

.testimonial-light::after {
  content: "";
  position: absolute;
  bottom: -140px;
  right: -140px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(10,80,142,0.1), transparent 70%);
}

/* HEADER */
.ts-label {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #0a508e;
}

.ts-title {
  font-size: 34px;
  font-weight: 600;
  color: #1e293b;
  margin-top: 8px;
}

/* TESTIMONIAL BOX */
.testimonial-box {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px 30px 30px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
  position: relative;
  z-index: 2;
}

/* QUOTE */
.quote-mark {
  font-size: 70px;
  color: #0a508e;
  font-weight: 700;
  display: block;

}

/* TEXT */
.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: #111;
  margin-bottom: 32px;
}

/* AUTHOR */
.testimonial-author h5 {
  font-size: 17px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 17px;
  color: #64748b;
}

/* CONTROLS – FAR FROM BOX */
.custom-prev,
.custom-next {
  width: 45px;
  height: 45px;
  background: #ed3237;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.custom-prev {
  left: -80px;
}

.custom-next {
  right: -80px;
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .custom-prev,
  .custom-next {
    display: none;
  }

  .testimonial-box {
    padding: 40px 26px;
  }
}








/* MODAL BACKDROP */
.modal-backdrop.show {
  backdrop-filter: blur(6px);
}

/* MODAL BOX */
.sip-modal {
  background: linear-gradient(180deg, #0b1d33, #071425);
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 40px 120px rgba(0,0,0,0.7);
  overflow: hidden;
}

/* HEADER */
.sip-modal-header {
  padding: 22px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sip-modal-header h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

/* BODY */
.sip-modal-body {
  padding: 30px;
}

/* FORM */
.sip-form {
  display: grid;
  gap: 18px;
}

.sip-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 17px 17px;
  color: #fff;
  font-size: 17px;
}

.sip-form input::placeholder {
  color: rgba(255,255,255,0.6);
}

.sip-form input:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255,255,255,0.12);
}

/* BUTTON */
.sip-calc-btn {
  margin-top: 10px;
  padding: 17px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
  background: linear-gradient(90deg, #2563eb, #1e40af);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sip-calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.4);
}

/* RESULT */
.sip-result {
  margin-top: 30px;
  padding: 24px;
  border-radius: 17px;
  background: linear-gradient(135deg, #0f2a44, #102e4a);
  text-align: center;
}

.sip-result span {
  font-size: 17px;
  color: #9ec5ff;
}

.sip-result h3 {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 600;
  color: #ffd700;
}

/* MOBILE */
@media (max-width: 576px) {
  .sip-modal-body {
    padding: 22px;
  }
}
















/****calculators******/


.edu-calculator-section{
  padding: 80px 0;
  background: #f6f9ff;
  font-family: 'Poppins', sans-serif;
}

.edu-wrapper{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.edu-left h2{
  margin-bottom: 25px;
  font-weight: 600;
}

.form-group{
  margin-bottom: 18px;
}
.sub-text{font-size:17px;}
.form-group label{
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="number"]{
  width: 100%;
  padding: 12px 17px;
  border-radius: 10px;
  border: 1px solid #dce3f1;
}

.form-group input[type="range"]{
  width: 100%;
}

.range-value{
  float: right;
  background: #0d6efd;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.calc-btn{
  width: 100%;
  margin-top: 20px;
  padding: 17px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #0a508e, #1e6fb8);;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}
.calc-btn:hover{  background:#086d06;
  color: #fff;}



.edu-right{
  background: linear-gradient(160deg,#0a2540,#0d3b66);
  color: #fff;
  border-radius: 17px;
  padding: 35px;
}

.edu-right h3{
  margin-bottom: 25px;
}

.result-row{
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.result-row.highlight strong{
  color: #ffd166;
  font-size: 20px;
}

.note{
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.8;
}

@media(max-width:992px){
  .edu-wrapper{
    grid-template-columns: 1fr;
  }
}













.lumpsum-calculator-section{
  padding: 80px 0;
  background: #f5f8ff;
  font-family: 'Poppins', sans-serif;
}

.lumpsum-wrapper{
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.lumpsum-left h2{
  margin-bottom: 25px;
  font-weight: 600;
}

.form-group{
  margin-bottom: 18px;
}

.form-group label{
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="number"]{
  width: 100%;
  padding: 12px 17px;
  border-radius: 10px;
  border: 1px solid #dce3f1;
}

.form-group input[type="range"]{
  width: 100%;
}

.range-value{
  float: right;
  background: #0d6efd;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.calc-btn{
  width: 100%;
  margin-top: 20px;
  padding: 17px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #0a508e, #1e6fb8);;
  color: #000;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}
.calc-btn:hover{  background:#086d06;
  color: #fff;}

.lumpsum-right{
  background: linear-gradient(160deg,#0a2540,#0d3b66);
  color: #fff;
  border-radius: 17px;
  padding: 35px;
}

.lumpsum-right h3{
  margin-bottom: 25px;
}

.result-row{
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.result-row.highlight strong{
  color: #ffd166;
  font-size: 20px;
}

.note{
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.8;
}

@media(max-width:992px){
  .lumpsum-wrapper{
    grid-template-columns: 1fr;
  }
}











.sip-calculator-section{
  padding: 80px 0;
  background: #f5f8ff;
  font-family: 'Poppins', sans-serif;
}

.sip-wrapper{
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: #ffffff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.sip-left h2{
  margin-bottom: 25px;
  font-weight: 600;
}

.form-group{
  margin-bottom: 18px;
}

.form-group label{
  display: block;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
}

.form-group small{
  font-size: 12px;
  color: #c0392b;
}

.form-group input[type="text"],
.form-group input[type="number"]{
  width: 100%;
  padding: 12px 17px;
  border-radius: 10px;
  border: 1px solid #dce3f1;
}

.form-group input[type="range"]{
  width: 100%;
}

.range-value{
  float: right;
  background: #0d6efd;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.calc-btn{
  width: 100%;
  margin-top: 20px;
  padding: 17px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #0a508e, #1e6fb8);;
  color: #000;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}
.calc-btn:hover{  background:#086d06;
  color: #fff;}

.sip-right{
  background: linear-gradient(160deg,#0a2540,#0d3b66);
  color: #fff;
  border-radius: 17px;
  padding: 35px;
}

.sip-right h3{
  margin-bottom: 25px;
}

.result-row{
  display: flex;
  justify-content: space-between;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.result-row.highlight strong{
  color: #ffd166;
  font-size: 20px;
}

.note{
  margin-top: 20px;
  font-size: 12px;
  opacity: 0.8;
}

@media(max-width:992px){
  .sip-wrapper{
    grid-template-columns: 1fr;
  }
}













.retirement-section{
  padding: 80px 0;
  background: #f6f8fc;
  font-family: Poppins, sans-serif;
}

.ret-container{
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  padding: 45px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.ret-form h2{
  margin-bottom: 25px;
}

.form-group{
  margin-bottom: 17px;
}

.form-group label{
  font-size: 17px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.form-group small{
  font-size: 12px;
  color: #c0392b;
}

.form-group input{
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #dcdfe6;
}

.range-group span{
  float: right;
  background: #c79200;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
}

.calc-btn{
  width: 100%;
  margin-top: 20px;
  padding: 17px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #0a508e, #1e6fb8);;
  color: #000;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}
.calc-btn:hover{  background:#086d06;
  color: #fff;}

.ret-result{
  background: #0d1b2a;
  color: #fff;
  border-radius: 17px;
  padding: 35px;
}

.ret-result h3{
  margin-bottom: 20px;
}

.result-row{
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.result-row.highlight strong{
  color: #ffd166;
  font-size: 18px;
}

.note{
  font-size: 12px;
  margin-top: 20px;
  opacity: 0.85;
}

@media(max-width: 992px){
  .ret-container{
    grid-template-columns: 1fr;
  }
}











/* =========================
   WEDDING CALCULATOR SECTION
========================= */

.wedding-section {
  background: #f4f7fb;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.wed-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

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

.wed-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.wed-form h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #0b2545;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 6px;
  color: #333;
}

.form-group input[type="text"],
.form-group input[type="number"] {
  width: 100%;
  padding: 12px 17px;
  border-radius: 8px;
  border: 1px solid #d6dbe3;
  font-size: 17px;
}

.form-group input:focus {
  outline: none;
  border-color: #0b5ed7;
  box-shadow: 0 0 0 2px rgba(11,94,215,0.15);
}

.form-group small {
  font-size: 12px;
  color: #d60000;
}

/* =========================
   RANGE SLIDERS
========================= */

.range-group {
  position: relative;
}

.range-group span {
  position: absolute;
  right: 0;
  top: 0;
  background: #b8860b;
  color: #fff;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 6px;
}

.range-group input[type="range"] {
  width: 100%;
  margin-top: 12px;
  appearance: none;
  height: 5px;
  background: #dce1ea;
  border-radius: 5px;
  cursor: pointer;
}

.range-group input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: #0b5ed7;
  border-radius: 50%;
  cursor: pointer;
}

/* =========================
   CALCULATE BUTTON
========================= */

.calc-btn{
  width: 100%;
  margin-top: 20px;
  padding: 17px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #0a508e, #1e6fb8);;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}
.calc-btn:hover{  background:#086d06;
  color: #fff;}

/* =========================
   RIGHT RESULT PANEL
========================= */

.wed-result {
  background: linear-gradient(160deg, #081a2f, #0b2545);
  padding: 40px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25); height:fit-content;
}

.wed-result h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 15px;
}

.result-row strong {
  font-weight: 600;
  color: #ffd700;
}

.result-row.highlight strong {
  font-size: 17px;
}

.note {
  margin-top: 25px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 992px) {
  .wed-container {
    grid-template-columns: 1fr;
  }

  .wed-result {
    margin-top: 20px;
  }
}
















/* ===== DREAM VACATION CALCULATOR ===== */

.vacation-section{
  background:#f4f7fb;
  padding:80px 0;
  font-family:'Poppins',sans-serif;
}

.vacation-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:flex-start;
}

/* LEFT FORM */
.vacation-form{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.vacation-form h2{
  font-size:28px;
  font-weight:600;
  margin-bottom:30px;
  color:#0b2545;
}

.form-group{
  margin-bottom:22px;
}

.form-group label{
  display:block;
  font-weight:500;
  margin-bottom:6px;
  color:#222;
}

.form-group input{
  width:100%;
  padding:12px 17px;
  border-radius:8px;
  border:1px solid #dcdcdc;
  font-size:15px;
}

.form-group small{
  color:#e53935;
  font-size:12px;
}

.range-group{
  position:relative;
}

.range-group span{
  position:absolute;
  right:0;
  top:0;
  background:#b8860b;
  color:#fff;
  font-size:12px;
  padding:4px 10px;
  border-radius:6px;
}

.range-group input[type=range]{
  width:100%;
  margin-top:17px;
  accent-color:#ed3237;
}

.calc-btn{
  width: 100%;
  margin-top: 20px;
  padding: 17px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #0a508e, #1e6fb8);;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}
.calc-btn:hover{  background:#086d06;
  color: #fff;}
/* RIGHT RESULT */
.vacation-result{
  background:linear-gradient(160deg,#0b1f33,#081424);
  padding:40px;
  border-radius:22px;
  color:#fff;
  box-shadow:0 30px 70px rgba(0,0,0,.35);
}

.vacation-result h3{
  font-size:24px;
  margin-bottom:30px;
}

.result-row{
  display:flex;
  justify-content:space-between;
  padding:17px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
  font-size:15px;
}

.result-row strong{
  color:#ffcc33;
  font-weight:600;
}

.result-row.highlight strong{
  color:#00e5ff;
}

.note{
  margin-top:25px;
  font-size:12px;
  opacity:.75;
}

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







.budget-section { padding: 40px 0; }

.budget-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

.budget-form, .budget-result {
  border-radius: 18px;
  padding: 30px;
}

.budget-form {
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.budget-form input,
.budget-form select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.btn {
  width: 100%;
  margin-top: 20px;
  padding: 17px;
  border-radius: 30px;
  background: linear-gradient(90deg, #0a508e, #1e6fb8);
  color: #fff; font-size:18px;
  border: none;
}
.btn:hover{  background:#086d06; color: #fff;}

.pdf-btn { background: linear-gradient(90deg,#16a34a,#22c55e); }

.budget-result {
  background: linear-gradient(180deg,#0f172a,#020617);
  color: #fff;
}

.result-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}



/* =========================
   RESPONSIVE – BUDGET SECTION
========================= */

/* Tablet & small laptops */
@media (max-width: 992px) {

  .budget-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .budget-form,
  .budget-result {
    padding: 25px;
  }

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

/* Mobile devices */
@media (max-width: 576px) {

  .budget-section {
    padding: 25px 10px;
  }

  .budget-form,
  .budget-result {
    padding: 20px;
    border-radius: 17px;
  }

  .budget-form h2 {
    font-size: 20px;
    line-height: 1.3;
  }

  .budget-result h3 {
    font-size: 18px;
  }

  .budget-form input,
  .budget-form select {
    padding: 10px;
    font-size: 17px;
  }

  .result-row {
    font-size: 17px;
  }

  .btn {
    padding: 12px;
    font-size: 17px;
    border-radius: 25px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .note {
    font-size: 12px;
    line-height: 1.4;
  }
}

/* Very small phones */
@media (max-width: 380px) {

  .budget-form h2 {
    font-size: 18px;
  }

  .budget-result h3 {
    font-size: 17px;
  }

  .result-row span,
  .result-row strong {
    font-size: 13px;
  }
}







.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.popup-box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  width: 320px;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  z-index: 10000;
}


.popup-box input {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
}


.tradingview-widget-container {
  width: 100%;
  height: 48px;
  overflow: hidden;
  background: #ffffff;
}

.nifty-snapshot {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #f8fafc;
  font-size: 17px;
  font-weight: 500;
  color: #0f172a;
  border-bottom: 1px solid #e5e7eb;
}



.client-form-box{
  margin-top:20px;
  padding:22px;
  border-radius:16px;
  background:#f8fafc;
  border:1px solid #e5e7eb;
}

.client-form-box h4{
  margin-bottom:6px;
  color:#0f172a;
}

.client-form-box .form-text{
  font-size:14px;
  color:#475569;
  margin-bottom:14px;
}

.client-form-box input{
  width:100%;
  padding:12px;
  margin-bottom:10px;
  border-radius:10px;
  border:1px solid #cbd5f5;
}


/* ===============================
   CLIENT FORM SECTION
================================ */


#clientFormSection {
  margin-top: 30px;
  padding: 25px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  display: none; color:#111; text-align: left;
}

/* Heading text above form */
#eduMessage {
  margin-top: 20px;
  padding: 16px 18px;
  background: linear-gradient(90deg, #ecfeff, #f0fdf4);
  border-left: 5px solid #22c55e;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
color:#111;
  display: none;
}

/* Form layout */
#clientFormSection input {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 14px;
}

#clientFormSection input:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.15);
}

/* Submit Button */
#clientFormSection button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
}

#clientFormSection button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
  #clientFormSection {
    padding: 20px;
  }
}




/* ===============================
   SIP MESSAGE
================================ */
.edu-message {
  display: none;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
  background: #ecfdf5;
  color: #065f46;
  border-left: 5px solid #10b981;
}

/* ===============================
   CLIENT FORM (INLINE)
================================ */
.client-form {
     margin-top: 30px;
    padding: 25px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    display: none;
    color: #111;
    text-align: left;
}


.client-form h4 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 600; text-align: left;
}

.client-form p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.client-form input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 8px;
border: 1px solid #cbd5e1;
  outline: none;
  font-size: 14px;
}

.client-form input::placeholder {
  color: #999;
}

.client-form .btn {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #16a34a, #22c55e);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;

}

.client-form .btn:hover {
  background: #1e40af;
}


.custom-ticker {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 22s linear infinite;
  font-size: 14px;
  font-weight: 500;
  color: #222;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}







.form-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #333;
  background-color: #fff;

  border: 1px solid #d0d7de;
  border-radius: 8px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;

  cursor: pointer;
  transition: all 0.25s ease;
}

/* Hover */
.form-select:hover {
  border-color: #2c8f6f;
}

/* Focus */
.form-select:focus {
  outline: none;
  border-color: #2c8f6f;
  box-shadow: 0 0 0 3px rgba(44, 143, 111, 0.15);
}

/* Disabled option (placeholder look) */
.form-select option[disabled] {
  color: #999;
}

/* Mobile fix */
@media (max-width: 576px) {
  .form-select {
    font-size: 14px;
    padding: 12px 14px;
  }
}
