body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f9ff;
    color: #333;
}

.container {
    padding: 15px 20px;
}

/* Header Styles */
.header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: sticky;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-content-between {
  justify-content: space-between;
}

.logo img {
  height: 50px;
  width: auto;
}

/* Hamburger styles */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 25px;
  width: 30px;
  margin-left: auto;
  margin-right: 10px;
}
.hamburger .bar {
  display: block;
  height: 4px;
  width: 100%;
  margin: 3px 0;
  background-color: #333;
  border-radius: 3px;
}

/* Navigation menu styles */
.nav-links {
  display: flex;
  align-items: center;
  transition: max-height 0.3s ease;
}
.nav-link {
  color: #333;
  font-size: 16px;
  margin-left: 20px;
  text-decoration: none;
}
.nav-link:hover {
  color: #ff6200;
}
.btn.btn-schedule {
  background: #ffffff;
  color: #ff6200;
 border: 2px solid #ff6600;
   border-radius: 10px;
  padding: 6px 18px;
  font-weight: bold;
  cursor: pointer;
}
.btn.btn-schedule:hover {
  background: #ff6200;
}

.dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.dropdown-item {
  font-size: 14px;
  color: #333;
  padding: 8px 20px;
}
.dropdown-item:hover {
  background-color: #f5f9ff;
  color: #ff6200;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .d-flex {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .logo img {
    height: 42px;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 18px 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
    display: none;
    gap: 8px;
    z-index: 9999;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .nav-link,
  .btn.btn-schedule {
    margin: 10px 0;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;         /* Hide by default */
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 99;
  }
  .nav-links {
  position: fixed;
  top: 0;
 right: -100% !important;
  width: 75%;
  height: 100%;
  background: #fff; /* change color if needed */
  display: flex;
  flex-direction: column;
   align-items: flex-end; /* content left aligned */
  justify-content: flex-start;
  padding: 20px;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
}

.nav-links.active {
  left: 0; /* slides in from the left */
  display: flex !important;
}
  .hamburger {
    display: flex;
  }
}
.btn-schedule {
  background: #ff6200;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 18px;
  font-weight: bold;
  cursor: pointer;
}
.btn-schedule:hover {
  background: #e95c00;
  color: #fff;
}
.logo img {
  height: 50px;
  width: auto;
}





/* end header  */

.chat-button {
    position: fixed;
    bottom: 80px;
    /* Adjusted to account for the sticky footer */
    right: 20px;
    background-color: #ff6200;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
}

.chat-button:hover {
    background-color: #e55a00;
}

.chat-button i {
    font-size: 24px;
}

.top-rated {
    font-size: 14px;
    color: #ff6200;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.main-heading {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.sub-heading {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.enrolled {
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
}

.enrolled img {
    width: max-content;
    height: 30px;
    /* border-radius: 50%; */
    margin-right: 5px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.features-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.features-list li::before {
    content: '✔';
    color: #28a745;
    font-size: 20px;
    position: absolute;
    left: 0;
}

.button-group {
    display: flex;
    gap: 10px;
    /* Space between buttons */
}

.btn {
    cursor: pointer;
    /* Ensures it looks clickable */
    border-radius: 5px;
    /* Optional: for rounded corners */
}

.btn-schedule {
    background-color: #fff;
    border: 2px solid #ff6200;
    /* color: #ff6200; */
    color: #000;
    font-weight: bold;
    padding: 7px 10px;
    margin-right: 10px;
    font-size: 10px;
    /* text-transform: uppercase; */
}

.btn-schedulee {
    background-color: #fff;
    border: 2px solid #ff6200;
    /* color: #ff6200; */
    color: #000;
    font-weight: bold;
    padding: 7px 10px;
    margin-right: 10px;
    font-size: 15px;
    /* text-transform: uppercase; */
}

.btn-schedulee:hover {
    background-color: #ff6200;
    color: #fff;
}

.btn-schedule:hover {
    background-color: #ff6200;
    color: #fff;
}

.btn-brochure {
    background-color: #ff6200;
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 10px;
    /* text-transform: uppercase; */
}

.btn-brochure:hover {
    background-color: #e55a00;
}

.image-section {
    position: relative;
    text-align: center;
}

.image-section img {
    max-width: 80%;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
}

.accredited-section {
    text-align: center;
    margin-top: 20px;
}

.accredited-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.accredited-section img {
    width: 60px;
    margin: 0 10px;
}

/* New Section: Key to Exam & Career Success */
.key-success-section {
    background-color: #e6f0fa;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

.key-success-heading {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.key-success-item {
    font-size: 16px;
    color: #333;
}

.key-success-item i {
    font-size: 40px;
    color: #666;
    margin-bottom: 10px;
}

.key-success-section {
    background-color: #d5ecd8;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
}

.key-success-heading {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.key-success-item {
    font-size: 16px;
    color: #333;
}

.key-success-item i {
    font-size: 40px;
    color: #666;
    margin-bottom: 10px;
}

.course-overview-section {
    padding: 40px 0;
}

.sticky-sidebar {
    position: sticky;
    top: 20px;
    background-color: #f5f9ff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-sidebar .nav-link {
    color: #333;
    font-size: 12px;
    padding: 10px 0;
    border-left: 3px solid transparent;
}

.sticky-sidebar .nav-link:hover,
.sticky-sidebar .nav-link.active {
    color: #ff6200;
    border-left: 3px solid #ff6200;
}

.sticky-sidebar .btn-schedule,
.sticky-sidebar .btn-brochure {
    width: 100%;
    margin-bottom: 10px;
}

.rating-section {
    margin-top: 20px;
    text-align: center;
}

.rating-section img {
    width: 75px;
    margin-bottom: 10px;
}

.rating-section .stars {
    color: #f5c518;
    font-size: 18px;
    margin-bottom: 5px;
}

.rating-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.course-content h2 {
    font-size: 30px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.course-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #ff6200;
    margin-top: 30px;
    margin-bottom: 15px;
}

.course-content p {
  text-align: justify;
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

.key-features-section {
    margin-top: 40px;
}

.key-features-section h2 {
    font-size: 30px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-item i {
    font-size: 30px;
    color: #ff6200;
    margin-right: 15px;
}

.feature-item p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.btn-advisor {
    background-color: #fff;
    border: 2px solid #333;
    color: #333;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 10px;
    margin-left: 10px;
    text-transform: uppercase;
}

.btn-advisor:hover {
    background-color: #333;
    color: #fff;
}

/* New Section: Career Boost */
.career-boost-section {
    margin-top: 40px;
    align-items: center;
}

.career-boost-section .top-rated {
    margin-bottom: 10px;
}

.career-boost-section h2 {
    font-size: 30px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.stats-item {
    margin-bottom: 20px;
}

.stats-item h3 {
    font-size: 20px;
    font-weight: bold;
    color: #ff6200;
    margin-bottom: 5px;
}

.stats-item p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.roles-list {
    list-style: none;
    padding: 0;
}

.roles-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.roles-list li::before {
    /* content: '•'; */
    color: #ff6200;
    font-size: 20px;
    position: absolute;
    left: 0;
}

.company-logos img {
    max-height: 40px;
    margin: 10px 20px;
}

.who-attend-section {
    margin-top: 40px;
    background-color: #eefbf1;
    padding: 30px;
    border-radius: 10px;
}

.who-attend-section .top-rated {
    margin-bottom: 10px;
}

.who-attend-section h2 {
    font-size: 30px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.who-attend-section .roles-list li::before {
    /* content: '•'; */
    color: #1a1a1a;
    font-size: 20px;
}

.who-attend-section img {
    max-width: 50%;
}

/* New Section: Learning Opportunities */
.learning-opportunities-section {
    margin-top: 40px;
}

.learning-opportunities-section h2 {
    font-size: 30px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.learning-opportunities-section .roles-list li::before {
    content: '•';
    color: #fff9f9;
    font-size: 20px;
}

/* New Section: Related Courses */
.related-courses-section {
    margin-top: 40px;
}

.course-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
}

.course-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.course-card .card-body {
    padding: 15px;
}

.course-card .date {
    font-size: 14px;
    color: #ff6200;
    margin-bottom: 5px;
}

.course-card .live-class {
    font-size: 14px;
    color: #666;
    margin-left: 10px;
}

.course-card .rating {
    font-size: 14px;
    color: #f5c518;
    float: right;
}

.course-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.course-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.course-card .duration,
.course-card .enrolled {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.course-card .duration i,
.course-card .enrolled i {
    color: #28a745;
    margin-right: 5px;
}

.course-card .price {
    font-size: 16px;
    font-weight: bold;
    color: #1a1a1a;
    margin-right: 10px;
}

.course-card .original-price {
    font-size: 14px;
    color: #666;
    text-decoration: line-through;
}

.course-card .discount {
    font-size: 14px;
    color: #ff6200;
}

.course-card .btn-enroll {
    background-color: #1a1a1a;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    text-transform: uppercase;
    border: none;
}

.course-card .btn-enroll:hover {
    background-color: #333;
}

/* New Section: Certification Process */
.certification-process-section {
    margin-top: 40px;
    background-color: #d5ecd8;
    padding: 30px;
    border-radius: 10px;
}

.certification-process-section .top-rated {
    margin-bottom: 10px;
}

.certification-process-section h2 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.certification-process-section img {
    max-width: 100%;
}

/* New Section: Certificate Sample */
.certificate-sample-section {
    margin-top: 40px;
}

.certificate-sample-section .top-rated {
    margin-bottom: 10px;
}

.certificate-sample-section h2 {
    font-size: 30px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.certificate-sample-section img {
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
}

/* New Section: Benefits Section */

.benefits-box {
    border: 1px solid black;
    padding: 4px;
    border-radius: 5px;
    /* margin: 10px; */
}




.benefits-section {
    margin-top: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.benefits-section .top-rated {
    margin-bottom: 10px;
}

.benefits-section h2 {
    font-size: 30px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.benefits-section h3 {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.benefits-section .sub-heading {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.benefits-section ul {
    list-style: none;
    padding: 0;
}

.benefits-section ul li {
    font-size: 12px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.benefits-section ul li::before {
    content: '✔';
    color: #28a745;
    font-size: 20px;
    position: absolute;
    left: 0;
}

.benefits-section .btn-advisor {
    background-color: #1a1a1a;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    text-transform: uppercase;
    border: none;
}

.benefits-section .btn-advisor:hover {
    background-color: #333;
}

.benefits-section .btn-skill-up {
    background-color: #fff;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
    font-weight: bold;
    padding: 10px 20px;
    text-transform: uppercase;
}

.benefits-section .btn-skill-up:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* New Section: Advantages Section */
.advantages-section {
    margin-top: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.advantages-section .top-rated {
    margin-bottom: 10px;
}

.advantages-section h2 {
    font-size: 30px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.advantages-section .advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.advantages-section .advantage-item i {
    font-size: 24px;
    color: #ff6200;
    margin-right: 15px;
    margin-top: 5px;
}

.advantages-section .advantage-item div h4 {
    font-size: 16px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.advantages-section .advantage-item div p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* New Section: Clients Section */
.clients-section {
    margin-top: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.clients-section .top-rated {
    margin-bottom: 10px;
}

.clients-section h2 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.clients-section .client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.clients-section .client-logos img {
    max-height: 40px;
    margin: 10px;
}

/* New Section: Testimonials Section */
.testimonials-section {
    margin-top: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonials-section .top-rated {
    margin-bottom: 10px;
}

.testimonials-section h2 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.testimonials-section .carousel {
    margin-bottom: 20px;
}

.testimonials-section .carousel-inner {
    padding: 0 20px;
}

.testimonials-section .carousel-item {
    display: flex;
    justify-content: space-between;
}

.testimonials-section .testimonial-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin: 0 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    /* Adjust this height as per need */
}

.testimonials-section .testimonial-card p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

.testimonials-section .testimonial-card p::before {
    content: '“';
    font-size: 24px;
    color: #ff6200;
    position: absolute;
    left: -10px;
    top: -10px;
}

.testimonials-section .testimonial-card p::after {
    content: '”';
    font-size: 24px;
    color: #ff6200;
    position: absolute;
    right: -10px;
    bottom: -10px;
}

.testimonials-section .testimonial-card .read-more {
    font-size: 14px;
    color: #ff6200;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.testimonials-section .testimonial-card .read-more:hover {
    text-decoration: underline;
}

.testimonials-section .testimonial-card .author {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.testimonials-section .testimonial-card .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.testimonials-section .testimonial-card .author div {
    flex: 1;
}

.testimonials-section .testimonial-card .author div h5 {
    font-size: 14px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0;
}

.testimonials-section .testimonial-card .author div p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.testimonials-section .testimonial-card .linkedin {
    font-size: 14px;
    color: #0a66c2;
    text-decoration: none;
}

.testimonials-section .testimonial-card .linkedin i {
    margin-right: 5px;
}

.testimonials-section .testimonial-card .linkedin:hover {
    text-decoration: underline;
}

.testimonials-section .carousel-control-prev,
.testimonials-section .carousel-control-next {
    width: 5%;
}

.testimonials-section .carousel-control-prev-icon,
.testimonials-section .carousel-control-next-icon {
    background-color: #ff6200;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}


.reviews-section {
    /* background-color: #fff; */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-card .author {
    margin-top: 10px;
}

.testimonial-card .author h5 {
    font-size: 14px;
    font-weight: bold;
    color: #1a1a1a;
    margin: 0;
}

.testimonial-card .author p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.linkedin {
    font-size: 14px;
    color: #0a66c2;
    text-decoration: none;
    display: block;
    margin-top: 10px;
}

.linkedin:hover {
    text-decoration: underline;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #ff6200;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

/* Sticky Footer */
/* ===== MAIN FOOTER ===== */
/* Footer Styles */
/* Footer Styles */
/* Footer Styles */
.footer {
  background-color: #ff6600;
  color: #fff;
  padding: 40px 0 0;
  position: relative;
}

.footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer p {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}

/* Logo Section - Left Aligned */
.footer .col-md-4:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 20px;
}

.footer .col-md-4:first-child .d-flex {
  justify-content: flex-start !important;
  margin-bottom: 15px;
}

.footer .col-md-4:first-child img {
  height: 100px;
  margin-bottom: 5px;
}

/* Social Icons - Left Aligned */
.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start !important;
  margin-top: 10px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6600;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  background-color: #333;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icons i {
  font-size: 18px;
}

/* Contact Info - Center Column */
.contact-info {
  padding: 0 15px;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.6;
}

.contact-info i {
  color: #fff;
  margin-right: 10px;
  margin-top: 3px;
  min-width: 20px;
  font-size: 16px;
}

/* Quick Links - Center Aligned */
.footer .col-md-4:last-of-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 30px;
}

.footer .col-md-4:last-of-type h5 {
  text-align: center;
  width: 100%;
}

.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.quick-links li {
  margin-bottom: 12px;
}

.quick-links a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  padding: 5px 0;
  display: inline-block;
  position: relative;
}

.quick-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  transition: width 0.3s ease;
}

.quick-links a:hover::after {
  width: 100%;
}

.quick-links a:hover {
  color: #333;
}

/* Copyright Section */
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 0 50px;
  text-align: center;
}

.copyright p {
  margin: 0;
  color: #fff;
  font-size: 16px;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #ff6600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #333;
  color: #fff;
  transform: translateY(-5px);
}

.back-to-top i {
  font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer h5 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  /* Logo Section - Center on Mobile */
  .footer .col-md-4:first-child {
    align-items: center;
    padding-right: 15px;
    margin-bottom: 30px;
  }

  .footer .col-md-4:first-child .d-flex {
    justify-content: center !important;
  }

  /* Social Icons - Center on Mobile */
  .social-icons {
    justify-content: center !important;
    gap: 10px;
    margin-bottom: 20px;
  }

  /* Contact Info - Left Aligned on Mobile */
  .contact-info {
    padding: 0 15px;
    text-align: left;
    margin-bottom: 30px;
  }

  .contact-info p {
    justify-content: flex-start;
    font-size: 13px;
    margin-bottom: 15px;
  }

  .footer .col-md-4:nth-child(2) h5 {
    text-align: left;
  }

  /* Quick Links - Left Aligned on Mobile */
  .footer .col-md-4:last-of-type {
    align-items: flex-start;
    padding-left: 15px;
  }

  .footer .col-md-4:last-of-type h5 {
    text-align: left;
  }

  .quick-links {
    text-align: left;
  }

  .quick-links a {
    font-size: 13px;
  }

  .quick-links a::after {
    left: 0;
    transform: none;
  }

  /* Copyright */
  .copyright {
    padding-bottom: 40px !important;
    margin-top: 30px;
  }

  .copyright p {
    font-size: 13px;
  }

  /* Back to Top */
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 991px) {
  .footer {
    padding: 50px 0 0;
  }

  .contact-info {
    padding: 0 15px;
  }

  .footer .col-md-4:first-child,
  .footer .col-md-4:last-of-type {
    padding-left: 20px;
    padding-right: 20px;
  }
}



/* ===== STICKY FOOTER ===== */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #ff6200 50%, #1a2a44 50%);
  color: #fff;
  padding: 10px 0;
  z-index: 1000;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  transition: background 0.1s linear;
}

.sticky-footer .container {
  padding: 0 20px;
}

.sticky-footer a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.sticky-footer a:hover {
  text-decoration: underline;
}

.sticky-footer i {
  margin-right: 8px;
  font-size: 18px;
}

.sticky-footer .email {
  font-size: 16px;
  color: #fff;
}

.sticky-footer .email i {
  margin-right: 8px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 767.98px) {
  /* Footer Layout */
  .footer {
    text-align: center;
    padding: 30px 15px;
  }

  .footer h5 {
    margin-top: 20px;
    font-size: 16px;
  }

  .footer .social-icons {
    justify-content: center;
  }

  .footer .col-md-3,
  .footer .col-md-2,
  .footer .col-md-4 {
    margin-bottom: 25px;
  }

  .footer .newsletter-form {
    flex-direction: column;
    gap: 8px;
  }

  .footer .newsletter-form input,
  .footer .newsletter-form button {
    width: 100%;
  }

  .footer .quick-links li {
    padding-left: 0;
  }

  .footer .quick-links li::before {
    display: none;
  }

  .footer .contact-info p {
    font-size: 13px;
  }

  /* Sticky Footer Mobile: Show Only Quick Enquiry */
  .sticky-footer {
    background: #ff6200;
    text-align: center;
    padding: 10px 0;
  }

  .sticky-footer .sticky-call,
  .sticky-footer .sticky-email {
    display: none !important;
  }

  .sticky-footer .sticky-enquiry {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .sticky-footer .sticky-enquiry a {
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
  }

  .sticky-footer .sticky-enquiry a i {
    font-size: 18px;
    margin-right: 6px;
  }
}





/* end footer */
.back-to-top {
    position: absolute;
    bottom: 70px;
    right: 20px;
    background-color: #ff6200;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
}

.back-to-top:hover {
    background-color: #e55a00;
}

.closeBtn {
    display: flex;
    justify-content: end;
}

.mega-sale-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #1a2a44;
    position: relative;
}

.mega-img-container {
    position: relative;
    margin-right: 10px;
}

.mega-img {
    object-fit: contain;
}

.mega-title {
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    padding-right: 1rem;
    white-space: nowrap;
    font-family: 'Arial', sans-serif;
}

.vertical-line {
    height: 2rem;
    width: 2px;
    background-color: white;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
}

.mega-subtitle {
    color: white;
    font-size: 1.25rem;
    text-align: center;
    padding-left: 1rem;
    padding-right: 1rem;
    font-family: 'Arial', sans-serif;
}

.mega-subtitle .highlight {
    font-weight: 600;
    display: inline;
}

.mega-offer-image {
    position: relative;
    padding-left: 1rem;
    padding-right: 1rem;
    display: block;
}

.fit-image {
    object-fit: contain;
}

.offer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
}

.coupon-button-container {
    display: flex;
    align-items: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.coupon-button {
    display: flex;
    align-items: center;
    background-color: white;
    color: black;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
}

.close-button {
    background: transparent;
    color: white;
    font-size: 1.25rem;
    border: none;
    margin-left: 10px;
    cursor: pointer;
}

.card {
    flex: 1;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    height: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card1 {
    flex: 1;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    /* height: 500px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card1:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.blog-cards-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.blog-card {
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    width: 320px;
    display: flex;
    flex-direction: column;
    margin: 10px;
    transition: box-shadow 0.2s;
}

.blog-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.blog-card__img-wrap {
    background: #0a2340;
    border-radius: 8px;
    /* min-height: 240px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-card__img {
    max-height: 175px;
    /* max-width: 27vw; */
    border-radius: 8px;
    /* object-fit: cover; */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.blog-card__category-date-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 16px 0 16px;
}

.blog-card__category {
    background: #204d74;
    color: #fff;
    border-radius: 16px;
    padding: 5px 18px;
    font-size: 0.9em;
    font-weight: 500;
    display: inline-block;
}

.blog-card__date {
    color: #888;
    font-size: 0.9em;
}

.blog-card__title {
    font-size: 1.08em;
    font-weight: 600;
    margin: 10px 16px 6px 16px;
    color: #1c2541;
    min-height: 44px;
}

.blog-card__desc {
    font-size: 0.95em;
    color: #444;
    margin: 0 16px 16px 16px;
    min-height: 48px;
}

.blog-card__readmore {
    color: #204d74;
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.96em;
    margin: 0 16px 16px 16px;
    display: inline-block;
    transition: color 0.18s;
}

.blog-card__readmore:hover {
    color: #e67e22;
}

@media (max-width: 1000px) {
    .blog-cards-row {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .blog-card {
        width: 96vw;
        max-width: 400px;
    }
}

.success-stories {
    background-color: #effff3;
}

.vision {
    color: #ff6200;
}


.section-2 {
    text-align: center;
}

.section-2 h2 {
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 20px;
}

.section-2 h2 strong {
    color: #ff8c00;
    /* A shade of orange for the number */
}

.ratings-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rating-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.score {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.score img {
    height: 20px;
    margin-left: 5px;
}

.logo img {
    height: 60px;
    margin-top: 10px;
}


/* -------------------------------------
   Certifications Section - Mobile Responsive
-------------------------------------- */
@media (max-width: 767.98px) {
  section.text-center.my-4 h4 {
    font-size: 20px;
  }

  section.text-center.my-4 p {
    font-size: 16px;
  }

  section.text-center.my-4 img {
    max-width: 90% !important; /* reduce width for mobile */
    height: auto;
    margin: 10px 0;
  }

  section.text-center.my-4 .d-flex {
    flex-direction: column !important;
    text-align: center;
    gap: 15px;
  }

  section.text-center.my-4 p[style*="font-size: 30px;"] {
    font-size: 18px !important; /* reduce text size */
  }
}

/* ==================== CAROUSEL MOBILE & DESKTOP STYLES ==================== */

/* Mobile Responsive CSS - Only affects screens below 768px */
@media (max-width: 768px) {
  /* Carousel Container */
  .carousel-container {
    padding: 15px 0;
  }

  /* Carousel Slide Content */
  .carousel-slide .container {
    padding: 0 15px;
  }

  /* Image first, then content */
  .carousel-container .carousel-slide .row.align-items-center {
    flex-direction: column-reverse !important;
  }

  /* Top Rated Badge */
  .top-rated {
    font-size: 12px;
    padding: 5px 10px;
    text-align: center;
    margin-bottom: 10px;
  }

  /* Main Heading */
  .main-heading {
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 10px;
  }

  /* Sub Heading */
  .sub-heading {
    font-size: 14px;
    text-align: center;
    margin-bottom: 15px;
  }

  /* Enrolled Section */
  .enrolled {
    justify-content: center;
    margin-bottom: 15px;
    font-size: 14px;
  }

  .enrolled img {
    max-width: 80px;
    height: auto;
  }

  /* Features List */
  .features-list {
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .features-list li {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  /* Image Section */
  .image-section {
    margin-bottom: 20px;
    text-align: center;
  }

  .image-section img {
    max-width: 100%;
    height: auto;
  }

  .play-button {
    font-size: 20px !important;
  }

  /* Carousel Navigation Arrows */
  .prev, .next {
    top: 20%;
    font-size: 18px;
    padding: 8px 12px;
  }

  .prev {
    left: 5px;
  }

  .next {
    right: 5px;
  }

  /* Promo Section */
  .promo-sectionn {
    padding: 20px 10px;
  }

  .section-2 h1 {
    font-size: 20px;
    padding: 0 15px;
    margin-bottom: 20px;
  }

  /* Ratings Container */
  .ratings-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
  }

  .rating-card {
    width: 100%;
    max-width: 300px;
    padding: 20px;
    margin: 0 auto;
  }

  .rating-card .score {
    font-size: 24px;
  }

  .rating-card .score img {
    width: 20px;
    height: 20px;
  }

  .rating-card .logo img {
    max-width: 120px;
    height: auto;
  }

  /* Text Alignment for Mobile */
  .col-md-6 {
    text-align: center;
  }

  /* Stack buttons vertically on mobile */
  .carousel-container .button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 15px;
    margin-top: 15px;
  }

  /* Full width buttons on mobile */
  .carousel-container .btn.btn-schedule,
  .carousel-container .btn.btn-brochure {
    width: 100%;
    /* padding: 14px 20px; */
    font-size: 15px;
    border-radius: 8px;
    text-align: center;
  }

  /* Maintain outline style on mobile */
  .carousel-container .btn.btn-schedule {
    background-color: #fff;
    color: #ff6600;
    border: 2px solid #ff6600;
  }

  .carousel-container .btn.btn-schedule:active,
  .carousel-container .btn.btn-schedule:focus {
    background-color: #ff6600;
    color: #fff;
  }

  /* Maintain filled style on mobile */
  .carousel-container .btn.btn-brochure {
    background-color: #ff6600;
    color: #fff;
    border: 2px solid #ff6600;
  }

  .carousel-container .btn.btn-brochure:active,
  .carousel-container .btn.btn-brochure:focus {
    background-color: #e65500;
    border-color: #e65500;
  }
}

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 576px) {
  .main-heading {
    font-size: 18px;
  }

  .sub-heading {
    font-size: 13px;
  }

  .features-list li {
    font-size: 12px;
  }

  .section-2 h1 {
    font-size: 18px;
  }

  .rating-card {
    max-width: 250px;
    padding: 15px;
  }

  .carousel-container .btn.btn-schedule,
  .carousel-container .btn.btn-brochure {
    /* padding: 12px 18px; */
    font-size: 14px;
  }

  .carousel-container .button-group {
    gap: 10px;
  }

  /* Navigation arrows */
  .prev, .next {
    padding: 5px 8px;
    margin-top: -15px;
    font-size: 8px;
  }
}

/* Extra Small Devices */
@media (max-width: 400px) {
  .prev, .next {
    padding: 4px 7px;
    margin-top: -12px;
    font-size: 7px;
  }
}

/* ==================== DESKTOP STYLES (769px and above) ==================== */

/* Button Group Container - 4 buttons in single line */
.carousel-container .button-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 20px;
}

/* Outline Buttons (White with Orange Border) - View Schedules, Refer & Earn */
.carousel-container .btn.btn-schedule {
  background-color: #fff;
  color: #ff6600;
  border: 2px solid #ff6600;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.carousel-container .btn.btn-schedule:hover {
  background-color: #ff6600;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* Primary Filled Buttons (Orange) - Placements, Download Brochure */
.carousel-container .btn.btn-brochure {
  background-color: #ff6600;
  color: #fff;
  border: 2px solid #ff6600;
  
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.carousel-container .btn.btn-brochure:hover {
  background-color: #e65500;
  border-color: #e65500;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* Link styling inside buttons */
.carousel-container .btn a.nav-link {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.carousel-container .btn a.nav-link:hover {
  color: inherit;
  text-decoration: none;
}

/* Remove default Bootstrap button styles if conflicting */
.carousel-container .btn:focus,
.carousel-container .btn:active {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

/* Medium devices (tablets 769px to 991px) */
@media (min-width: 769px) and (max-width: 991px) {
  .carousel-container .btn.btn-schedule,
  .carousel-container .btn.btn-brochure {
    padding: 9px 16px;
    font-size: 14px;
  }
}




/* Mission and Vision Section - Desktop styles remain unchanged */
/* Mission and Vision Section - Desktop styles remain unchanged */
/* ==================== MISSION/VISION/CORE VALUES SECTION ==================== */

/* Desktop: 3 cards per row */
@media (min-width: 768px) {
  .container3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    padding: 20px;
  }

  .container3 .card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .container3 .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }

  .container3 .heading {
    font-size: 22px;
    font-weight: 700;
    color: #1e3d59;
    margin-bottom: 15px;
  }

  .container3 p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
  }
}

/* Mobile: 1 card per row */
@media (max-width: 767.98px) {
  .container3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    width: 100%;
    padding: 15px;
  }

  .container3 .card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 18px !important;
  }

  .container3 .heading {
    font-size: 18px;
    font-weight: 700;
    color: #1e3d59;
    margin-bottom: 12px;
  }

  .container3 p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
  }
}

/* ==================== STATS/FACTS SECTION ==================== */

/* Desktop: Keep Bootstrap 4 per row (col-lg-3) */
@media (min-width: 992px) {
  .fact-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .fact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(250, 104, 6, 0.2) !important;
  }

  .fact-item i {
    transition: transform 0.3s ease;
  }

  .fact-item:hover i {
    transform: scale(1.1);
  }
}

/* Tablet: 2 per row */
@media (min-width: 768px) and (max-width: 991.98px) {
  .container .row.g-4 .col-md-6 {
    width: 50%;
  }
}

/* Mobile: 2 per row */
@media (max-width: 767.98px) {
  .container .row.g-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .container .row.g-4 .col-lg-3,
  .container .row.g-4 .col-md-6 {
    width: 100%;
    padding: 0;
  }

  .fact-item {
    text-align: center;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
  }

  .fact-item i {
    font-size: 2.5rem !important;
    margin-bottom: 10px !important;
  }

  .fact-item h5 {
    font-size: 13px;
    margin-bottom: 8px !important;
  }

  .fact-item h1 {
    font-size: 28px !important;
    margin-bottom: 0 !important;
  }
}

/* Extra small devices (if you want 1 per row on very small screens) */
@media (max-width: 400px) {
  .container .row.g-4 {
    grid-template-columns: 1fr;
  }

  .fact-item {
    padding: 18px !important;
  }

  .fact-item i {
    font-size: 2.2rem !important;
  }

  .fact-item h5 {
    font-size: 12px;
  }

  .fact-item h1 {
    font-size: 24px !important;
  }
}


    @media (max-width: 767.98px) {
  
  .blog-card__img {
   width: 350px !important;
    height: 175px !important;
    object-fit: cover;
    display: block;
  }
}


    
    .blog-card__category-date-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 15px 10px;
        margin-bottom: 0;
        flex-wrap: wrap;
        gap: 8px;
    }

    .blog-card__category {
        font-size: 12px;
        padding: 4px 12px;
        background-color: #04aea1;
        color: #fff;
        border-radius: 4px;
        font-weight: 600;
    }

    .blog-card__date {
        font-size: 12px;
        color: #999;
        font-weight: 500;
    }

    .blog-card__title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.4;
        color: #333;
        padding: 0 15px;
    }

    .blog-card__desc {
        font-size: 14px;
        line-height: 1.6;
        color: #666;
        margin-bottom: 15px;
        padding: 0 15px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .blog-card__readmore {
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
        color: #04aea1;
        text-decoration: none;
        padding: 10px 20px;
        border: 2px solid #04aea1;
        border-radius: 5px;
        transition: all 0.3s ease;
        margin: 0 15px 15px;
        text-align: center;
        width: calc(100% - 30px);
    }

    .blog-card__readmore:hover {
        background-color: #04aea1;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(4, 174, 161, 0.3);
    }

    /* Ensure proper spacing */
    .col-md-4:last-child .card1 {
        margin-bottom: 30px;
    }

    


/* Extra small devices (very small phones, less than 576px) */
@media (max-width: 575.98px) {
    .row h2 {
        font-size: 22px;
    }

    .top-rated {
        font-size: 13px;
    }

    .blog-card__img {
        height: 180px;
        width: 350px;
    }

    .blog-card__title {
        font-size: 17px;
    }

    .blog-card__desc {
        font-size: 13px;
    }

    .blog-card__category {
        font-size: 11px;
        padding: 3px 10px;
    }

    .blog-card__date {
        font-size: 11px;
    }
}
/* home banner  */

@media (max-width: 600px) {
  .d-flex.justify-content-center.align-items-center.mb-5 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    width: 100%;
  }
  .d-flex.justify-content-center.align-items-center.mb-5 img {
    width: 96vw;
    max-width: 360px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 14px rgba(40,46,125,0.08);
    display: block;
    margin: 0 auto;
  }
}
/* Medium devices (tablets, 768px to 991px) - 2 cards per row */
@media (min-width: 768px) and (max-width: 991.98px) {
    .col-md-4 {
        width: 50%;
        float: left;
      margin-bottom: 30px; 
    }

    .card1 {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .blog-card__img-wrap {
        flex-shrink: 0;
    }

    .blog-card__img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .blog-card__title {
        font-size: 18px;
        min-height: 50px;
    }

    .blog-card__desc {
        font-size: 14px;
        line-height: 1.6;
        flex-grow: 1;
    }

    .blog-card__readmore {
        margin-top: auto;
    }
}


/* ==================== MOBILE RESPONSIVE CSS - NO HTML CHANGES NEEDED ==================== */

/* ========== COURSES SECTION - Targeting by .course-card ========== */
@media (max-width: 767.98px) {
  
  /* Container with course cards */
  .row:has(.course-card) {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  /* Column with course cards */
  .col-md-6:has(.course-card) {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
  }

  /* Course card styling */
  .course-card {
    width: 96vw;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(40, 46, 125, 0.08);
    background-color: #fff;
    padding: 0 0 18px 0;
    margin: 0 auto;
    overflow: hidden;
  }

  /* Image styling - only course card images */
  .course-card > img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
    display: block;
  }

  /* Card body - only course cards */
  .course-card .card-body {
    padding: 16px 14px 2px 14px;
  }

  /* Date and metadata */
  .course-card .card-body .date {
    font-size: 13px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
  }

  /* Live class badge */
  .course-card .live-class {
    font-size: 13px;
    color: #ff6600;
    font-weight: 600;
    margin: 0 3px;
  }

  /* Rating */
  .course-card .rating {
    font-weight: 700;
    color: #ff6600;
    font-size: 14px;
    margin-left: 5px;
  }

  /* Heading */
  .course-card .card-body h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 8px 0;
    color: #115570;
    line-height: 1.4;
  }

  /* Paragraph */
  .course-card .card-body p {
    font-size: 14px;
    margin: 5px 0 10px 0;
    color: #565565;
    line-height: 1.6;
  }

  /* Duration and Enrolled */
  .course-card .duration,
  .course-card .enrolled {
    font-size: 13px;
    color: #222;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .course-card .duration i,
  .course-card .enrolled i {
    color: #ff6600;
    font-size: 14px;
  }

  /* Button container - only in course cards */
  .course-card .d-flex.justify-content-between.align-items-center.mt-3 {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 15px !important;
  }

  /* Button styling - only course card buttons */
  .course-card .btn.btn-schedule,
  .course-card .btn.btn-brochure {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border: none;
    background-color: #ff6600;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 98, 0, 0.15);
    text-decoration: none;
    display: block;
  }

  /* Schedule button (outline style) */
  .course-card .btn.btn-schedule {
    background-color: #fff;
    color: #222;
    border: 2px solid #ff6600;
  }

  .course-card .btn.btn-schedule:hover,
  .course-card .btn.btn-schedule:active {
    background-color: #ff6600;
    color: #fff;
  }

  /* Brochure button hover */
  .course-card .btn.btn-brochure:hover,
  .course-card .btn.btn-brochure:active {
    background-color: #fff;
    color: #ff6600;
    border: 2px solid #ff6600;
  }
}

/* ========== DESKTOP STYLES FOR COURSE CARDS (768px and above) ========== */

/* Course card button container - Desktop */
.course-card .d-flex.justify-content-between.align-items-center.mt-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

/* Contact Course Advisor button - Outline style (Desktop) */
.course-card .btn.btn-schedule {
  background-color: #fff;
  color: #ff6600;
  border: 2px solid #ff6600;
  padding: 7px 10px !important;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.course-card .btn.btn-schedule:hover {
  background-color: #ff6600;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* See More button - Filled style (Desktop) */
.course-card .btn.btn-brochure {
  background-color: #ff6600;
  color: #fff;
  border: 2px solid #ff6600;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.course-card .btn.btn-brochure:hover {
  background-color: #e65500;
  border-color: #e65500;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* Remove default link styling */
.course-card .btn a {
  color: inherit;
  text-decoration: none;
}

/* ========== WHY CHOOSE DML SECTION - Targeting by .image-section ========== */
@media (max-width: 767.98px) {
  
  /* Row containing image-section */
  .row:has(.image-section) {
    margin-bottom: 30px !important;
    padding: 0 10px;
    flex-direction: column;
  }

  .row:has(.image-section) h1 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 1.3;
    order: -2;
  }

  .row:has(.image-section) .top-rated {
    font-size: 14px;
    padding: 0 15px;
    margin-bottom: 20px;
    order: -1;
  }

  /* Column with image section */
  .col-md-6:has(.image-section) {
    width: 100%;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  /* Image section */
  .image-section {
    margin-bottom: 0;
  }

  .image-section img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-height: 250px;
    object-fit: cover;
  }

  .image-section .play-button {
    font-size: 48px !important;
    background: rgba(255, 255, 255, 0.9);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  /* Text content column */
  .row:has(.image-section) .col-md-6:not(:has(.image-section)) {
    width: 100%;
    padding: 0 15px;
  }

  .row:has(.image-section) .col-md-6 p.lead {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
  }

  .row:has(.image-section) .col-md-6 p.lead strong {
    color: #115570;
  }
}

/* Extra small devices */
@media (max-width: 575.98px) {
  .course-card {
    width: 98vw;
    max-width: 380px;
  }

  .course-card > img {
    height: 180px;
  }

  .course-card .card-body h3 {
    font-size: 17px;
  }

  .course-card .card-body p,
  .course-card .card-body .date {
    font-size: 13px;
  }

  .row:has(.image-section) h1 {
    font-size: 20px;
  }

  .image-section img {
    max-height: 220px;
  }

  .image-section .play-button {
    font-size: 40px !important;
    width: 60px;
    height: 60px;
  }

  .row:has(.image-section) .col-md-6 p.lead {
    font-size: 14px;
  }
}


/* ========== MISSION & VISION SECTION - Targeting by .card.mission ========== */
@media (max-width: 767.98px) {
  
  /* Row with mission cards */
  .row:has(.card.mission) {
    margin-left: 0 !important;
    margin-right: 0 !important;
    gap: 20px !important;
    padding: 0 10px;
    flex-direction: column;
  }

  /* Mission and Vision cards */
  .col-md-6.card.mission {
    width: 100%;
    max-width: 100%;
    padding: 20px 18px;
    margin-bottom: 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
  }

  /* Mission/Vision headings */
  .card.mission h2.vision {
    font-size: 22px;
    margin-bottom: 15px;
    color: #115570;
    text-decoration: underline;
    text-decoration-color: #ff6600;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
  }

  /* Lead paragraphs */
  .card.mission p.lead {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
  }

  .card.mission p.lead strong {
    color: #ff6600;
    font-weight: 700;
  }

  /* List styling */
  .card.mission ul {
    padding-left: 20px;
    margin: 0;
  }

  .card.mission ul li {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
  }
}

/* ========== EXTRA SMALL DEVICES (< 576px) ========== */
@media (max-width: 575.98px) {
  
  /* Courses section adjustments */
  .course-card {
    width: 98vw;
    max-width: 380px;
  }

  .course-card > img {
    height: 180px;
  }

  .course-card .card-body h3 {
    font-size: 17px;
  }

  .course-card .card-body p,
  .course-card .card-body .date {
    font-size: 13px;
  }

  .course-card .btn.btn-schedule,
  .course-card .btn.btn-brochure {
    padding: 11px 0;
    font-size: 14px;
  }

  /* Why Choose DML adjustments */
  .row:has(.image-section) h1 {
    font-size: 20px;
  }

  .image-section img {
    max-height: 220px;
  }

  .image-section .play-button {
    font-size: 40px !important;
    width: 60px;
    height: 60px;
  }

  .row:has(.image-section) .col-md-6 p.lead {
    font-size: 14px;
  }

  /* Mission/Vision adjustments */
  .card.mission {
    padding: 18px 15px;
  }

  .card.mission h2.vision {
    font-size: 20px;
  }

  .card.mission p.lead {
    font-size: 14px;
  }

  .card.mission ul li {
    font-size: 13px;
  }
}

/* ========== SMALL TABLETS (576px - 767px) ========== */
@media (min-width: 576px) and (max-width: 767.98px) {
  .course-card {
    max-width: 500px;
  }

  .course-card > img {
    height: 220px;
  }

  .image-section img {
    max-height: 280px;
  }
}
























/* digital-marketing-institute-in-marathahalli */
/* ==================== HERO SECTION - DESKTOP & MOBILE STYLES ==================== */

/* ========== DESKTOP STYLES (Default - 769px and above) ========== */

/* Hero container */
.hero-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Top rated badge */
.top-rated {
  display: inline-block;
 

  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;

}

/* Main heading */
.main-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 15px;
}

/* Sub heading */
.sub-heading {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

/* Enrolled section */
.enrolled {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.enrolled img {
  max-width: 100px;
  height: auto;
}

.enrolled span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* Features list */
.features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.features-list li {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6600;
  font-weight: 700;
  font-size: 18px;
}

/* Button Group Container - 4 buttons in single line */
.button-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 25px;
}

/* Outline Buttons - View Schedules, Refer & Earn */
.button-group .btn.btn-schedule {
  background-color: #fff;
  color: #ff6600;
  border: 2px solid #ff6600;
  padding: 4px 4px;         /* చిన్న padding */
  border-radius: 6px;        /* కొద్దిగా చిన్న rounded */
  font-size:8px;           /* font సైజ్ తగ్గింపు */
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .button-group .btn {
    padding: 0.3rem 1rem;    /* reduced vertical and horizontal padding */
    font-size: 1rem;         /* reduce font size */
    min-width: 120px;        /* optional: reduce button width */
  }
  .button-group .nav-link {
    font-size: 1rem;         /* reduce link font size inside button */
    padding: 0;              /* remove extra link padding */
  }
}



.button-group .btn.btn-schedule:hover {
  background-color: #ff6600;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* Filled Buttons - Placements, Download Brochure */
.button-group .btn.btn-brochure {
  background-color: #ff6600;
  color: #fff;
  border: 2px solid #ff6600;
  /* padding: 10px 18px; */
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  white-space: nowrap;
}

.button-group .btn.btn-brochure:hover {
  background-color: #e65500;
  border-color: #e65500;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* Link styling inside buttons */
.button-group .btn a.nav-link {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.button-group .btn a.nav-link:hover {
  color: inherit;
  text-decoration: none;
}

/* Remove Bootstrap default button focus */
.button-group .btn:focus,
.button-group .btn:active {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

/* Image Section */
.image-section {
  position: relative;
  text-align: center;
}

.image-section img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.image-section a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-button {
  background: rgba(255, 255, 255, 0.9);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 1);
}

/* ========== MOBILE RESPONSIVE (768px and below) ========== */
@media (max-width: 768px) {
  /* Hero section padding */
  .hero-section {
    padding: 30px 0;
  }

  /* Top rated badge */
  .top-rated {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 12px;
    text-align: center;
    display: block;
  }

  /* Main heading */
  .main-heading {
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
    margin-bottom: 12px;
  }

  /* Sub heading */
  .sub-heading {
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
  }

  /* Enrolled section */
  .enrolled {
    justify-content: center;
    margin-bottom: 15px;
    font-size: 14px;
  }

  .enrolled img {
    max-width: 80px;
  }

  /* Features list */
  .features-list {
    padding-left: 10px;
    margin-bottom: 20px;
  }

  .features-list li {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  /* Button Group - Stack vertically on mobile */
  .button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0;
  }

  /* Full width buttons on mobile */
  .button-group .btn.btn-schedule,
  .button-group .btn.btn-brochure {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 8px;
    text-align: center;
  }

  /* Maintain outline style on mobile */
  .button-group .btn.btn-schedule {
    background-color: #fff;
    color: #ff6600;
    border: 2px solid #ff6600;
  }

  .button-group .btn.btn-schedule:active {
    background-color: #ff6600;
    color: #fff;
  }

  /* Maintain filled style on mobile */
  .button-group .btn.btn-brochure {
    background-color: #ff6600;
    color: #fff;
    border: 2px solid #ff6600;
  }

  .button-group .btn.btn-brochure:active {
    background-color: #e65500;
    border-color: #e65500;
  }

  /* Image Section */
  .image-section {
    margin-bottom: 25px;
  }

  .image-section img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 20px !important;
  }

  /* Reverse column order - Image first, then content */
  .row.align-items-center {
    flex-direction: column-reverse;
  }

  .col-md-6 {
    width: 100%;
    text-align: left;
  }
}

/* Extra Small Devices (576px and below) */
@media (max-width: 576px) {
  .main-heading {
    font-size: 20px;
  }

  .sub-heading {
    font-size: 14px;
  }

  .features-list li {
    font-size: 13px;
  }

  .button-group .btn.btn-schedule,
  .button-group .btn.btn-brochure {
    padding: 12px 18px;
    font-size: 14px;
  }

  .play-button {
    width: 45px;
    height: 45px;
  }
}

/* Medium devices (tablets 769px to 991px) */
@media (min-width: 769px) and (max-width: 991px) {
  .button-group .btn.btn-schedule,
  .button-group .btn.btn-brochure {
    padding: 9px 14px;
    font-size: 14px;
  }

  .main-heading {
    font-size: 30px;
  }
}



/* ==================== POPUP FORM - DESKTOP & MOBILE ==================== */

/* Popup overlay and container */
.promo-form.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); */
  z-index: 9999; /* High z-index to appear above header */
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  display: none; /* Hidden by default */
}

/* Show popup when active */
.promo-form.popup.active {
  display: block;
}

/* Overlay background */
.promo-form.popup::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:white;
  z-index: -1;
}

/* Close button */
.promo-form .closeBtn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #ff6600;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 10;
}

.promo-form .closeBtn:hover {
  color: #e65500;
  transform: scale(1.2);
}

/* Form styling */
.promo-form form {
  margin-top: 20px;
}

/* Form controls */
.promo-form .form-control,
.promo-form .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.promo-form .form-control:focus,
.promo-form .form-select:focus {
  border-color: #ff6600;
  /* box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1); */
  outline: none;
}

/* Input group styling */
.promo-form .input-group-text {
  background-color: #f8f9fa;
  border: 2px solid #e0e0e0;
  border-right: none;
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #333;
}

.promo-form .input-group .form-control {
  border-left: none;
  border-radius: 0 8px 8px 0;
}

/* Textarea */
.promo-form textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

/* Submit button */
.promo-form .btn-promo {
  width: 100%;
  background-color: #ff6600;
  color: #fff;
  border: 2px solid #ff6600;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.promo-form .btn-promo:hover {
  background-color: #e65500;
  border-color: #e65500;
  transform: translateY(-2px);
  /* box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3); */
}

/* Checkbox styling */
.promo-form .form-check {
  margin-top: 15px;
}

.promo-form .form-check-input {
  width: 18px;
  height: 18px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
}

.promo-form .form-check-input:checked {
  background-color: #ff6600;
  border-color: #ff6600;
}

.promo-form .form-check-label {
  font-size: 13px;
  color: #666;
  margin-left: 8px;
  line-height: 1.5;
}

.promo-form .form-check-label a {
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
}

.promo-form .form-check-label a:hover {
  text-decoration: underline;
}

/* Scrollbar styling for popup */
.promo-form.popup::-webkit-scrollbar {
  width: 8px;
}

.promo-form.popup::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.promo-form.popup::-webkit-scrollbar-thumb {
  background: #ff6600;
  border-radius: 10px;
}

.promo-form.popup::-webkit-scrollbar-thumb:hover {
  background: #e65500;
}

/* ========== MOBILE RESPONSIVE (768px and below) ========== */
@media (max-width: 768px) {
  .promo-form.popup {
    width: 95%;
    max-width: 95%;
    padding: 25px 20px;
    max-height: 85vh;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .promo-form .closeBtn {
    top: 10px;
    right: 15px;
    font-size: 22px;
  }

  .promo-form form {
    margin-top: 15px;
  }

  .promo-form .form-control,
  .promo-form .form-select {
    padding: 10px 12px;
    font-size: 14px;
  }

  .promo-form .input-group-text {
    padding: 10px 12px;
    font-size: 14px;
  }

  .promo-form textarea.form-control {
    min-height: 70px;
  }

  .promo-form .btn-promo {
    padding: 12px 18px;
    font-size: 15px;
  }

  .promo-form .form-check-label {
    font-size: 12px;
  }

  .promo-form .mb-3 {
    margin-bottom: 15px !important;
  }
}

/* Extra Small Devices (576px and below) */
@media (max-width: 576px) {
  .promo-form.popup {
    width: 96%;
    padding: 20px 15px;
    border-radius: 10px;
  }

  .promo-form .closeBtn {
    top: 8px;
    right: 12px;
    font-size: 20px;
  }

  .promo-form .form-control,
  .promo-form .form-select {
    padding: 10px;
    font-size: 13px;
  }

  .promo-form .input-group-text {
    padding: 10px;
    font-size: 13px;
  }

  .promo-form .btn-promo {
    padding: 11px 16px;
    font-size: 14px;
  }

  .promo-form .form-check-label {
    font-size: 11px;
  }
}

/* Ensure header stays below popup */
header,
nav,
.navbar {
  z-index: 1000 !important; /* Header z-index below popup */
}

/* Body scroll lock when popup is open */
body.popup-open {
  overflow: hidden;
}







/* ==================== BENEFITS SECTION - MOBILE RESPONSIVE (FIXED) ==================== */

/* ========== MOBILE ONLY (768px and below) ========== */
@media (max-width: 768px) {
  /* Benefits section container */
  .benefits-section {
    padding: 30px 15px;
  }

  /* Top rated badge */
  .benefits-section .top-rated {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 12px;
    text-align: center;
    display: block;
  }

  /* Section heading */
  .benefits-section h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
    word-wrap: break-word;
  }

  /* Row - Stack vertically */
  .benefits-section .row {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 0;
  }

  /* Benefits boxes */
  .benefits-section .col-md-4 {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .benefits-section .benefits-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    overflow: hidden; /* Prevent overflow */
  }

  /* Box headings */
  .benefits-section .benefits-box h3 {
    font-size: 20px;
    color: #115570;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Sub heading */
  .benefits-section .benefits-box .sub-heading {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-align: center !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* List styling */
  .benefits-section .benefits-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
  }

  .benefits-section .benefits-box ul li {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    word-wrap: break-word; /* IMPORTANT - Break long words */
    overflow-wrap: break-word; /* IMPORTANT - Break long words */
    hyphens: auto; /* Add hyphens for very long words */
    width: 100%;
    max-width: 100%;
  }

  .benefits-section .benefits-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ff6600;
    font-weight: 700;
    font-size: 16px;
  }

  /* Button styling */
  .benefits-section .btn-advisor {
    width: 100%;
    background-color: #fff;
    color: #ff6600;
    border: 2px solid #ff6600;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    display: block;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .benefits-section .btn-advisor:hover,
  .benefits-section .btn-advisor:active {
    background-color: #ff6600;
    color: #fff;
  }

  /* Ensure proper order - Individual first, then Corporate */
  .benefits-section .benefits-box:nth-child(1) {
    order: 1;
  }

  .benefits-section .benefits-box:nth-child(2) {
    order: 2;
  }
}

/* Extra Small Devices (576px and below) */
@media (max-width: 576px) {
  .benefits-section {
    padding: 25px 10px;
  }

  .benefits-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .benefits-section .benefits-box {
    padding: 18px 15px;
    overflow: hidden;
  }

  .benefits-section .benefits-box h3 {
    font-size: 18px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .benefits-section .benefits-box .sub-heading {
    font-size: 13px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .benefits-section .benefits-box ul li {
    font-size: 13px;
    margin-bottom: 10px;
    padding-left: 22px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .benefits-section .benefits-box ul li::before {
    font-size: 14px;
  }

  .benefits-section .btn-advisor {
    padding: 11px 18px;
    font-size: 14px;
    white-space: normal; /* Allow button text to wrap if needed */
  }

  .benefits-section .row {
    gap: 20px;
  }
}

/* Extra Small Devices (400px and below) */
@media (max-width: 400px) {
  .benefits-section {
    padding: 20px 8px;
  }

  .benefits-section h2 {
    font-size: 18px;
  }

  .benefits-section .benefits-box {
    padding: 15px 12px;
  }

  .benefits-section .benefits-box h3 {
    font-size: 17px;
  }

  .benefits-section .benefits-box ul li {
    font-size: 12px;
    padding-left: 20px;
  }

  .benefits-section .btn-advisor {
    font-size: 13px;
    padding: 10px 15px;
  }
}



/* ==================== PLATFORMS SECTION - MOBILE RESPONSIVE (2 PER ROW) ==================== */

/* ========== MOBILE ONLY (768px and below) ========== */
@media (max-width: 768px) {
  /* Section padding */
  section.py-5 {
    padding: 30px 0 !important;
  }

  /* Container */
  section .container {
    padding: 0 15px;
  }

  /* Top rated badge */
  section .top-rated {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 12px;
    text-align: center !important;
    display: block;
  }

  /* Section heading */
  section h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
  }

  /* Row - Force 2 columns per row */
  section .row.row-cols-2.row-cols-md-3.row-cols-lg-5 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 0;
  }

  /* Each platform column */
  section .row .col {
    width: 100%;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    min-height: 100px;
  }

  section .row .col:active {
    transform: scale(0.98);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }

  /* Icon sizing */
  section .row .col i {
    font-size: 36px !important;
    margin-bottom: 8px;
  }

  /* Platform name */
  section .row .col .mt-2 {
    margin-top: 8px !important;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.3;
  }
}

/* Extra Small Devices (576px and below) */
@media (max-width: 576px) {
  /* Section padding */
  section.py-5 {
    padding: 25px 0 !important;
  }

  /* Section heading */
  section h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  /* Row - Maintain 2 columns */
  section .row.row-cols-2.row-cols-md-3.row-cols-lg-5 {
    gap: 12px;
  }

  /* Each platform column */
  section .row .col {
    padding: 12px 8px;
    min-height: 90px;
  }

  /* Icon sizing */
  section .row .col i {
    font-size: 32px !important;
    margin-bottom: 6px;
  }

  /* Platform name */
  section .row .col .mt-2 {
    font-size: 13px;
  }
}

/* Extra Small Devices (400px and below) */
@media (max-width: 400px) {
  section h2 {
    font-size: 18px;
  }

  section .row.row-cols-2.row-cols-md-3.row-cols-lg-5 {
    gap: 10px;
  }

  section .row .col {
    padding: 10px 6px;
    min-height: 80px;
  }

  section .row .col i {
    font-size: 28px !important;
  }

  section .row .col .mt-2 {
    font-size: 12px;
  }
}


/* ==================== REVIEWS SECTION - MOBILE RESPONSIVE ==================== */

/* ========== MOBILE ONLY (768px and below) ========== */
@media (max-width: 768px) {
  /* Reviews section */
  .reviews-section {
    padding: 30px 0;
    margin-bottom: 30px !important;
  }

  .reviews-section .container {
    padding: 0 15px;
  }

  /* Top rated badge */
  .reviews-section .top-rated {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 12px;
    text-align: center;
    display: block;
  }

  /* Section heading */
  .reviews-section h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
  }

  /* Carousel - Show 1 card per slide */
  .reviews-section .carousel-inner .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .reviews-section .col-md-4 {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  /* Testimonial card */
  .reviews-section .testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
  }

  .reviews-section .testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
  }

  /* Author info */
  .reviews-section .author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .reviews-section .author h5 {
    font-size: 16px;
    font-weight: 700;
    color: #115570;
    margin: 0;
  }

  .reviews-section .author p {
    font-size: 13px;
    color: #666;
    margin: 0;
  }

  /* LinkedIn link */
  .reviews-section .linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0077b5;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .reviews-section .linkedin:hover {
    color: #005582;
    text-decoration: underline;
  }

  .reviews-section .linkedin i {
    font-size: 16px;
  }

  /* Carousel controls */
  .reviews-section .carousel-control-prev,
  .reviews-section .carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 102, 0, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }

  .reviews-section .carousel-control-prev {
    left: -10px;
  }

  .reviews-section .carousel-control-next {
    right: -10px;
  }

  .reviews-section .carousel-control-prev-icon,
  .reviews-section .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }
}

/* ==================== FAQ SECTION - MOBILE RESPONSIVE ==================== */

/* ========== MOBILE ONLY (768px and below) ========== */
@media (max-width: 768px) {
  /* FAQ section */
  .sem-faq-section {
    padding: 30px 0 !important;
  }

  .sem-faq-section .container {
    padding: 0 15px;
  }

  /* Top rated badge */
  .sem-faq-section .top-rated {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 12px;
    text-align: center !important;
    display: block;
  }

  /* Section heading */
  .sem-faq-section h2 {
    font-size: 22px;
    margin-bottom: 25px;
    line-height: 1.3;
  }

  /* Accordion */
  .sem-faq-section .accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Accordion item */
  .sem-faq-section .accordion > div {
    border-radius: 10px !important;
    overflow: hidden;
    border: 1px solid #ffd9b3;
  }

  /* Accordion button */
  .sem-faq-section .accordion-button {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #1a2a44;
    line-height: 1.4;
    border: none;
  }

  .sem-faq-section .accordion-button:not(.collapsed) {
    color: #1a2a44;
    box-shadow: none;
  }

  .sem-faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
  }

  /* Accordion body */
  .sem-faq-section .accordion-body {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    background-color: #fff;
  }

  /* Accordion icon */
  .sem-faq-section .accordion-button::after {
    width: 18px;
    height: 18px;
    background-size: 18px;
  }
}

/* Extra Small Devices (576px and below) */
@media (max-width: 576px) {
  /* Reviews section */
  .reviews-section {
    padding: 25px 0;
  }

  .reviews-section h2 {
    font-size: 20px;
  }

  .reviews-section .testimonial-card {
    padding: 18px 15px;
  }

  .reviews-section .testimonial-card p {
    font-size: 13px;
  }

  .reviews-section .author h5 {
    font-size: 15px;
  }

  .reviews-section .author p {
    font-size: 12px;
  }

  .reviews-section .linkedin {
    font-size: 12px;
  }

  .reviews-section .carousel-control-prev,
  .reviews-section .carousel-control-next {
    width: 35px;
    height: 35px;
  }

  .reviews-section .carousel-control-prev {
    left: -40px;
  }

  .reviews-section .carousel-control-next {
    right: -40px;
  }

  /* FAQ section */
  .sem-faq-section {
    padding: 25px 0 !important;
  }

  .sem-faq-section h2 {
    font-size: 20px;
  }

  .sem-faq-section .accordion-button {
    padding: 12px 14px;
    font-size: 14px;
  }

  .sem-faq-section .accordion-body {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* Extra Small Devices (400px and below) */
@media (max-width: 400px) {
  .reviews-section h2,
  .sem-faq-section h2 {
    font-size: 18px;
  }

  .reviews-section .testimonial-card {
    padding: 15px 12px;
  }

  .sem-faq-section .accordion-button {
    padding: 10px 12px;
    font-size: 13px;
  }

  .sem-faq-section .accordion-body {
    padding: 10px 12px;
    font-size: 12px;
  }
}








/* ==================== SOCIAL MEDIA TOOLS SECTION - MOBILE RESPONSIVE ==================== */

/* ========== MOBILE ONLY (768px and below) ========== */
@media (max-width: 768px) {
  /* Section padding */
  section[style*="background-color: #f9f9f9"] {
    padding: 30px 0 !important;
  }

  /* Container */
  section[style*="background-color: #f9f9f9"] .container {
    padding: 0 15px;
  }

  /* Top rated badge */
  section[style*="background-color: #f9f9f9"] .top-rated {
    font-size: 12px;
    padding: 6px 12px;
    margin-bottom: 12px;
    text-align: center;
    display: block;
  }

  /* Section heading */
  section[style*="background-color: #f9f9f9"] h2 {
    font-size: 22px;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
  }

  /* Force 2 columns per row using CSS Grid */
  section[style*="background-color: #f9f9f9"] .row.g-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0;
  }

  /* Each tool column */
  section[style*="background-color: #f9f9f9"] .row .col-4,
  section[style*="background-color: #f9f9f9"] .row .col-sm-3,
  section[style*="background-color: #f9f9f9"] .row .col-md-2 {
    width: 100%;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
    min-height: 110px;
  }

  section[style*="background-color: #f9f9f9"] .row .col-4:active,
  section[style*="background-color: #f9f9f9"] .row .col-sm-3:active,
  section[style*="background-color: #f9f9f9"] .row .col-md-2:active {
    transform: scale(0.98);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  }

  /* Icon sizing */
  section[style*="background-color: #f9f9f9"] .row i {
    font-size: 40px !important;
    margin-bottom: 10px;
  }

  /* Tool name */
  section[style*="background-color: #f9f9f9"] .row div[style*="margin-top"] {
    margin-top: 10px !important;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.3;
  }
}

/* Extra Small Devices (576px and below) */
@media (max-width: 576px) {
  /* Section padding */
  section[style*="background-color: #f9f9f9"] {
    padding: 25px 0 !important;
  }

  /* Section heading */
  section[style*="background-color: #f9f9f9"] h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  /* Grid gap */
  section[style*="background-color: #f9f9f9"] .row.g-4 {
    gap: 15px;
  }

  /* Each tool column */
  section[style*="background-color: #f9f9f9"] .row .col-4,
  section[style*="background-color: #f9f9f9"] .row .col-sm-3,
  section[style*="background-color: #f9f9f9"] .row .col-md-2 {
    padding: 12px 8px;
    min-height: 100px;
  }

  /* Icon sizing */
  section[style*="background-color: #f9f9f9"] .row i {
    font-size: 36px !important;
    margin-bottom: 8px;
  }

  /* Tool name */
  section[style*="background-color: #f9f9f9"] .row div[style*="margin-top"] {
    font-size: 13px;
  }
}

/* Extra Small Devices (400px and below) */
@media (max-width: 400px) {
  section[style*="background-color: #f9f9f9"] h2 {
    font-size: 18px;
  }

  section[style*="background-color: #f9f9f9"] .row.g-4 {
    gap: 12px;
  }

  section[style*="background-color: #f9f9f9"] .row .col-4,
  section[style*="background-color: #f9f9f9"] .row .col-sm-3,
  section[style*="background-color: #f9f9f9"] .row .col-md-2 {
    padding: 10px 6px;
    min-height: 90px;
  }

  section[style*="background-color: #f9f9f9"] .row i {
    font-size: 32px !important;
  }

  section[style*="background-color: #f9f9f9"] .row div[style*="margin-top"] {
    font-size: 12px;
  }
}



#explore-programs-desktop {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
}

@media (max-width: 767.98px) {
  .promo-section .row {
    display: flex;
    flex-direction: column;
  }
  .promo-section .col-md-6:first-child {
    order: 1;
    width: 100%;
    margin-bottom: 25px;
  }
  .promo-section .col-md-6:last-child {
    order: 2;
    width: 100%;
  }
}







/* MOBILE: Center image, one per row, consistent size */
@media (max-width: 767.98px) {
  #reviewsCarousel .carousel-inner .row {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px;
  }
  #reviewsCarousel .carousel-item .col-12,
  #reviewsCarousel .carousel-item .col-sm-6,
  #reviewsCarousel .carousel-item .col-md-4,
  #reviewsCarousel .carousel-item .col-lg-3 {
    width: 100% !important;
    max-width: 340px;
    display: flex !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0;
    padding-right: 0;
  }
  #reviewsCarousel .card {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  #reviewsCarousel .overflow-hidden {
    width: 100% !important;
    max-width: 340px;
    height: 200px !important;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #reviewsCarousel img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border-radius: 14px 14px 0 0;
  }
}

/* DESKTOP: Center image in the card, multi-column layout */
@media (min-width: 768px) {
  #reviewsCarousel .carousel-inner .row {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  #reviewsCarousel .carousel-item .col-12,
  #reviewsCarousel .carousel-item .col-sm-6,
  #reviewsCarousel .carousel-item .col-md-4,
  #reviewsCarousel .carousel-item .col-lg-3 {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 12px;
    padding-right: 12px;
  }
  #reviewsCarousel .card {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
  }
  #reviewsCarousel .overflow-hidden {
    width: 100% !important;
    max-width: 270px;
    height: 270px !important;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #reviewsCarousel img {
    width: 100% !important;
    height: 270px !important;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border-radius: 16px 16px 0 0;
  }
}





@media (max-width: 767.98px) {
  .seo-tools-section .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 0;
  }

  .seo-tools-section .col-md-3,
  .seo-tools-section .col-6 {
    width: 100% !important;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .seo-tools-section i {
    font-size: 36px !important;
    margin-bottom: 8px;
    display: block;
  }

  .seo-tools-section div[style*="font-size"],
  .seo-tools-section .col-md-3 > div:not(:has(i)) {
    font-size: 13px !important;
    margin-bottom: 0;
    margin-top: 5px;
    color: #444;
    text-align: center;
  }
}

/* Extra small devices (less than 576px) */
@media (max-width: 576px) {
  .seo-tools-section .row {
    gap: 10px;
  }
  .seo-tools-section i {
    font-size: 32px !important;
  }
  .seo-tools-section div[style*="font-size"],
  .seo-tools-section .col-md-3 > div:not(:has(i)) {
    font-size: 12px !important;
  }
}





@media (min-width: 992px) {
  .text-center.px-5.mb-4 {
    padding-left: 180px !important;
    padding-right: 180px !important;
  }
}
@media (min-width: 992px) {
  p.mb-5.mt-3.px-3 {
    padding-left: 180px !important;
    padding-right: 180px !important;
  }
}
@media (min-width: 992px) {
  .text-center.px-5.mb-4 {
    padding-left: 180px !important;
    padding-right: 180px !important;
  }
}


@media (max-width: 767.98px) {
  .card-body {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    justify-content: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .card-body a,
  .card-body img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .card-body img {
    max-width: 250px !important;
    width: 90vw;
    height: 220px !important;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  }
}

@media (max-width: 767.98px) {
  .seo-tools-section .row,
  section[style*="background-color: #f9f9f9"] .row.row-cols-1 {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0;
  }
  .seo-tools-section .col,
  section[style*="background-color: #f9f9f9"] .col {
    width: 100% !important;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
  }
  .feature-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 8px rgba(255,98,0,0.06);
    padding: 18px 6px 15px 6px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 70px;
  }
  .feature-item i {
    font-size: 26px !important;
    min-width: 32px;
    margin-right: 6px;
    margin-top: 3px;
  }
  .feature-item strong {
    font-size: 14px;
    color: #333;
  }
  .feature-item div {
    font-size: 13px;
    color: #444;
    line-height: 1.4;
  }
}







@media (max-width: 767.98px) {
  .seo-tools-section .row {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 0;
  }
  .seo-tools-section .col-md-3 {
    width: 100% !important;
    max-width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 8px rgba(255,98,0,0.06);
    min-height: 120px;
  }
  .seo-tools-section i {
    font-size: 36px !important;
    margin-bottom: 8px;
    margin-top: 5px;
    display: block;
  }
  .seo-tools-section .col-md-3 > div {
    font-size: 13px !important;
    color: #444;
    text-align: center !important;
    margin-bottom: 0;
    margin-top: 6px;
    line-height: 1.3;
  }
}

/* Extra small devices (less than 576px) */
@media (max-width: 576px) {
  .seo-tools-section .row {
    gap: 10px;
  }
  .seo-tools-section i {
    font-size: 32px !important;
  }
  .seo-tools-section .col-md-3 > div {
    font-size: 12px !important;
  }
}










@media (max-width: 767.98px) {
  /* Left align all headings and text */
  .container h1,
  .container h2,
  .container h3,
  .container h4,
  .container h5,
  .container h6,
  .container p,
  .container .lead,
  .container li,
  .container .top-rated,
  .container .card-body,
  .container ul,
  .container .date,
  .container .duration,
  .container .enrolled {
    text-align: left !important;
  }

  /* Remove auto margin side centering for h1 and h2 if present */
  .container h1,
  .container h2 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Optional: If you have .card and want text left aligned */
  .container .card {
    text-align: left !important;
    height: 200px !important;
  }

  /* Optional: List align left and standard spacing */
  .container ul {
    padding-left: 20px;
    margin-bottom: 12px;
  }
}


/* Add background image to the parent container */
.col-md-8 {
  background-image: url('path/to/your-image.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8%;
}






/* Alternative: Also try applying to the parent if above doesn't work */
#hero .col-md-12 {
 
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Remove any conflicting background colors */
#hero,
#hero .container-fluid,
.bg.ht {
  background-color: transparent !important;
}

/* Text styling with background overlay */
.col-md-8 h3,
.col-md-8 h1 {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  line-height: 1.4;
  margin-bottom: 15px;
}

/* Form styling */
form {
  width: 100%;
  max-width: 450px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

/* MOBILE RESPONSIVE */
@media (max-width: 767.98px) {
  .bg.ht {
    min-height: auto;
    padding: 20px 0;
  }

  .bg.ht .row {
    padding-top: 30px !important;
    flex-direction: column;
  }

  .col-md-8 {
    padding-top: 20px !important;
    order: 1;
    margin-bottom: 30px;
  }

  .col-md-8 h3 {
    font-size: 16px !important;
    padding: 10px 15px;
  }

  .col-md-8 h1 {
    font-size: 20px !important;
    padding: 12px 18px;
  }

  .col-md-4 {
    order: 2;
    width: 100%;
    padding: 0 15px;
  }

  form {
    padding: 20px !important;
    margin: 0 auto;
    max-width: 100%;
  }
}




/* Background with dark overlay */
#hero .col-md-12 {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Dark overlay on background - 50% opacity */
.bg.ht::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 50% black overlay */
  z-index: 1;
  pointer-events: none;
}

/* Ensure content appears above overlay */
.bg.ht .row {
  position: relative;
  z-index: 2;
}

/* Remove any conflicting background colors */
#hero,
#hero .container-fluid,
.bg.ht {
  background-color: transparent !important;
}

/* Position relative for overlay */
.bg.ht {
  position: relative;
}

/* Text styling with background overlay */
.col-md-8 h3,
.col-md-8 h1 {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  line-height: 1.4;
  margin-bottom: 15px;
  color: rgb(30, 61, 89);
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Form styling */
form {
  width: 100%;
  max-width: 450px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
}

/* MOBILE RESPONSIVE */
@media (max-width: 767.98px) {
  .bg.ht {
    min-height: auto;
    padding: 20px 0;
  }

  .bg.ht .row {
    padding-top: 30px !important;
    flex-direction: column;
  }

  .col-md-8 {
    padding-top: 20px !important;
    order: 1;
    margin-bottom: 30px;
  }

  .col-md-8 h3 {
    font-size: 16px !important;
    padding: 10px 15px;
  }

  .col-md-8 h1 {
    font-size: 20px !important;
    padding: 12px 18px;
  }

  .col-md-4 {
    order: 2;
    width: 100%;
    padding: 0 15px;
  }

  form {
    padding: 20px !important;
    margin: 0 auto;
    max-width: 100%;
  }
}














/* Projects Section - Text Color Override */
#projects .portfolio-overlay .text-white {
    color: #000000 !important;
}

#projects .portfolio-overlay small {
    color: #000000 !important;
}

#projects .portfolio-overlay h5 {
    color: #000000 !important;
}

/* Remove inline styles that set color to black */
#projects .portfolio-overlay small i {
    color: #000000 !important;
}

/* Ensure all text in portfolio overlay is black */
#projects .portfolio-overlay {
    background: rgba(255, 255, 255, 0.9);
}

#projects .portfolio-overlay .mt-auto small,
#projects .portfolio-overlay .mt-auto h5 {
    color: #000000 !important;
}

/* Desktop Version - No additional changes needed */
@media (min-width: 768px) {
    #projects .portfolio-overlay .text-white {
        color: #000000 !important;
    }
}

/* Mobile Version - Ensure black text */
@media (max-width: 767px) {
    #projects .portfolio-overlay .text-white {
        color: #000000 !important;
    }
    
    #projects .portfolio-overlay small {
        color: #000000 !important;
        font-size: 12px;
    }
    
    #projects .portfolio-overlay h5 {
        color: #000000 !important;
        font-size: 14px;
    }
    
    /* Adjust overlay background for better visibility on mobile */
    #projects .portfolio-overlay {
        background: rgba(255, 255, 255, 0.95);
    }
}




/* Desktop Version - 3 cards in a row */
@media (min-width: 768px) {
    .reviews-slider {
      
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .reviews-slider .review {
        flex-shrink: 0;
        width: calc(50% - 5px) !important;
        max-width: 350px;
        height: 300px;
        text-align: center;
        padding: 30px;
        border: 2px solid #fa6606;
        border-radius: 8px;
        background: #fff;
    }
    
    .reviews-slider .review img {
        width: 100% !important;
        height: 100%;
        object-fit: cover;
        border: none;
        border-radius: 4px;
    }
}

/* Large Desktop - maintain 3 cards with better spacing */
@media (min-width: 1024px) {
    .reviews-slider .review {
        width: calc(50% - 10px) !important;
        max-width: 320px;
        padding: 8px;
        border: 2px solid #fa6606;
        border-radius: 8px;
    }
}

/* Extra Large Desktop */
@media (min-width: 1200px) {
    .reviews-slider .review {
        width: calc(50% - 30px) !important;
        max-width: 350px;
        height: 350px !important;
        padding: 8px;
        border: 2px solid #fa6606;
        border-radius: 8px;
    }
}

/* Mobile Version - Keep as is (no changes) */
@media (max-width: 767px) {
    .reviews-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .reviews-slider .review {
        scroll-snap-align: start;
        padding: 8px;
    }
    
    .reviews-slider .review img {
        border: 2px solid #fa6606;
        border-radius: 8px;
    }
}







/* Mobile Version - 1 card per row */
@media (max-width: 767px) {
    #projects .portfolio-item {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    
    #projects .row.g-4 {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    #projects .col-lg-4,
    #projects .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    #projects .portfolio-item .position-relative {
        margin-bottom: 15px;
    }
    
    #projects .portfolio-item img {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: cover;
    }
    
    #projects .portfolio-overlay {
        padding: 10px;
    }
    
    #projects .portfolio-overlay small {
        font-size: 12px;
    }
    
    #projects .portfolio-overlay h5 {
        font-size: 14px;
    }
}





/* Mobile Version - Center Contact Button */
@media (max-width: 767px) {
    .pb-5 .row {
        justify-content: center;
    }
    
    .pb-5 .col-md-5 {
        display: none;
    }
    
    .pb-5 .col-md-2 {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
        padding: 0 15px;
    }
    
    .pb-5 .col-md-2 .btn {
        display: inline-block;
        width: auto;
        min-width: 150px;
    }
}



/* Benefits Section - General Styles */
.benefits-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.benefits-section .top-rated {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #fa6606;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.benefits-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: rgb(30, 61, 89);
    margin-bottom: 40px;
}

.benefits-box {
    background-color: #ffffff;
    border: 2px solid #fa6606;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefits-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.benefits-box h3 {
    font-size: 24px;
    font-weight: bold;
    color: rgb(30, 61, 89);
    margin-bottom: 15px;
}

.benefits-box .sub-heading {
    font-size: 16px;
    font-weight: 600;
    color: #fa6606;
    margin-bottom: 20px;
}

.benefits-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.benefits-box ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.benefits-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #fa6606;
    font-weight: bold;
    font-size: 18px;
}

.btn-advisor {
    background-color: rgb(30, 61, 89);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 auto;
}

.btn-advisor:hover {
    background-color: #fa6606;
    color: white;
}

/* Desktop Version */
@media (min-width: 768px) {
    .benefits-section .row {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .benefits-box {
        flex: 0 0 45%;
        max-width: 500px;
    }
}

/* Mobile Version - Responsive Design */
@media (max-width: 767px) {
    .benefits-section {
        padding: 30px 15px;
    }
    
    .benefits-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .benefits-section .top-rated {
        font-size: 14px;
    }
    
    .benefits-box {
        margin: 10px 0 !important;
        padding: 20px 15px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .benefits-box h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .benefits-box .sub-heading {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .benefits-box ul li {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 10px;
        padding-left: 20px;
    }
    
    .benefits-box ul li::before {
        font-size: 16px;
    }
    
    .btn-advisor {
        width: 100%;
        max-width: 300px;
        font-size: 14px;
        padding: 10px 20px;
        display: block !important;
        margin: 0 auto !important;
    }
    
    .benefits-section .row {
        margin: 0;
    }
    
    .col-md-4 {
        padding: 0 10px;
    }
}

/* Tablet Version */
@media (min-width: 768px) and (max-width: 991px) {
    .benefits-box {
        flex: 0 0 100%;
        max-width: 600px;
        margin: 10px auto !important;
    }
    
    .benefits-section .row {
        flex-direction: column;
        align-items: center;
    }
}










/* Quick Enquiry Sticky Button */
.sticky-enquiry {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sticky-enquiry a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.sticky-enquiry a:hover {
  color: #333;
}

.sticky-enquiry i {
  font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sticky-enquiry {
    margin-top: 10px;
  }
  
  .sticky-enquiry a {
    font-size: 13px;
  }
}





/* Sticky Email */
.sticky-email {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sticky-email a {
  text-decoration: none;
}

.sticky-email .email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.sticky-email a:hover .email {
  color: #333;
}

.sticky-email i {
  font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .sticky-email {
    justify-content: center;
    margin-top: 10px;
  }
  
  .sticky-email .email {
    font-size: 13px;
  }
}






/* ===== Carousel Section Styling ===== */
.reviews- {
  background-color: #f8fbff;
  padding: 60px 0;
  position: relative;
  text-align: center;
  overflow: visible; /* allows outside buttons */
}

.reviews- .top-rated {
  color: #ff6b00;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.reviews- h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
}

/* ===== Testimonial Card ===== */
.testimonial-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.testimonial-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== Author Info ===== */
.testimonial-card .author h5 {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  margin-bottom: 2px;
}

.testimonial-card .author p {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

/* ===== LinkedIn Link ===== */
.testimonial-card .linkedin {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: #0a66c2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.testimonial-card .linkedin:hover {
  color: #004182;
}

/* ===== Carousel Controls (Always Outside) ===== */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: none;
  border: none;
  z-index: 10;
}

/* Position outside the container for all screens */
.carousel-control-prev {
  left: -50px;
}

.carousel-control-next {
  right: -70px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #ff6b00;
  border-radius: 50%;
  background-size: 50%;
  /* padding: 20px; */
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: #e35b00;
  transform: scale(1.1);
}

/* ===== Responsive Design ===== */

/* --- Tablets (<= 991px) --- */
@media (max-width: 991px) {
  .reviews- {
    padding: 50px 15px;
  }

  .reviews- h2 {
    font-size: 1.7rem;
  }

  .testimonial-card {
    padding: 22px;
  }

  .carousel-control-prev {
    left: -120px;
  }

  .carousel-control-next {
    right: -80px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 18px;
  }
}

/* --- Mobile (<= 767px) --- */
@media (max-width: 767px) {
  .reviews- {
    padding: 40px 10px;
  }

  .reviews- h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .testimonial-card {
    padding: 20px;
  }

  /* Keep buttons outside, but closer */
  .carousel-control-prev {
    left: -35px;
  }

  .carousel-control-next {
    right: -35px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 16px;
  }
}

/* --- Small Mobile (<= 480px) --- */
@media (max-width: 480px) {
  .reviews- {
    padding: 35px 5px;
  }

  .testimonial-card {
    padding: 15px;
  }

  /* Buttons still outside, but smaller */
  .carousel-control-prev {
    left: -55px;
  }

  .carousel-control-next {
    right: -55px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    padding: 12px;
    width: 40px;
    height: 40px;
  }
}


























:root {
  --brand-orange: #ff6600; /* tweak if your brand orange differs */
}

/* Base style */
.btn-outline-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;

  background: #fff;                  /* white like the screenshot */
  color: var(--brand-orange);
  border: 2px solid var(--brand-orange);
  border-radius: 999px;               /* pill/rounded look */
  font-weight: 700;                   /* bold like the image */
  line-height: 1.25;
  text-decoration: none;
  transition: all .2s ease;
  padding: .5rem 1rem;                /* mobile-friendly size */
  font-size: 0.95rem;                 /* readable on mobile */
}

/* Desktop: make it a bit shorter/compact */
@media (min-width: 992px) {
  .btn-outline-orange {
    padding: .45rem 1rem;
    font-size: 0.9rem;
  }
}

/* Hover / Focus / Active */
.btn-outline-orange:hover,
.btn-outline-orange:focus {
  background: var(--brand-orange);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
  transform: translateY(-1px);
}

.btn-outline-orange:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 102, 0, 0.18);
}

/* Optional: nicer focus ring for accessibility */
.btn-outline-orange:focus-visible {
  outline: none;
  box-shadow: 0 0 0 .2rem rgba(255, 102, 0, .25);
}

/* If inside a Bootstrap navbar, add a tiny gap on the left */
.navbar .header-cta {
  margin-left: .5rem;
}
