*{
    margin: 0px;
    padding: 0px;
}
body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 10px 0;
}

.navbar .container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  height: 50px;
  border-radius: 6px;
}

.code {
  color: #f97316;
  position: absolute;
  left: 80px;
  font-size: 1.5rem;
}

.sank {
  color: #6b21a8;
  position: absolute;
  left: 170px;
  font-size: 1.5rem;
}

/* Nav Links Desktop */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f97316;
}

/* ===== Hamburger Menu (Hidden on Desktop) ===== */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #6b21a8;
  user-select: none;
}

/* ===== Responsive ===== */
@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #f97316, #6b21a8);
    text-align: center;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
  }

  .nav-menu.active {
    max-height: 400px; /* enough space for links */
    transition: max-height 0.4s ease-in;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  .nav-links a {
    color: #fff;
    font-size: 1.1rem;
  }

  .nav-links a:hover {
    color: #ffe6d1;
  }
}


 /* --Hero Section--  */
.hero {
     background: linear-gradient(90deg, #f97316, #6b21a8);
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn {
    background: white;
    color: #9333ea;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #ff7b00;
    color: white;
}

/* ===== OUR SERVICES (FRONT PAGE) ===== */
.front-services {
  padding: 80px 10%;
  background-color: #fff7f2;
  text-align: center;
}

.front-services .section-title {
  font-size: 2.3rem;
  color: #6b21a8;
  font-weight: 700;
  margin-bottom: 10px;
}

.front-services .section-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 850px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  border-top: 5px solid #f97316;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(107, 33, 168, 0.2);
}

.service-card img {
  width: 75px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #9333ea;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.service-card p {
  color: #444;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.service-card ul li {
  background: url('https://cdn-icons-png.flaticon.com/512/845/845646.png') no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #333;
  font-size: 0.93rem;
  text-align: left;
  display: inline-block;
  width: 100%;
}

.read-btn {
  display: inline-block;
  background: linear-gradient(90deg, #f97316, #6b21a8);
  color: #fff;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-btn:hover {
  transform: scale(1.05);
  background: #f97316;
  box-shadow: 0 4px 10px rgba(107, 33, 168, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .front-services {
    padding: 60px 8%;
  }

  .service-card {
    text-align: center;
  }

  .service-card ul li {
    background: none;
    padding-left: 0;
    text-align: center;
  }
}

/* ===== ABOUT US SECTION ===== */
.about {
  padding: 80px 10%;
  background-color: #ffffff;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

/* Image Styling */
.about-image {
  flex: 1 1 350px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(107, 33, 168, 0.3);
}

/* Content Styling */
.about-content {
  flex: 1 1 500px;
  text-align: left;
}

.about-content h2 {
  font-size: 2.2rem;
  color: #6b21a8;
  margin-bottom: 10px;
  position: relative;
}

.about-content h2::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #6b21a8);
  left: 0;
  bottom: -8px;
  border-radius: 2px;
}

.about-content h3 {
  font-size: 1.4rem;
  color: #333;
  margin: 20px 0 15px;
}

.about-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Button Styling */
.about-btn {
  display: inline-block;
  background: linear-gradient(90deg, #f97316, #6b21a8);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #6b21a8;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(107, 33, 168, 0.3);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .about {
    padding: 60px 8%;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about-content h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-image img {
    max-width: 350px;
  }
}

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content h3 {
    font-size: 1.2rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .about-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* ===== Mission & Vision Section ===== */
.mission-vision {
  padding: 80px 10%;
  background-color: #fff7f2;
  text-align: center;
}

.mission-vision .section-title {
  font-size: 2.3rem;
  color: #6b21a8;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.mission-vision .section-title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #6b21a8);
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-radius: 2px;
}

.mv-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}

.mv-card {
  background: #fff;
  flex: 1 1 350px;
  max-width: 500px;
  border-radius: 16px;
  border-top: 5px solid #f97316;
  padding: 30px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(107, 33, 168, 0.2);
}

.mv-card img {
  width: 70px;
  margin-bottom: 15px;
}

.mv-card h3 {
  font-size: 1.6rem;
  color: #9333ea;
  margin-bottom: 10px;
}

.mv-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.mv-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 10px;
}

.mv-card ul li {
  background: url("https://cdn-icons-png.flaticon.com/512/845/845646.png") no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #333;
  font-size: 0.93rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .mv-container {
    flex-direction: column;
    align-items: center;
  }

  .mv-card {
    max-width: 100%;
  }

  .mv-card ul {
    text-align: center;
  }

  .mv-card ul li {
    background: none;
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .mission-vision {
    padding: 60px 8%;
  }

  .mission-vision .section-title {
    font-size: 1.8rem;
  }

  .mv-card h3 {
    font-size: 1.3rem;
  }

  .mv-card p {
    font-size: 0.9rem;
  }
}

/* ===== Why Choose Us Section ===== */
.why-choose {
  padding: 80px 10%;
  background-color: #ffffff;
}

.why-choose .section-title {
  text-align: center;
  font-size: 2rem;
  color: #9333ea;
  font-weight: 700;
  margin-bottom: 50px;
}

.why-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.why-content {
  flex: 1 1 500px;
}

.why-content p {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.why-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.why-list li {
  background: url('https://cdn-icons-png.flaticon.com/512/190/190411.png') no-repeat left center;
  background-size: 20px;
  padding-left: 35px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #333;
}

.quote {
  font-style: italic;
  color:  rgb(242, 117, 71);
  font-size: 20px;
  font-weight: 800;
  border-left: 4px solid  #9333ea;
  padding-left: 15px;
  margin-top: 20px;
}

.why-image {
  flex: 1 1 350px;
  text-align: center;
}

.why-image img {
  height: 100%;
  width: 100%;
  border-radius: 80%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .why-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .why-list li {
    background: none;
    padding-left: 0;
  }

  .why-content p {
    font-size: 0.95rem;
  }

  .why-image img {
    max-width: 300px;
  }

  .quote {
    border: none;
    padding: 0;
  }
}

/* ===== Discover Codixa Section ===== */
.discover {
  padding: 80px 10%;
  background-color: #f8f9fa;
  text-align: center;
}

.discover .section-title {
  font-size: 2.2rem;
  color: #6b21a8;
  font-weight: 700;
  margin-bottom: 15px;
}

.discover-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.discover-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.discover-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  border-top: 5px solid #f97316;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.discover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(107, 33, 168, 0.2);
}

.discover-card img {
  width: 70px;
  margin-bottom: 15px;
}

.discover-card h3 {
  color: #9333ea;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.discover-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .discover {
    padding: 60px 8%;
  }

  .discover .section-title {
    font-size: 1.8rem;
  }

  .discover-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
}

/* ===== Our Strength & Credibility Section ===== */
.strength {
  padding: 80px 10%;
  background-color: #f8f9fa; 
  text-align: center;
}

.strength .section-title {
  font-size: 2.2rem;
  color: #6b21a8; /* purple tone */
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.strength .section-subtitle {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 50px;
}

/* Stats Container */
.strength-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* Individual Stat Card */
.stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  border-top: 5px solid #f97316; /* orange accent */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(107, 33, 168, 0.2);
}

.stat-card img {
  width: 70px;
  margin-bottom: 15px;
}

.stat-card h3 {
  font-size: 2rem;
  color: #f97316; /* orange number */
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-card p {
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .strength .section-title {
    font-size: 1.8rem;
  }

  .stat-card h3 {
    font-size: 1.6rem;
  }

  .strength .section-subtitle {
    font-size: 0.95rem;
  }
}

/* ===== CONTACT US SECTION ===== */
.contact {
  padding: 80px 10%;
  background-color: #fff7f2;
  text-align: center;
}

.contact .title {
  font-size: 2.3rem;
  color: #6b21a8;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

.contact .title::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f97316, #6b21a8);
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-radius: 2px;
}

/* Contact Cards Grid */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* Individual Card Styling */
.contact-card {
  background: #fff;
  border-radius: 16px;
  border-top: 5px solid #f97316;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(107, 33, 168, 0.2);
}

.contact-card img {
  width: 70px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.contact-card img:hover {
  transform: scale(1.1);
}

.contact-card h3 {
  color: #9333ea;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* Add Hover Effect on Clickable Links */
.contact-card a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
  transition: transform 0.3s ease;
}

.contact-card a:hover {
  transform: scale(1.05);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .contact {
    padding: 60px 8%;
  }

  .contact .title {
    font-size: 2rem;
  }

  .contact-container {
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .contact {
    padding: 50px 6%;
  }

  .contact .title {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }

  .contact-card {
    padding: 25px 15px;
  }

  .contact-card img {
    width: 60px;
  }

  .contact-card h3 {
    font-size: 1.2rem;
  }

  .contact-card p {
    font-size: 0.9rem;
  }
}

/* ===== FOOTER SECTION ===== */
.footer {
  background: linear-gradient(90deg, #f97316, #6b21a8);
  color: #fff;
  padding: 60px 10% 30px;

}

/* Footer Container Grid */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

/* Individual Footer Box */
.footer-box h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #fff;
  border-left: 4px solid #fff;
  padding-left: 10px;
}

.footer-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color:#fff;
  text-decoration: none;

}
.footer-box p a {
  color: #fff;
  text-decoration: none;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #f0e6ff;
  transition: all 0.3s ease;
}

.footer-box ul li a:hover {
  color: #ffe6d1;
  padding-left: 6px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 5px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social-icons a img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.15);
  background: #f97316;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 40px;
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #f0e6ff;
  letter-spacing: 0.3px;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .footer {
    padding: 50px 8% 20px;
  }

  .footer-container {
    gap: 25px;
  }

  .footer-box h3 {
    font-size: 1.2rem;
  }
}




/* ===== SERVICES PAGE ===== */
.services-page {
  padding: 80px 10%;
  background-color: #fff7f2;
  text-align: center;
}

.services-page .section-title {
  font-size: 2.3rem;
  color: #6b21a8;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-page .section-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Service Box */
.service-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  border-top: 5px solid #f97316;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(107, 33, 168, 0.2);
}

/* Icons */
.service-box img {
  width: 70px;
  margin-bottom: 15px;
}

/* Title */
.service-box h3 {
  color: #9333ea;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* Description */
.service-box p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* List Items */
.service-box ul {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 320px;
  margin: 0 auto 15px;
}

.service-box ul li {
  background: url('https://cdn-icons-png.flaticon.com/512/845/845646.png') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #333;
  font-size: 0.93rem;
}

/* Buttons */
.explore-btn {
  display: inline-block;
  background: linear-gradient(90deg, #f97316, #6b21a8);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(107, 33, 168, 0.3);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .services-page {
    padding: 60px 8%;
  }
}

@media (max-width: 576px) {
  .services-page .section-title {
    font-size: 1.8rem;
  }

  .services-page .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .service-box {
    text-align: center;
  }

  .service-box ul {
    text-align: center;
  }

  .service-box ul li {
    background: none;
    padding-left: 0;
  }
}


/* ===== COURSES / TRAINING PROGRAMS ===== */
.courses {
  padding: 80px 10%;
  background-color: #fff7f2;
  text-align: center;
}

.section-title {
  font-size: 2.3rem;
  color: #6b21a8;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* Courses Grid */
.courses-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Course Card */
.course-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #f97316;
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(107, 33, 168, 0.2);
}

.course-card h3 {
  color: #9333ea;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.course-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Apply Button */
.apply-btn {
  display: inline-block;
  background: linear-gradient(90deg, #f97316, #6b21a8);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(107, 33, 168, 0.3);
}

/* ===== Each Course Includes Section ===== */
.includes {
  margin-top: 60px;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.includes h3 {
  color: #6b21a8;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.includes p {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.includes ul {
  list-style: none;
  padding-left: 0;
  max-width: 500px;
  margin: 25px auto 0;
}

.includes ul li {
  background: url('https://cdn-icons-png.flaticon.com/512/845/845646.png') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #333;
  font-size: 0.95rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .includes {
    padding: 25px 20px;
  }

  .includes h3 {
    font-size: 1.4rem;
  }

  .includes p {
    font-size: 0.95rem;
    text-align: left;
  }

  .includes ul {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .includes p {
    font-size: 0.9rem;
  }

  .includes ul li {
    font-size: 0.9rem;
    background: none;
    padding-left: 0;
  }
}


/* ===== Responsive ===== */
@media (max-width: 992px) {
  .courses {
    padding: 60px 8%;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .course-card {
    text-align: center;
  }

  .course-card p {
    font-size: 0.9rem;
  }

  .includes ul {
    text-align: center;
  }

  .apply-btn {
    margin-top: 10px;
  }
}



/* ===== Innovation & Creativity Section ===== */
.innovation {
  padding: 80px 10%;
  background: #fff7f2;
  text-align: center;
}

.section-title {
  font-size: 2.3rem;
  color: #6b21a8;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-intro {
  color: #555;
  font-size: 1rem;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* ===== Icons ===== */
.icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 4px rgba(107, 33, 168, 0.3));
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.1);
}

/* ===== Innovation Grid ===== */
.innovation-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.innovation-card {
  flex: 1 1 450px;
  text-align: left;
}

.innovation-card h3 {
  color: #9333ea;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.innovation-card ul {
  list-style: none;
  padding: 0;
}

.innovation-card ul li {
  background: url("https://cdn-icons-png.flaticon.com/512/845/845646.png")
    no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #333;
  font-size: 0.95rem;
}

.innovation-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Innovation Areas ===== */
.innovation-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.area-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.area-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(107, 33, 168, 0.2);
}

.area-card h3 {
  color: #9333ea;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.area-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.innovative-image {
  float: right;            
  width: 40%;
  margin-left: 100px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.innovative-image img {
  width: 320px;
  border-radius: 260px;
  object-fit: cover;
}
.innovative-image:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(222, 218, 225, 0.3);
}



/* ===== Share Your Ideas ===== */
.share-idea {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 800px;
  margin: 0 auto 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.share-idea h3 {
  color: #6b21a8;
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.share-idea p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.idea-btn {
  display: inline-block;
  background: linear-gradient(90deg, #f97316, #6b21a8);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.3s;
}

.idea-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(107, 33, 168, 0.3);
}

/* ===== FAQ Section (Dropdown) ===== */
.innovation-faq {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 1000px;
  margin: 60px auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-container {
  text-align: left;
  margin-top: 20px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.faq-question {
  background: none;
  font-family:  serif;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  color: #6b21a8;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  display: none;
  padding-top: 10px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .arrow {
  transform: rotate(45deg);
}

.arrow {
  font-size: 1.2rem;
  color: #f97316;
  transition: transform 0.3s ease;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .innovation-grid {
    flex-direction: column;
    text-align: center;
  }
  .innovation-card {
    text-align: center;
  }
  .innovation-card ul {
    text-align: left;
  }
}


/* ===== Career Section ===== */

/* ===== Hero Section ===== */
.career-hero {
  text-align: center;
  background: linear-gradient(90deg, #f97316, #6b21a8);
  color: #fff;
  padding: 80px 20px;
}

.sec-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.career-subtitle {
  font-size: 1rem;
  margin: 15px auto 30px;
  max-width: 800px;
}

.career-buttons .btn-orange,
.career-buttons .btn-purple {
  display: inline-block;
  padding: 12px 25px;
  margin: 8px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-orange {
  background: #fff;
  color: #6b21a8;
}
.btn-orange:hover {
  background: #ff8b3d;
  color: #fff;
}
.btn-purple {
  background: #fff;
  color: #ff8b3d;
}
.btn-purple:hover {
  background: #9333ea;
  color: #fff;
}

/* ===== Career Section Styling ===== */
.career-section {
  padding: 80px 10%;
  background: #fafaff;
}

.career-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.career-card {
  flex: 1 1 45%;
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 5px solid #f97316;
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 33, 168, 0.15);
}

.career-title {
  font-size: 1.8rem;
  color: #6b21a8;
  margin-bottom: 15px;
  text-align: center;
}

.career-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: center;
}

.career-card ul {
  list-style-type: none;
  padding: 0;
}

.career-card ul li {
  color: #333;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

/* ===== Explore Career Section ===== */
.career-explore {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 80px;
}

.career-explore .career-title {
  font-size: 2rem;
  color: #6b21a8;
  margin-bottom: 15px;
}

.career-explore p {
  font-size: 1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
  .career-card {
    flex: 1 1 100%;
  }

  .career-title {
    font-size: 1.6rem;
  }

  .career-text {
    font-size: 0.95rem;
  }
}

/* ===== About Career Section ===== */
.career-about {
  text-align: center;
  padding: 60px 10%;
  background: #fff;
}
.career-about h2 {
  color: #6b21a8;
  margin-bottom: 15px;
}
.career-about p {
  color: #555;
  max-width: 700px;
  margin: 0 auto 20px;
}
.career-about .btn-orange {
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}



/* ===== FAQ Section ===== */
.faq-section {
  background: #fff7f2;
  padding: 80px 10%;
  color: #333;
}

.section-title {
  font-size: 2.3rem;
  text-align: center;
  color: #6b21a8;
  margin-bottom: 20px;
  font-weight: 700;
}

.faq-intro {
  text-align: center;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(107, 33, 168, 0.1);
}

.faq-question {
  width: 100%;
  background: #6b21a8;
  color: #fff;
  border: none;
  outline: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #9333ea;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: all 0.4s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 15px 0;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px;
}

.faq-item.active .faq-question {
  background: #f97316;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 15px;
  }
}

/* ===== Privacy Policy Page ===== */
.privacy {
  padding: 80px 10%;
  background-color: #fff7f2;
  text-align: left;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.privacy .section-title {
  text-align: center;
  font-size: 2rem;
  color: #6b21a8;
  font-weight: 700;
  margin-bottom: 25px;
}

.privacy p {
  color: #444;
  line-height: 1.7;
  margin-top: 8px;
  font-size: 0.95rem;
}

.privacy h3 {
  color: #f97316;
  margin-top: 25px;
  font-size: 1.2rem;
}

.privacy-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 15px;
}

.privacy-list li {
  background: url('https://cdn-icons-png.flaticon.com/512/845/845646.png') no-repeat left center;
  background-size: 16px;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.privacy-list li:hover {
  color: #f97316;
}

.back-btn {
  display: inline-block;
  margin-top: 40px;
  background: linear-gradient(90deg, #f97316, #6b21a8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-btn:hover {
  transform: scale(1.05);
  background: #f97316;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-container {
    padding: 25px;
  }

  .privacy .section-title {
    font-size: 1.8rem;
  }
}

 /* ===== Terms & Service Page =====  */
.terms {
  padding: 80px 10%;
  background-color: #fff7f2;
  text-align: left;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.terms .section-title {
  text-align: center;
  font-size: 2rem;
  color: #6b21a8;
  font-weight: 700;
  margin-bottom: 25px;
}

.terms .intro {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms h3 {
  color: #f97316;
  margin-top: 25px;
  font-size: 1.2rem;
}

.terms p {
  color: #444;
  line-height: 1.7;
  margin-top: 8px;
  font-size: 0.95rem;
}

.terms-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 15px;
}

.terms-list li {
  background: url('https://cdn-icons-png.flaticon.com/512/845/845646.png') no-repeat left center;
  background-size: 16px;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.terms-list li:hover {
  color: #f97316;
}

/* Back Button */
.back-btn {
  display: inline-block;
  margin-top: 40px;
  background: linear-gradient(90deg, #f97316, #6b21a8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-btn:hover {
  transform: scale(1.05);
  background: #f97316;
}

/* Responsive */
@media (max-width: 768px) {
  .terms-container {
    padding: 25px;
  }

  .terms .section-title {
    font-size: 1.8rem;
  }
}

/* ===== Cookies Policy Page ===== */
.cookies {
  padding: 80px 10%;
  background-color: #fff7f2;
  text-align: left;
}

.cookies-container {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cookies .section-title {
  text-align: center;
  font-size: 2rem;
  color: #6b21a8;
  font-weight: 700;
  margin-bottom: 25px;
}

.cookies p {
  color: #444;
  line-height: 1.7;
  margin-top: 8px;
  font-size: 0.95rem;
}

.cookies h3 {
  color: #f97316;
  margin-top: 25px;
  font-size: 1.2rem;
}

.cookies-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 15px;
}

.cookies-list li {
  background: url('https://cdn-icons-png.flaticon.com/512/845/845646.png') no-repeat left center;
  background-size: 16px;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.cookies-list li:hover {
  color: #f97316;
}

.back-btn {
  display: inline-block;
  margin-top: 40px;
  background: linear-gradient(90deg, #f97316, #6b21a8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-btn:hover {
  transform: scale(1.05);
  background: #f97316;
}

@media (max-width: 768px) {
  .cookies-container {
    padding: 25px;
  }

  .cookies .section-title {
    font-size: 1.8rem;
  }
}


/* ===== Scroll Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Optional delay for staggered animation (cards look better) */
.reveal.delay-1 {
  transition-delay: 0.2s;
}
.reveal.delay-2 {
  transition-delay: 0.4s;
}
.reveal.delay-3 {
  transition-delay: 0.6s;
}

