/* ===== COURSES ===== */
#courses {

    padding: 100px 20px;
    
}

#courses h2 {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 700;
    padding: 0 0 10px 0;
    margin: 5px 0 10px 0;
    position: relative;
    background-position: left bottom;
    background-repeat: no-repeat;
    line-height: 120% !important;
    font-size: 50px;
    color:  #000; 
}

#courses p.section-intro {
    text-align: center;
    color: #555;
    margin-bottom: 50px;
}

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

.course-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid rgba(40,93,162,0);
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    border-color: #285DA2;
}

.course-card i {
    font-size: 32px;
    color: #285DA2; /* changed to site template blue */
    margin-bottom: 15px;
}

.course-card h3 {
    margin: 0 0 10px;
    color: #0a0f29;
    font-size: 20px;
}

.course-card p {
    color: #555;
    line-height: 1.6;
}

/* Footer Logo Size */
.footer-box .footer_blog .logo {
    width: 150px;
    height: auto;
}





.enroll-button {
     margin-top: auto; 
    background: #285DA2;
    color: #fff;
    border: none;
    padding: 15px 30px; /* bigger button */
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
    
}

.enroll-button:hover {
    background: #1f467d;
    transform: translateY(-2px);
}





.footer-box .footer_blog .logo {
    width: 150px;
    height: auto;
}


/* Small email text utility */
.small-email {
    font-size: 12px;
    line-height: 2;
    text-transform: lowercase;
    color: #0a0f29;
}

/* Ensure small email is lowercase in header (override template uppercase rule) */
nav.first-nav_contact div.left ul li a span.small-email,
nav.first-nav_contact .right ul li a span.small-email,
.footer_blog .small-email,
.footer_content .small-email {
    text-transform: lowercase !important;
    font-size: 15px !important;
}

/* Slightly lower Program Duration heading in the pricing section */
.section.layout_padding_2 .heading_main {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .section.layout_padding_2 .heading_main {
        margin-top: 18px;
    }
}




/* Specific to the footer container only */
.footer-box {
    background:  #F8F9FA;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 15px;
}
/* Control logo size only in footer */
.footer-logo {
    max-width: 150px; /* You can change this value (e.g., 120px, 180px) */
    height: auto;
}


.course_cards_section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.course_card {
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card_title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0a3d62;
}

.course_card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6em;
}




.syllabus_grid {
    padding: 60px 0;
}

.section_title_row .section_title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section_title_row .section_subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    display: block;
}

/* Card Styling */
.syllabus_card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%; /* Makes all cards same height */
}

/* Hover effect */
.syllabus_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Icon Styling */
.syllabus_card .icon {
    font-size: 40px;
    color: #285DA2;
    margin-bottom: 15px;
}

/* Card Title */
.syllabus_card h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* List Styling */
.syllabus_card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: auto;
}

.syllabus_card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.syllabus_card ul li::before {
    content: "\f00c"; /* FontAwesome check icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color:#285DA2;
}

/* Responsive */
@media (max-width: 768px) {
    .syllabus_card h4 {
        font-size: 20px;
    }
    .syllabus_card ul li {
        font-size: 15px;
    }
}



/* home page  */
/* STICKY NAV BAR */
.airus-sticky-nav {
  position: sticky;
  top: 90px; /* adjust if header height changes */
  z-index: 999;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 15px 25px;
  background: #fff;
  border-radius: 50px;
  margin: 40px auto;
  width: fit-content;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* NAV LINKS */
.airus-sticky-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.airus-sticky-nav .nav-link:hover {
  color: #285DA2;
}

.airus-sticky-nav .nav-link.active {
  color: #285DA2;
  font-weight: 600;
}

/* SECTIONS */
.airus-section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
}


/* WHAT YOU GET - AI R US */
.what-you-get {
  padding: 80px 20px;
  background: #fffaf3;
}

.what-you-get .container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1f2937;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.airus-card {
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.airus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.airus-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #111827;
}

.airus-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}

/* Card Gradients */
.yellow { background: linear-gradient(135deg, #fff3b0, #fde68a); }
.pink   { background: linear-gradient(135deg, #ffd6e8, #fbcfe8); }
.blue   { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.green  { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.orange { background: linear-gradient(135deg, #ffedd5, #fed7aa); }


/* ================= WHO WE ARE – AI R US ================= */

/* Section spacing */
#who-we-are {
  padding: 60px 20px;
}

/* Section Header */
.section_header h2 {
  text-align: center;
  color: #0047b3;
  font-size: 36px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(-40px);
  animation: slideIn 0.8s forwards;
}

/* Console Wrapper */
.who_airus_console {
  background: #0b0f1a;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Courier New', monospace;
}

/* Console Box */
.console {
  width: 100%;
  max-width: 900px;
  background: #111827;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(0, 102, 255, 0.3);
  overflow: hidden;
}

/* Console Header */
.console_header {
  background: #1f2937;
  padding: 14px 20px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.status_dot {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
}

/* Console Body */
.console_body {
  padding: 30px;
  color: #e5e7eb;
}

.console_line {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  opacity: 0;
  animation: typeIn 0.6s forwards;
}

.console_line .prompt {
  color: #60a5fa;
}

.console_line .text {
  line-height: 1.7;
}

/* Highlight Line */
.console_line.highlight .text {
  color: #22c55e;
  font-weight: bold;
}

/* Animation Delays */
.delay1 { animation-delay: 0.6s; }
.delay2 { animation-delay: 1.2s; }
.delay3 { animation-delay: 1.8s; }
.delay4 { animation-delay: 2.4s; }

/* Console Footer */
.console_footer {
  background: #020617;
  padding: 18px 25px;
  color: #93c5fd;
  font-size: 16px;
}

/* Animations */
@keyframes typeIn {
  to { opacity: 1; }
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .console_body {
    padding: 20px;
  }

  .section_header h2 {
    font-size: 30px;
  }

  .console_line .text {
    font-size: 15px;
  }
}


/* ================= WHY AI R US ================= */

/* Section spacing – single source of truth */
#why-airus {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Header */
.why_header {
  text-align: center;
  margin-bottom: 40px;
}

.why_header h2 {
  font-size: 38px;
  color: #285DA2;
  margin-bottom: 8px;
}

.why_header p {
  font-size: 17px;
  color: #555;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 35px;
  margin-bottom: 50px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  height: 100%;
  width: 4px;
  background: #285DA2;
  border-radius: 10px;
}

/* Timeline Item */
.timeline_item {
  position: relative;
  margin-bottom: 35px;
  opacity: 0;
  transform: translateX(40px);
  animation: slideLeft 0.7s ease forwards;
}

.timeline_item:nth-child(1) { animation-delay: 0.2s; }
.timeline_item:nth-child(2) { animation-delay: 0.4s; }
.timeline_item:nth-child(3) { animation-delay: 0.6s; }
.timeline_item:nth-child(4) { animation-delay: 0.8s; }
.timeline_item:nth-child(5) { animation-delay: 1s; }

/* Dot */
.dot {
  position: absolute;
  left: -2px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 4px solid #285DA2;
  border-radius: 50%;
}

/* Content Card */
.content {
  background: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(40, 93, 162, 0.15);
}

.content h3 {
  color: #285DA2;
  margin-bottom: 6px;
  font-size: 21px;
}

.content p {
  color: #444;
  line-height: 1.6;
  font-size: 16px;
}

/* Highlight Strip */
.highlight_strip {
  background: linear-gradient(90deg, #285DA2, #3C7BC0);
  padding: 26px;
  border-radius: 18px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.highlight_strip h3 {
  font-size: 22px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Subtle Shimmer */
.highlight_strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.05)
  );
  transform: skewX(-20deg);
  animation: subtleShimmer 3s infinite;
}

/* Animations */
@keyframes slideLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes subtleShimmer {
  from { left: -40%; }
  to { left: 110%; }
}

/* Responsive */
@media (max-width: 768px) {
  .why_header h2 {
    font-size: 30px;
  }

  .timeline {
    padding-left: 28px;
  }

  .content {
    padding: 16px 18px;
  }
}

/* ================= NEW BATCHES ================= */

#new-batch {
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

/* Title */
#new-batch .section-title {
  text-align: center;
  font-size: 38px;
  color: #285DA2;
  margin-bottom: 8px;
}

#new-batch .section-subtitle {
  text-align: center;
  font-size: 17px;
  color: #555;
  margin-bottom: 45px;
}

/* Grid */
.batch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Card */
.batch-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(40, 93, 162, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.batch-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(40, 93, 162, 0.25);
}

.batch-card h3 {
  color: #285DA2;
  font-size: 21px;
  margin-bottom: 14px;
}

.batch-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.batch-card ul li {
  font-size: 15px;
  margin-bottom: 7px;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .batch-grid {
    grid-template-columns: 1fr;
  }
}
/* enroll button application  */

     :root {
      --primary-blue: #285DA2;
      --light-blue: #e0f2f7;
      --text-color: #333;
      --border-color: #ced4da;
      --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    body {
      background: #fff;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      margin: 0;
      padding: 0;
    }

    /* ============= Enroll Button ============= */
    .enroll-btn-wrapper {
      text-align: center;
      margin: 50px 0;
    }

    .enroll-btn {
      background: var(--primary-blue);
      color: #fff;
      padding: 15px 40px;
      border: none;
      border-radius: 8px;
      font-size: 1.2em;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .enroll-btn:hover {
      background: #1e4a85;
      transform: translateY(-3px);
    }

    /* ============= Popup Overlay ============= */
    .popup-form {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
      z-index: 1000;
      backdrop-filter: blur(4px);
      animation: fadeIn 0.3s ease-in-out;
    }

    /* ============= Popup Box ============= */
    .form-container {
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  max-width: 900px;
  max-height:70vh;
  width: 90%;
 
  overflow-y: auto;
  box-shadow: var(--box-shadow);
  position: relative;
  animation: slideDown 0.4s ease-in-out;
}

    .close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 1.8rem;
      color: #666;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .close-btn:hover {
      color: var(--primary-blue);
    }

    .form-container h2 {
      text-align: center;
      margin-bottom: 30px;
      color: var(--primary-blue);
      font-size: 2em;
      font-weight: 600;
      border-bottom: 2px solid var(--primary-blue);
      padding-bottom: 10px;
    }

    .form-section {
      margin-bottom: 25px;
      padding: 20px;
      border: 1px solid #e9ecef;
      border-radius: 8px;
      background-color: #f8f9fa;
    }

    .form-section h3 {
      color: var(--primary-blue);
      font-size: 1.2em;
      margin-bottom: 15px;
      border-bottom: 1px solid #dee2e6;
      padding-bottom: 8px;
      display: flex;
      align-items: center;
    }

    .form-section h3 i {
      margin-right: 10px;
      color: #6c757d;
    }

    .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 10px;
    }

    .form-group {
      flex: 1;
      min-width: 250px;
    }

    label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--text-color);
      font-size: 0.95em;
    }

    input, select {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid var(--border-color);
      border-radius: 6px;
      font-size: 0.9em;
      color: var(--text-color);
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    input:focus, select:focus {
      border-color: var(--primary-blue);
      box-shadow: 0 0 0 0.2rem rgba(40, 93, 162, 0.25);
      outline: none;
    }

    .phone-group {
      display: flex;
      gap: 10px;
    }

    .phone-prefix {
      width: 70px;
      background-color: #f1f3f5;
      text-align: center;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: #555;
      border: 1px solid var(--border-color);
    }

    button[type="submit"] {
      width: 100%;
      padding: 15px;
      margin-top: 25px;
      background: var(--primary-blue);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    button[type="submit"]:hover {
      background: #1e4a85;
      transform: translateY(-2px);
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideDown {
      from { transform: translateY(-40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    @media (max-width: 768px) {
      .form-row {
        flex-direction: column;
      }

      .form-container {
        padding: 25px 20px;
      }

      .form-container h2 {
        font-size: 1.6em;
      }
    }
