body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===============================
       COLOR VARIABLES
    ================================ */
    :root {
      --primary-color: #0086ff;
      --secondary-color: #0086ff;
      --accent-color: #ffd008;
      --text-color: #000000;
      --white-color: #ffffff;
      --light-bg: #ffefe0;
      --border-color: #eeeeee;
      --shadow-color: rgba(0, 0, 0, 0.1);
    }

    .main-btn{
      background-color: #0086ff;
      color: #fff;
    }
    .main-btn:hover{
      background-color: #fff;
      color: #0086ff;
      border: 1px solid #0086ff;
    }

    /* ===============================
       TOPBAR
    ================================ */
    .topbar {
      background-color: var(--primary-color);
      color: var(--white-color);
      font-size: 14px;
      padding: 6px 0;
      border-end-end-radius: 50px;
      border-bottom-left-radius: 50px;
    }

    .topbar a {
      color: var(--white-color);
      text-decoration: none;
    }

    .topbar a:hover {
      text-decoration: underline;
    }
    /* ✅ Hide Topbar on Mobile Screens */
@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}

/* ===============================
   NAVBAR
=============================== */
.navbar {
  background-color: var(--white-color);
  box-shadow: 0 1px 5px var(--shadow-color);
  padding: 10px 0;
  z-index: 999 !important;
}

.navbar-brand span {
  color: var(--text-color);
  font-weight: 700;
  font-size: 20px;
}

.navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

.btn-enroll {
  
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-enroll:hover {
  background-color: var(--secondary-color);
}

/* ===============================
   MOBILE SLIDE MENU
=============================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 250px;
  height: 100vh;
  background: var(--white-color);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  z-index: 2000;
  padding-top: 70px;
}

.mobile-menu.show {
  left: 0;
}

.mobile-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
  transition: background 0.3s ease;
}

.mobile-menu a:hover {
  background: var(--light-bg);
  color: var(--secondary-color);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--secondary-color);
}

/* ===============================
   OVERLAY BACKGROUND
=============================== */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1500;
}

.overlay.show {
  display: block;
}


    /* ===============================
     HERO SECTION STYLES
  ================================ */
  .hero-section {
    position: relative;
    overflow: hidden;
  }

  .hero-section img {
    width: 100%;
    object-fit: cover;
  }

/* ===============================
   FEATURE SECTION
=============================== */
.features-section {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 3px 10px var(--shadow-color);
  padding: 20px;
}

.feature-box {
  background: var(--white-color);
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: start;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.icon-circle {
  background: var(--light-bg);
  color: var(--secondary-color);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

.feature-box h5 {
  color: var(--text-color);
  margin-bottom: 6px;
}

.feature-box p {
  color: #555;
  font-size: 15px;
  margin-bottom: 0;
}

/* ✅ Responsive: Mobile Layout (icons centered) */
@media (max-width: 767px) {
  .feature-box {
    flex-direction: row;
    align-items: center;
    text-align: start;
  }

  .feature-box h5 {
    font-size: 16px;
  }

  .feature-box p {
    font-size: 13px;
  }
}


/* ===============================
   WHO WE ARE SECTION
=============================== */

.who-we-are {
  background-color: var(--white-color);
  position: relative;
  overflow: visible;
}

.section-subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.who-we-are h2 {
  color: var(--text-color);
  line-height: 1.3;
}

.who-point {
  margin-bottom: 1rem;
}

.icon-circle {
  background: var(--accent-color);
  color: var(--secondary-color);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  flex-shrink: 0;
}

.who-point hr {
  border-color: var(--border-color);
}

.who-img {
  max-width: 80%;
}

@media (max-width: 991px) {
  .who-we-are {
    text-align: center;
  }
  .who-point {
    justify-content: center;
  }
  .icon-circle {
    margin-bottom: 10px;
  }
  .who-img {
    max-width: 90%;
  }
}

/* ===============================
   WHY CHOOSE US SECTION
=============================== */
.section-title {
  font-size: 2rem;
  color: #222; /* dark text similar to image */
}

.underline {
  width: 150px;
  height: 4px;
  background: linear-gradient(to right, #4caf50 50%, #003d2b 50%);
  border-radius: 2px;
  margin-top: 6px;
}
.why-choose-us {
  background-color: #fff;
}

.why-choose-us h2 {
  color: var(--text-color, #222);
}

.icon-circle {
  background: rgba(255, 145, 0, 0.1);
  color: var(--secondary-color, #ff9100);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-item {
  background-color: #fff;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.bg-highlight {
  background: #fffaf5;
  box-shadow: 0 8px 20px rgba(255, 145, 0, 0.1);
  border: none;
}

.text-secondary {
  color: var(--secondary-color, #ff9100) !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .why-choose-us h2 {
    font-size: 1.5rem;
  }

  .icon-circle {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}

/* ===============================
   CTA SECTION
=============================== */
.cta-section {
  background: linear-gradient(rgba(24, 28, 77, 0.75), rgba(24, 28, 77, 0.75)),
    url("https://tirthaacademy.com/wp-content/uploads/2025/07/woman-working-her-laptop-1024x683.jpg") center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.btn-cta {
  background: var(--secondary-color, #ff7b2f);
  color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: var(--primary-color, #ff9742);
  transform: translateY(-3px);
}

@media (max-width: 767px) {
  .cta-section {
    min-height: 60vh;
    padding: 40px 15px;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}


/* ===============================
   FEATURED COURSES SECTION
=============================== */
.featured-courses {
  background: #fff;
}

.course-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.course-cat {
  color: #0086ff;
  font-weight: 600;
  font-size: 15px;
}

.text-orange {
  color: #0086ff !important;
}

.btn-orange {
  background: #ff7a00;
  color: #fff;
  border-radius: 6px;
  padding: 10px 22px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn-orange:hover {
  background: #e46500;
  color: #fff;
}

.fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7f7f7f;
  transition: 0.3s;
}

.fav-btn:hover {
  color: #ff6600;
  background: #fff;
}

.rating {
  color: #555;
  font-size: 15px;
}


/* ===============================
   ENROLL SECTION STYLING
=============================== */
.bg-light-green {
  background-color: #e9f3ec; /* Soft green background */
}

.btn-orange {
  background-color: #ff7a00;
  color: #fff;
  border: none;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-orange:hover {
  background-color: #e96a00;
  color: #fff;
}

.enroll-section h2 {
  color: #1e1e1e;
  font-size: 2.2rem;
  line-height: 1.3;
}

.enroll-section p {
  color: #555;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .enroll-section .row {
    text-align: center;
  }

  .enroll-section img {
    margin-top: 30px;
  }
}

/* Testimonials */

.testimonials .underline {
  width: 100px;
  height: 4px;
  background: #28a745;
  border-radius: 2px;
}

.testimonial-carousel .card {
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  background: #fff;
}

.testimonial-carousel .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}
.owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
}
.owl-dot.active span {
  background: #28a745;
}
.testimonial-carousel img{
    height: 60px !important;
    width: 60px !important;
}
.footer {
  background-color: #001d3c !important; /* Dark navy */
  color: #f1f1f1;
}

.footer ul li {
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer ul li:hover {
  color: #ffd008;
  cursor: pointer;
}

.footer .btn-light:hover {
  background-color: #0086ff;
  color: #fff;
}


 #scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    width: 45px;
    height: 45px;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
  }
  #scrollTopBtn:hover {
    background-color: #0086ff;
    transform: translateY(-3px);
  }

  /* skill */
    .skills-section {
    background-color: #e9f1f8;
    border-radius: 10px;
  }
  .skills-section h2 {
    font-weight: 700;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
  }
  .skills-section h2::after {
    content: "";
    width: 50px;
    height: 4px;
    background: #0086ff;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 5px;
  }
  .skill-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px 20px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 70px; /* ensures same height */
  }
  .skill-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .skill-item i {
    color: #0086ff;
    font-size: 1.2rem;
  }

  /* partners-section */
  .partners-section {
    background-color: #eef1f3e1;
  }
  .partner-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  .partner-card img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
  }
  .partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  }
  .btn-orange {
    background: #f4741f;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  .btn-orange:hover {
    background: #e66914;
  }

  /* training */
  .fees-training {
    background-color: #e9f1f8;
    border-radius: 10px;
  }
  .fees-training h2 {
    font-weight: 700;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
  }
  .fees-training h2::after {
    content: "";
    width: 50px;
    height: 4px;
    background: #0086ff;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 5px;
  }
  .training-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    padding: 30px 25px;
    transition: all 0.3s ease;
  }
  .training-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  .training-box h4 {
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
  }
  .training-box hr {
    margin: 10px auto 20px;
    opacity: 0.15;
  }
  .training-box ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #333;
  }
  .training-box ul li i {
    color: #0086ff;
    margin-right: 10px;
  }
  .btn-enroll {
    background: #0086ff;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    padding: 8px 25px;
    transition: all 0.3s ease;
  }
  .btn-enroll:hover {
    background: #fff;
    color: #0086ff;
    border: 1px solid #0086ff;
  }

  /* training-features */
    .training-features {
    background-color: #e9f1f8;
    border-radius: 10px;
  }
  .training-features h2 {
    font-weight: 700;
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
  }
  .training-features h2::after {
    content: "";
    width: 50px;
    height: 4px;
    background: #0086ff;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 5px;
  }
  .feature-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px 20px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-height: 70px; /* equal height */
  }
  .feature-item i {
    color: #0086ff;
    font-size: 1.4rem;
  }
  .feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  /* about page */

  /* trainer */
  .trainer-card {
    border-radius: 12px;
    transition: all 0.4s ease;
  }

  .trainer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }

  .trainer-img img {
    transition: transform 0.5s ease;
  }

  .trainer-card:hover .trainer-img img {
    transform: scale(1.08);
  }

  .social-icons a {
    color: #555;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: var(--secondary-color);
  }
  
  .faq-section .accordion-button {
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .faq-section .accordion-button:not(.collapsed) {
    background: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .faq-section .accordion-button i {
    transition: transform 0.3s ease;
  }

  .faq-section .accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
  }

  .faq-section .accordion-body {
    background: #fff;
    border-radius: 10px;
  }

  @media (max-width: 768px) {
    .faq-section h2 {
      font-size: 1.6rem;
    }
  }

  /* contact page code */
  .get-in-touch {
    background-color: #f8f6f4;
  }

  .get-in-touch h2 {
    font-size: 2rem;
    color: #07332f;
  }

  .contact-box {
    transition: all 0.3s ease;
  }

  .contact-box:hover {
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transform: translateY(-5px);
  }

  .contact-box i {
    background: #e6f4ea;
    padding: 15px;
    border-radius: 50%;
  }

  .contact-section {
    background-color: #f8f9fa;
  }

  .contact-form input,
  .contact-form select {
    height: 50px;
    font-size: 15px;
    border-radius: 6px;
  }

  .contact-form button {
    background-color: #0d6efd;
    border: none;
    font-weight: 600;
    transition: 0.3s ease;
  }

  .contact-form button:hover {
    background-color: #084298;
  }

  @media (max-width: 991px) {
    .map-container iframe {
      height: 300px;
    }
  }