@media (max-width: 767px) {
  span {
    font-size: 0.9rem !important;
  }
}
/* Hero Content Positioning */
/* Overlay hero-content on mobile as well */
.hero-content {
  position: absolute;
  top: 18%;
  left: 0;
  width: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-content-inner {
  pointer-events: auto;
}
@media (max-width: 991px) {
  .hero-content {
    top: 10%;
    left: 0;
    width: 100%;
    position: absolute;
    z-index: 2;
  }
}
@media (min-width: 992px) {
  .hero-content {
    top: 18%;
    left: 0;
    width: 100%;
    position: absolute;
    z-index: 2;
  }
}
.hero-content-inner {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.hero-title {
  font-size: 2.1rem;
  font-weight: 700;
}
.hero-lead {
  font-size: 1.1rem;
}
.hero-btn {
  font-size: 1rem;
  width: auto;
}

/* About Section */
.about-title {
  color: #b3a1e6;
  font-size: 1.5rem;
}
footer {
  text-align: center;
  padding: 20px;
  background: #b3d8f7; /* pastel blue */
}

@media (min-width: 768px) {
  .about-btn { width: auto; }
}
.about-img {
  max-width: 90vw;
  max-height: 250px;
  object-fit: cover;
}

/* CTA Section */
.cta-title {
  color: #4b2e83;
  font-size: 1.2rem;
}
.cta-lead {
  font-size: 1rem;
}
.cta-btn {
  font-size: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .cta-btn { width: auto; }
}

/* Features Section */
.feature-title {
  font-size: 1.1rem;
}
.feature-text {
  font-size: 0.98rem;
}
.feature-btn {
  font-size: 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .feature-btn { width: auto; }
}

/* Footer */
.footer-contact {
  font-size: 0.98rem;
}
.footer-icon {
  width: 28px;
  height: 28px;
}
.footer-copyright {
  font-size: 0.95rem;
}
/* style.css */
body, html {
  margin: 0; padding: 0; height: 100%;
  font-family: Arial, sans-serif;
}
.navbar {
  background-color: #ffefef;
}
.navbar-brand, .nav-link {
  color: #333 !important;
}
.nav-link:hover {
  color: #a34c4c !important;
}
.page-bg {
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding-top: 70px;
}
.container-content {
  background: rgba(255,255,255,0.85);
  padding: 30px;
  border-radius: 8px;
  margin: 20px auto;
  max-width: 800px;
}
.logo-circle {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(160, 132, 202, 0.10);
}
/* Pastel Navbar */
.navbar-pastel {
  background: #b3a1e6;
}
.navbar-pastel .navbar-brand,
.navbar-pastel .nav-link {
  color: #fff !important;
  transition: color 0.3s;
}
.navbar-pastel .nav-link:hover,
.navbar-pastel .navbar-brand:hover {
  color: #f7c6c7 !important;
}

/* Hero Section - richer colors and background image */
.hero-section {
  min-height: 90vh;
  background-image: url('../images/image.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  background-color: #f7e6e6; /* pastel pink base */
  box-shadow: 0 4px 32px rgba(160, 132, 202, 0.10);
}

/* Feature Cards - richer colors */
.feature-card {
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(160, 132, 202, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 24px rgba(160, 132, 202, 0.16);
}
.card-pink { background: #f7c6c7; color: #4b2e83; }
.card-yellow { background: #fff3b0; color: #4b2e83; }
.card-blue { background: #b3d8f7; color: #4b2e83; }
.feature-card .btn-outline-pastel {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.feature-card .btn-outline-pastel:hover {
  background: #fff;
  color: #3a7ca5;
}

/* Buttons - deeper gradient */
.btn-pastel, .btn-outline-pastel {
  background: linear-gradient(90deg, #b3a1e6 0%, #b3d8f7 100%);
  color: #4b2e83;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(160, 132, 202, 0.10);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.btn-pastel:hover, .btn-outline-pastel:hover, .animate-btn:hover {
  background: linear-gradient(90deg, #f7c6c7 0%, #fff3b0 100%);
  color: #4b2e83;
  box-shadow: 0 4px 16px rgba(160, 132, 202, 0.18);
}

/* Forms */
.form-control:focus {
  box-shadow: none;
  border-color: #ffb8b8;
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1.2s;
}
.animate-card {
  animation: fadeInUp 1.2s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: none;}
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px);}
  to { opacity: 1; transform: none;}
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: none;}
}

/* Social Icons */
.social-icon {
  height: 24px;
  transition: transform 0.3s;
}
.social-icon:hover {
  transform: scale(1.2) rotate(-8deg);
}
/* Navbar layout for desktop */
.navbar-collapse {
  display: flex;
  flex-basis: auto;
}
.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
}
.navbar-nav .nav-item {
  margin: 0 10px;
}

/* Hamburger styles and mobile navbar */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger .bar {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background-color: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
  .navbar-collapse {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #ffd1dc;
    box-shadow: 0 4px 16px rgba(160, 132, 202, 0.08);
    padding: 20px 0;
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .navbar-collapse.show {
    display: flex;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
  .navbar-nav .nav-item {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .hero-section { min-height: 40vh; }
  .feature-card { margin-bottom: 1.5rem; }
}

.brand-glow {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #fff;
  text-shadow:
    0 0 8px #b3a1e6,
    0 0 16px #f7c6c7,
    0 0 24px #b3d8f7,
    0 0 32px #fff3b0;
  animation: glowPulse 2s infinite alternate;
}
@keyframes glowPulse {
  from {
    text-shadow:
      0 0 8px #b3a1e6,
      0 0 16px #f7c6c7,
      0 0 24px #b3d8f7,
      0 0 32px #fff3b0;
  }
  to {
    text-shadow:
      0 0 16px #b3a1e6,
      0 0 32px #f7c6c7,
      0 0 48px #b3d8f7,
      0 0 64px #fff3b0;
  }
}

