/* ========== Global Styles ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f9f9f9;
  color: #222;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* ========== Header ========== */
.site-header {
  align-items: center;
  background-color: #e97d20;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  flex-wrap: wrap;
  position: relative;
}

.logo-container {
  align-items: center;
  display: flex;
}

.logo-container img {
  height: 50px;
  margin-right: 1rem;
}

.site-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
}

/* ========== Navigation ========== */
.site-nav {
  display: flex;
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.site-nav a {
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: #e66f00;
}

/* ========== Hamburger Menu ========== */
.hamburger {
  color: white;
  cursor: pointer;
  display: none;
  font-size: 28px;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .site-nav {
    background-color: #e97d20;
    display: none;
    flex-direction: column;
    left: 0;
    padding: 1rem 2rem;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 1000;
  }

  .site-nav.active {
    display: flex;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ========== Hero Section ========== */
.hero {
  background-color: #f0f4f9;
  padding: 3rem 1rem;
  text-align: center;
}

.hero h2 {
  color: #012d5e;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  color: #555;
  margin-bottom: 1.5rem;
}

.cta-button {
  background-color: #012d5e;
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #e66f00;
}

/* ========== Sections ========== */
section {
  margin: auto;
  max-width: 900px;
  padding: 2rem;
}

h3 {
  color: #012d5e;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.about p,
.courses p {
  color: #444;
}

/* ========== Courses ========== */
.course-list {
  list-style: none;
  padding-left: 0;
}

.course-list li {
  background: white;
  border-left: 5px solid #012d5e;
  border-radius: 5px;
  margin-bottom: 1rem;
  padding: 1rem;
}

/* ========== Testimonials ========== */
.testimonials {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
  margin: 50px auto;
  max-width: 800px;
  padding: 30px;
  text-align: center;
}

.testimonials h2 {
  color: #002b5b;
  font-size: 28px;
  margin-bottom: 30px;
}

.testimonial {
  background-color: #f9f9f9;
  border-left: 4px solid #ff6b00;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px 25px;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: scale(1.02);
}

.quote {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.author {
  color: #444;
  font-weight: bold;
}

.google-review {
  color: #1a73e8;
  display: inline-block;
  font-weight: 500;
  margin-top: 8px;
  text-decoration: none;
}

.google-review:hover {
  text-decoration: underline;
}

/* ========== WhatsApp Chat ========== */
#whatsapp-chat {
  bottom: 20px;
  position: fixed;
  right: 20px;
  z-index: 999;
}

#whatsapp-button img {
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  height: 60px;
  transition: transform 0.3s ease;
  width: 60px;
}

#whatsapp-button img:hover {
  transform: scale(1.1);
}

#whatsapp-button::after {
  background-color: #25D366;
  border-radius: 4px;
  bottom: 70px;
  color: white;
  content: 'Chat with us';
  font-size: 14px;
  opacity: 0;
  padding: 6px 10px;
  pointer-events: none;
  position: absolute;
  right: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

#whatsapp-button:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Features ========== */
.features {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.features h3 {
  color: #012d5e;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 0 auto;
  max-width: 1100px;
}

.feature-box {
  background: white;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  color: inherit;
  padding: 30px 20px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.feature-box i {
  color: #ff7f00;
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-box h4 {
  color: #012d5e;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-box p {
  color: #555;
  font-size: 1rem;
}

/* Icon Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.icon-bounce {
  animation: bounce 2s infinite;
}

/* ========== Stats Section ========== */
.stats {
  align-items: center;
  background-color: #f9f9f9;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.stat-box {
  flex: 1 1 150px;
  max-width: 200px;
  min-width: 120px;
}

.stat-box h3 {
  color: #012d5e;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
}

.stat-box p {
  color: #333;
  font-size: 1rem;
  margin-top: 8px;
}

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

  .stat-box h3 {
    font-size: 2rem;
  }

  .stat-box p {
    font-size: 0.95rem;
  }
}

/* ========== Page Header ========== */
.page-header {
  background-color: #f4f7fc;
  padding: 40px;
  text-align: center;
}

.page-header h1 {
  color: #002f66;
  font-size: 2.5rem;
}

/* ========== Price Box ========== */
.price-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  margin: 20px auto;
  max-width: 500px;
  padding: 20px;
  text-align: center;
}

.price-box h2 {
  color: #d35400;
}

/* ========== Scrolling Testimonials ========== */
.testimonial-scroll-wrapper,
.testimonial-carousel {
  background: #f9f9f9;
  overflow: hidden;
  padding: 30px 0;
  width: 100%;
}

.testimonial-scroll {
  animation: scroll 20s linear infinite;
  display: flex;
}

.testimonial-item,
.carousel-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  color: #333;
  flex: 0 0 100%;
  font-size: 1.1rem;
  margin: 0 10px;
  padding: 20px;
  text-align: center;
}

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

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300%);
  }
}

/* ========== Footer ========== */
.site-footer {
  background-color: #002b5b;
  color: #fff;
  font-size: 14px;
  padding: 40px 20px;
}

.footer-container {
  margin: 0 auto;
  max-width: 1200px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-brand h2 {
  color: #fff;
  margin-bottom: 8px;
}

.footer-contact h4,
.footer-social h4 {
  color: #ffb74d;
  margin-bottom: 10px;
}

.footer-contact a,
.footer-bottom a {
  color: #ffb74d;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-social a img {
  filter: invert(100%);
  margin-right: 10px;
  transition: opacity 0.3s;
  width: 24px;
}

.footer-social a:hover img {
  opacity: 0.7;
}

.footer-bottom {
  border-top: 1px solid #ffffff33;
  padding-top: 15px;
  text-align: center;
}
.course-card img {
  filter: invert(9%) sepia(83%) saturate(5106%) hue-rotate(199deg) brightness(90%) contrast(92%);
}
.total-drive-app-section {
  background-color: #f9f9f9;  /* replaced gradient with light gray */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Inter', sans-serif;
}

.total-drive-container {
  max-width: 700px;
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07); /* slightly softer shadow */
  text-align: center;
}

.total-drive-container h2 {
  color: #002f66;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.total-drive-container .intro {
  color: #444;
  font-size: 1.15rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.drive-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 450px;
  text-align: left;
}

.drive-feature-list li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  color: #002f66;
  margin-bottom: 18px;
  font-weight: 600;
}

.drive-feature-list i {
  color: #e97d20;
  margin-right: 14px;
  font-size: 1.3rem;
  min-width: 26px;
}

.total-drive-container .closing {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-top: 20px;
}
.app-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.app-store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #e97d20;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(233, 125, 32, 0.4);
  transition: background-color 0.3s ease;
}

.app-store-button img {
  height: 24px;
  width: auto;
}

.app-store-button.apple {
  background-color: #000; /* black for Apple */
}

.app-store-button.apple:hover {
  background-color: #333;
}

.app-store-button.google {
  background-color: #3bcc5a; /* Google green */
}

.app-store-button.google:hover {
  background-color: #34a853;
}
body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fbfd;
  margin: 0;
  padding: 0;
}

.contact-section {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 600px;
  width: 100%;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-container h2 {
  color: #002f67;
  margin-bottom: 10px;
}

.contact-container p {
  color: #444;
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #002f67;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  font-family: inherit;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.submit-button {
  background-color: #e97d20;
  color: #fff;
  padding: 14px 24px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-button:hover {
  background-color: #cf6b1b;
}

.map-container {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden;
}
