:root{--purple:#c7a00c;--soft:#f7f5ff;}
body{font-family:Inter,sans-serif;background:#fff;color:#333;}
h1,h2,h3{font-family:'Playfair Display',serif;}
a {text-decoration: none;}
.navbar{box-shadow:0 2px 15px rgba(0,0,0,.05);}
/* Navbar Background */
.navbar {
  background-color: #c7a00c !important;
}

/* Brand Text */
.navbar-brand {
  color: #ffffff !important;
}

/* Menu Links */
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Hover Effect */
.navbar-nav .nav-link:hover {
  color: #ffd700 !important; /* Gold highlight */
}

/* Active Menu */
.navbar-nav .nav-link.active {
  color: #ffdd57 !important;
}

/* Mobile Toggler Icon Color */
.navbar-toggler {
  border-color: rgba(255,255,255,0.6);
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}
/* Primary Button */
.btn-main-enhanced {
  background-color: var(--main-color); /* your existing color */
  border: 2px solid #c7a00c !important;
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  border: none;
}

/* Hover Effect */
.btn-main-enhanced:hover {
  background-color: #000; /* OR darker shade of your main color */
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
  color: #fff;
}


/* Outline Button */
.btn-outline-main-enhanced {
  border: 2px solid #c7a00c !important;
  color: var(--main-color);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  background: transparent;
}

/* Hover Effect */
.btn-outline-main-enhanced:hover {
  background-color: var(--main-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Smooth hover lift + glow */
.animated-btn {
  transition: all 0.3s ease;
  position: relative;
}

.animated-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

/* Icon slide animation */
.animated-btn:hover i {
  transform: translateX(4px);
  transition: transform 0.3s ease;
}

/* Pulse animation for CTA button */
.pulse-btn {
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(88, 56, 7, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(102, 51, 8, 0.6);
  }
  100% {
    box-shadow: 0 0 0 rgba(97, 62, 10, 0.4);
  }
}

/* Base animation */
.animated-btn {
  transition: all 0.3s ease;
  position: relative;
}

/* Default floating motion */
.float-btn {
  animation: floatMove 3s ease-in-out infinite;
}

@keyframes floatMove {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Glow breathing effect */
.pulse-btn {
  animation: pulseGlow 2s infinite, floatMove 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 rgba(88, 56, 7, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(102, 51, 8, 0.6);
  }
  100% {
    box-shadow: 0 0 0 rgba(97, 62, 10, 0.4);
  }
}

/* Hover lift + glow */
.animated-btn:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 28px rgba(102, 54, 15, 0.4);
}

/* Icon slide on hover */
.animated-btn i {
  transition: transform 0.3s ease;
}

.animated-btn:hover i {
  transform: translateX(6px);
}

.icon-slide {
  display: inline-block;
  animation: slideArrow 1.6s infinite ease-in-out;
}

@keyframes slideArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.about-text {
  /* max-height: 360px; */
  /* overflow-y: auto; */
  text-align: justify;
  padding-right: 8px;
}

:root {
  --brand: #c7a00c;
  --soft: #f7f5ff;
}

/* Section Wrapper */
.book-launch-section {
  background: linear-gradient(135deg, #f7f5ff, #ffffff);
  padding: 80px 0;
  font-family: "Segoe UI", sans-serif;
}

/* Card */
.book-launch-card {
  background: #fff;
  border-radius: 24px;
  padding: 45px 40px;
  box-shadow: 0 18px 45px rgba(88, 13, 13, 0.08);
  max-width: 950px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

/* Accent Glow */
.book-launch-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: rgba(94, 50, 9, 0.12);
  border-radius: 50%;
}

/* Title */
.book-launch-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 20px;
}

/* Body Text */
.book-launch-text {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
}

/* Highlight Box */
.book-launch-highlight {
  margin-top: 25px;
  background: var(--soft);
  border-left: 5px solid var(--brand);
  padding: 18px 22px;
  border-radius: 12px;
}

/* Labels */
.book-launch-label {
  font-weight: 700;
  color: var(--brand);
}

.service-unique {
  display: flex;
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.service-icon-huge {
  width: 150px;
  height: 150px;
  border-radius: 24px;
  background: rgba(87, 44, 9, 0.12);
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  flex-shrink: 0;
}

.service-body h3 {
  font-weight: 900;
  margin-bottom: 6px;
}

.service-body  {
 border-radius: 18px;
 border: 2px solid #c7a00c;
 padding: 8px;
}

.service-tagline {
  color: #666;
  font-size: 16px;
  margin-bottom: 16px;
}

.service-text p {
  margin-bottom: 12px;
  line-height: 1.75;
  position: relative;
  padding-left: 18px;
}

.service-text p::before {
  content: "";
  width: 4px;
  height: 100%;
  background: var(--main-color);
  position: absolute;
  left: 0;
  top: 3px;
  border-radius: 4px;
  opacity: 0.4;
}

.highlight-service {
  background: rgba(123,47,247,0.05);
  padding: 60px 35px;
  border-radius: 28px;
}

.service-icon-huge {
  width: 250px;
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f6f1ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-huge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}




.text-purple { color: #c7a00c; }
.bg-purple { background: #c7a00c; }
.border-purple { border-color: #c7a00c !important; }

.icon-lg i {
  font-size: 2.5rem;
}

.feature-box:hover {
  transform: translateY(-6px);
  transition: .3s ease;
}


.text-purple { color: #c7a00c; }
.bg-purple { background: #c7a00c; }
.border-purple { border-color: #c7a00c !important; }

/* Bigger Icons */
.icon-lg i {
  font-size: 2.8rem;
}

/* Stronger Card Look */
.feature-box {
  border: 1px solid rgba(111, 45, 189, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 
              0 2px 8px rgba(111, 45, 189, 0.12);
  transition: all 0.3s ease;
  background: #fff;
}

/* Hover Premium Lift */
.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12),
              0 4px 12px rgba(111, 45, 189, 0.18);
}

/* Main Content Highlight Boxes */
.border-start.border-4.border-purple {
  border-left-width: 5px !important;
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
  border-radius: 16px;
}

/* Coming Soon CTA Box */
.bg-purple {
  box-shadow: 0 15px 45px rgba(111, 45, 189, 0.35);
}


/* Default (desktop stays same) */
.service-unique {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Ensure image behaves properly */
.service-icon-huge img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ✅ Mobile Fix */
@media (max-width: 767px) {
  .service-unique {
    flex-direction: column;   /* stack instead of side-by-side */
    text-align: center;       /* optional: keeps it neat */
  }

  .service-icon-huge {
    width: 100%;
    margin-bottom: 15px;
  }

  .service-body {
    width: 100%;
  }
}

/* Section Backgrounds */
.early-section {
    background: #ffffff;
}

.services-section {
    background: #f9f9f9;
}

/* Card Design */
.custom-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border-left: 6px solid #C7A10A;
    transition: 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(199, 161, 10, 0.25);
}

/* Heading Style */
.section-heading {
    color: #000000;
    font-weight: 700;
    position: relative;
}

.section-heading::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #C7A10A;
    display: block;
    margin-top: 10px;
}

/* Paragraph Styling */
.custom-card p {
    color: #000000;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}
/* Section Background */
.services-full-section {
    background: #fdf8f1; /* light off-white */
}

/* Card Design */
.full-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 25px;
    box-shadow: 0 12px 35px rgba(199, 161, 10, 0.18);
    border-left: 6px solid #C7A10A;
    transition: 0.3s ease;
}

.full-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(199, 161, 10, 0.25);
}

/* Heading Style */
.full-card .section-title {
    color: #C7A10A;
    font-weight: 800;
    font-size: 30px;
    position: relative;
}

.full-card .section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #C7A10A;
    display: block;
    margin-top: 12px;
    border-radius: 2px;
}

/* Paragraph Styling */
.full-card p {
    color: #000000;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.hero{background:linear-gradient(135deg,#faf7ff,#ffffff);padding:110px 0;}
.badge-soft{background:#f3be119d;color:#c7a00c !important;}
.btn-main{background:#c7a00c;color:#fff;border-radius:12px;padding:12px 26px;}
.btn-outline-main{border:2px solid #c7a00c;color:#c7a00c;border-radius:12px;padding:12px 26px;}
.section{padding:90px 0;}
.service-card{background:#fff;border-radius:20px;padding:40px;text-align:center;box-shadow:0 15px 40px rgba(0,0,0,.06);transition:.3s;}
.service-card:hover{transform:translateY(-6px);}
.service-icon{width:90px;height:90px;margin:0 auto 20px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:38px;color:#fff;background:linear-gradient(135deg,#c7a00c,#f3be119d);}
.price{color:#c7a00c;font-weight:700;font-size:22px;}
.testimonial{background:#fff;border-radius:18px;padding:28px;box-shadow:0 10px 30px rgba(0,0,0,.05);}
.contact-box{background:#fff;border-radius:22px;padding:35px;box-shadow:0 15px 40px rgba(0,0,0,.07);}
footer{background:#111827;color:#cbd5e1;padding:40px 0;}