*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =====================
   TOP BAR
===================== */
.top-bar {
  background: #020024;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}
.top-bar a {
  color: #fff;
  margin-left: 12px;
}

/* NAVBAR */
.main-navbar {
  background: #fff;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  z-index: 999;
}

/* Sticky animation */
.main-navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Desktop links */
.navbar-nav .nav-link {
  font-weight: 700;
  margin: 0 15px;
  color: #000;
  font-size: 18px;
  transition: all 0.3 ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #e85e24;
}

/* Button */
.btn-touch {
  background: linear-gradient(135deg, #f58e1d, #e85e24);
  color: #fff;
  border-radius: 30px;
  padding: 8px 18px;
  transition: all 0.3 ease;
}

.btn-touch:hover {
  background: linear-gradient(135deg, #e85e24, #f58e1d);
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  max-width: 80%;
  height: 100%;
  background: #fff;
  z-index: 1001;
  padding: 20px;
  transition: left 0.4s ease;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li {
  margin-bottom: 15px;
}

.mobile-menu ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #000;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ====================== HERO SECTION ======================= */

/* Hero Image */


.hero-img {
  max-width: 100%;
  height: auto;
  animation: imageMovement 5s ease-in-out infinite;
}

@keyframes imageMovement {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Container for the text and border */
.border-container {
  display: inline-block;
  padding: 7px; 
  border: 1px solid #e85e24; 
  border-radius: 50px; 
  position: relative;
  font-size: 16px; 
  font-weight: 600; 
  text-align: center;
  margin-bottom: 20px;
}

/* Text inside the container */
.year {
  margin: 0;
  color: #010101; 
  font-size: inherit; 
}
.hero-btn2{
  color: #e85e24;
  border: 1px solid #e85e24;
  background-color: transparent;
  transition: all 0.3 ease;
}
.hero-btn2:hover{
  color: #fff;
  background: linear-gradient(135deg, #e85e24, #f58e1d);
}

.hero-btn1{
  color: #fff;
  background: linear-gradient(135deg, #e85e24, #f58e1d);
  transition: all 0.3 ease;
}
.hero-btn1:hover{
  color: #e85e24;
  border: 1px solid #e85e24;
  background: transparent !important;
}

/* Responsive design to adjust font size and padding */
@media screen and (max-width: 768px) {
  .border-container {
    font-size: 16px; /* Adjust font size for smaller screens */
    padding: 8px;
  }
}


/* features section */
.features-section {
  background: #f8f9fa;
}

/* Card */
.feature-card {
  background: #fff;
  border-radius: 22px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.35s ease;
}

/* Icon */
.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: #fde6d3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #f58e1d;
  transition: all 0.35s ease;
}

/* Text */
.feature-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Hover */
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.08);
}

.feature-card:hover .icon-circle {
  background: linear-gradient(135deg, #f58e1d, #e85e24);
  color: #fff;
}

/* Responsive */
@media (max-width: 576px) {
  .feature-card {
    padding: 30px 20px;
  }
}

/* about section */
.about-section {
  background: #fff;
}

/* Image */
.about-img-wrap {
  position: relative;
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #e85e24;
  color: #fff;
  padding: 18px 28px;
  border-radius: 16px;
  text-align: center;
}

.experience-badge .number {
  font-size: 32px;
  font-weight: 800;
  display: block;
}

.experience-badge .text {
  font-size: 12px;
  text-transform: uppercase;
}

/* Text */
.section-tag {

  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  
   display: inline-block;
  padding: 6px 14px;
  border: 1px solid #f58e1d;
  border-radius: 20px;
  color: #e85e24;
  background: rgba(253, 230, 211, 0.874);
}

.about-title {
  font-size: 25px;
  font-weight: 800;
  margin: 12px 0 20px;
}

.about-title span {
  color: #e85e24;
}

.about-desc {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* Feature items */
.about-feature {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.about-feature .icon {
  width: 48px;
  height: 48px;
  background: #f9dbce;
  color: #e85e24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* IMPORTANT */
}

.about-feature .icon i {
  font-size: 20px;   /* CONTROL ICON SIZE */
  line-height: 1;    /* PREVENT OVAL ISSUE */
}


.about-feature h6 {
  margin: 0;
  font-weight: 700;
}

.about-feature p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #666;
}

/* Bottom */
.about-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
}

.about-btn {
  background: linear-gradient(135deg, #f58e1d, #e85e24);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  transition: all 0.3 ease;
}
.about-btn:hover{
    background: linear-gradient(135deg, #e85e24, #f58e1d);
  color: #fff;
}
.customer-box {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e85e24;
}

.customer-box i {
  font-size: 32px;
}

.customer-box strong {
  font-size: 20px;
  display: block;
}

/* Responsive */
@media (max-width: 991px) {
  .about-title {
    font-size: 34px;
  }

  .experience-badge {
    left: 10px;
    bottom: -15px;
  }
}

@media (max-width: 576px) {
  .about-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ======================
   ACHIEVEMENT SECTION
====================== */

.achievement-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #e85e24, #f58e1d);
  color: #fff;
}

/* Box */
.achievement-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* Icon circle */
.achievement-box .icon {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon */
.achievement-box .icon i {
  font-size: 22px;
  color: #e85e24;
}

/* Counter number */
.achievement-box h4 {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  color: #fff;
}

/* Label */
.achievement-box p {
  font-size: 14px;
  opacity: 0.95;
  margin: 0;
}

/* Heading */
.achievement-title {
  color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
  .achievement-box .icon {
    width: 46px;
    height: 46px;
  }

  .achievement-box h4 {
    font-size: 22px;
  }
}


/* courses section */
.featured-title {
    font-size: 1.6rem;
    color: #222;
    white-space: nowrap;
  }

  .all-courses-btn {
    background: linear-gradient(135deg, #e85e24, #f58e1d);
    color: #fff;
    padding: 10px 22px;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    border-radius: 50px;
  }

  .all-courses-btn:hover {
    background: linear-gradient(135deg, #f58e1d, #e85e24);
    color: #fff;
  }

  /* Keeps single row on all screens */
  .featured-row {
    flex-wrap: nowrap;
  }

  @media (max-width: 576px) {
    .featured-title {
      font-size: 1.25rem;
    }
    .all-courses-btn {
      padding: 8px 16px;
      font-size: 14px;
    }
  }

.courses-section {
  padding: 60px 20px;
  background: #f7f7f7;
}

.courses-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.course-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-8px);
}

.course-img {
  position: relative;
}

.course-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.wishlist {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #7a7fb7;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.course-body {
  padding: 20px;
}

.course-tag {
  color: #f58220;
  font-size: 14px;
  font-weight: 600;
}

.course-body h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f5a623;
  margin-bottom: 15px;
}

.course-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.course-features li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #555;
}

.course-features i {
  color: #f58220;
  margin-right: 8px;
}

.apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f58220;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}


.apply-btn:hover {
  background: #e26f10;
  color: #fff;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background:#e26f10;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}


.download-btn:hover {
  background: #f58220;
  color: #fff;
}

.view-all-wrapper {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  border: 2px solid #f58220;
  color: #f58220;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #f58220;
  color: #fff;
}


/* Responsive */
@media (max-width: 992px) {
  .courses-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .courses-container {
    grid-template-columns: 1fr;
  }
}


/* education cta */
.cta-section1 {
  position: relative;
  background: url("https://futureflame.in/wp-content/uploads/sites/18/2024/07/creative-girl-teenager-artist-painting-in-watercolor.jpg")
    center / cover no-repeat;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(63, 81, 181, 0.75);
}

/* Content */
.cta-content {
  position: relative;
  max-width: 900px;
  z-index: 2;
}

.cta-content h1 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* Button */
.cta-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #e85e24, #f58e1d);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #f58e1d, #e85e24);
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section1 {
    padding: 70px 15px;
  }

  .cta-content h1 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 15px;
  }
}

/* why choise us */
.shipping-section {
  padding: 80px 20px;
  background: #fff;
}

.shipping-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* Left Content */
.shipping-content .badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #f58e1d;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 15px;
  color: #e85e24;
  background: rgba(253, 230, 211, 0.874);
  
}

.shipping-content h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.shipping-content p {
  color: #666;
  max-width: 420px;
}

/* Cards Grid */
.shipping-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ship-card {
  background: #f9f9f9;
  padding: 28px;
  border-radius: 14px;
  transition: 0.3s ease;
  border: 1px solid transparent;
}

.ship-card i {
  font-size: 32px;
  color: #f58e1d;
  margin-bottom: 15px;
}

.ship-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.ship-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Hover Effect (Your Colors) */
.ship-card:hover {
  background: linear-gradient(135deg, #f58e1d, #e85e24);
  color: #fff;
  transform: translateY(-6px);
}

.ship-card:hover i,
.ship-card:hover p {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .shipping-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .shipping-content p {
    margin: auto;
  }

  .shipping-cards {
    grid-template-columns: 1fr;
  }
}

/* enroll cta section */
.enroll-section {
  padding: 60px 20px;
}

.enroll-wrapper {
  max-width: 1200px;
  margin: auto;
  background: #eaf5ee;
  border-radius: 20px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

/* Content */
.enroll-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.enroll-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
}

/* Button */
.enroll-btn {
  display: inline-block;
  background: #f58220;
  color: #fff;
  padding: 14px 34px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.enroll-btn:hover {
  background: #e86d10;
}

/* Image */
.enroll-image img {
  max-height: 420px;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .enroll-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 25px;
    text-align: center;
  }

  .enroll-content p {
    margin: auto auto 30px;
  }

  .enroll-image img {
    margin: auto;
  }
}

@media (max-width: 480px) {
  .enroll-content h2 {
    font-size: 28px;
  }
}







/* footer section */
.site-footer {
  background: linear-gradient(135deg, #050d1f, #0b1733);
  color: #cfd8e3;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-col p {
  font-size: 17px;
  line-height: 1.7;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li{
  margin-bottom: 14px;
}
.footer-col ul li a{
  font-size: 17px;
  text-decoration: none;
  color: #fff;
}

.footer-col ul li a i {
  color: #f58220;
  margin-right: 8px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #f58220;
}

.footer-col p i {
  color: #f58220;
  margin-right: 10px;
  margin-top: 5px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.footer-bottom span a{
  color: #2ecc71;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}


/* ===== Footer Link Hover ===== */
.footer-col ul li{
  cursor: pointer;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #f58220;
}

.footer-col ul li:hover {
  color: #f58220;
  transform: translateX(6px) !important;
}

/* Chevron animation */
.footer-col ul li a:hover i {
  transform: translateX(4px);
}

.footer-col ul li i {
  transition: transform 0.3s ease;
}

/* ===== Social Icons Hover ===== */
.social-icons a {
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: #2ecc71;
  color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}




/* placement section */
.placement-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    
    transition: all 0.4s ease;
  }

  .placement-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }

  /* Image container */
  .placement-img {
    overflow: hidden;
  }

  .placement-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  /* Image zoom on hover */
  .placement-card:hover .placement-img img {
    transform: scale(1.1);
  }

  .placement-body {
    padding: 20px;
    text-align: center;
  }

  .placement-body h5 {
    font-weight: 600;
  }

  .company {
    color: #e85e24;
    font-weight: 500;
    font-size: 14px;
  }

  .location {
    font-size: 14px;
    color: #666;
  }

  .location i {
    color: #f58e1d;
    margin-right: 5px;
  }

  /* Social icons (unchanged hover behavior) */
  .social-icons {
    margin-top: 15px;
  }

  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 5px;
    border-radius: 50%;
    background: #f58e1d;
    color: #fff;
    transition: all 0.3s ease;
  }

  .social-icons a:hover {
    background: #e85e24;
    transform: scale(1.1);
  }

  /* ======================
   OUR CLIENTS SECTION
====================== */

.clients-section {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

.clients-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
}

.clients-title span {
  color: #e85e24;
}

/* Slider wrapper */
.clients-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Moving track */
.clients-track {
  display: flex;
  width: max-content;
  animation: scroll 25s linear infinite;
}

/* Logo card */
.client-card {
  flex: 0 0 auto;
  width: 260px;
  height: 120px;
  margin: 0 15px;
  background: #fff;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(219, 214, 214, 0.622);
  transition: transform 0.4s ease;
}

/* Logo image */
.client-card img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* Hover zoom */
.client-card:hover img {
  transform: scale(1.12);
}

/* Pause on hover */
.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

/* Infinite scroll animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .client-card {
    width: 200px;
    height: 100px;
  }
}

@media (max-width: 576px) {
  .clients-title {
    font-size: 28px;
  }
}

/* cta section */
.cta-section {
  background: linear-gradient(135deg, #f15a24, #f7941d);
}

.corner {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
}

.corner-left {
  top: -80px;
  left: -80px;
}

.corner-right {
  bottom: -80px;
  right: -80px;
}
.call-btn{
  background: #046ab9;
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
}
.call-btn:hover{
  background-color: #fff; 
  color: #046ab9;
  border: 1px solid #046ab9;
  font-size: 15px;
}
.what-btn{
  background-color: #fff; 
  color: #04AA6D;
  border: 1px solid #04AA6D;
  border-radius: 50px;
}
.what-btn:hover{
  background-color: #04AA6D; 
  color: #fff;
  
}

/* ======================
   NEED HELP FLOAT
====================== */

.help-float {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  display: none;
}

/* Main button */
.help-main {
  background: #e85e24;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

/* Actions container (opens UP) */
.help-actions {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: 0.35s ease;
}

.help-float.active .help-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Action buttons */
.help-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  white-space: nowrap;
}

/* Brand colors */
.help-btn.call { background: #007bff; }
.help-btn.mail { background: #EA4335; }
.help-btn.message { background: #6f42c1; }

/* ======================
   SCROLL TO TOP
====================== */

/* WhatsApp Icon */
.whatsapp-icon {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: #25D366; /* Background color for zoom effect */
  color: white;
  border: none;
  border-radius: 50%;
  
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth zoom-in and color change */
}

/* Hover effect for zoom-in and color change */
.whatsapp-icon:hover {
  transform: scale(1.1); /* Zoom In */
  background: #26c25f; /* Ensure background stays the same color */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .whatsapp-icon {
    width: 40px;
    height: 40px;
    font-size: 21px;
    bottom: 15px;
    right: 15px;
  }
}




/* ======================
   MOBILE FIXES
====================== */

@media (max-width: 576px) {
  .help-main span,
  .help-btn span {
    display: none; /* icons only */
  }

  .help-main {
    padding: 12px;
    border-radius: 50%;
  }

  .help-btn {
    padding: 10px;
    border-radius: 50%;
    justify-content: center;
  }

  .help-btn i {
    font-size: 18px;
  }
}


/* about page code start */

/* Page Banner */
.page-banner {
  position: relative;
  width: 100%;
  height: 320px;
  background: url("../image/cta-2.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Dark Overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* Content */
.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.banner-content h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.banner-content p {
  font-size: 15px;
  color: #ddd;
}

.banner-content p a {
  color: #fff;
  text-decoration: none;
}

.banner-content p strong {
  color: #f58e1d;
}

.banner-content span {
  margin: 0 6px;
  color: #aaa;
}

/*  */
.mission-vision {
  background: #f9f9f9;
}

.mv-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.mv-img {
  max-height: 280px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .mv-card {
    padding: 25px;
    text-align: center;
  }

  .mv-img {
    margin-top: 15px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .page-banner {
    height: 250px;
  }

  .banner-content h1 {
    font-size: 32px;
  }
}


/* contact us page code */
.icon-box {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #f58e1d, #e85e24);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MAP */
.map-box {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* SOCIAL ICONS */
.social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f1f1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #444;
  transition: all 0.4s ease;
  text-decoration: none;
}

/* Hover Effects */
.social.fb:hover {
  background: #1877f2;
  color: #fff;
  box-shadow: 0 0 15px rgba(24,119,242,0.6);
}

.social.tw:hover {
  background: #1da1f2;
  color: #fff;
  box-shadow: 0 0 15px rgba(29,161,242,0.6);
}

.social.ig:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  box-shadow: 0 0 15px rgba(214,36,159,0.6);
}

.social.in:hover {
  background: #0a66c2;
  color: #fff;
  box-shadow: 0 0 15px rgba(10,102,194,0.6);
}

/* Mobile Fix */
@media (max-width: 991px) {
  .map-box {
    min-height: 280px;
  }
}

/* from */
.form-section {
  background: #f5f6fa;
}

.form-card {
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Inputs */
.custom-input {
  height: 52px;
  border-radius: 6px;
  border: 1px solid #cfcfcf;
  font-size: 16px;
}

.custom-input:focus {
  border-color: #0d6efd;
  box-shadow: none;
}

/* Button */
.form-card .btn-primary {
  height: 46px;
  border-radius: 6px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 576px) {
  .form-card {
    padding: 25px;
  }
}


/* testimonial section */
.testimonial-section {
  background: #f8f9fa;
}

/* Make Owl items equal height */
.testimonial-carousel .owl-stage {
  display: flex;
}

.testimonial-carousel .owl-item {
  display: flex;
}

.testimonial-card {
  background: #fff;
  padding: 35px;
  border-radius: 15px;
  /* box-shadow: 0 8px 25px rgba(0,0,0,0.05); */
  transition: 0.4s ease;
  position: relative;

  /* Equal height + alignment */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.quote-icon {
  font-size: 28px;
  color: #e85e24;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.client-img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

/* Owl Dots */
.owl-dots {
  margin-top: 25px;
  text-align: center;
}

.owl-dot span {
  width: 10px !important;
  height: 10px !important;
  background: #ccc !important;
  border-radius: 50%;
}

.owl-dot.active span {
  background: #4f46e5 !important;
}

/*  */
.placement-section {
  background: linear-gradient(135deg, #030238, #0573bf);
}

.record-img {
  max-height: 250px;
  border-radius: 8px;
}

.enquire-btn {
  background-color: #e92727;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s ease;
}

.enquire-btn:hover {
  background-color: #c91f1f;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .placement-section {
    text-align: center;
  }

  .record-img {
    margin-bottom: 20px;
  }

  .placement-section h2 {
    font-size: 32px;
  }

  .placement-section p {
    font-size: 16px;
  }
}

/* placement page code */
.career-section {
  background: #f4f4f4;
}

.career-title {
  font-size: 28px;
  font-weight: 700;
  color: #e85e24;
  line-height: 1.2;
}

.career-text {
  font-size: 20px;
  color: #1f2a37;
  max-width: 550px;
}

.enquire-btn {
  background-color: #e32626;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.enquire-btn:hover {
  background-color: #c91f1f;
  color: #fff;
  transform: translateY(-3px);
}

.career-img {
  border-radius: 12px;
  max-height: 380px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .career-section {
    text-align: center;
  }

  .career-title {
    font-size: 34px;
  }

  .career-text {
    font-size: 18px;
    margin-left: auto;
    margin-right: auto;
  }

  .career-img {
    margin-top: 20px;
  }
}

/*  */
.terms-list ul li{
  margin-bottom: 20px;
  font-size: 18px;
  text-align: justify;
}

.privacy-policy-list ul li{
  margin-bottom: 20px;
  font-size: 18px;
  text-align: justify;
}

.refund-policy-list ul li{
  margin-bottom: 20px;
  font-size: 18px;
  text-align: justify;
}