/* =========================================
   1. ROOT VARIABLES & GLOBAL STYLES
   ========================================= */

:root {
  --primary: #ffffff;
  --bg: #ffffff;
  --card-bg: #ffffff;
  --accent: #f97316;
  /* green */
  --accent-soft: #f97316;
  /* lighter green */
  --text: #111827;
  --muted: #6b7280;
  --border-subtle: rgba(148, 163, 253, 0.25);

}


*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}









/* =============================== MAIN DROPDOWN ================================ */ 
.newcourse{
    display: none;
}
.head_dropdown { position: relative; } .coursebtn{ display: none; } .head_dropdown-toggle { cursor: pointer; font-weight: 600; color: #222; text-decoration: none; display: inline-block; } /* =============================== DROPDOWN CONTENT ================================ */ .head_dropdown-content { position: absolute; top: 100%; left: -210%; background: #ffffff; min-width: 230px; padding: 12px 0; border-radius: 10px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.25s ease; z-index: 1000; } /* Show dropdown on hover */ .head_dropdown:hover .head_dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); } /* =============================== SUB DROPDOWN ================================ */ .head_sub-dropdown { position: relative; } /* Main menu links */ .head_dropdown-content > a, .head_sub-dropdown > a { display: block; padding: 10px 18px; font-size: 12px; color: #333; text-decoration: none; white-space: nowrap; transition: background 0.2s ease, color 0.2s ease; } .head_dropdown-content > a:hover, .head_sub-dropdown > a:hover { background: #f1f5ff; color: #2a4cff; } /* =============================== SUB MENU ================================ */ .head_sub-menu { position: absolute; top: 0; left: 100%; background: #ffffff; min-width: 200px; padding: 10px 0; border-radius: 10px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); opacity: 0; visibility: hidden; transform: translateX(10px); transition: all 0.25s ease; } /* Show sub-menu on hover */ .head_sub-dropdown:hover .head_sub-menu { opacity: 1; visibility: visible; transform: translateX(0); } /* Sub menu links */ .head_sub-menu a { display: block; padding: 9px 16px; font-size: 13.5px; color: #444; text-decoration: none; transition: background 0.2s ease, color 0.2s ease; } .head_sub-menu a:hover { background: #eef2ff; color: #2a4cff; } /* =============================== ARROW INDICATOR ================================ */ .head_sub-dropdown > a::after { content: "▶"; float: right; font-size: 11px; margin-top: 2px; opacity: 0.6; } .allbtn{ border-top: 2px solid #e5e7eb; text-align: center; } .internbtn{ display: none; justify-content: center; } 
/* =============================== MOBILE RESPONSIVE ================================ */
@media (max-width: 991px) { 
    .head_dropdown{
        display: none;
    }
    .newcourse{
        display: flex;
    }
    .coursebtn{ display: inline; } .internbtn{ margin-top: 10px; padding: 5px; display: flex; justify-content: center; } .internbtn1{ display: none; } }







/* Wrapper */
.Sign_dropdown {
  position: relative;
}

/* Toggle button */
.Sign_dropdown-toggle {
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s ease;
}

.Sign_dropdown-toggle:hover {
    color:#f97316;
}

/* Dropdown content */
.Sign_dropdown-content {
  position: absolute;
  top: 110%;
  right: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  padding: 8px 0;
}

/* Show dropdown on hover */
.Sign_dropdown:hover .Sign_dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Sub-dropdown items */
.Sign_sub-dropdown a {
  display: block;
  padding: 12px 18px;
  color: #1e293b;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease;
}

/* Hover effect */
.Sign_sub-dropdown a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

/* Divider spacing */
.Sign_sub-dropdown:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}

/* Mobile friendly */
@media (max-width: 768px) {
  .Sign_dropdown-content {
    right: auto;
    left: 0;
    width: 100%;
  }
}









.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: 60px;
}

.company-name {
  padding-left: 8px;
  color: #1a2a80;
}
.company-name1{
  color: #f97316;
}
.logoheader{
  display: none;
}














/* Reusable container */
.container {

  margin: 0 10px;
}

/* Links & focus states for accessibility */
a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #f97316;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */

/* ========== NAVBAR ========== */


.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.logo_image {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(26, 42, 128, 0.25);
}

.btn-accent:hover {
  opacity: 0.95;
}

/* -------------------- MAIN DROPDOWN -------------------- */
/* Dropdown main container */
.dropdown {
  position: relative;

}

/* Main button */
.dropdown-toggle {
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
  text-decoration: none;
  background-color: transparent;
  font-weight: 500;
  color: #111827;

}

/* Main dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f7f7f7;
  min-width: 220px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  z-index: 100;
  margin-top: 8px;
  right: 5px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Links */
.dropdown-content a,
.sub-toggle {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  border-radius: 4px;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  font-size: 15px;
}

/* Hover effect */
.dropdown-content a:hover,
.sub-toggle:hover {
  background-color: #e0e0e0;
}

/* Sub-dropdown */
.sub-dropdown {
  position: relative;
}

/* Sub-menu (hidden by default) */
.sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: -100%;
  background-color: #f7f7f7;
  min-width: 200px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Show sub-menu on hover */
.sub-dropdown:hover .sub-menu {
  display: block;
}

/* Small arrow fix */
.sub-toggle::after {
  content: "▸";
  float: right;
  margin-left: 10px;
  color: #555;
}


/* ========== HAMBURGER ANIMATION (OPTION D) ========== */
.nav-toggle {
  position: relative;
  width: 32px;
  height: 22px;
  cursor: pointer;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 25px;
}

.nav-toggle span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  transition: 0.4s ease;
}

/* Lines */
.nav-toggle span:nth-child(1) {
  top: 0;
}

.nav-toggle span:nth-child(2) {
  top: 9px;
}

.nav-toggle span:nth-child(3) {
  top: 18px;
}

/* When Active → X */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}



















/* Show on hover for desktop */
@media (min-width: 901px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* IMPORTANT: show when .open is present (applies at all sizes) */
.dropdown.open .dropdown-content {
  display: block;
}

/* Mobile styles */
.nav-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent);
  
}

@media (max-width:900px) {
.nav{
  padding:0px 15px;
  margin: 0px;
      border-bottom: 2px solid transparent;
  border-color: black;
}
.logoheader{
  display: flex;
  font-size: small;
  gap: 30px;

}
.logoheaderline{
display: flex;
margin: 0px;


}

.logoheader {
  display: flex;
  justify-content: center;

}
.logoheader1{
  border: 2px solid transparent;
  border-color: rgba(11, 99, 232, 0.95);
}

/* Box that holds both lines + text */
.logo-box {
  position: relative;
  padding: 0 25px;
  gap: 30px;/* spacing between text and lines */

}

/* LEFT vertical line */
.logo-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: black;
  gap: 30px;
}

/* RIGHT vertical line*/
.logo-box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: black;
  gap: 30px;
} 
.centerheader {
  text-align: center;
  font-size: x-large;
  font-weight: bold;
}

.company-name {
  margin: 0;
  padding: 0;
  text-align: center;
  gap: 30px;
}

.logoheaderline h1{
margin: 0px;
  font-size: xx-large;
height: max-content;
}
.centerheader{
  text-align: center;
    font-size: x-large;
}
.company-name1{
font-weight:bolder;
}

.logoheader1{
  display: none;
}
  .nav-toggle {
    display: block;
    margin-right: 10px;

  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 1rem 0;
    margin-top: 1rem;
  }

  .nav-links.show {
    display: grid;
            position: absolute;
        top: 49px;
        left: -1px;
        padding:25px;
  }

  .nav-links a,
  .dropdown-toggle {
    width: 100%;
    padding: 1re 1rem;
    text-align: left;
  }

  /* dropdown content becomes static block inside mobile menu */
  .dropdown-content {
    position: static;
    border: none;
    box-shadow: none;
    background: #f9f9f9;
    padding-left: 0.5rem;
  }
}

.menu-btn {
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-btn span {
  display: block;
  height: 3px;
  background: #1a2a80;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* When menu is active */
.menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}



/* =========================================
   3. HERO SECTION
   ========================================= */

.hero {
  padding: 4rem 0 4rem;
  background: linear-gradient(90deg,#5ed0fa, #4d9bff );
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

/* Hero text */
.hero-copy h1 {
  font-size: 1.7rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.tagline {
  margin: 0 0 1.5rem;
  color:black;
  max-width: 480px;
  font-size: 0.95rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons */
.btn1 {
  background-color: #1fba5f;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-weight: bold;
}

.btn1:hover {
  color: black;
}

.btn2 {
  background: var(--accent);
  background-color: #1e3a8a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  color: white;
  font-weight: bold;
}

.btn2:hover {
  color: black;
}

.btn {
  background-color: #f97316;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-weight: bold;
}
.btn:hover{
  color:black;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35);
}

.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  color: black;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero art */
.hero-art {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.hero-art .blob {
  inset: -10%;
  background: radial-gradient(circle at top, rgba(34, 197, 94, 0.22), transparent);
  filter: blur(18px);
  z-index: -1;
}

.hero-art img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* =========================================
   4. MODAL (CSS-ONLY USING :target)
   ========================================= */

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
}

.modal:target {
  display: flex;
}

.modal-content {
  background: var(--card-bg);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 90%;
  max-width: 420px;
  position: relative;
  border: 1px solid var(--border-subtle);
}

.modal-content h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: var(--accent);
}

/* Close button */
.modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.9rem;
  font-size: 1.4rem;
  color: var(--muted);
  text-decoration: none;
}

.modal-close:hover {
  color: var(--accent);
}

/* Form elements */
.modal-form .form-group {
  margin-bottom: 0.8rem;
}

.modal-form label {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  color: black;
  text-align: left;
}

.modal-form input {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  color: var(--text);
  font-size: 0.85rem;
}

.submit-btn {
  margin-top: 0.4rem;
  width: 100%;
  padding: 0.6rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #111827;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

/* =========================================
   5. SECTIONS (Services / Training / Why Us / Reviews)
   ========================================= */

.section {
  padding: 2.5rem 2.5rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin: 0 0 1.8rem;
  font-weight: 600;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
}

.section-title span {
  color: var(--accent);
}

/* Services grid */
/* Section base */
.services-section {
  padding: 3rem 1rem;
  text-align: center;
  
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  
}

/* Use Grid for layout — responsive columns */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  justify-items: center;
}

/* Service card */
.service-card {
   background: linear-gradient(90deg, #1CB5E0 0%, #abafca 100%);
  padding: 1.5rem 1rem;
  border-radius: var(--radius-md, 12px);
  border: 1px solid var(--border-subtle, #ddd);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.service-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.service-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color:black;
}

/* Hover effects */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--accent, #1a2a80);

}

/* ========================= */
/* Responsive Breakpoints */
/* ========================= */

/* Tablets (≥600px): 2 columns */
@media (min-width: 600px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
}

/* Desktop (≥992px): 3 columns */
@media (min-width: 992px) {
  .services-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .service-card {
    max-width: 320px;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

/* Large screens (≥1200px) */
@media (min-width: 1200px) {
  .services-section {
    padding: 4rem 2rem;
  }

  .section-title {
    font-size: 2.4rem;
  }
}


/* Why Us / Training Modes grid */
.why-services-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-box {
    background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  transition: var(--transition);
  justify-content: center;
  justify-items: center;
}

.service-box img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.service-box h3 {
  margin: 0;
  font-size: 0.98rem;
  color:black;
}

.service-box p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--accent);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.review-card {
  background: transparent;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.review-text {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.review-author {
  margin: 0;
  font-size: 0.8rem;
  color: var(--accent);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
  border-color: var(--accent);
}

/* =========================================
   6. FOOTER
   ========================================= */

/* Footer Wrapper */
.footer {
    background:#081947;
    color: #fff;
    padding: 40px 20px 20px;
    margin-top: 40px;
}

/* Main Footer Layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #f97316;
}
.footer_logo_image{
  justify-content: center;
  text-align: center;
}
.white_logo{
  height: 60px;
  width: 90px;
}
.number{
  padding-left: 10px;
}

/* About Section Title */
.footer-column-about h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 15px;
}

/* Footer Text */
.footer-column p,
.footer-column a,
.footer-column li {
    font-size: 0.95rem;
    color: #d7d7d7;
    line-height: 1.6;
    margin: 5px;
}

.footer-column a:hover {
    color: #f97316;
}

/* UL Reset */
.footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Demo Button */
/* Button */
.book_demo-btn {
    background: #2c41ff;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s;
    margin: 15px;
    margin-top: 15px;
}

.book_demo-btn:hover {
    opacity: 0.85;
}

/* Modal Background */
.book_demo-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(2px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 9999;
}

/* Modal Box */
.book_demo-content {
    background: #fff;
    padding: 25px 32px;
    width: 100%;
    max-width: 430px;
    border-radius: 10px;
    position: relative;
    animation: book_demoFade 0.3s ease;
}

/* Close Button */
.book_demo-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    border: none;
    background: none;
}

.book_demo-content h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

/* Form Styles */
.book_demo-form .book_demo-group {
    margin-bottom: 15px;
}

.book_demo-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.book_demo-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 6px;
    font-size: 1rem;
}

.book_demo-submit {
    width: 100%;
    padding: 12px;
    background: #2c41ff;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.book_demo-submit:hover {
    opacity: 0.85;
}

/* Animation */
@keyframes book_demoFade {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50px;
    background: #0f0e1a;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f97316;
    font-size: 16px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #f97316;
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2b2a3f;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #a8a8a8;
}


/* ------------------------------- */
/* RESPONSIVE DESIGN */
/* ------------------------------- */

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .book_demo-btn {
        width: 100%;
        text-align: center;
    }
}



/* =========================================
   7. RESPONSIVE MEDIA QUERIES
   ========================================= */

/* Mobile-first: 0–600px already handled above */

/* Tablet: 601px–991px */
@media (min-width: 601px) and (max-width: 991px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-copy {
    flex: 1.2;
  }

  .hero-art {
    flex: 1;
  }

  .services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-services-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Show inline nav, hide hamburger */
  .nav-toggle-label {
    display: none;
  }
}

/* Desktop: ≥992px */
@media (min-width: 992px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-copy h1 {
    font-size: 2.1rem;
  }

  .services-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-services-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  /* Desktop nav: no hamburger */
  .nav-toggle-label {
    display: none;
  }
}

/* Mobile nav: override for ≤600px (placed at end to win specificity) */
@media (max-width: 600px) {
  .nav-links {
    position: absolute;
    top: 48.5px;
    right: 0;
    left: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1.2rem 1.1rem;
    display: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-toggle-label {
    display: flex;
  }

  .nav-toggle:checked~.nav-links {
    display: flex;
  }
}

/* =========================================
   8. ADDITIONS: Variables, hamburger animation, reveal effect
   ========================================= */

/* Provide default tokens if missing */
:root {
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif;
  --transition: 0.25s ease;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Hamburger button sizing */
.nav-toggle-label {
  width: 32px;
  height: 26px;
  align-items: center;
  justify-content: center;
}

.nav-toggle-label span {
  display: block;
}

/* Animate to X when open */
.nav-toggle:checked+.nav-toggle-label span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle:checked+.nav-toggle-label span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle:checked+.nav-toggle-label span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Reveal-on-scroll utility */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}
















.testimonials-section {
  width: 100%;
  padding: 10px 20px;
  background: #fff;
  text-align: center;
  color: #0f172a;
}

.testimonials-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0f172a;
}

.testimonials-section h2 span {
  color: #16a34a;
}

.slider-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-container {
  display: flex;
  gap: 20px;
  transition: transform 0.8s ease;
}

.testimonial-card {
  flex: 0 0 32%;
  background: #1e293b;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  color: #f8fafc;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #38bdf8;
  margin-bottom: 15px;
}

.testimonial-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 10px;
  display: block;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-bottom: 15px;
  line-height: 1.5;
}

.stars {
  color: #facc15;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 48%;
  }
}

@media (max-width: 700px) {
  .testimonial-card {
    flex: 0 0 90%;
  }
}












.hiring-section {
  padding: 10px;
  padding-bottom: 50px;
  text-align: center;
  background: linear-gradient(90deg,#5ed0fa, #4d9bff );
}

.hiring-title {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.hiring-title span {
  color: #4d9bff;
  /* blue accent */
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.logo-grid img {
  background: #f5f1f1;
  border-radius: 12px;
  padding: 20px;
  width: 140px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .hiring-title {
    font-size: 1.6rem;
  }

  .logo-grid img {
    width: 120px;
    height: 70px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
  }

  .logo-grid img {
    width: 100px;
    height: 60px;
  }
  
}
@media (max-width: 360px) {
.logoheader{
  display: grid;
}
.logoheader1{
  display: none;
}

}












/* index Course SECTION */
/* MAIN SECTION */
.domains-carousel-section {
  text-align: center;
  padding-bottom: 40px;
  overflow: hidden;
  background: linear-gradient(90deg,#5ed0fa, #4d9bff );
}

.domains-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  
}

/* CAROUSEL */
.carousel-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* EACH COLUMN */
.domain-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 25%;
  /* 4 columns on desktop */
  align-items: center;
  justify-content: center;
}

/* CARD SIZE BIGGER */
.domain-card {
  background: whitesmoke;
  border-radius: 18px;
  padding: 18px;
  width: 200px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.domain-card a {
  text-decoration: none;
  color: #1e293b;
  text-align: center;
}

.domain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 12px rgba(77, 155, 255, 0.3);
}

.domain-card img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

/* BUTTONS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(77, 155, 255, 0.4);
  color: white;
  border: none;
  font-size: 1.6rem;
  border-radius: 50%;
  padding: 10px 16px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(77, 155, 255, 0.7);
}

.prev {
  left: -45px;
}

.next {
  right: -45px;
}

.btn-wrapper {
  margin-top: 50px;
}

.explore-btn {
  background-color:#1a2a80;
  color: #fff;
  margin-top: 60px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

.explore-btn:hover {
  color: black;
  background-color: #f97316;
}

/* ----------------------------------
   📱 MOBILE RESPONSIVE FIXES
---------------------------------- */

/* Medium screens - tablets */
@media (max-width: 992px) {
  .domain-column {
    min-width: 33.33%;
    /* 3 columns */
  }

  .domain-card {
    width: 200px;
    height: 190px;
  }

  .domain-card img {
    width: 120px;
    height: 120px;
  }
}

/* Small screens - mobile */
@media (max-width: 768px) {
  .domain-column {
    min-width: 50%;
    /* 2 columns */
  }

  /* Move buttons inside */
  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  .carousel-btn {
    padding: 8px 14px;
    font-size: 1.3rem;
  }

  .domain-card {
    width: 180px;
    height: 170px;
  }

  .domain-card img {
    width: 110px;
    height: 110px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .domain-column {
    min-width: 100%;
    /* 1 column visible */
  }

  /* Smaller card for tiny screens */
  .domain-card {
    width: 170px;
    height: 160px;
    margin: 0 auto;
  }

  .domain-card img {
    width: 100px;
    height: 100px;
  }

  /* Hide arrows only on very small screens */
  .carousel-btn {
    display: none;
  }
}




/* About */
.about_para {
  margin-top: 30px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 20px 0
}

@media (max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr
  }
}

.about-card {
  background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
  border-radius: var(--radius);
  padding: 18px
}

.avatar {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 12px;
  background: #e2e8f0
}

/* ========================= */
/* Trainers Section */
/* ========================= */
.trainers-section {
  padding: 4rem 1rem;
  background: #ffffff;
  text-align: center;
  color: #0f172a;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2.5rem;
}

/* ========================= */
/* Trainer Grid */
/* ========================= */
.trainer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}

/* ========================= */
/* Trainer Card */
/* ========================= */
.trainer-card {
  background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  width: 100%;
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trainer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #1a2a80;
}

/* ========================= */
/* Trainer Image */
/* ========================= */
.trainer-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.trainer-card:hover .trainer-photo {
  transform: scale(1.05);
}

/* ========================= */
/* Trainer Text */
/* ========================= */
.trainer-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a2a80;
  margin: 0.5rem 0;
}

.trainer-bio {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* ========================= */
/* Responsive Layout */
/* ========================= */
@media (min-width: 600px) {
  .trainer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .trainer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-title {
    font-size: 2.4rem;
  }
}

@media (min-width: 1200px) {
  .trainers-section {
    padding: 5rem 2rem;
  }
}

/* ========================= */
/* About Section Grid */
/* ========================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  color: #0f172a;
}

/* ========================= */
/* About Card */
/* ========================= */
.about-card {
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 1rem 2.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: #1a2a80;
}

/* ========================= */
/* Headings and Text */
/* ========================= */
.about-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a2a80;
  margin-bottom: 1.5rem;
  text-align: left;
}

.about-card p {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
}

/* ========================= */
/* List Styling */
/* ========================= */
.about-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card li {
  font-size: 1.1rem;
  color: #475569;
  line-height: 1.8;
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
}

.about-card li::before {
  content: "✔";
  color: #1a2a80;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

/* ========================= */
/* Responsive Layout */
/* ========================= */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}




/* Courses */
/* 🌄 Slideshow Section */
/* ------------------------------
   COURSE SECTION
------------------------------ */
/* ------------------------------
   COURSE SLIDESHOW
------------------------------ */
/* ------------------------------
   🔹 Fullscreen Slideshow Wrapper
--------------------------------*/
.course_slideshow {
  width: 100%;
  height: 65vh;              /* Adjust slideshow height */
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}

/* ------------------------------
   🔹 Each Slide
--------------------------------*/
.course_slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.course_slide.active {
  opacity: 1;
  z-index: 2;
}

/* ------------------------------
   🔹 Images inside slideshow
--------------------------------*/
.course_slideshow .course_image {
  width: 100%;
  height: 100%;
  object-fit: cover;        /* Makes ALL images same size */
  object-position: center;
  display: block;
}

/* ------------------------------
   🔹 RESPONSIVE
--------------------------------*/
@media (max-width: 768px) {
  .course_slideshow {
    height: 45vh;
  }
}

@media (max-width: 480px) {
  .course_slideshow {
    height: 35vh;
  }
}


/* Section */
/* ---------- Section ---------- */
.overall_course_section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 15px;
}

.overall_course_title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

/* ---------- Grid ---------- */
.overall_course_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}

/* ---------- Card ---------- */
.overall_course_card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  /* padding-bottom: 55px;  space for button */
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.80);
  cursor: pointer;
  position: relative;
  padding-top: 0px;
}
.overall_course_card h3{
  text-align: center;
  margin: 15px;
}
.overall_course_card p{
  text-align: center;
}

.overall_course_card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Image */
.overall_course_image {
  width: 100%;
  height: 50%;
  border-radius: 10px;
  transition: 0.35s ease;
  
}

.overall_course_card:hover .overall_course_image {
  transform: scale(1.05);
}

/* Text */
.overall_course_body {
  margin-top: 12px;
}

.overall_course_name {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
}

.overall_course_desc {
  font-size: 14px;
  color: #666;
}

/* ---------- Button Half Inside + Outside ---------- */
.overall_course_btn {
  position: absolute;
  bottom: -18px; /* half outside effect */
  left: 50%;
  transform: translateX(-50%);
  background: #1a2a80;
  border: 2px solid #007bff;
  color: white;
  padding: 8px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.overall_course_btn:hover {
  background: #f97316;
  color: white;
}

/* ---------- More Button ---------- */
.overall_course_more {
  margin-top: 80px;
  text-align: center;
}

.overall_course_more_btn {
  background: #007bff;
  color: white;
  padding: 10px 28px;
  border-radius: 25px;
  text-decoration: none;
}
.overall_course_more_btn:hover{
  color: black;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .overall_course_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .overall_course_grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .overall_course_card {
    padding-bottom: 60px;
  }
}






/* ===== CONTACT PAGE STYLES ===== */

.contact-section {
  padding: 20px 50px;
  background: #f9fbff;
  font-family: "Poppins", sans-serif;
  color: #1e1e2f;
  
}

.contact-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form-section,
.contact-map-section {
  background: linear-gradient(90deg, #e3ffe7 0%, #d9e7ff 100%);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.contact-subtitle {
  font-size: 24px;
  margin-bottom: 0px;
  color: #333;
  margin-top: 10px;
}

.contact-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.contact-row label {
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-row input,
.contact-row textarea,
.contact-row select {
  padding: 12px;
  border: 1px solid #d2d2d2;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}
.contact-info{
  margin: 2px;
}
.contact-row input:focus,
.contact-row textarea:focus,
.contact-row select:focus {
  border-color: #4d9bff;
  outline: none;
}

.contact-btn {
  width: 100%;
  background: linear-gradient(90deg, #4d9bff, #5ed0fa);
  color: #fff;
  font-size: 18px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.contact-status {
  margin-top: 15px;
  font-weight: 500;
  text-align: center;
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border-radius: 10px;
}

.contact-address p {
  line-height: 1.6;
  margin: 5px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 40px 5%;
  }
}


/* ========================= */
/* SECTION WRAPPER           */
/* ========================= */
/* ================================
   MAIN SECTION STYLING
================================ */

.sevices_head {
  text-align: center;
  font-size: 42px;
  margin-bottom: 30px;
  font-weight: 700;
  
}

.our_services-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 5%;
  gap: 60px;
  position: relative;
   background:linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%);
 
}

.our_services-reverse {
   background: linear-gradient(90deg, #e3ffe7 0%, #00C9FF 100%);
  flex-direction: row-reverse;
}

/* ================================
   IMAGE BLOCK
================================ */

.our_services-image {
  flex: 1;
  position: relative;
}

.our_services-image img {
  width: 100%;
  height: 300px;
  border-radius: 40px;
  display: block;
  z-index: 3;
  position: relative;
}

/* ================================
   TEXT BLOCK
================================ */

.our_services-text {
  flex: 1;

}

.our_services-text h2 {
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.our_services-text h2 span {
  color: #1e90ff;
}

.our_services-text p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Buttons */
.our_services-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: 0.3s;
}

.blue-btn {
  background: #1e90ff;
  color: black;
  transition: 0.3s ease;
}

.blue-btn:hover {
  transform: translateY(-4px);
  color: white;
}

.orange-btn {
  background: #ff8c00;
  color: black;
  transition: 0.3s ease;
}

.orange-btn:hover {
  transform: translateY(-4px);
  color: white;
}

.green-btn {
  background: #2ecc71;
  color: black;
  transition: 0.3s ease;
}

.green-btn:hover {
  transform: translateY(-4px);
  color: white;
}

.our_services-btn:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

/* ================================
   FINAL BUTTON
================================ */

.sb11 {
  text-align: center;
  margin: 70px 0;
}

.btn11 {
  background: #1e90ff;
  padding: 14px 40px;
  border-radius: 40px;
  font-size: 20px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  color: black;
}

.btn11:hover {
  transform: translateY(-4px);
  color: white;
}

/* ================================
   MOBILE VIEW
================================ */

@media (max-width: 900px) {

  .our_services-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  /* reduce only image height */
  .our_services-image img {
    height: 220px;
  }

  .our_services-text h2 {
    font-size: 36px;
  }

  .our_services-text p {
    font-size: 16px;
    margin: 0 auto 25px;
  }

  /* reduce glow sizes */
  .blue-glow::before,
  .orange-glow::before,
  .green-glow::before {
    width: 220px;
    height: 220px;
    filter: blur(60px);
  }
}













/* ========== BASE STYLING ========== */
/* ---------- COURSE DROPDOWN ---------- */
.course-dropdown {
  position: relative;
  display: inline-block;
  font-family: Poppins, sans-serif;
}

.course-toggle {
  background-color: #2c3e50;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.course-toggle:hover {
  background-color: #1a252f;
}

/* Dropdown content */
.course-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 240px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  margin-top: 8px;
  z-index: 1000;
}

.course-content a,
.course-content .sub-toggle {
  display: block;
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s ease;
}

.course-content a:hover,
.sub-toggle:hover {
  background: #f0f0f0;
}



/* Hover for desktop */
.course-dropdown:hover .course-content {
  display: block;
}

.sub-dropdown:hover .sub-menu {
  display: block;
}

/* ---------- RESPONSIVE (MOBILE) ---------- */
@media (max-width: 768px) {
  .course-dropdown {
    width: 100%;
  }

  .course-toggle {
    width: 100%;
    text-align: left;
  }

  .course-content {
    position: static;
    box-shadow: none;
    border-radius: 0;
  }

  .course-content.show {
    display: block;
  }

  .sub-menu {
    position: static;
    display: none;
    padding-left: 20px;
    box-shadow: none;
  }

  .sub-menu.show {
    display: block;
  }

  .sub-toggle.active::after {
    transform: rotate(90deg);
  }
}

















/* ========================= */
/* JAVA SECTION */
/* ========================= */

.java-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 3rem 6%;
  flex-wrap: wrap;
  background: #fafafa;
  color: #222;
}

.text-content {
  flex: 1.6;
  min-width: 320px;
}

.text-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.rating {
  display: flex;
  gap: .6rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.badge {
  background: #ffca28;
  padding: 4px 10px;
  border-radius: 5px;
  font-weight: 600;
}

.stars {
  color: #ffcc00;
}

.review {
  font-size: 1rem;
}

.text-content p {
  font-size: 1.1rem;
  margin-bottom: 1.3rem;
}

/* RIGHT CARD */

.card5 {
  flex: 1;
  background: #141414;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  min-width: 300px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.card5 img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1.2rem;
}

.btn-group {
  display: flex;
  gap: 1rem;
}

button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.enroll {
  background: #1a2a80;
  color: #fff;
}

.free {
  background: #f97316;
  color: #fff;
}

.contact {
  margin-top: 1rem;
  color: #fff;
}

.phone-box {
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #202020;
  margin-top: 10px;
  align-items: center;
}

.number {
  font-size: 18px;
  font-weight: 700;
}

.subtext {
  font-size: 13px;
  opacity: 0.75;
}

/* ========================= */
/* COURSE OVERVIEW */
/* ========================= */

.batch-section {
  padding: 2rem 6%;
}

.batch-section h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.overview-text {
  line-height: 1.6;
}

/* ========================= */
/* SYLLABUS ACCORDION */
/* ========================= */

.content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.syllabus h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #f97316;
  text-align: left;
}

.accordion {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.accordion-header {
  padding: 16px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #1a2a80;
  display: flex;
  justify-content: space-between;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding: 0 20px;
  background: #fafafa;
}

.accordion.open .accordion-content {
  max-height: 500px;
  padding: 16px 20px;
}

.accordion-content ul {
  padding-left: 20px;
}

/* ========================= */
/* HIGHLIGHTS */
/* ========================= */

.highlights h2 {
  font-size: 28px;
  color: #f97316;
  text-align: center;
  margin-bottom: 20px;
}

.highlight-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight {
  background: #fafafa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 2px solid #f97316;
}

.highlight-icon {
  font-size: 32px;
}

.big {
  font-weight: 700;
}

/* ========================= */
/* BATCH SCHEDULE */
/* ========================= */

.batch-box {
  max-width: 900px;
  margin: 3rem auto;
  background: #111;
  padding: 2rem;
  border-radius: 10px;
  color: #fff;
}

.batch-row {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr auto;
  padding: 1rem;
  border-bottom: 1px solid #333;
  align-items: center;
}

.fees-btn {
  background: #2c41ff;
  color: #fff;
  padding: .6rem 1.2rem;
  border-radius: 6px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width: 900px) {
  .content {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 768px) {
  .batch-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
















/* ========================= */
/* header */
/* ========================= */
.page-header {
  width: 100%;
  padding: 20px 0 40px;
  text-align: center;
  background: linear-gradient(to right, #ff7336, #1a2a80);
  color: white;
}
.page-header5{
  width: 100%;
  padding: 20px 0 40px;
  text-align: center;
  background: linear-gradient(to right, #ff7336, #1a2a80);
  color: white;
  margin-top: 5px;
  border: 2px solid transparent;
  border-color: black;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-header .divider {
  font-weight: 900;
  padding: 0 8px;
}

.course_para_st {
  padding-left: 55px;
}

























.bookfair-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

.bookfair-card {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    overflow: visible; /* important for button half outside */
}

.bookfair-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.bookfair-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

.bookfair-card p {
    margin: 12px 0 40px; /* bottom space for button */
    color: #555;
}

/* --- Button Half-In Half-Out --- */
.bookfair-btn {
    position: absolute;
    left: 50%;
    bottom: -18px;      /* half outside */
    transform: translateX(-50%);
    background: #0a66c2;
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
}

.bookfair-btn:hover {
    background: #004a9e;
}


