 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
 
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Montserrat', sans-serif;

    }
    /* * {
  box-sizing: border-box;
} */

    /*top header section*/

    .top-header {
  width: 100%;
  background: linear-gradient(90deg, #000814, #001d3d, #003566, #4a00e0);
  padding: 12px 0;
  text-align: center;
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.top-header:hover {
  background: linear-gradient(90deg, #001d3d, #003566, #4a00e0, #8e2de2);
}
.top-header p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
}

.top-header a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.top-header .request-call {
  border-bottom: 2px solid #ffce54;
  padding-bottom: 2px;
  margin-left: 4px;
}

.top-header a:hover {
  opacity: 0.8;
}
/*above top header css*/

    header {
      width: 100%;
      padding: 15px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #fff;
      position: relative;
      z-index: 100;
       border-bottom: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    .logo img {
      height: 2.5rem;
      width: auto;
    }


    .nav-container {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    nav ul {
      display: flex;
      list-style: none;
      align-items: center;
      gap: 25px;
    }

    nav ul li {
      position: relative;
    }

    nav ul li a {
      text-decoration: none;
      color: #2c3e50;
      font-weight: 600;
      transition: color 0.3s;
    }

    nav ul li a:hover {
      color: #387ef7;
    }

    /* Dropdown */
    .dropdown-content {
      position: absolute;
      top: 45px;
      left: 0;
      background-color: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      border-radius: 6px;
      overflow: hidden;
      min-width: 250px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.25s ease;
      z-index: 10;
      white-space: nowrap;
    }

    .dropdown-content a {
      display: block;
      padding: 10px 20px;
      color: #2c3e50;
      text-decoration: none;
      transition: all 0.3s;
    }

    .dropdown-content a:hover {
      background-color: #f0f0f0;
      color: #007BFF;
    }

    nav ul li:hover .dropdown-content,
    .dropdown-content:hover {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* Hire Us button */
    .hire-btn {
      background-color: #387ef7;
      color: #fff;
      font-weight: 600;
      padding: 12px 20px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .hire-btn:hover {
      background-color: #1b53ad;
    }

    /* --- Mobile Menu --- */
    .menu-icon {
      display: none;
      flex-direction: column;
      cursor: pointer;
      width: 25px;
      height: 20px;
      justify-content: space-between;
    }

    .menu-icon span {
      height: 3px;
      width: 100%;
      background: #000;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* Toggle effect */
    .menu-icon.active span:nth-child(1) {
      transform: rotate(45deg) translateY(8px);
    }

    .menu-icon.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-icon.active span:nth-child(3) {
      transform: rotate(-45deg) translateY(-8px);
    }

    /* Mobile nav hidden by default */
    @media (max-width: 768px) {
      header {
        padding: 15px 25px;
      }

      .nav-container {
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #fff;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 20px;
        border-top: 1px solid #ddd;
        display: none;
      }

      .nav-container.active {
        display: flex;
      }

      nav ul {
        flex-direction: column;
        width: 100%;
        gap: 15px;
      }

      .dropdown-content {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 100%;
      }

      nav ul li:hover .dropdown-content {
        display: block;
      }

      .hire-btn {
        width: 100%;
        text-align: center;
      }

      .menu-icon {
        display: flex;
      }
    }
    /*Header over*/

   /*Banner starts*/
    .hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4.0rem 2% 8rem;
  flex-wrap: wrap;
  gap: 50px;
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.hero-content {
  flex: 1 1 480px;
  max-width: 600px;
}

.hero-content h2 {
  /* font-size: 3.5rem; */
  font-weight: 700;
  /* line-height: 1.2; */
  margin-bottom: 20px;
  font-size: 3.7rem;
  line-height: 1;
  font-family: Montserrat, serif;
  letter-spacing: -0.025em;
}

.hero-content h2 span {
  color:#387ef7;
}

.hero-content p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #cfcfcf;
  margin-bottom: 40px;
   font-family: poppins;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1a56db;
  color: #fff;
}

.btn-primary::after {
  font-size: 1.2rem;
  margin-left: 10px;
  transition: margin-left 0.3s;
}

.btn-primary:hover::after {
  margin-left: 15px;
}

.hero-image {
  flex: 1 1 220px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 610px;
  border-radius: 15px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 5%;
  }

  .hero-content h2 {
    font-size: 2.4rem;
  }

  .btn-primary {
    padding: 12px 22px;
  }
}

@media (max-width: 600px) {
  .hero-content h2 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

/*banner section over*/

  /*About us Section Start*/

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* WHY CHOOSE SECTION */
.why-choose-section {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  padding: 60px 0;
}

/* LEFT SIDE */
.why-choose-left {
  flex: 0 0 57%;
  font-family: "Poppins", sans-serif;
  position: relative;
}

/* RIGHT SIDE */
.why-choose-right {
  flex: 0 0 37%;
  position: relative;
  height: 500px;
}

/* INNER WRAPPER (IMPORTANT) */
.right-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Badge */
.badge-why {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(0, 123, 255);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
}

/* Heading */
.main-heading {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  margin-top: 25px;
}

.main-heading span {
    color: #387ef7;
}

/* Description */
.desc {
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
  margin-top: 20px;
}
.desc.txt{
  font-size: 17.5px;
}

/* Image Box */
.image-box {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info Cards */
.info-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #2f5bff;
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.info-card.top-card {
  background: #fff;
  top: -20px;
  left: -20px;
}

.info-card.bottom-card {
  bottom: -20px;
  right: -20px;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: #2f5bff;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.card-text.btm {
  color: #fff;
 
}
.card-icon.btm{
 background-color: #fff3;
}

/* Decorative Shapes */
.why-choose-right::before {
  content: '';
  position: absolute;
  left: 27px;
  bottom: 34px;
  width: 160px;
  height: 170px;
  background: #f4a637;
  border-radius: 20px;
  transform: translate(-35%, 35%);
  z-index: -1;
}

.why-choose-right::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 120px;
  height: 120px;
  border: 3px solid #cbd5f5;
  border-radius: 20px;
  transform: translate(35%, -35%);
  z-index: -1;
}

/* RESPONSIVE */

/* Laptop */
@media (max-width: 1200px) {
  .main-heading {
    font-size: 44px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .why-choose-section {
    flex-direction: column;
  }

  .why-choose-left,
  .why-choose-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .why-choose-right {
    height: 350px;
    margin-top: 30px;
  }

  .main-heading {
    font-size: 38px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .main-heading {
    font-size: 26px;
    text-align: center;
  }
.main-heading span{
  font-size: 20px;
}
  .desc {
    font-size: 16px;
  }

  .info-card {
    padding: 10px 14px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .why-choose-right {
    height: 280px;
  }

  /* Hide decorative shapes on mobile */
  .why-choose-right::before,
  .why-choose-right::after {
    display: none;
  }
}
/*stats section */
.stats-section {
  width: 60%;
  /* padding: 30px 0; */
  background: #ffffff;
  margin-left: 0;          /* LEFT on laptop */
  margin-right: auto;
}

/* WRAPPER */
.stats-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 30px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-top: 1px solid #e5e7eb;
  border-radius: 0;
}

/* STAT BOX */
.stat-box {
  flex: 1;
  text-align: center;
}

.stat-box h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* DIVIDER */
.stat-divider {
  width: 1px;
  height: 70px;
  background: #e5e7eb;
}

/* TABLET */
@media (max-width: 992px) {
  .stats-section {
    width: 80%;
  }

  .stats-wrapper {
    padding: 30px 20px;
  }

  .stat-box h2 {
    font-size: 38px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .stats-section {
    width: 100%;
    padding: 40px 15px;
  }

  .stats-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .stat-box h2 {
    font-size: 32px;
  }
}

/*stats section over*/


/*why choose us */

.why-choose-us {
  background-color: #f8f9fa;
  padding: 30px 5%;
  text-align: center;
}

.section-title {
  font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 15px;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.feature-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 40px 20px;
  flex: 1 1 calc(25% - 30px);
  max-width: calc(25% - 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}



.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}



.icon-circle i {
  color: #333;
  font-size: 22px;
}

.feature-box h3 {
  flex-grow: 1;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-left: 20px;
  font-family: 'Montserrat', serif;
}

.arrow i {
  color: #6c757d;
  font-size: 18px;
}

@media (max-width: 992px) {
  .feature-box {
    flex: 1 1 calc(45% - 20px);
    max-width: calc(45% - 20px);
  }
}

@media (max-width: 768px) {
  .feature-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

/*course section*/

/* .courses-section {
  padding: 80px 20px;
  font-family: 'Montserrat', serif;
  background-color: #f9fafb;
  color: #1e293b;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.section-title span {
  color: #387ef7;
}

.subtitle {
  text-align: center;
  color: #64748b;
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.6;
} */
/* -------------------- Responsive -------------------- */

/* @media (max-width: 992px) {
    .section-title {
        font-size: 34px;
    }
    .subtitle {
        font-size: 17px;
        max-width: 85%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }
    .subtitle {
        font-size: 16px;
        max-width: 90%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 23px !important;
    }
    .subtitle {
        font-size: 15px;
    }
  
} */

/* Row container */
/* .courses-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
} */

/* Course Card */
/* .course-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  flex: 1 1 500px;   
  max-width: 520px;
}



.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(79, 70, 229, 0.15);
} */

/* Image Section */
/* .course-image {
  position: relative;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #2f5bff;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.icon-box {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  color: #4f46e5;
  font-size: 16px;
} */

/* Content */
/* .course-content {
  padding: 28px;
}

.course-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.course-info {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: #475569;
  font-size: 14px;
}

.course-info .highlight {
  background-color: #dcfce7;
  color: #15803d;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
}

.course-content p {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;

}

.course-content h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
}

.outcomes {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.outcomes li {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  margin: 6px 0;
  color: #475569;
}

.outcomes i {
  color: #10b981;
  margin-right: 8px;
} */

/*6th-feb changed*/

/* .outcomes{
  list-style: none;
  padding: 0;
  margin: 0;
} */

/* .outcomes li{
  display: flex;          /* keeps icon + text aligned */
  /* align-items: flex-start;
  gap: 10px;              /* space between icon and text */
  /* line-height: 1.6;
  margin-bottom: 8px;
} */

/* .outcomes li i{ */
  /* margin-top: 4px;        /* small vertical alignment */
  /* color: #22c55e;         /* optional */
/* } */




/* Button */
/* .btn {
  display: inline-block;
  background-color: #387ef7;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: #f4a637;
  transform: translateX(4px);
}

.course-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.course-actions .btn {
  flex: 1;
  text-align: center;
} */

/* Responsive */
/* @media (max-width: 992px) {
  .course-card {
    flex: 1 1 80%;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .courses-row {
    flex-direction: column;
    align-items: center;
  }
  .course-card {
    width: 100%;
  }
} */
/*why choose us */
.why-choose {
    padding: 80px 20px;
    background: #fff;
}

.wc-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.wc-title {
    font-size: 32px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 10px;
}

.wc-title span {
    color:  #387ef7;
}

.wc-subtitle {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* ===== FEATURE BOXES ===== */

.wc-features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.wc-feature-box {
    flex: 1;
    min-width: 280px;
    padding: 20px;
}

.wc-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #444;
}

.blue { background: #e3edff; }
.purple { background: #f0e5ff; }
.green { background: #e3ffe8; }

.wc-feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.wc-feature-box p {
    font-size: 15px;
    color: #555;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== STATS SECTION ===== */

.wc-stats {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e6e6e6;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.wc-stat {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.wc-stat i {
    font-size: 30px;
    color: #387ef7;
    margin-bottom: 10px;
}

.wc-stat h4 {
    font-size: 32px;
    color:  #387ef7;
    font-weight: 700;
    margin-bottom: 5px;
}

.wc-stat p {
    font-size: 15px;
    color: #666;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .wc-features,
    .wc-stats {
        flex-direction: column;
        text-align: center;
    }

    .wc-feature-box,
    .wc-stat {
        max-width: 100%;
    }
}

/* Hover effect for feature boxes */
.wc-feature-box {
    transition: all 0.3s ease;
    border-radius: 12px;
}

/* Hover state */
.wc-feature-box:hover {
    transform: scale(1.05);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
/*companies section */

/* Section Container */
.alumni-section {
    text-align: center;
    padding: 50px 20px;
}

.section-label {
    background: #f2e8ff;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: #6a0dad;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin: 15px 0;
}



.section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* Company Grid */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* Company Card */
.company-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

/* Logo */
.company-card img {
    width: 100%;
    height: auto;
    /* max-height: 55px; */
    object-fit: contain;
}

/* Hover Effect */
.company-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}
.company-card.hp>img,.company-card.Tride>img,.company-card.wipro>img{
  width: 60%;
}
 @media (max-width: 576px) {
    .company-card.hp>img{
  width: 40%;
}
.company-card.wipro>img{
  width: 45%;
}
.company-card.Tride>img{
  width: 40%;
}
.company-card img {
    width: 70%;
    height: auto;
    /* max-height: 55px; */
    object-fit: contain;
}
}

.more-text {
    margin-top: 30px;
    font-weight: bold;
    color: #444;
}

/* .courses-section {
    width: 90%;
    margin: 40px auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}



.course-card {
    width: 31%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 20px;
    transition: 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.course-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.course-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #0d0d0d;
}

.duration {
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.duration span {
    color: #007BFF;
    font-weight: bold;
}

.course-desc {
    color: #444;
    margin-bottom: 12px;
    line-height: 1.5;
} */

.key-learn {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.key-learn li {
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.key-learn i {
    color: #007bff;
    margin-right: 6px;
}

.enroll-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #007bff;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.enroll-btn:hover {
    background: #0056c7;
}

/* Responsive */
/* @media (max-width: 992px) {
    .course-card {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .course-card {
        width: 100%;
    }
}
@media (max-width: 576px) {
    .course-card {
        width: 110%;
    }
    .courses-section {
      margin: 0 10px;
    }
  } */

 

/*Top courses section*/
/* Section Base */
.three-course-section {
    padding: 60px 5%;
    background: #f7fafd;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.three-course-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.three-course-title span {
    color: #1e88e5;
}

/* Wrapper */
.three-course-wrapper {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Card */
.three-course-card {
    background: #ffffff;
    width: 31%;
    min-width: 260px;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.three-course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Image */
.three-course-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Headings */
.three-course-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
}

/* Duration + ROI Row */
.three-course-info {
    display: flex;
    justify-content: space-between;
    margin: 8px 0 15px;
}

.three-duration {
    background: #e3f2fd;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.three-roi {
    background: #c8e6c9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2e7d32;
}

/* Description */
.three-course-desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

/* Key Points */
.three-key-points {
    text-align: left;
    padding-left: 18px;
    margin-bottom: 20px;
}

.three-key-points li {
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
}

/* Enroll Button */
.three-enroll-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #1e88e5;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.three-enroll-btn:hover {
    background: #0d47a1;
}

/* Responsive */
@media (max-width: 900px) {
    .three-course-card {
        width: 47%;
    }
}
@media (max-width: 600px) {
    .three-course-card {
        width: 100%;
    }
} 

/*Courses Section */

.courses3-container {
    width: 90%;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: nowrap; /* STOP cards from breaking */
}

.course3-card {
    flex: 1;
    max-width: 32%;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    box-sizing: border-box;
}

.courses3-wrapper {
    width: 100%;
    padding: 40px 0;
    text-align: center;
}

.courses3-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0d0d0d;
}

.courses3-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hover Animation */
.course3-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.course3-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.course3-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.course3-duration {
    font-size: 14px;
    color: #444;
    margin-bottom: 12px;
    /* text-align: justify; */
}

.course3-duration span {
    color: #007bff;
    font-weight: 600;
}

.course3-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    text-align: start;
}

/* Points List */
.course3-points li,
.course3-ppoints li {
    list-style: none;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
     font-family: 'Poppins', sans-serif;
     text-align: justify;
}

.course3-points li i,
.course3-ppoints li i {
    color: #28a745;
    margin-right: 6px;
}

/* Button */
.course3-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.4s ease;
}

.course3-btn:hover {
    background: #0056c7;
}

/*freequently asked questions*/

.faq-header h2 {
    font-size: 34px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .courses3-container {
        flex-wrap: wrap;
    }
    .course3-card {
        max-width: 48%;
        flex: 48%;
    }
}

@media (max-width: 768px) {
    .course3-card {
        max-width: 100%;
        flex: 100%;
    }
}

@media (max-width: 576px){
  .courses3-title{
    font-size: clamp(22px, 5vw, 48px);
  }
  .hero-content{
    flex: 1 1 300px;
  }
  /* .course-card h3{
    font-size: clamp(22px, 5vw, 48px);
    text-align: center;
  }
  .course-content{
    padding: 0;
    text-align: left;
  } */
  .courses3-wrapper{
    padding: 1px 5px;
  }
  .why-choose{
    padding: 0 10px;
  }
  .wc-title{
    font-size: clamp(22px, 5vw, 48px);
  }
  .faq-header h2{
    font-size: clamp(22px, 5vw, 48px);
  }
  /* .course-content p{
  text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-break: break-word;
  } */
}

/*footer area*/
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

.contact-section {
  width: 100%;
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Open Sans', sans-serif;
}

.contact-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
}

.contact-container {
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* FORM LEFT SIDE */
.contact-form {
  flex: 1 1 55%;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 50%;
}

label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

input, textarea, select{
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  font-family: 'Poppins';
}

.textarea-box {
  width: 100%;
}

.contact-btn {
  width: 100%;
  padding: 14px;
  border: none;
  background: #0073ff;
  color: #fff;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 10px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #005cd1;
}

/* ENROLL NOW BUTTON */
.enroll-btn {
  width: 100%;
  padding: 14px;
  background: #fff;
  border: 2px solid #0073ff;
  color: #0073ff;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.enroll-btn:hover {
  background: #0073ff;
  color: #fff;
}

/* RIGHT SIDE INFO */
.contact-info {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.info-box {
  background: #fff;
  padding: 20px;
  display: flex;
  gap: 15px;
  border-radius: 10px;
  align-items: flex-start;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

.info-box i {
  font-size: 28px;
  color: #0073ff;
  margin-top: 5px;
}

.info-box h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
}

.info-box p {
  font-size: 15px;
  margin: 5px 0 0;
  line-height: 1.4;
}

/* BLACK WORKING HOURS BOX */
.hours-box {
  background: #000 !important;
  color: #fff;
}

.hours-box i {
  color: #fff !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .form-group {
    width: 100%;
  }
}

/* Poppins Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

.hours-box {
    background: #000;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    padding: 20px;
    border-radius: 30px;
    width: 450px; /* adjust as needed */
}

.hours-box h3 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 30px;
}

@media (max-width: 576px) {
  
  .hours-box{
    width: 350px;
  }
}


.hours-row {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    font-size: 16px;
    font-weight: 400;
}

.hours-divider {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.hours-info {
    font-size: 16px;
    margin-bottom: 20px;
}

.hours-btn {
    width: 100%;
    background: #fff;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    border: none;
    padding: 12px 0;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Hover Animation */
.hours-btn:hover {
    background: #e6e6e6;
    transform: scale(1.03);
}

/*bottom footer*/
.footer {
  background: #000;
  color: #d7d7d7;
  padding: 60px 50px 20px;
  text-align: left;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 230px;
}

.footer-about p {
  margin: 20px 0;
  width: 85%;
  line-height: 1.7;
}
.logo {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
}
.logo span {
  font-size: 20px;
  color: #6d57ff;
  margin-left: 4px;
}
.footer-col h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  text-align: justify;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin: 12px 0;
}

.footer-col ul li a {
  color: #d7d7d7;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #7a6cff;
  padding-left: 4px;
}

/* Social Icons */
.footer-social a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  margin-right: 12px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-social a:hover {
  background: #2f5bff;
  transform: translateY(-5px);
}

/* Newsletter */
.newsletter-box {
  display: flex;
  margin: 15px 0 25px;
}

.newsletter-box input {
  flex: 1;
  padding: 14px;
  border: none;
  border-radius: 6px 0 0 6px;
  background: #1e2330;
  color: #fff;
  font-size: 16px;
}

.newsletter-box button {
  width: 50px;
  background: #2f5bff;
  border: none;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.newsletter-box button:hover {
  background: #5b46e8;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  margin-top: 40px;
  font-size: 15px;
  color: #b5b5b5;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
}

/*freequently asked questions*/
.faq-section {
    width: 100%;
    padding: 60px 20px;
    background: #fff;
}
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}



.faq-header p {
    font-size: 16px;
    color: #555;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #f8f9fc;
    border-radius: 8px;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid #e4e4e4;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 24px;
    text-align: left;
    font-size: 17px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question:hover {
    background: #f0f0f0;
}

.arrow {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 24px;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 15px 0;
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

.faq-footer {
    margin-top: 30px;
    text-align: center;
}

.contact-link {
    color: #007bff;
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
    text-decoration: none;
}

.contact-link:hover {
    text-decoration: underline;
}
/*whatsapp link*/

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366; /* WhatsApp official green */
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover glowing animation */
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  background: #1ebe5b; /* Slightly darker modern shade */
}

.whatsapp-float i {
  color: #fff;
}
.fa {
  font-family: FontAwesome !important;
}

.role-points{
  font-size: 15px;
}


@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 16px;
    right: 16px; /* 👈 key fix */
  }
}

@media (max-width: 576px) {
  .whatsapp-float {
    top: 50%;
    bottom: auto;
    right: 20px;
    transform: translateY(-50%);
  }
}
html, body {
  overflow-x: hidden;
}
/*AI Courses card responsive*/
/* Mobile devices */
@media(min-width: 320px) and (max-width: 767px) {
  .btn{
    display: inline;
    padding: 10px 5px;
    font-weight: 600;
    /* font-size: 12px; */
  }
}

@media (max-width: 767px) {
  .badge-why {
    margin: 0 auto;
    display: flex;   /* switch from inline-flex */
    width: fit-content;
  }
}


/*=======>  LATEST CHANGES==> FOOTER BOTTOM <======*/

@media (max-width: 576px) {

  /* Reduce side padding */
  .footer {
    padding: 50px 20px 20px;
    text-align: center;   /* MAIN FIX */
  }

  /* Stack columns + center */
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }

  .footer-col {
    width: 100%;
    max-width: 340px;   /* Prevents stretching */
  }

  /* About text center */
  .footer-about p {
    width: 100%;
    margin: 18px auto;
  }

  /* Headings center */
  .footer-col h3 {
    text-align: center;
  }

  /* Lists center */
  .footer-col ul {
    padding: 0;
  }

  .footer-col ul li {
    text-align: center;
  }

  /* Social icons center */
  .footer-social {
    display: flex;
    justify-content: center;
  }

  /* Newsletter center */
  .newsletter-box {
    justify-content: center;
  }

  .newsletter-box input {
    text-align: center;
  }

}

/*footer bottom*/

/*course card changes*/

/* .course-card {
  flex: 1 1 520px; 
  max-width: 520px;
} */

/* .courses-row{
  display:flex;
  justify-content:center;   
  gap:30px;
} */

/* .courses-row{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 520px));
  justify-content:center;
  gap:30px;
} */

.corporate-section {
  text-align-last: left;
  text-align: justify;
}
/* .courses-section{
  text-align:center;   /* reset alignment */
/* }  */
@media (max-width: 576px) {
.info-card.bottom-card{
  right: 0 !important;
}

}

/* ===============================
   JOB ORIENTED COURSES SECTION
================================*/

.courses-section{
  padding:80px 20px;
  background:#f9fafb;
  color:#1e293b;
}

.courses-section .section-title{
  text-align:center;
  font-size:36px;
  font-weight:700;
  margin-bottom:12px;
}

.courses-section .subtitle{
  text-align:center;
  color:#64748b;
  max-width:750px;
  margin:0 auto 50px;
  line-height:1.6;
  font-family:'Poppins',sans-serif;
}

/* ===== GRID ROW ===== */
.courses-row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0px;
  margin-bottom:28px;
}

/* ===== COURSE CARD ===== */
.course-card{
  background:#fff;
  border-radius:16px;
  padding:18px;
  box-shadow:0 8px 24px rgba(0,0,0,0.06);
  transition:0.3s ease;
  display:flex;
  flex-direction:column;
  max-width: 520px;
}

.course-card:hover{
  transform:translateY(-6px);
}

/* ===== IMAGE ===== */
.course-image{
  position:relative;
  width:100%;
  height:210px;
  overflow:hidden;
  border-radius:12px;
}

.course-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* BADGE */
.badge{
  position:absolute;
  top:12px;
  right:12px;
  background:rgb(0, 123, 255);
  color:#fff;
  font-size:12px;
  padding:6px 12px;
  border-radius:20px;
  font-weight:600;
}

/* ICON BOX */
.icon-box{
  position:absolute;
  top:12px;
  left:12px;
  background:#fff;
  width:36px;
  height:36px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.icon-box i{
  color:#4f46e5;
  font-size:16px;
}

/* ===== CONTENT ===== */
.course-content{
  display:flex;
  flex-direction:column;
  flex-grow:1;
}

.course-content h3{
  font-size:22px;
  margin:16px 0 8px;
  font-weight:700;
}

.course-info{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  font-size:14px;
  margin-bottom:12px;
}

.course-info .highlight{
  color:#16a34a;
  font-weight:600;
}

.course-content p{
  color:#475569;
  line-height:1.6;
  margin-bottom:14px;
  font-family:'Poppins',sans-serif;
}

.course-content h4{
  font-size:15px;
  font-weight:600;
  margin-bottom:8px;
}

/* ===== OUTCOMES ===== */
.outcomes{
  list-style:none;
  margin:10px 0 18px;
}

.outcomes li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height: 1.6;
  font-size:14px;
  margin-bottom:6px;
  font-weight: 500;
}

.outcomes li i{
  flex-shrink:0;            
  margin-top:4px;
  color:#22c55e;
}

/* ===== BUTTONS ===== */
.course-actions{
  display:flex;
  gap:40px;
  margin-top:auto; 
}

@media(max-width:992px){
.course-actions{
gap:14px;
}
}
@media(max-width:576px){
.course-actions{
gap:14px;
}

}
.btn{
  flex:1;
  text-align:center;
  border-radius:8px;
  text-decoration:none;
  padding:12px 22px;
  font-size:16px;
  font-weight:600;
  background:#007bff;;
  color:#fff;
  transition:0.3s;
}

.btn:hover{
 background-color: #f4a637;
 transform: translateX(4px);
}


/* ===============================
   RESPONSIVE
================================*/

/* Tablet */
@media(max-width:992px){

  .courses-section .section-title{
    font-size:28px;
  }

  .courses-row{
    grid-template-columns:1fr 1fr;
    gap:22px;
  }

  .course-image{
    height:190px;
  }
  .btn{
   padding:10px 20px;
  font-size:15px;
  }
}

/* Mobile */
@media(max-width:576px){

  .courses-section{
    padding:50px 14px;
  }

  .courses-row{
    grid-template-columns:1fr;
    gap:20px;
  }

  .courses-section .section-title{
    font-size:22px;
  }

  .course-image{
    height:170px;
  }

  .course-actions{
    flex-direction:column;
  }
}