/* Color system and design tokens */
:root {
  --primary-color: #252179;
  --accent-color: #28A4E3; /* single accent */
  --background-color: #f8faff;
  --surface-color: #ffffff;
  --text-color: #0f172a;
  --transition-base: all 0.3s ease-in-out;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* Hero sections */
.hero.bg-image {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-mockup-wrapper {
  position: relative;
  z-index: 3;
  padding-bottom: 2rem;
}

.hero-mockup {
  position: relative;
  padding-top: 2rem;
}

.hero-mockup-img {
  width: 100%;
  max-width: 750px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: var(--transition-base);
}

@media (max-width: 991.98px) {
  .hero.bg-image {
    min-height: auto;
    padding-bottom: 2rem;
  }
  
  .hero-mockup-wrapper {
    padding-bottom: 1rem;
  }
  
  .hero-mockup-img {
    max-width: 90%;
  }
}
  

.bg-image::before {
  content: '';
  position: absolute;
  inset: 0; /* covers entire hero */
  background-image: url('../images/3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px); 
  transform: scale(1.05); 
  z-index: -1; /* behind the content */
}


/* Features hero section */


.features-hero {
  position: relative;
  min-height: 40vh;
  overflow: hidden;
  color: white; /* text color */
}

.features-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/1.jpeg') center/cover no-repeat;
  filter: blur(8px) brightness(0.9); 
  transform: scale(1.05);
  z-index: 0;
}

.features-hero::after {
  content: '';
  position: absolute;
  inset: 0;
   background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.features-hero .hero-content {
  position: relative; 
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: #ffffff;
}


.features-mockup-wrapper {
  position: relative;
  height: 100%;
  margin-bottom: -60%;
}

.mockup-container {
  position: relative;
  padding-top: 0rem;
}

.features-mockup-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-left: auto;
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
}

@media (min-width: 992px) {
  .features-mockup-img {
    max-width: 600px;
  }
  
  .features-mockup-wrapper {
    margin-bottom: -35%;
  }
}

@media (max-width: 991.98px) {
  .features-hero {
    min-height: auto;
  }
  
  .features-mockup-wrapper {
    margin-bottom: -20%;
    text-align: center;
  }
  
  .features-mockup-img {
    max-width: 320px;
    margin: 0 auto;
    transform: none;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(145deg, rgba(37, 33, 121, 0.95), rgba(40, 164, 227, 0.85)); */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Google Form integration */
.google-form {
  min-height: 640px;
  width: 100%;
  background: var(--surface-color);
  border-radius: var(--radius);
}

/* Blog card hover effects */
.hover-lift {
  transition: var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.hover-lift-sm:hover {
  transform: translateY(-2px);
}

/* Icon boxes for contact page */
.icon-box {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.icon-box:hover {
  transform: scale(1.1);
}

.icon-box i {
  font-size: 1.5rem;
}

/* Contact form styles */
.form-control, .form-select {
  padding: 0.75rem 1rem;
}

.input-group-text {
  padding: 0.75rem 1rem;
  color: var(--text-color);
}

/* Navbar styles */
.modern-nav {
  background: var(--surface-color);
  /* box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08); */
}

.modern-nav .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-color);
  transition: var(--transition-base);
}

.modern-nav .nav-link:hover {
  color: var(--primary-color);
}

/* CTA section styles */
.cta-wrapper {
  background: linear-gradient(145deg, var(--surface-color) 0%, var(--surface-color) 60%, rgba(40, 164, 227, 0.1) 100%);
  border: 1px solid rgba(37, 33, 121, 0.1);
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  position: relative;
}

.cta-content {
  padding: 4rem 3rem;
}

@media (max-width: 768px) {
  .cta-content {
    padding: 3rem 2rem;
    text-align: center;
  }
}

.cta-mockup-wrapper {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.cta-mockup {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

.mockup-image {
  width: 100%;
  height: auto;
  max-width: 300px;
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-base);
}

.mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(40, 164, 227, 0.2) 0%, rgba(37, 33, 121, 0.1) 50%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .cta-mockup-wrapper {
    padding: 2rem 1rem;
  }
  
  .mockup-image {
    max-width: 250px;
    margin: 0 auto;
  }

  .mockup-glow {
    width: 120%;
    height: 120%;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--background-color);
  color: var(--text-color);
}

/* Utilities */
.bg-surface {
  background: var(--surface-color);
}
.shadow-soft {
  box-shadow: var(--shadow-soft);
}
.rounded-3 {
  border-radius: var(--radius-sm) !important;
}
.rounded-4 {
  border-radius: var(--radius-md) !important;
}
.rounded-5 {
  border-radius: var(--radius-lg) !important;
}

a {
  text-decoration: none;
}


/* Navbar: modern design */
.modern-nav {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
 
}

.navbar .navbar-brand {
  color: var(--text-color);
}

/* Theme Section Styles */
.theme-row {
  transition: transform 0.3s ease;
}

.theme-row:hover {
  transform: translateY(-8px);
}

.theme-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.blue-theme {
  background: rgba(37, 33, 121, 0.1);
  color: var(--primary-color);
}

.warm-theme {
  background: rgba(234, 88, 12, 0.1);
  color: #EA580C;
}

.accent-theme {
  background: rgba(40, 164, 227, 0.1);
  color: var(--accent-color);
}

.dark-theme {
  background: rgba(15, 23, 42, 0.1);
  color: var(--text-color);
}

.theme-preview {
  position: relative;
  transition: transform 0.3s ease;
 
}

.theme-preview img {
  transition: transform 0.3s ease;
}

.theme-preview:hover img {
  transform: scale(1.02);
}

.dark-preview {
  padding: 1.5rem !important;
}


/* How It Works Page Styles */
.bg-gradient-primary {
 background: linear-gradient(135deg, #007BFF 0%, #FF8C42 100%);

}

.step-indicator {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;  
  color: #ffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  
  background-color: var(--primary-color);
}

.app-screen {
  transition: transform 0.3s ease;
}

.app-screen:hover {
  transform: translateY(-5px);
}

.shadow-inner {
  box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.05);
}

.step-card {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: var(--surface-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);

}


.navbar .brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--background-color);
  border-radius: 8px;
}

.navbar .brand-dot {
  display: inline-block;
  width: 12px;
  height: 12px; 
  border-radius: 50%;
}

.navbar .nav-link {
  color: var(--text-color);
  opacity: 0.8;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.navbar .nav-link:hover {
  opacity: 1;
  color: var(--primary-color);
  text-decoration: none;
}

.navbar .nav-link.active {
  color: var(--primary-color);
  opacity: 1;
}

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



.blog-detail-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.blog-detail-card {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 800px;
  background: var(--surface-color);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.blog-detail-header {
  padding: 1rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.blog-detail-close {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--text-color);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.blog-detail-close:hover {
  opacity: 1;
}

.blog-detail-content {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.blog-detail-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 2rem;
}

.blog-detail-text {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Show blog detail card and overlay */
.blog-detail-active .blog-detail-overlay {
  opacity: 1;
  visibility: visible;
}

.blog-detail-active .blog-detail-card {
  transform: translateX(0);
}

.btn-fill-outline {
  transition: all 0.3s ease;
  border: 1.5px solid transparent;
}

.btn-fill-outline:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}


/* Buttons */
.btn:hover {
  text-decoration: none;
}
.btn-primary {
  --bs-btn-bg: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-focus-shadow-rgb: 30, 136, 255;
}
.btn-outline-primary {
  --bs-btn-color: var(--primary-color);
  --bs-btn-border-color: var(--primary-color);
  --bs-btn-hover-bg: var(--primary-color);
  --bs-btn-hover-border-color: var(--primary-color);
  --bs-btn-active-bg: var(--primary-color);
}

/* Hero */
.app-stores {
  margin-top: 1rem;
}

.app-store-link {
  transition: transform 0.2s ease;
  display: inline-block;
}

.app-store-link:hover {
  transform: translateY(-2px);
}

.app-store-badge {
  filter: drop-shadow(0 4px 12px rgba(15, 23, 42, 0.08));
}

.gradient-hero {
  background: 
    linear-gradient(180deg, rgba(0, 119, 255, 0.08) 30%, rgba(255, 255, 255, 0) 80%),
    url("images/2.jpeg") center/cover no-repeat;
}

/* Feature cards */
.feature-card .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: rgba(30, 136, 255, 0.12);
  color: var(--primary-color);
  font-size: 20px;
  z-index: 1;
}

/* Steps */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
}

.step-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 136, 255, 0.1);
}

.step-icon span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.25rem;
}

.step-content {
  padding-top: 0.5rem;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 44px;
  left: 21px;
  width: 2px;
  height: calc(100% + 1rem);
  background: linear-gradient(180deg, 
    var(--primary-color) 0%, 
    rgba(30, 136, 255, 0.1) 100%
  );
}

.process-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

/* Badge Tag */
.badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(30, 136, 255, 0.08);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
}

.text-center .badge-tag {
  margin-left: auto;
  margin-right: auto;
}

.text-end .badge-tag {
  margin-left: auto;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  margin-right: 8px;
  display: inline-block;
}

/* About Page Styles */
.bg-gradient-light {
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.hero-about {
  position: relative;
  overflow: hidden;
}

.about-image-wrapper {
  position: relative;
  padding: 2rem;
}

.about-image-wrapper img {
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-soft);
}

.about-pattern {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--primary-color) 2px, transparent 2.5px);
  background-size: 18px 18px;
  top: -30px;
  right: -30px;
  opacity: 0.08;
  border-radius: var(--radius);
  z-index: 1;
}

.achievement-card {
  background: var(--surface-color);
  transition: transform 0.3s ease;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.achievement-card:hover {
  transform: translateY(-5px);
}

.bg-primary-soft {
  background: rgba(37, 33, 121, 0.1);
}

.story-images {
  position: relative;
  height: 100%;
  min-height: 500px;
  padding: 2rem;
}

.story-image-main {
  position: relative;
  z-index: 2;
  width: 80%;
}

.story-image-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.story-image-float {
  position: absolute;
  width: 60%;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.story-image-float img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 4px solid white;
}

.floating-pattern {
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--primary-color) 2px, transparent 2.5px);
  background-size: 15px 15px;
  bottom: -20px;
  right: -20px;
  opacity: 0.08;
  border-radius: var(--radius);
  z-index: -1;
}

.story-stat {
  transition: transform 0.3s ease;
}

.story-stat:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .story-images {
    min-height: 400px;
  }
  
  .story-image-main img,
  .story-image-float img {
    height: 250px;
  }
}

.about-content {
  padding-left: 1rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
}

.feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(30, 136, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.feature-text {
  flex: 1;
  color: var(--text-color);
  opacity: 0.8;
}

.example-card {
  background: var(--surface-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.card-sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.card-side {
  background: rgba(30, 136, 255, 0.03);
  padding: 1rem;
  border-radius: 8px;
  position: relative;
}

.side-label {
  position: absolute;
  top: -10px;
  left: 1rem;
  background: var(--primary-color);
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-weight: 500;
}

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

/* CTA Section */
.cta-section {
  background: linear-gradient(180deg, var(--surface-color) 0%, rgba(248, 250, 255, 0.5) 100%);
 
}

.cta-wrapper {
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
 
}

.cta-content {
  padding: 5rem 3rem;
  color: white;
  max-height: 500px;
}

.cta-content h2,
.cta-content .badge-tag {
  color: white;
}

.cta-content .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
}

.cta-content .badge-tag {
  background: rgba(255, 255, 255, 0.1);
}

.cta-content .badge-dot {
  background: white;
}

.cta-mockup-wrapper {
  height: 450px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
}

.cta-mockup {
  position: relative;
  width: 260px;
  height: 420px;
  transform: translateY(2rem);
}

.mockup-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  
}

.mockup-glow {
  position: absolute;
  bottom: -20%;
  left: -20%;
  right: -20%;
  height: 60%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(40px);
  border-radius: 50%;
  z-index: 1;
}

.custom-btn {
  color: #252179;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 500;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.custom-btn::after {
  content: '\F30A';  /* Bootstrap Icons download icon code */
  font-family: 'bootstrap-icons';
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: #252179;
  
}

.custom-btn:hover {
  padding-right: 28px;
  background-color: #fff;
  color: #252179;
}

.custom-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991px) {
  .cta-content {
    padding: 2.5rem 2rem;
    text-align: center;
  }
  
  .cta-mockup {
    width: 220px;
    height: 360px;
    transform: translateY(1rem);
  }

  .cta-content .badge-tag {
    margin: 0 auto;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: all .6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* Radial Features layout */
.features-radial {
  position: relative;
  padding: 2rem 0 1rem;
}
.radial-canvas {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 2 / 1;
}
.radial-arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.radial-arrows .arrow {
  fill: none;
  stroke: #c7d2fe; /* soft bluish dashed */
  stroke-width: 0.6;
  stroke-dasharray: 2 2;
  opacity: 0.9;
}

.center-mockup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  /* background: linear-gradient(180deg, rgba(248,250,255,0.8), rgba(255,255,255,0.95));
  box-shadow: 0 10px 30px rgba(15,23,42,0.06); */
  padding: 1rem;
}
.center-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.feature-node {
  position: absolute;
  width: 220px;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.feature-card.small {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  /* box-shadow: var(--shadow-soft); */
  text-align: left;
  min-height: 86px;
}
.feature-card.small h4 {
  margin: 0.15rem 0 0.25rem;
  font-size: 1rem;
}
.feature-card.small p {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  color: #252179;
  margin-right: 0.75rem;
  float: left;
}
.feature-card.small .feature-icon i {
  font-size: 18px;
}

/* Color accents for icons */
.icon-amber { background: linear-gradient(180deg, #FFD8A8, #FFB86B); color: #6b3b00; }
.icon-rose { background: linear-gradient(180deg, #FFD3DA, #FF8FA3); color: #6b0b1a; }
.icon-yellow { background: linear-gradient(180deg, #FFF6BF, #FFE066); color: #6a4c00; }
.icon-teal { background: linear-gradient(180deg, #CFFAFE, #7EE7D0); color: #004b40; }
.icon-cyan { background: linear-gradient(180deg, #DFF6FF, #9EE7FF); color: #00314d; }
.icon-salmon { background: linear-gradient(180deg, #FFE8E2, #FFB3A2); color: #5a1f17; }

/* Node positions (6 around circle) */
.node-1 { left: 50%; top: 10%; }
.node-2 { left: 84%; top: 22%; }
.node-3 { left: 86%; top: 63%; }
.node-4 { left: 50%; top: 92%; }
.node-5 { left: 14%; top: 72%; }
.node-6 { left: 12%; top: 22%; }

/* Responsive: stack into two rows on small screens */
@media (max-width: 900px) {
  .radial-canvas { aspect-ratio: 1 / 1; max-width: 680px; }
  .center-mockup { width: 200px; height: 320px; }
  .feature-node { width: 180px; }
}

@media (max-width: 520px) {
  .radial-canvas { max-width: 420px; }
  /* Make the mockup participate in the document flow so it stacks with nodes on small screens */
  .center-mockup { position: static; width: 160px; height: 260px; transform: none; margin: 0.75rem auto; }
  .feature-node { position: static; width: 100%; transform: none; margin: 0.75rem auto; }
  .features-radial { padding: 1rem 0; }
  .radial-arrows { display: none; }
}

/* Spacing helpers */
.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.px-6 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #e9efff 0%, #ffffff 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06) !important;
}

.footer-brand {
  font-size: 1.25rem;
  color: var(--text-color) !important;
}

.footer .brand-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

.footer h6 {
  color: var(--text-color);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer .list-unstyled li {
  margin-bottom: 0.5rem;
}

.footer .link-body-emphasis {
  color: #64748b;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.footer .link-body-emphasis:hover {
  text-decoration: underline;
}

.footer .btn-dark {
  background: #1e293b;
  border-color: #1e293b;
  transition: all 0.2s ease;
}

.footer .btn-dark:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.footer .btn-outline-dark {
  border-color: #e2e8f0;
  color: #1e293b;
}

.footer .btn-outline-dark:hover {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #1e293b;
}

.footer .border-top {
  border-color: rgba(15, 23, 42, 0.06) !important;
}

.footer .text-muted {
  color: #64748b !important;
  font-size: 0.875rem;
}

/* Features Page Styles */
/* 
.gcolour{
 background-color: #f1f5ff;
} */

/* .features-hero {
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
} */


.btn-white-outline {

  color: #fff; /* Bootstrap primary blue */
  border: 1px solid #fff;
  font-weight: 400;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-white-outline:hover {
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
}

.features-mockup-wrapper {
  position: relative;
  padding: 2rem;
}

.features-mockup-wrapper img {
  position: relative;
  z-index: 2;
}

.features-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary-color) 2px, transparent 2.5px);
  background-size: 20px 20px;
  top: -20px;
  right: -20px;
  opacity: 0.08;
  border-radius: var(--radius);
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem;
}

.feature-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  /* box-shadow: var(--shadow-soft); */
  transition: all 0.3s ease;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1rem 0 0.5rem;
}

.feature-card p {
  color: #64748b;
  margin: 0;
}

.learning-path {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.path-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  
  transition: transform 0.3s ease;
}

.path-step:hover {
  transform: translateX(10px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.step-content p {
  color: #64748b;
  margin: 0;
}

.cta-card {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .path-step {
    margin-bottom: 1rem;
  }
  
  .path-step:hover {
    transform: none;
  }
}


.footer-logo {
  height: 40px;      /* adjust as needed */
  width: auto;
  object-fit: contain;
}

.vbtn{
  color: #252179;
  text-decoration: none;
}

.vbtn:hover {
  color: #252179;
  text-decoration: underline;
}