* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; 
}
html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}


body {
      font-family: Arial, sans-serif;
      background: #fff;
    }


/* header {
  position: static;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: -1rem;
  background-color:#03042c;
  z-index: 999;
  left: 0;
  top: 0;
   width: 100%;
} */
 
/* Sticky Header */
header {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 999;
  /* background-color: #03042c; */
          background: radial-gradient(circle, #1a3d8f 0%,#03042c 100%);

}
.navbar {
  display: flex;
  justify-content: space-between; /* logo left, toggler right */
  align-items: center;
  padding: 4px 16px !important;
  min-height: 56px;
}

.navbar-brand {
  padding-left: 8px;
}



.navbar-brand img {
  height: 60x;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
}




/* Navbar link styles */
.navbar-nav .nav-link {
  margin-left: 10px;
  margin-right: 20px;
  padding: 8px 12px;
  color: white !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #00aaff !important;
}

   /* Banner */
.banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  margin-top: 50px;

  /* Gradient background */
  /* background: linear-gradient(270deg, #1e293b, #0f766e, #1e023d, #480152); */
  background-size: 800% 800%;
          background: radial-gradient(circle, #1a3d8f 0%,#03042c 100%);


  /* Animation */
  /* animation: gradientMove 15s ease infinite; */
  color: #fff; /* Text contrast */
  border-radius: 0px; /* optional */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* optional depth */
}

/* Keyframes for animated gradient */
/* @keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
} */

/* Left Section (title + content) */
.banner-left, .banner-right {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.banner-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Heading */
.banner-left h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  text-align: center;  /* ✅ Center heading */
}

/* Paragraph */
.banner-left p {
  text-align: center;  /* ✅ Center context */
}

/* .button-container {
      display: flex;
      gap: 20px;
      justify-content: center; 
      align-items: center;     
      margin-top: 20px;
    } */
     .button-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;

  /* background: rgba(255, 255, 255, 0.15);  */
  border-radius: 15px;
  padding: 20px 40px;
  position: relative;
}



    .btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
      flex-wrap: wrap;
    }
    
    /* Orange button */
    .btn-primary {
      
      color: white;
    }
    .btn-primary:hover {
      
      transform: scale(1.05);
    }

    /* Light button */
    .btn-secondary {
      
      color: white;
      border: 2px solid #ddd;
      
    }
    /* Button styles */
.btn-secondary {
  display: inline-flex;       /* flex so text + icon align */
  align-items: center;        /* vertical alignment */
  gap: 8px;                   /* spacing between icon and text */
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  padding: 10px 20px;
  background: #6c757d;        /* Bootstrap-like secondary color */
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  height: 50px;
}

/* Hover effect */
.btn-secondary:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

/* Icon styles */
.btn-secondary i {
  font-size: 18px;
}


    /* Icon styling */
    .btn i {
      font-size: 18px;
    }


/* Video (square) */
.banner-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-right video {
  width: 100%;
  max-width: 500px;  /* responsive limit */
  height: auto;      /* ✅ keep aspect ratio */
  border-radius: 10px;
  object-fit: cover;
}

/* stats-section */
.stats-section {
  /* background: linear-gradient(135deg, #0d1b3d, #1a2a6c, #16365c, #3a0ca3); */
  color: black;
  padding: 60px 20px;
  text-align: center;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}

.stat-box {
  /* background: rgba(255, 255, 255, 0.05);  */
  border-radius: 12px;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.25),  
    0 12px 40px rgba(0, 0, 0, 0.2);  
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.35),  
    0 16px 50px rgba(0, 0, 0, 0.3);
}


/* Default styles */
.stat-box h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

/* First stat */
.stat-box:nth-child(1) h2 {
  color: #ff4757;   /* Red */
}
.stat-box:nth-child(1):hover h2 {
  color: #ff6b81;
}

/* Second stat */
.stat-box:nth-child(2) h2 {
  color: #1e90ff;   /* Blue */
}
.stat-box:nth-child(2):hover h2 {
  color: #70a1ff;
}

/* Third stat */
.stat-box:nth-child(3) h2 {
  color: #2ed573;   /* Green */
}
.stat-box:nth-child(3):hover h2 {
  color: #7bed9f;
}

/* Fourth stat */
.stat-box:nth-child(4) h2 {
  color: #ffa502;   /* Orange */
}
.stat-box:nth-child(4):hover h2 {
  color: #ffcc70;
}

.stat-box p {
  font-size: 18px;
  font-weight: bold;
  color: rgb(66, 62, 62);
}


/* key-features */

    .section-title {
      text-align: center;
      /* margin: 40px 0 20px; */
      font-size: 2rem;
      font-weight: bold;
      color: #1a1a1a;
    }

    .section-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      background: #ff6600;
      /* margin: 10px auto 0; */
      border-radius: 2px;
    }

    .features-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 per row */
      gap: 20px;
      padding: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .feature-card {
  border-radius: 10px;
  padding: 15px;                  /* smaller padding */
  min-height: 140px;              /* ensure some balance */
  color: #333;
  text-align: center;
  font-size: 0.9rem;              /* smaller base font */
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;        /* center content vertically */
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 24px;                
  margin-bottom: 8px;
  display: block;
  margin-top: 10px;               
}

.feature-card h3 {
  font-size: 1rem;                
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.8rem;              
  line-height: 1.3;
}


    /* Softer pastel colors */
    .card1 { background: #ffe0dc; }  /* light coral */
    .card2 { background: #dce9ff; }  /* light blue */
    .card3 { background: #dff5e1; }  /* light green */
    .card4 { background: #fff0d5; }  /* light orange */
    .card5 { background: #f1e0ff; }  /* light purple */
    .card6 { background: #d6f5f1; }  /* light teal */

    /* Icon specific colors */
  .card1 i { color: #ff4d4d; }   /* bullseye - red */
  .card2 i { color: #4a90e2; }   /* graduation cap - blue */
  .card3 i { color: #28a745; }   /* briefcase - green */
  .card4 i { color: #f39c12; }   /* clock - orange */
  .card5 i { color: #e67e22; }   /* handshake - gold */
  .card6 i { color: #9b59b6; }   /* user graduate - purple */

/* course-overview */
    .section-title {
      text-align: center;
      margin: 40px 0 20px;
      font-size: 2rem;
      font-weight: bold;
      color: #1a1a1a;
    }

    .section-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      background: #ff6600;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .overview-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
    }

    .overview-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      flex: 1 1 300px;
      max-width: 500px;
      padding: 25px;
      transition: transform 0.3s ease;
    }

    .overview-card:hover {
      transform: translateY(-5px);
    }

    .overview-card i {
      font-size: 40px;
      color: #ff6600;
      margin-bottom: 10px;
      display: block;
    }

    .overview-card h3 {
      font-size: 1.2rem;
      margin: 10px 0;
      color: #ff6600;
    }

    .overview-card p {
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
    }


    /* key-skills */
    
    .section-title {
      text-align: center;
      /* margin: 40px 0 20px; */
      font-size: 2rem;
      font-weight: bold;
      color: #1a1a1a;
    }

    .section-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      background: #ff6600;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .skills-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
      padding: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .skill-card {
      background: linear-gradient(135deg, #5b3783, #577dc0); /* gradient */
      color: #fff;
      text-align: center;
      padding: 25px 15px;
      border-radius: 10px;
      font-size: 0.95rem;
      height: 120px; /* rectangular */
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .skill-card:hover {
      transform: translateY(-5px);
    }

    .skill-card strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 5px;
    }

    /* essential-tools */
  
  .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f97316; /* orange underline */
  margin: 10px auto 0;
  border-radius: 2px;
  margin-bottom: 20px;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
}

/* Card Styling */
.card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  max-width: 300px;
}
@media (max-width: 768px) {
  .card {
    width: 90%;             /* same width for all cards */
    max-width: 320px;       /* cap size */
    margin: 0 auto;         /* center cards */
    min-height: auto;      /* force equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* evenly space content */
  }
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.12);
}

/* Icon Styling */
.card i {
  margin-bottom: 15px;
}

/* Heading */
.card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #f97316; /* Orange heading */
  margin-bottom: 15px;
}

/* List Styling */
.card ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.card ul li {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 8px;
}

/* course-syllabus */
.syllabus-section {
  padding: 20px 20px;
  background: #fff;
  text-align: center;
}

.syllabus-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
  position: relative;
}

.syllabus-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f97316;
  margin: 10px auto 0;
  border-radius: 2px;
}

.accordion {
  max-width: 800px;
  margin: 12px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.05);
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  /* background: #a7c1db; */
            background: radial-gradient(circle, #1a3d8f 0%,#131579 100%);
color: white;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}
.arrow {
  transition: transform 0.3s ease;
}

.accordion-header.active .arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #f9fafb;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  border-left: 4px solid #93c5fd;
}

/* when open add spacing */
.accordion-header.active + .accordion-content {
  padding: 15px 20px;
}

.accordion-content ul {
  padding-left: 20px;
  margin: 0;
  list-style: disc;
  text-align: left;
  margin-bottom: 10px;
}

.accordion-content li {
  margin: 8px 0;
  color: #374151;
  font-size: 0.95rem;
}

/* ✅ Tasks styling */
.accordion-content .tasks {
  margin-top: 10px;
  background: #eef2ff;
  border-left: 4px solid #6366f1;
  padding: 10px 15px;
  border-radius: 6px;
  list-style-type: square;
}

.accordion-content .tasks li {
  margin: 6px 0;
  font-weight: 500;
  color: #1e3a8a;
}

/* career services */
.career-section {
  text-align: center;
  padding: 20px 20px;
  background: #fff;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

.highlight-box {
            background: radial-gradient(circle, #1a3d8f 0%,#131579 100%);
  color: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  justify-content: center;
  margin-left: 140px;
  
}
@media (max-width: 768px) {
  .cards-container {
    
    justify-content: center;
    margin-right: 55px;
  }
  .card {
    width: 300px;
  }
}


.card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.2);
}

.card .icon {
  font-size: 35px;
  margin-bottom: 12px;
}

.card h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* reviews and testimonials */
/* Testimonials Section */
.testimonials-section {
  padding: 20px 20px;
  background: #f8fafc;
  text-align: center;
}

.testimonials-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-top: 10px;
}

.underline {
  display: block;
  width: 50px;
  height: 3px;
  background: #ff9933;
  margin: 10px auto 20px;
  border-radius: 2px;
}

.rating-summary {
  font-size: 20px;
  margin-bottom: 40px;
  color: #333;
}

.rating-summary p {
  font-size: 16px;
  color: #666;
  margin-top: 5px;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.testimonial-box {
  background: white;
  padding: 25px;
  border-radius: 15px;
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.25),  
    0 12px 40px rgba(0, 0, 0, 0.2);  
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
@media (max-width: 768px) {
  .testimonial-box {
    width: auto;
  }
}

.testimonial-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.testimonial-box p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author h4 {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.author span {
  font-size: 14px;
  color: #666;
}

/* enrollment-section */
.enroll-section {
  background: linear-gradient(135deg, #4766bd, #5d87e2, #86a3d3);
  color: white;
  text-align: center;
  padding: 70px 20px;
  border-radius: 12px;
  margin: 60px auto;
  max-width: 900px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

.enroll-quote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.6;
}

.enroll-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #304b96;
  background: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.enroll-btn:hover {
  background: #fbbf24;
  color: #111827;
  transform: translateY(-4px);
  box-shadow: 0px 6px 15px rgba(0,0,0,0.2);
}

/* browse more courses section */
/* Courses Section */
.courses-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.courses-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.courses-section .highlight {
  color: #ff6600; /* ConfideoIT color */
}

/* Container for Cards */
.courses-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  /* max-height: 800px; */
  margin: 0 auto;
}

/* Course Card */
.course-card {
  background: white;
  border-radius: 12px;
  padding: 10px;
  padding-top: 0px;
  border: 1px solid rgba(0,0,0,0.15);  /* light black border */
  /* box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08); */
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.08); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.25),  
    0 12px 40px rgba(0, 0, 0, 0.2);  
}
@media(max-width: 768px){
.course-card {
width: 300px;
margin-left: 10px;
}
}
.course-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.course-card img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: contain; /* show whole image */
  margin-bottom: 0px
}

.course-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  margin-top: 0px;
}

/* Learn More Button */
.course-card .btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  background: #0066cc;
  color: #fff;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.course-card .btn:hover {
  background: #004a99;
  transform: scale(1.05);
}

.contact-section {
      position: relative;
      background: transparent; /* navy blue base */
      color: #fff;
      display: flex;
      padding: 60px,20px;
      justify-content: center;
      align-items: center;
      gap: 40px;
      overflow: hidden;
      
    }

    .left-section,
    .right-section {
      flex: 1;
      position: relative;
      z-index: 2; /* above background lines */
    }

    .left-section {
      display: flex;
      justify-content: start;
      align-items: center;
    }

    .left-section img {
      max-width: 600px;
      height: 400px;
      border-radius: 12px;
      /* If your image has a white background and you want to mask it,
         use a PNG with transparency or an SVG. CSS can't reliably remove
         white from raster images. */
      background: transparent;
    }

    .right-section {
      background: #fff;
      color: #333;
      padding: 30px;
      border-radius: 12px;
      /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); */
      width: 600px;
      height: auto;
      margin-right: 60px;
      margin-left: 0px;
      margin-bottom: 20px;
      box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.25),  
    0 12px 40px rgba(0, 0, 0, 0.2);  

    }

    .right-section h2 {
      margin-bottom: 20px;
      font-size: 22px;
      color: #071a3a;
      font-weight: bold;
    }

    .highlight {
      color: #0066ff;
    }

    .right-section form input,
    .right-section form select,
    .right-section form textarea {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 14px;
    }

    .right-section form button {
      background: #0066ff;
      color: #fff;
      border: none;
      padding: 12px 20px;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
      margin: 5px;
      width: 400px;
      margin-left: 80px;
    }

    .right-section form button:hover {
      background: #0044cc;
    }
    .hidden {
      display: none;
    }
    .right-section form button {
  animation: glowPop 2s infinite ease-in-out;
}

@keyframes glowPop {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.6), 0 0 20px rgba(0, 102, 255, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 102, 255, 1), 0 0 50px rgba(0, 102, 255, 0.6);
    transform: scale(1.07);
  }
}
/* footer-section */
.footer {
  /* background-color: #03042c; */
  color: white;
  padding: 40px 0;
  font-family: Arial, sans-serif;
  scroll-margin-top: 100px;
          background: radial-gradient(circle, #1a3d8f 0%,#03042c 100%);

}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
}

.footer-left {
  flex: 1;
  min-width: 250px;
  text-align:start;
}

.footer-right {
  flex: 2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  margin-left: 40px;
}

.footer-logo {
  width: 150px;
}

.footer p {
  color: #ccc;
  margin: 15px 0;
  line-height: 1.5;
}

.footer h3 {
  margin-bottom: 15px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer ul li a:hover {
  color: #fff;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: background 0.3s;
}

.social-links a:hover {
  background: #00b894;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px; /* Added padding for breathing room */
  border-top: 1px solid rgba(255, 255, 255, 0.2); /* Nice separation line */
  font-size: 14px;
  color: #fff;
  flex-wrap: wrap; /* Responsive stacking if needed */
  margin-top: 50px;
}

.footer-bottom-left {
  margin-bottom: 5px;
  margin-top: 30px;
}
.footer-bottom-right {
  margin-top: 30px;
}
.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-bottom-left a {
  color: #00d1b2;
  text-decoration: none;
}

.footer-bottom-left a:hover {
  text-decoration: underline;
}


 /* Responsive */
    /* @media (max-width: 768px) {
      .banner {
        flex-direction: column;
      }
      .course-details {
        flex-direction: column;
      }
      .details-left {
        max-height: auto;
        border-right: none;
        border-bottom: 1px solid #ccc;
      }
      .details-right {
        position: relative;
        top: auto;
        margin-top: 20px;
      }
    } */
    /* ✅ Mobile Responsive */

    /* navbar */
@media (max-width: 767.98px){
  .navbar .container-fluid{ display: flex; align-items: center; }
  .navbar-brand{ margin-right: 0; flex: 0 0 auto; }
  .navbar-toggler{ margin-left: auto; } /* pushes to right edge */
}

/* banner */
@media (max-width: 768px) {
  .banner {
    flex-direction: column;   /* stack vertically */
    text-align: center;       /* center everything */
  }

  .banner-left {
    align-items: center;
    margin-top: 0px;      /* center items inside */
  }

  .banner-right {
    margin-top: 10px;         /* spacing below text */
  }
}
/* footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    margin: 0;
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 15px 20px;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    margin: 10px 0;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 900px) {
      .features-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .features-container {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
  .cards-container {
    margin-left: 37px;
  }
}
@media (max-width: 768px) {
  .button-container {
    flex-direction: column;
    gap: 12px; /* less gap for vertical layout */
  }

  .button-container .btn {
    width: 100%;   /* full width */
    max-width: 320px; /* optional, keeps them neat */
  }
}
 @media (max-width: 768px) {
  .contact-section {
    flex-direction: column;   /* stack items vertically */
    padding: 40px 20px;
  }

  .left-section {
    display: none;   /* hide image */
  }

  .right-section {
    width: 100%;      /* take full width */
    max-width: 400px; /* limit for neatness */
    margin: 0 auto;   /* center horizontally */
    padding: 20px;
  }

  .right-section form button {
    width: 100%;       /* full width inside form */
    max-width: 250px;  /* not too wide */
    display: block;
    margin: 15px auto; /* center button */
  }
}
