/* ================= GLOBAL ================= */


body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

.bg-primary {
  background: radial-gradient(circle at top, #0b1a2d, #050d18);
}

/* ================= NAVBAR ================= */

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(11, 26, 45, 0.6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  z-index: 1000;
}

.logo {
  color: #22c55e;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav-links a {
  position: relative;
}

/* underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #22c55e;
  transition: 0.3s;
}

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

.container {
  width: 90%;
  margin: auto;
}

.logo span {
  color: white;
}

.nav-links {
  display: none;
  gap: 25px;
}

.nav-links a:hover {
  color: #22c55e;
}

/* ================= BUTTONS ================= */

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(34,197,94,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(34,197,94,0.6);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: #22c55e;
  color: #22c55e;
  transform: translateY(-2px);
}

/* ================= HERO ================= */ 

.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0b1a2d, rgba(11,26,45,0.85), rgba(34,197,94,0.2));
}

.hero-content {
  position: relative;
  max-width: 700px;
  padding: 20px;
  animation: fadeUp 1.2s ease;
}

.tag {
  background: rgba(255,255,255,0.1);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
  display: inline-block;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
}

.hero h1 span {
  color: #22c55e;
  text-shadow: 0 0 20px rgba(34,197,94,0.7);
}

.subtitle {
  margin-top: 20px;
  color: #ccc;
  font-size: 1.1rem;
}

.buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.rating {
  margin-top: 20px;
  color: #aaa;
}

.scroll {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hero h1 {
    font-size: 5rem;
  }
}

/* ================= STATS ================= */

.stats-section {
  padding: 80px 20px;
  background: #f5f7fb; 
}

.stats-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  border-radius: 25px;
  background: linear-gradient(135deg, #0b1a2d, #1e293b, #16a34a);
  color: white; 
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(34, 197, 94, 0.25);
  transform: translateY(-40px);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-item h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 12px;
  letter-spacing: 1px;
  color: #ddd;
} 

/* RESPONSIVE */
@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
} 

/* ================= WHY ================= */

html {
  scroll-behavior: smooth;
}
.why-section {
  background: #ffffff;
  color: #0b1a2d;
  padding: 100px 20px;
  text-align: center;
}

.why-container {
  max-width: 1100px;
  margin: auto;
}

/* TEXT */
.why-tag {
  color: #22c55e;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 15px;
}

.why-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.why-subtitle {
  color: #555;
  margin-bottom: 50px;
}

/* CARDS */
.why-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.why-card {
  background: #0b1a2d;
  padding: 40px 25px;
  border-radius: 20px;
  width: 300px;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ICON BOX */
.icon-box {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 15px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white; 
  transition: 0.4s ease;
  box-shadow: 0 10px 20px rgba(34,197,94,0.4);
}

/* TEXT */
.why-card h3 { 
  color:white;
  margin-bottom: 10px;
}

.why-card p {
  color: #666;
  font-size: 14px;
}

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

/* ================= ABOUT ================= */

html {
  scroll-behavior: smooth;
} 
#about {
  scroll-margin-top: 100px;
} 

.about-section {
  background: #f5f7fb;
  padding: 100px 20px;
  text-align: center;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0b1a2d;
}

.about-tags span:hover {
  background: #22c55e;
  color: white;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

/* TAG */
.about-tag {
  color: #22c55e;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TEXT */
.about-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* TAG PILLS */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.about-tags span {
  background: #e2e8f0;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  color: #0b1a2d;
  transition: 0.3s;
}

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

/* ================= SERVICES ================= */

#services {
  scroll-margin-top: 100px;
}
.services-section {
  background: linear-gradient(135deg, #0b1a2d, #1e293b);
  padding: 100px 20px;
  text-align: center;
}

.services-container {
  max-width: 1100px;
  margin: auto;
}

/* TEXT */
.services-tag {
  color: #22c55e;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 600;
}

.services-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.services-subtitle {
  color: #ccc;
  margin-bottom: 50px;
}

/* CARDS */
.services-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 35px 25px;
  border-radius: 20px;
  width: 300px;
  text-align: left;
  transition: 0.4s ease;

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: 
    0 20px 40px #00000066,
    0 0 20px #ffffff0d;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 30px 60px #00000080,
    0 0 30px #22c55e33;
}

/* ICON */
.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;

  box-shadow: 0 10px 20px #22c55e55;
}

/* TEXT */
.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: #bbb;
  font-size: 14px;
  margin-bottom: 20px;
}

/* LINK */
.service-card a {
  color: #22c55e;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.service-card a:hover {
  letter-spacing: 1px;
}

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

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

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

.testimonial-section {
  background: #f5f7fb;
  padding: 100px 20px;
  text-align: center;
}

.testimonial-card {
  width: 300px;
  padding: 30px;
  border-radius: 20px;
  background: white;
  transition: 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-10px);
}

.testimonial-container {
  max-width: 1100px;
  margin: auto;
}

/* TEXT */
.testimonial-tag {
  color: #22c55e;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 15px;
}

.testimonial-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0b1a2d;
  margin-bottom: 15px;
}

.testimonial-subtitle {
  color: #555;
  margin-bottom: 50px;
}

/* CARDS */
.testimonial-cards {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* STARS */
.stars {
  color: #22c55e;
  margin-bottom: 15px;
}

/* REVIEW */
.review {
  color: #444;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* USER */
.user {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* AVATAR */
.avatar {
  width: 40px;
  height: 40px;
  background: #22c55e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
} 

.avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #22c55e;
  transition: 0.3s ease;
}

/* hover effect */
.avatar-img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(34,197,94,0.6);
}

.user h4 {
  margin: 0; 
  color:black
}

.user p {
  font-size: 12px;
  color: #777;
}

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

  .testimonial-card {
    width: 100%;
  }
} 

/* ================= CTA ================= */

html {
  scroll-behavior: smooth;
} 
#book {
  scroll-margin-top: 100px;
}
.cta-section {
  background: #ffffff;
  padding: 100px 20px;
}

.cta-container {
  max-width: 900px;
  margin: auto;
  text-align: center;

  padding: 60px 30px;
  border-radius: 30px;

  background: linear-gradient(135deg, #0b1a2d, #1e293b, #16a34a);

  color: white;

  /* PREMIUM SHADOW */
  box-shadow: 
    0 25px 50px #00000066,
    0 0 30px #ffffff14;
}

/* TEXT */
.cta-container h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-container p {
  color: #ccc;
  margin-bottom: 30px;
}

/* BUTTON */
.cta-btn {
  background: #22c55e;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.4s ease;
}

.cta-btn:hover {
  background: #16a34a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px #22c55e66;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-container h2 {
    font-size: 1.8rem;
  }
}

/* ================= FOOTER ================= */

.footer {
  background: #08101c;
  padding: 80px 20px 30px;
  color: #ccc;
}

/* CONTAINER */
.footer-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* COLUMNS */
.footer-col {
  flex: 1;
  min-width: 220px;
}

/* LOGO */
.footer-logo {
  color: #22c55e;
  margin-bottom: 10px;
}

/* HEADINGS */
.footer-col h3 {
  margin-bottom: 15px;
  color: white;
}

/* TEXT */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* LIST */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* LINKS */
.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #22c55e;
  padding-left: 5px;
}

/* SOCIAL */
.footer-social {
  text-align: center;
  margin-top: 40px;
}

.footer-social span {
  margin: 0 10px;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-social span:hover {
  color: #22c55e;
  transform: translateY(-3px);
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ffffff14;
  padding-top: 15px;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}