/* Vedanya Design System */
@import url('https://fonts.googleapis.com/css2?family=STIX+Two+Text:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

:root {
  --background: hsl(40, 33%, 98%);
  --foreground: hsl(222, 47%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(222, 47%, 15%);
  --primary: hsl(222, 47%, 25%);
  --primary-foreground: hsl(40, 33%, 98%);
  --secondary: hsl(40, 50%, 72%);
  --secondary-foreground: hsl(222, 47%, 15%);
  --muted: hsl(40, 20%, 94%);
  --muted-foreground: hsl(222, 20%, 45%);
  --border: hsl(40, 20%, 88%);
  --radius: 0.75rem;
  --vedanya-blue: hsl(222, 47%, 25%);
  --vedanya-gold: hsl(40, 50%, 72%);
  --vedanya-cream: hsl(40, 33%, 96%);
  --vedanya-dark: hsl(222, 47%, 15%);
  --white: #FFFFFF;
  --shadow-soft: 0 4px 20px -4px hsla(222, 47%, 15%, 0.08);
  --shadow-card: 0 8px 30px -8px hsla(222, 47%, 15%, 0.12);
  --shadow-gold: 0 4px 20px -4px hsla(40, 50%, 72%, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'STIX Two Text', serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'STIX Two Text', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  padding: 10px ;
  background: #222F5F;
}

.navbar.scrolled {
  background: #222F5F;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo {
  width: 17%;
  font-weight: 700;
  font-style: italic;
  color: var(--primary-foreground);
  transition: color 0.3s;
}

.navbar.scrolled .navbar-logo {
  color: var(--primary);
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 2rem;
  color: #fff;

}

@media (min-width: 768px) {
  .navbar-links {
    display: flex;
  }
}

.navbar-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-foreground);
  transition: color 0.3s;
}

.navbar.scrolled .navbar-link {
  color: #fff;
}

.navbar-link:hover {
  color: var(--secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  opacity: 0.9;
}

.modal-btn{
  background: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: var(--shadow-gold);
}



.navbar-phone{
  margin-right: 20px;
  color: #FFFFFF;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: var(--shadow-gold);
}

.btn-secondary:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--primary-foreground);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--primary-foreground);
}

.navbar.scrolled .mobile-menu-btn {
  color: var(--foreground);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--card);
  padding-top: 6rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.mobile-menu-link {
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  border-bottom: 1px solid var(--border);
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    hsla(222, 47%, 15%, 0.95) 0%, 
    hsla(222, 47%, 25%, 0.80) 50%, 
    hsla(222, 47%, 25%, 0.60) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-text {
  color: var(--primary-foreground);
}

.hero-subtitle {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

.hero-title span {
  font-style: italic;
  color: var(--secondary);
}

.hero-description {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 36rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--background), transparent);
  z-index: 9;
}

/* ========== FORM ========== */
.form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
  .form-card {
    padding: 2rem;
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(222, 47%, 25%, 0.1);
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section-muted {
  background: var(--muted);
}

.section-primary {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--vedanya-dark);
  color: var(--primary-foreground);
}

.section-header {
  max-width: 48rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.9rem;
  }
}

.section-title span {
  font-style: italic;
  color: var(--secondary);
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* ========== CARDS ========== */
.card-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .card-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.card-body {
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .card-body-lg {
    padding: 2rem;
  }
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 20px;
}

.card-subtitle {
  font-size: 0.875rem;
  font-weight: 500;
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.card-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.card-text-lg {
  font-size: 1rem;
}

/* ========== CAROUSEL ========== */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: var(--shadow-soft);
}

.carousel:hover .carousel-nav {
  opacity: 1;
}

.carousel-nav:hover {
  background: var(--card);
}

.carousel-prev {
  left: 0.5rem;
}

.carousel-next {
  right: 0.5rem;
}

.carousel-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.375rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--secondary);
  width: 1rem;
  border-radius: 0.25rem;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--foreground);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* ========== CTA SECTION ========== */
.cta-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: hsla(40, 50%, 72%, 0.1);
  filter: blur(80px);
}

.cta-blob-1 {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.cta-blob-2 {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-text {
  color: var(--primary-foreground);
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-foreground);
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-title span {
  font-style: italic;
  color: var(--secondary);
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--secondary);
  border-radius: 50%;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--vedanya-dark);
  color: var(--primary-foreground);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 2fr;
  }
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.footer-about {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--secondary);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mt-12 { margin-top: 3rem; }

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animation-delay-1 { animation-delay: 0.1s; }
.animation-delay-2 { animation-delay: 0.2s; }
.animation-delay-3 { animation-delay: 0.3s; }
.animation-delay-4 { animation-delay: 0.4s; }


/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  position: relative;
  animation: scaleIn 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--background-alt);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--border);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background: rgba(46, 91, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* VIDEO TESTIMONIAL SLIDER */
.video-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.video-slider {
  overflow: hidden;
  width: 100%;
}

.video-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease-in-out;
}

.video-card {
  min-width: calc(100% / 3);
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

/* VIDEO HEIGHT */
.video-card video {
  width: 100%;
  height: 220px;              /* 👈 video height */
  object-fit: cover;          /* keeps video cropped nicely */
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

/* TEXT ALIGNMENT */
.video-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 10px;           /* pushes text to bottom nicely */
}

.video-card p {
  font-size: 0.875rem;
  color: #666;
}
/* SLIDER BUTTONS */
.slider-btn {
  background: #002b5c;
  color: #fff;
  border: none;
  font-size: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= BUTTON FIX ================= */

.slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;

  background: #002b5c;
  color: #fff;
  font-size: 22px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Left button */
.slider-btn.prev{
  left: -80px;
}

/* Right button */
.slider-btn.next{
  right: -80px;
}

/* Hover effect */
.slider-btn:hover{
  background: var(--secondary);
  color: var(--primary);
}






@media (max-width: 992px) {
  .video-card {
    height: 340px;
  }

  .video-card video {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .video-card {
    height: 320px;
  }

  .video-card video {
    height: 180px;
  }
}

/* 5 CARDS PER ROW */
.card-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .card-grid-5 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .card-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 480px) {
  .card-grid-5 {
    grid-template-columns: 1fr;
  }
}

.navbar-phone {
  display: inline-flex;       /* not flex */
  align-items: center;
  gap: 6px;
  line-height: 1;             /* prevents height expansion */
  white-space: nowrap;
}

.navbar-phone svg {
  display: block; 
  flex-shrink: 0;            /* removes inline SVG baseline issue */
}