* {
  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;
    }


 
/* Sticky Header */
header {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 999;
background: radial-gradient(circle, #4B4B4B 0%, #202020 70%, #F97316 100%);

}
.navbar {
  display: flex;
  justify-content: space-between; /* logo left, toggler right */
  align-items: center;
  padding: 4px 16px !important;
  min-height: 56px;
}

.container-fluid h6 {
  color: white;
  align-items: center;
  margin-bottom: 0px;
}




/* 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: 55px;
  background-size: 800% 800%;
background: radial-gradient(circle, #4B4B4B 0%, #202020 70%, #F97316 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 */
}


/* Left Section (title + content) */
.banner-left {
  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;

  /* 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;
      background: radial-gradient(circle, #4B4B4B 0%, #202020 70%, #F97316 100%);
    }
    .btn-primary:hover {
      
      transform: scale(1.05);
    }

    
    /* Icon styling */
    .btn i {
      font-size: 18px;
    }
    
/* 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);  
  color: #ff6d29;
}

.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);
  color: #c95d2b;
}


/* Default styles */
.stat-box h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}



.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: radial-gradient(circle, #4B4B4B 0%, #202020 60%, #F97316 100%);
      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, #4B4B4B 0%, #202020 80%, #F97316 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, #4B4B4B 0%, #202020 70%, #F97316 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;
}


/* 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: #ac5517;
  color: #fff;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: 1px solid grey;
}

.course-card .btn:hover {
  background: #004a99;
  transform: scale(1.05);
}


/* footer-section */
.footer {
  /* background-color: #03042c; */
  color: white;
  padding: 40px 0;
  font-family: Arial, sans-serif;
  scroll-margin-top: 100px;
background: radial-gradient(circle, #4B4B4B 0%, #202020 70%, #F97316 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;
}


 
    /* 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 */
  }
}
/* 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 */
  }
}
 
