.container-fluid{
    background-color: #ffffff63;
    padding: 20px;
    
}

.navbar-nav .nav-link{
    
    margin-left: 20px;
    font-size: 12px;
    font-weight: bold;
  
}




.apply-btn-right {
  background: linear-gradient(135deg, #3300ff, #db09ee);
  padding: 10px 26px;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(255, 0, 90, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);

  /* 🔥 This moves the button slightly left from the corner */
  margin-right: 50px !important; 
}

.apply-btn-right:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(221, 0, 255, 0.55);
  background: linear-gradient(135deg, #00b421, #343434);
}



/* Branding Wrapper */
.navbar-brand {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
  color: #222 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease-in-out;
}

/* SVG Logo Style */
.navbar-brand svg {
  width: 52px;
  height: 52px;
  fill: url(#brandGradient);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
  transition: 0.3s ease;
}

/* Hover Effect */
.navbar-brand:hover {
  transform: translateY(-2px);
  color: #b500e2 !important;
}

.navbar-brand:hover svg {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.234));
}

/* Apply gradient to the SVG logo */
svg defs #brandGradient stop:first-child {
  stop-color: #6f00ff;
}

svg defs #brandGradient stop:last-child {
  stop-color: #a209ee;
}




















/* Announcement Bar Styles */

.announcement-bar {
  background-color: #9000ff;        
  border-bottom: 2px solid #ce9e5b; 
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 5.5px;
  
}


/* Basic Reset to remove default button styling */
button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

/* Styling for the main apply button */
.main-apply-button {
    background-color: #28a745;  /* Green background */
    color: white;               /* White text */
    border: 2px solid #28a745; /* Green border */
    padding: 12px 24px;         /* Add padding for better size */
    font-size: 16px;            /* Set font size */
    font-weight: bold;          /* Bold font */
    text-transform: uppercase;  /* Uppercase text */
    border-radius: 5px;         /* Rounded corners */
    transition: all 0.3s ease;  /* Smooth transition for hover effects */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Hover effect for the apply button */
.main-apply-button:hover {
    background-color: white;   /* White background on hover */
    color: #28a745;            /* Green text on hover */
    border: 2px solid #28a745; /* Green border */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Darker shadow on hover */
    cursor: pointer;           /* Cursor pointer to indicate it's clickable */
}

/* Focus effect for accessibility */
.main-apply-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.5); /* Green outline when focused */
}

/* Disabled state */
.main-apply-button:disabled {
    background-color: #d6d6d6;  /* Gray background when disabled */
    color: #a1a1a1;             /* Gray text */
    border-color: #d6d6d6;      /* Gray border */
    cursor: not-allowed;        /* Not allowed cursor */
}



























/* Hero Section */
.hero-slide {
  position: relative;
  height: 92vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  color: white;
  overflow: hidden;
}

/* Dark premium gradient overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(168, 168, 168, 0.6), rgba(0, 0, 0, 0.3));
 
  border-radius: 25px;
}

/* Hero text */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 45%;
  animation: fadeUp 1s ease forwards;
}

.hero-content h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Button */
.btn-learn {
  background: linear-gradient(135deg, #aa00ff, #bf00d4);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.btn-learn:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, #aa6ff6, #bc06ff);
}

/* Right person card */
.hero-person {
  z-index: 3;
  text-align: center;
  transform: translateY(20px);
  transition: 0.4s;
}

.hero-person img {
  width: 320px;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.5);
  transition: transform 0.4s;
}

.hero-person img:hover {
  transform: scale(1.05) rotate(1deg);
}

.person-info {
  margin-top: 12px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 12px;
  color: #fff;
}

.person-info h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.person-info p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Animation Keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slide {
    flex-direction: column;
    text-align: center;
    height: 90vh;
    padding: 0 4%;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-person img {
    width: 230px;
  }
}

/* Custom Carousel Controls */
.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.4);
  z-index: 10;
  cursor: pointer;
  transition: 0.3s ease;
}

.custom-prev {
  left: 25px;
}

.custom-next {
  right: 25px;
}

.arrow-icon {
  font-size: 28px;
  color: #d000ff;
  font-weight: 700;
  transition: 0.3s ease;
  
}
.carousel-control{
  border-color: #cc00ff;
}
/* Hover Effect */
.carousel-control:hover {
  background: rgba(166, 0, 255, 0.35);
  transform: translateY(-50%) scale(1.1);
  border-color: #cc00ff;
  box-shadow: 0 0 18px rgba(255,255,255,0.6);
}

.carousel-control:hover .arrow-icon {
  color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .carousel-control {
    width: 45px;
    height: 45px;
  }
  .arrow-icon {
    font-size: 22px;
  }
}









/* Footer Styles */
.tbdc-footer {
  background-color: #000000c1;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tbdc-footer h5 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.tbdc-footer p,
.tbdc-footer a {
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
 
}

.tbdc-footer a:hover {
  color: #000000;
}

.footer-phone {
  color: #000000;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #000000cc;
}

.footer-links a:hover {
  color: #000000;
}

.footer-social a {
  color: #ffffffcc;
  font-size: 1.3rem;
  margin-right: 10px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #000000;
}

.newsletter-form .form-control {
  background-color: #ffffff;
  border-radius: 8px;
  font-size: 0.9rem;
}

.btn-send {
  background-color: #935bce;
  color: #fff;
  padding: 8px 25px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn-send:hover {
  background-color: #8000ff;
}

.form-check-label {
  font-size: 0.85rem;
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #bbb;
}










































.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1542744173-05336fcc7ad4?fit=crop&w=1600&q=80') center/cover;
  color: white;
  text-align: center;
  padding: 120px 20px;
}
.hero.nigeria {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1500648767791-00dcc994a43e?fit=crop&w=1600&q=80') center/cover;
}
.hero-text h2 {
  color: #5b5dce;
  font-size: 2.5em;
  letter-spacing: 1px;
}
.hero-text h3 { margin: 10px 0; font-weight: 400; }
.hero-buttons { margin-top: 25px; }

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  margin: 5px;
  font-weight: 600;
  transition: 0.3s;
}
.btn.primary { background: #ce9e5b; color: #fff; }
.btn.primary:hover { background: #b97b3e; }
.btn.secondary {
  border: 2px solid #ce9e5b;
  color: #ce9e5b;
}
.btn.secondary:hover {
  background: #ce9e5b;
  color: #fff;
}
.glow {
  box-shadow: 0 0 10px rgba(206,158,91,0.7);
  transition: all 0.4s ease;
}
.glow:hover {
  box-shadow: 0 0 25px rgba(206,158,91,1);
}

/* Sections */
.section { padding: 80px 0; }
.section.alt { background: #f8f8f8; }
.section h2 { font-family: 'Montserrat', sans-serif; font-size: 2em; margin-bottom: 20px; }
.points { list-style: none; padding: 0; }
.points li {
  margin: 10px 0;
  padding-left: 20px;
  position: relative;
}
.points li::before {
  content: "•";
  color: #ce9e5b;
  position: absolute;
  left: 0;
  font-size: 1.2em;
}

/* Pillars */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.pillar-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.pillar-card:hover {
  transform: translateY(-5px);
  border-color: #ce9e5b;
}

/* Apply */
.apply {
  background: #ce9e5b;
  color: #fff;
  text-align: center;
}

/* Footer */
.footer {
  background: #1b1b1b;
  color: #ccc;
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 1s ease, transform 1s ease; }
.fade-in.appear { opacity: 1; transform: translateY(0); }
.slide-up { animation: slideUp 1s ease forwards; }
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-content { flex-direction: column; }
  nav ul { flex-direction: column; gap: 10px; margin-top: 10px; }
  .hero { padding: 80px 15px; }
  .hero-text h2 { font-size: 2em; }
  .hero-text p { font-size: 0.95em; }
}













/* HERO */
.kumaran {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO BACKGROUND */
.kumaran-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(60%) contrast(110%);
}





/* DARK OVERLAY /*HERA SRI LANKA
From Survival to Global Leadership start*/
.kumaran-overlay {
  position: absolute;
  inset: 0;
  background:#8b18ff;
  z-index: 1;
}

/* COLOR GRADIENT OVERLAY */
.kumaran-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgb(255, 29, 255), transparent 60%),
              linear-gradient(to top, rgb(146, 146, 146), transparent);
  z-index: 1;
}

/* CONTENT */
.kumaran-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT */
.kumaran-left {
  flex: 1 1 48%;
  animation: fadeSlide 1.3s ease forwards;
  opacity: 0;
}

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



.kumaran-title {
  font-size: 67px;
  font-weight: 900;
  line-height: 1.17;
  background: linear-gradient(90deg, #ffffff, #ffffff, #ffffff);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 25px rgba(255,255,255,0.1);
}

.kumaran-sub {
  margin: 25px 0 35px;
  color: #e7e7e7;
  font-size: 14px;
  line-height: 1.7;
  font-weight:bold;
}

/* BUTTONS */
.kumaran-btn-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.kumaran-btn,
.kumaran-btn-outline {
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Solid Button */
.kumaran-btn {
  background: linear-gradient(45deg, #9e31d0, #1900ff);
  color: #ffffff;
 
}

.kumaran-btn:hover {
  transform: translateY(-3px);
}

/* Outline */
.kumaran-btn-outline {
  color: #ffffff;
  border: 2px solid #6e009d;
}

.kumaran-btn-outline:hover {
  background: rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}




/* RIGHT FLOATING CARD */
.kumaran-right {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  animation: fadeIn 1.8s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.floating-card {
  padding: 18px;
  border-radius: 18px;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-18px); }
  100% { transform: translateY(0px); }
}

.kumaran-logo {
  width: 320px;
  border-radius: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .kumaran-content {
    text-align: center;
  }
  .kumaran-left, .kumaran-right {
    flex: 1 1 100%;
  }
  .kumaran-title {
    font-size: 2.8rem;
  }
  .kumaran-logo {
    width: 260px;
  }
}




/*HERA SRI LANKA
From Survival to Global Leadership end*/










/* GENERIC STYLES */
.kumaran2-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
}

.kumaran2-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff0000;
  margin-bottom: 10px;
}

.kumaran2-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 20px;
}

.kumaran2-text {
  color: #333;
  font-size: 1rem;
  margin-bottom: 20px;
}

.kumaran2-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 25px;
}

.kumaran2-list li {
  margin-bottom: 8px;
}




/* BUTTON */
.kumaran2-btn {
  display: inline-block;
  background-color: #00b37d;
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.kumaran2-btn:hover {
  background-color: #009966;
}













/* /*Who Is This For? start*/ 
.kumaran4-section4 {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff1f8 0%, #f7eaff 100%);
}

/* Container */
.kumaran4-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Title */
.kumaran4-title {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #3c0066;
}

/* Subtitle */
.kumaran4-subtitle {
  font-size: 18px;
  font-weight:bold;
  margin-bottom: 25px;
  color: #692fa09a;
}

/* List Text */
.kumaran4-list {
  list-style: none;
  font-size: 18px;
  margin-bottom: 30px;
  padding: 0;
  color: #908585;
}
.kumaran4-list li {
  margin-bottom: 8px;
}

/* ICON GRID */
.kumaran4-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

/* ICON CARDS */
.kumaran4-icon-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(140, 0, 255, 0.2);
  font-size: 14px;
  font-weight: bold;
  color: #4a006e;
  transition: 0.35s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  cursor: pointer;
}

/* Hover Effect */
.kumaran4-icon-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #c400ff, #6f00ff);
  color: white;
  box-shadow: 0 10px 25px rgba(111, 0, 255, 0.35);
}

/* Bottom Paragraph */
.kumaran4-text {
  font-size: 14px;
  margin-top: 20px;
  color: #333333a2;
  font-weight: bold;
}

/*Who Is This For? end*/












/* SECTION 3 – PROGRAM PILLARS */
.kumaran3-section3 {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8ecff 0%, #fdf7ff 100%);
}

/* Headings */
.kumaran3-title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: #3c0066;
  margin-bottom: 10px;
}

.kumaran3-subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #692fa09e;
  margin-bottom: 10px;
}

.kumaran3-subtext {
  text-align: center;
  font-size: 17px;
  color: #555555b0;
  margin-bottom: 40px;
  font-weight: bold;
}

/* GRID – 5 cards */
.kumaran3-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* GLASS CARDS */
.kumaran3-card {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  padding: 45px 25px 25px;
  border-radius: 20px;
  border: 1px solid rgba(170, 0, 255, 0.2);
  transition: 0.35s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  cursor: pointer;
}

/* Floating Circle Image */
.kumaran3-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  padding: 10px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #b400ff50;
  box-shadow: 0 8px 20px rgba(115, 0, 255, 0.25);
}

.kumaran3-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Hover Effects */
.kumaran3-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #b200ff, #6a00ff);
  color: #fff;
  box-shadow: 0 12px 28px rgba(102, 0, 255, 0.35);
}

.kumaran3-card:hover p {
  color: #ffffffd4;
}

/* Card Title */
.kumaran3-card h4 {
  font-size: 1.15rem;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Text */
.kumaran3-card p {
  font-size: 12px;
  line-height: 1.5;
  font-weight: bold;
  color: #000000a3;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .kumaran3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .kumaran3-grid {
    grid-template-columns: 1fr;
  }
}








/* SECTION 1 – WHY HERA SRI LANKA */
.kumaran2-section1 {
  padding: 40px 0;
  background: linear-gradient(135deg, #fff1f8 0%, #f7eaff 100%);
}

/* Container */
.kumaran2-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Layout */
.kumaran2-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* TEXT AREA */
.kumaran2-textbox {
  flex: 1 1 45%;
  padding: 10px;
}

.kumaran2-title {
  font-size: 45px;
  font-weight: 800;
  color: #3c0066;
  margin-bottom: 10px;
}

.kumaran2-subtitle {
  font-size: 18px;
  font-weight: bold;
  color: #692fa0a8;
  margin-bottom: 20px;
  text-align: center;
}

.kumaran2-text {
  font-size: 13px;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.7;
  font-weight:bold;
}

/* LIST */
.kumaran2-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.kumaran2-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-size: 13px;
  color: #00000079;
  font-weight: bold;
}

.kumaran2-list li::before {
  
  position: absolute;
  left: 0;
  top: 0px;
  color: #a200ff;
  font-size: 18px;
  font-weight: bold;
}

/* BUTTON */
.kumaran2-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, #d200ff, #6f00ff);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(105, 0, 255, 0.25);
  transition: 0.35s ease;

  /* CENTER ALIGN */
  display: table;
  margin: 0 auto;
}


.kumaran2-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(105, 0, 255, 0.35);
}

/* IMAGE AREA */
.kumaran2-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.kumaran2-image-wrapper {
 
  backdrop-filter: blur(12px);
  padding: 15px;
  border-radius: 22px;
 
 
  transition: 0.35s ease;
}

.kumaran2-image-wrapper:hover {
  transform: scale(1.04);
 
}

.kumaran2-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 18px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .kumaran2-content {
    flex-direction: column;
    text-align: center;
  }

  .kumaran2-textbox {
    text-align: center;
  }

  .kumaran2-title {
    font-size: 36px;
  }

  .kumaran2-subtitle {
    font-size: 18px;
  }

  .kumaran2-text {
    font-size: 14px;
  }
}


/* SECTION 1 – WHY HERA SRI LANKA end (MODERN) */




































/* Hero Section - Full Video Background */
.kesh-hero-bg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Full viewport height */
  color: #fff;
  overflow: hidden;
  text-align: center;
}

.kesh-hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: brightness(0.6); /* Optional: darken video slightly */
}

.kesh-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); /* Semi-transparent overlay */
  z-index: 2;
}

/* Hero Content */
.kesh-hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 20px;
  animation: fadeInUp 2s ease;
}

.kesh-hero-title {
  font-size: 65px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-bottom: 20px;
}

.kesh-hero-subtitle {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ffffff;
  font-weight: bold;
}

/* Button */
.kesh-btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #53008b, #b371ff);
  color: #000000;
  transition: all 0.3s ease;
}
.kesh-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}

/* Animations */
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive */
@media(max-width:1024px){
  .kesh-hero-title {
    font-size: 2.5rem;
  }
  .kesh-hero-subtitle {
    font-size: 1.1rem;
  }
}

@media(max-width:768px){
  .kesh-hero-title {
    font-size: 2rem;
  }
  .kesh-hero-subtitle {
    font-size: 1rem;
  }
}





/* Section Wrapper */
.kesh-why-modern {
  padding: 60px 8%;
  font-family: "Poppins", sans-serif;
  color: #2a2a2a;
}

/* Title */
.kesh-why-title {
 font-size: 2.3rem;
  font-weight: 800;
  color: #2c0066;
  margin-bottom: 8px;
}

.kesh-why-subtitle {
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Tabs */
.kesh-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
}

.kesh-tab {
  padding: 16px 30px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  background: #f0ebf3;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.kesh-tab span {
  font-size: 20px;
  font-weight: 700;
}

.kesh-tab.active {
  background: #a468ca; /* Gold-brown like screenshot */
  color: #fff;
}

/* Layout: Left text + Right images */
.kesh-why-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
 
  
}

/* Left Side */
.kesh-left {
  flex: 1;

}

.kesh-desc {
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: bold;
  color: #0000006d;
}

/* Two Columns of lists */
.kesh-two-columns {
  display: flex;
  gap: 50px;
  margin-top: 25px;
}

.kesh-two-columns h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.kesh-two-columns ul li {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
}

/* Right Images */
.kesh-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-img {
  width: 90%;
  border-radius: 18px;
  object-fit: cover;
}

/* Top image height larger */
.top-img {
  height: 240px;
}

/* Bottom image height smaller */
.bottom-img {
  height: 220px;
}

/* Responsive */
@media (max-width: 992px) {
  .kesh-why-wrapper {
    flex-direction: column;
  }
  .kesh-right {
    width: 100%;
  }
}











/* Main wrapper apply section like screenshot */
.kesh-apply-modern {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 70px 8%;
  background: #fafafa;
  gap: 40px;
  font-family: "Poppins", sans-serif;
}

/* Left column */
.apply-left {
  flex: 1;
}

/* Title */
.apply-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.apply-sub {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 10px;
  line-height: 1.6;
  font-weight: bold;
}

/* Subheading */
.apply-heading {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* List container */
.apply-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

/* Each row item */
.apply-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.apply-icon {
  font-size: 26px;
  font-weight: bold;
}

/* Button */
.kesh-btn-apply {
  display: inline-block;
  padding: 14px 28px;
  background: #a868ca;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.kesh-btn-apply:hover {
  background: #c002ff;
}

/* Right image side */
.apply-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.apply-img {
  width: 90%;
  border-radius: 18px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .kesh-apply-modern {
    flex-direction: column;
    align-items: center;
  }

  .apply-right {
    width: 100%;
    justify-content: center;
  }

  .apply-img {
    width: 100%;
    margin-top: 30px;
  }
}






/* Pillars */
.kesh-pillars {
  padding: 80px 10%;
  background: #fff;
  text-align: center;
}

.kesh-pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.kesh-pillar {
  background: #64038e;
  color: #fff;
  border-radius: 16px;
  padding: 20px;
  font-weight: 600;
  transition: transform 0.3s;
}

.kesh-pillar:hover {
  transform: translateY(-10px);
  background: #cd2afa;
}


















/* Curriculum Section */
.kesh-curriculum {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 80px 8%;
  background: #fafafa;
}

/* Left Content */
.kesh-curriculum-left h2 {
 font-size: 38px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #3c0066;
}

.kesh-week {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 18px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border-left: 6px solid #aa00ff;
}

.kesh-week:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.15);
}

/* Week Heading */
.kesh-week h3 {
  margin-bottom: 12px;
  font-size: 17px;
  color: #222;
  font-weight: 700;
}

.kesh-week ul li {
  margin-bottom: 8px;
  font-size: 12px;
  color: #444;
  font-weight: bold;
}

/* Right Side Video */
.kesh-curriculum-video {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.kesh-curriculum-video video {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .kesh-curriculum {
    grid-template-columns: 1fr;
  }

  .kesh-curriculum-video {
    margin-top: 30px;
  }

  .kesh-curriculum-left h2 {
    text-align: center;
  }
}


























/* SECTION BASE */
.kesh-benefits {
  padding: 100px 10%;
  background: #f8f0ff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* Title */
.kesh-title {
  font-size: 50px;
  font-weight: 800;
  color: #5b007a; /* Maroon */
  margin-bottom: 70px;
  
}

/* CENTER IMAGE WRAPPER */
.kesh-center-wrapper {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 0 auto;
}

/* CENTER IMAGE */
.kesh-center-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 5px solid #2f003c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.kesh-center-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CARDS SHARED STYLE */
.kesh-card {
  width: 180px;
  padding: 18px 15px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  position: absolute;
  text-align: center;
  transition: 0.3s ease;
  border: 2px solid #4b007a;
}

/* Hover (Pillai Kuthu Glow!) */
.kesh-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 0 25px rgba(140, 0, 255, 0.8); /* Gold glow */
}

/* Card Typography */
.kesh-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #aa00ff;
  margin-bottom: 5px;
}

.kesh-card p {
  color: #33333390;
  font-size: 12px;
  font-weight: bold;
}

/* CARD POSITIONS AROUND CENTER IMAGE */
.card-1 { top: 0; left: 50%; transform: translateX(-50%); }
.card-2 { top: 22%; right: 0; }
.card-3 { bottom: 22%; right: 0; }
.card-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.card-5 { bottom: 22%; left: 0; }

/* BUTTON */
.kesh-btn {
  margin-top: 70px;
  display: inline-block;
  padding: 14px 35px;
  background: #a24cf2;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  border: 2px solid #ffffff;
}

.kesh-btn:hover {
  background: #fff;
  color: #9d00ff;
  box-shadow: 0 0 20px rgba(170, 0, 255, 0.7);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .kesh-center-wrapper {
    width: 330px;
    height: 330px;
  }

  .kesh-card {
    width: 140px;
    padding: 15px;
  }

  /* Stack cards closer */
  .card-1 { top: -10px; }
  .card-2 { top: 20%; right: -10px; }
  .card-3 { bottom: 20%; right: -10px; }
  .card-4 { bottom: -10px; }
  .card-5 { bottom: 20%; left: -10px; }
}




/* Footer */
.kesh-footer {
  background: #8d50c0;
  color: #fff;
  text-align: center;
  padding: 60px 10%;
}

.kesh-footer-btns a {
  margin: 10px;
}
.kesh-footer h2{
  color: #ffffff;
  font-weight: bold;
}
.kesh-footer p{
  font-weight: bold;
  font-size: 12px;
}
.kesh-footer-btns a{
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
.kesh-footer-btns a:hover{
  color: #000000;
  


}



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

@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

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




























/* === how it works section === */
.howitworks-section {
  display: flex;
  gap: 50px;
  padding: 70px 45px;
  background: linear-gradient(135deg, #f7f3ff 0%, #ffffff 100%);
  border-radius: 24px;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(80, 0, 200, 0.07);
}

/* Decorative background blur circles */
.howitworks-section::before,
.howitworks-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
}

.howitworks-section::before {
  width: 220px;
  height: 220px;
  background: #e9d7ff;
  top: -60px;
  right: -40px;
}

.howitworks-section::after {
  width: 180px;
  height: 180px;
  background: #d1ffe8;
  bottom: -50px;
  left: -40px;
}

/* === LEFT CONTENT === */
.how-left {
  flex: 1;
  z-index: 10;
}

.how-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: #2c0066;
  margin-bottom: 8px;
}

.how-headline {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2600ff, #7b00c7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.how-subheadline {
  color: #6b7280;
  font-size: 12px;
  margin-bottom: 30px;
  font-weight: bold;
  max-width: 90%;
}

/* === TIMELINE === */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 3px solid #7c3aed;
  padding-left: 25px;
  position: relative;
}

/* Glowing animated line */
.timeline::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(#7c3aed, #b794f4, #7c3aed);
  animation: lineGlow 4s infinite linear;
  filter: blur(2px);
}

@keyframes lineGlow {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

/* === TIMELINE CARDS === */
.timeline-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  padding: 20px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  position: relative;
  animation: floatUp 0.9s ease forwards;
  opacity: 0;
  transition: 0.3s ease;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

/* Card hover lift */
.timeline-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(124, 58, 237, 0.18);
}

/* Glowing timeline dots */
.timeline-card::before {
  content: "";
  position: absolute;
  left: -13px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #7c3aed;
  box-shadow: 0 0 12px #a78bfa;
  border: 3px solid #f3e8ff;
}

/* Card Content */
.timeline-card h4 {
  margin-top: 0;
  font-size: 1.15rem;
  color: #2d0066;
  font-weight: 700;
}

.timeline-card .meta {
  font-size: 12px;
  color: #000000;
  font-weight: bold;
}

.timeline-card ul {
  list-style: disc;
  margin: 10px 0 10px 20px;
  color: #00000099;
  line-height: 1.55;
  font-size: 12px;
  font-weight: bold;
}

.timeline-card .deliverables {
  font-size: 12px;
  color: #000000;
  margin-top: 10px;
  border-top: 1px dashed #ddd;
  padding-top: 8px;
  font-weight: 500;
}

/* Animation delays */
.timeline-card:nth-child(1) { animation-delay: 0.2s; }
.timeline-card:nth-child(2) { animation-delay: 0.4s; }
.timeline-card:nth-child(3) { animation-delay: 0.6s; }

/* === FLOAT-UP EFFECT === */
@keyframes floatUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0px); opacity: 1; }
}

/* === CTA BUTTON === */
.cta-center {
  margin-top: 25px;
  text-align: center;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  padding: 13px 34px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(92, 0, 255, 0.25);
}

.cta-btn:hover {
  background: #5b21b6;
  transform: translateY(-3px);
}

/* === RIGHT IMAGE === */
.how-right {
  flex: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.how-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* === RESPONSIVE === */
@media (max-width: 850px) {
  .howitworks-section {
    flex-direction: column;
    padding: 45px 22px;
  }

  .how-right {
    width: 100%;
    height: 260px;
  }

  .how-img {
    height: 100%;
  }
}
/*how it works section end*/














/* ---------- SECTION 5: POST-PROGRAM ACCELERATION MODERN ---------- */
.section-acceleration-modern{
  background: linear-gradient(180deg, #ffffff 0%, #f6f6ff 100%);
  padding: 80px 20px;
  border-radius: 25px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.07);
  margin-top: 60px;
  font-family: 'Poppins', sans-serif;
}

/* Container Flex Layout */
.accel-container{
  display: flex;
  gap: 40px;
  max-width: 1250px;
  
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
}

/* Left Full-Height Image */
.accel-left-image{
  flex: 1 1 45%;
}
.accel-left-image img{
  width: 100%;
  height: 100%;
  min-height: 850px;
  border-radius: 25px;
  object-fit: cover;
  
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.accel-left-image img:hover{
  transform: scale(1.04);
 
}

/* Right Content */
.accel-right-content{
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  text-align: center;
}




/* Headings */
.accel-right-content .section-title{
   font-size: 2.3rem;
  font-weight: 800;
  color: #2c0066;
}
.accel-right-content .headline{
  font-size: 28px;
  color: #774b8f;
  
  font-weight: bold;
}

/* Paragraph + List */
.accel-text{
  font-size: 12px;
  color: #374151;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
  font-weight: bold;
}
.accel-list{
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}
.accel-list li{
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-weight: bold;
  color: #4b556380;
}
.accel-list li::before{
  
  position: absolute;
  left: 0;
  top: 0;
  color: #7c3aed;
  font-size: 1.25rem;
  font-weight: 700;
}

/* Right Side Two Stacked Images */
.accel-right-images{
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
.img-card{
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
  transition: all 0.35s ease;
}
.img-card img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.img-card:hover img{
  transform: scale(1.06);
}

/* Responsive */
@media(max-width:1024px){
  .accel-container{
    flex-direction: column;
  }
  .accel-left-image img{
    min-height: 350px;
  }
}
@media(max-width:600px){
  .accel-right-content .section-title{
    font-size: 1.8rem;
  }
  .accel-right-content .headline{
    font-size: 1.35rem;
  }
  .img-card img{
    height: 190px;
  }
}




/* ---------- SECTION 6: GLOBAL MENTORSHIP & EXPOSURE MODERN ---------- */
.section-global-modern{
  background:linear-gradient(180deg,#ffffff 0%,#f5f3ff 100%);
  padding:70px 20px;
  margin-top:60px;
  border-radius:25px;
  box-shadow:0 14px 38px rgba(0,0,0,0.08);
  font-family:'Poppins', sans-serif;
}

/* Container Flex Layout */
.global-container{
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  max-width:1200px;
  margin:0 auto;
  align-items:center;
}

/* Left Full-Height Image */
.global-left-image{
  flex:1 1 45%;
}
.global-left-image img{
  width:100%;
  height:100%;
  min-height:500px;
  object-fit:cover;
  border-radius:20px;
 
  transition:0.35s ease;
}
.global-left-image img:hover{
  transform:scale(1.03);
 
}

/* Right Content */
.global-right-content{
  flex:1 1 50%;
  display:flex;
  flex-direction:column;
  gap:30px;
  text-align:center;
}

/* Headings */
.global-right-content .section-title{
  font-size: 2.3rem;
  font-weight: 800;
  color: #2c0066;
}
.global-right-content .headline{
  font-size: 28px;
  color: #774b8f;
  font-weight: bold;
}

/* List Content */
.global-list{
  list-style:none;
  padding-left:0;
  
}
.global-list li{
  position:relative;
  padding-left:30px;
  font-size:14px;
  margin-bottom:14px;
  line-height:1.6;
  font-weight: bold;
  color: #0000006b;
}
.global-list li::before{
 
  position:absolute;
  left:0;
  top:0;
  color:#7c3aed;
  font-size:1.2rem;
  font-weight:700;
}

/* RIGHT SIDE SINGLE IMAGE */
.global-single-image{
  margin-top:10px;
}
.global-single-image img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:16px;
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
  transition:0.35s ease;
}
.global-single-image img:hover{
  transform:scale(1.04);
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
}

/* Responsive */
@media(max-width:1024px){
  .global-container{ flex-direction:column; }
  .global-left-image img{ min-height:320px; }
  .global-single-image img{ height:220px; }
}

@media(max-width:600px){
  .global-right-content .section-title{ font-size:1.7rem; }
  .global-right-content .headline{ font-size:1.3rem; }
  .global-single-image img{ height:200px; }
}







/*/* ---------- SECTION 7: From Survival to Strategy ---------- */
.section-miss7-modern {
   background:linear-gradient(180deg,#ffffff 0%,#f5f3ff 100%);
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.container-miss7-modern {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

/* Images */
.miss7-image {
  flex: 1 1 250px;
  position: relative;
}
.miss7-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.miss7-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* Content */
.miss7-content {
  flex: 1 1 500px;
  text-align: center;
}

.miss7-headline {
  font-size: 2.3rem;
  font-weight: 800;
  color: #2c0066;
}

.miss7-subtext {
  font-size: 20px;
  color: #774b8f;
  font-weight: bold;
}

.miss7-list {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
  max-width: 500px;
  width: 100%;
}

.miss7-list li {
  background: #fff;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  font-size: 1rem;
  color: #00000095;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-size: 12px;
  font-weight: bold;
}

.miss7-list li:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* CTA Button */
.miss7-cta {
  margin-top: 30px;
}
.miss7-btn {
   display: inline-block;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  padding: 13px 34px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(92, 0, 255, 0.25);
}
.miss7-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(179,0,89,0.4);
}

/* Responsive */
@media(max-width:1024px){
  .container-miss7-modern {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .miss7-image img{
    height: 320px;
    margin-bottom: 30px;
  }
  .miss7-list{
    text-align:center;
    display:inline-block;
  }
}

@media(max-width:600px){
  .miss7-headline{
    font-size:2rem;
  }
  .miss7-subtext{
    font-size:1.1rem;
  }
  .miss7-btn{
    padding:12px 26px;
    font-size:1rem;
  }
}









/* ---------- SECTION 8: TESTIMONIALS / FOUNDER VOICES MODERN ---------- */
.section-miss8 {
   background:linear-gradient(180deg,#f3f5ff 0%,#f5f3ff 100%);
 
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.container-miss8 {
  max-width: 1100px;
  margin: 0 auto;
}

.miss8-headline {
   font-size: 60px;
  font-weight: 800;
  color: #000000;
}

.miss8-subtext {
  font-size: 1.15rem;
  color: #555555b0;
  margin-bottom: 60px;
  font-weight: bold;
}

/* Testimonials Flex Layout */
.miss8-testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Individual Card */
.miss8-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 20px;
  width: 320px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

/* Hover Animation */
.miss8-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.miss8-img-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: -60px auto 15px;
  border: 3px solid #9d00ff;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for image */
.miss8-card:hover .miss8-img-wrapper{
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.miss8-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quote */
.miss8-quote {
  font-size: 12px;
  color: #33333396;
  line-height: 1.6;
font-weight: bold;
  margin-bottom: 20px;
  min-height: 80px;
}

/* Name */
.miss8-name {
  font-size: 1rem;
  font-weight: 600;
  color: #c73ef0;
}

/* Responsive */
@media(max-width:1024px){
  .miss8-card{
    width: 280px;
  }
}
@media(max-width:600px){
  .miss8-card{
    width: 90%;
  }
}




















/* ---------- SECTION 9: APPLY / CTA ---------- */
.section-miss9 {
  background: linear-gradient(180deg, #fcf5ff, #f4daff);
  text-align: center;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 13px;
  color: #0000006b;
}

.container-miss9 {
  max-width: 900px;
  margin: 0 auto;
}

.miss9-headline {
  font-size: 2.3rem;
  font-weight: 800;
  color: #2c0066;
}




.miss9-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-miss9 {
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-miss9.primary {
  background-color: #7a00b3;
  color: #fff;
}

.btn-miss9.primary:hover {
  background-color: #590099;
}

.btn-miss9.secondary {
  background-color: #fff;
  color: #000000;
  border: 2px solid #5c00b3;
}

.btn-miss9.secondary:hover {
  background-color: #6e00b3;
  color: #fff;
}

.btn-miss9.outline {
  background: transparent;
  border: 2px dashed #5f00b3;
  color: #000000;
}

.btn-miss9.outline:hover {
  background: #8c00b3;
  color: #fff;
}

/* ---------- FOOTER ---------- */
.footer-miss9 {
  background-color: #6800b3;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 12px;

}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 8px;
  font-weight: bold;
}


.footer-socials {
  margin: 20px 0;
}

.footer-socials a {
  color: #fff;
  font-size: 1.4rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #ffd1dc;
}

.footer-email {
  font-size: 10px;
  margin-top: 10px;
}

.footer-copy {
  font-size: 12px;
  margin-top: 8px;
  color: #ffe6ec;
}





















/* ---------- SECTION 1: HERO ---------- */
.section-miss1 {
  background: linear-gradient(135deg, #ffffff 0%, #edcdff 40%, #fff 100%);
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.hero-container-miss1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.hero-content-miss1 {
  flex: 1 1 500px;
  text-align: left;
}

.miss1-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #2c0066;
}

.miss1-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2222228b;
  margin-bottom: 15px;
}

.miss1-tagline {
  font-size: 1.3rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

.miss1-description {
  font-size: 12px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: bold;
}

.hero-buttons-miss1 {
  display: flex;
  gap: 15px;
}

.btn-miss1 {
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-miss1.primary {
  background-color: #7100b3;
  color: #fff;
}

.btn-miss1.primary:hover {
  background-color: #5e0099;
}

.btn-miss1.secondary {
  background-color: transparent;
  border: 2px solid #bb47ff;
  color: #000000;
}

.btn-miss1.secondary:hover {
  background-color: #cb47ff;
  color: #fff;
}

/* ---------- HERO IMAGE ---------- */
.hero-image-miss1 {
  flex: 1 1 400px;
  text-align: center;
}

.hero-image-miss1 img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-container-miss1 {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-content-miss1 {
    text-align: center;
  }

  .hero-buttons-miss1 {
    justify-content: center;
  }
}



















/* ---------- SECTION 5 UPDATED ---------- */
.miss5-section {
  padding: 100px 8%;
  background: #FFF7F9;
  font-family: 'Poppins', sans-serif;
}

.miss5-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 50px;
}

.miss5-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #2c0066;
  margin-bottom: 30px;
}

/* Cards Layout */
.miss5-cards {
  display: grid;
  gap: 20px;
}

.miss5-card {
  background: #fbddfc;
  padding: 20px 25px;
  border-left: 6px solid #6e37d4; /* gold */
  border-radius: 14px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.miss5-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.miss5-card h3 {
  margin-bottom: 8px;
  color: #000000;
  font-size: 14px;
  font-weight: bold;
}

.miss5-card p {
  color: #444;
  line-height: 1.6;
  font-size: 12px;
  font-weight: bold;
}

/* Features Box */
.miss5-feature-box {
  margin-top: 35px;
  background: #ffffff;
  border-left: 6px solid #2b0035;
  padding: 25px 30px;
  border-radius: 14px;
}

.miss5-feature-box h4 {
  color: #000000;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.miss5-feature-box li {
  line-height: 1.8;
  font-size: 12px;
  color: #333;
  font-weight: bold;
}

/* Right Image */
.miss5-right {
  text-align: center;
}

.miss5-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

.miss5-img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 900px) {
  .miss5-grid {
    grid-template-columns: 1fr;
  }

  .miss5-right {
    margin-top: 30px;
  }
}













/* ---------- SECTION 7 (UPDATED TO MATCH SCREENSHOT) ---------- */

.mentor-section {
  background: linear-gradient(180deg, #faf7ff, #ffffff);
  padding: 90px 8%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.mentor-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.mentor-subtitle {
  font-size: 15px;
  color: #55555595;
  margin-bottom: 50px;
  font-weight: bold;
}

.mentor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* EXACTLY 5 CARDS IN ONE ROW */
  gap: 30px;
  align-items: stretch;
}


.mentor-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 28px;
  text-align: left;
  box-shadow: 0px 20px 40px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.mentor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 28px 60px rgba(0,0,0,0.10);
}

.mentor-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: #f3efff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 15px;
}

.mentor-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 10px;
}

.mentor-card p {
  font-size: 12px;
  color: #555;
  line-height: 1.65;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 1200px) {
  .mentor-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 per row */
  }
}

@media (max-width: 800px) {
  .mentor-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
  }
}

@media (max-width: 500px) {
  .mentor-grid {
    grid-template-columns: 1fr; /* 1 per row for mobile */
  }
}









/* ---------- Mentorship & Network Access (azeitmiss2) ---------- */
.azeitmiss2.section-mentorship{
  background: linear-gradient(180deg,#ffffff 0%, #faf8ff 100%);
  padding: 64px 18px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #1f2937;
}

.azeitmiss2-inner{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}

.azeitmiss2-title{
  font-size:1.9rem;
  color:#0f172a;
  font-weight:800;
  margin-bottom:8px;
}

.azeitmiss2-lead{
  color:#47556972;
  margin-bottom:28px;
  font-size:1rem;
  font-weight: bold;
}

/* grid */
.azeitmiss2-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:20px;
  align-items:stretch;
}

/* cards */
.azeitmiss2-card{
  background:#fff;
  border-radius:12px;
  padding:20px;
  text-align:left;
  box-shadow: 0 8px 24px rgba(16,24,40,0.06);
  border: 1px solid rgba(15,23,42,0.04);
  display:flex;
  flex-direction: column;   /* Vertical layout */
  align-items:flex-start;
  gap:14px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.azeitmiss2-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(16,24,40,0.10);
}

.azeitmiss2-icon{
  font-size:26px;
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(107,70,193,0.15), rgba(99,102,241,0.10));
  color:#4c1d95;
}

/* title below icon */
.azeitmiss2-card-title{
  margin:0;
  font-size:14px;
  color:#0b1220;
  font-weight:bold;
}

/* paragraph under heading */
.azeitmiss2-card-desc{
  margin:0;
  color:#47556975;
  line-height:1.55;
  font-size:12px;
  font-weight: bold;
}

/* responsive tweaks */
@media (max-width:640px){
  .azeitmiss2.section-mentorship{ padding:36px 14px; }
  .azeitmiss2-title{ font-size:1.5rem; }
  .azeitmiss2-card{ padding:16px; gap:12px; }
  .azeitmiss2-icon{ width:42px; height:42px; font-size:22px; }
}



/* ===== 2.html styles end ===== */






































/* ===== 3.html styles start ===== */


/* ===== HERO VIDEO SECTION ===== */
.hera-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(153, 78, 211, 0.456); /* Deep purple transparent */
  z-index: -1;
}

/* Text Block */
.hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1.6s ease;
}

/* Main Title */
.hero-title {
  
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Tagline */
.hero-tagline {
  font-size: 1rem;
  font-weight: bold;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-tagline {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero-hero {
    height: 70vh;
  }
  .hero-title {
    font-size: 1.7rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}























/* Section Base  -- mayooran 1*/
.herasection {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom right, #ffffff, #f3ecff);
  
}

.container {
 
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

/* Section Block */
.section-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* 2 Image Grid */
.img-grid {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 1.7rem;
}



.img-grid img {
  width: 100%;
  height: 150px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(102, 0, 255, 0.486);
  transition: transform 0.3s ease;
}

.img-grid img:hover {
  transform: scale(1.05);
}

/* Text Block */
.text-block h2 {
 
  color: #7300ff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.text-block p {
  font-size: 13px;
  color: #333;
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: bold;
}

.text-block ul {
  padding-left: 1.3rem;
}

.text-block ul li {
  margin-bottom: 0.55rem;
  color: #00000063;
  line-height: 1.65;
  list-style: none;
  font-size: 10px;
  font-weight: bold;
}

/* Large Screen Layout */
@media (min-width: 900px) {
  .section-block {
    grid-template-columns: 1fr 1fr;
  }

  .img-grid img {
    height: 310px;
  }
}

/* Extra Large */
@media (min-width: 1200px) {
  .text-block h2 {
    font-size: 2.7rem;
  }
}









/* ============================= */
/* 🔵 HERO SECTION (Screenshot Style) */
/* ============================= */

.mayooran2-hero {
  background: linear-gradient(90deg, #2e3cd1 60%, #ae03fd 90%);
  padding: 4rem 1.5rem;
  border-radius: 0 0 60px 0;
  color: white;
  font-family: 'Inter', sans-serif;
}

.hero-container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-left h1 {
  font-size: 4.8rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.hero-points li {
  font-size: 11px;
  font-weight: bold;
  padding-left: 32px;
  position: relative;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.hero-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00ff9d;
  font-size: 11px;
  
}

/* CTA BUTTON */
.cta-btn {
  background: #f7b733;
  color: #222;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #ffcf4d;
}

/* RIGHT SIDE IMAGE */
.hero-right img {
  width: 100%;
  max-width: 500px;
 
  
}


/* DESKTOP LAYOUT */
@media (min-width: 850px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
  }
  .hero-left h1 {
    font-size: 3.2rem;
  }
}









/* ============================= */
/* ORIGINAL mayooran2 SECTION */
/* ============================= */

.mayooran2 {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #ffffff, #f9f0ff);
  font-family: 'Inter', sans-serif;
  color: #222224;
}

.mayooran2 .container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.section-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(34, 34, 34, 0.08);
  transition: all 0.35s ease;
  border: 1px solid #bd07ff;
}

.section-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(34, 34, 34, 0.15);
}

.icon-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2rem;
}

.icon-header i {
  font-size: 2.2rem;
  color: #ffffff;
  background: #d000ffbc;
  padding: 12px;
  border-radius: 12px;
}


/* List Items Grid */
.items-grid {
  display: grid;
  gap: 1rem;
  padding-left: 0;
}

.items-grid li {
  background: #f9edff;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  cursor: default;
  transition: all 0.3s ease, transform 0.35s ease;
  opacity: 0;
  transform: translateY(20px);
  font-size: 11px;
}

.items-grid li i {
  color: #901dad;
  font-size: 1.1rem;
}

.items-grid li:hover {
  background: #ae46b5;
  color: #fff;
  transform: translateY(-4px);
}

.items-grid li:hover i {
  color: #fff;
}

/* Subtitles */
.sub-title {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: #983feb;
  display: flex;
  gap: 8px;
  align-items: center;
}

.sub-title i {
 color: #983feb;
}

/* Sectors Grid */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.8rem;
  padding-left: 0;
}

.sectors-grid .sector {
  color: #000000;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease, transform 0.35s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
  list-style: none;
  font-size: 10px;
  background-color:  #eea9fe;;
}

.sectors-grid .sector:hover {
  background: #ae46b5;
  color: #fff;
  transform: translateY(-4px);
}

/* Animate visible on scroll */
.animate.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

/* Responsive */
@media (min-width: 768px) {
  .mayooran2 .container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .items-grid, .sectors-grid {
    grid-template-columns: 1fr;
  }
}

















/* ------------------- Program Structure ------------------- */
.mayooran3 {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  padding: 60px 20px;
}

.mayooran3 .container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ------------------- LEFT IMAGE ------------------- */
.mayooran3 .illustration img {
  width: 100%;
  max-width: 550px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(120, 90, 140, 0.08);
}

/* ------------------- RIGHT CARD ------------------- */
.mayooran3 .section-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgb(16, 24, 40);
  transition: 0.3s;
}

.mayooran3 .section-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16, 24, 40, 0.12);
}

/* ------------------- TEXT STYLING ------------------- */
.mayooran3 .title {
  
  font-size: 28px;
  margin-bottom: 15px;
  color: #0b1220;
}

.mayooran3 .subtitle {
  font-size: 20px;
  margin: 25px 0 10px;
  color: #6050f3;
}

.mayooran3 .list {
  padding-left: 20px;
  line-height: 1.6;
  font-size: 12px;
  color: #383f45;
}

.mayooran3 .list li {
  margin-bottom: 10px;
}

/* ------------------- RESPONSIVE ------------------- */
@media(max-width: 900px) {
  .mayooran3 .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mayooran3 .illustration img {
    margin: 0 auto;
  }
  .mayooran3 .list {
    text-align: left;
  }
}









/* Curriculum Section */
.cycle-curriculum {
  padding: 3rem 1rem;
  
  color: #000000;
  
}

.cycle-curriculum h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #6347ef;
}

/* Curriculum Grid */
.curriculum-grid {
  display: grid;
  gap: 1.5rem;
}

/* Phase Card */
.phase-card {
  background: #ffffff;
  border: 3px solid #4800ff;
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  transition: all 0.35s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
}

.phase-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

.phase-card h3 {
  font-size: 14px;
  color: #000000;
  margin-bottom: 0.8rem;
  text-align: center;
  font-weight: bold;
}

.phase-card p {
  margin-bottom: 0.5rem;
  line-height: 1.55;
  font-size: 10px;
}

/* Icon Box */
.icon-box {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-box img {
  width: 70px;
  height: 70px;
  opacity: 0.9;
}

/* Animate visible */
.animate.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease-out;
}

/* Responsive Grid */
@media (min-width: 768px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .curriculum-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}




















/* Modern Section */
.mayooran4-modern {
  padding: 3rem 1rem;
  background: #fff;
}

.container-modern {
  max-width: 1100px;
  margin: auto;
}

.main-title {
 
 color: #6347ef;
  font-size: 38px;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 700;
}

/* WEEK LAYOUT */
.week-modern {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  margin-bottom: 2.5rem;
  border-radius: 18px;
  background: rgb(247, 231, 255);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.week-modern:hover {
  transform: translateY(-4px);
}

/* Reverse layout */
.week-modern.reverse {
  grid-template-columns: 1fr 220px;
}
.week-modern.reverse .week-img {
  order: 2;
}
.week-modern.reverse .week-text {
  order: 1;
}


/* CIRCLE IMAGES */
.week-img img,
.post-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Image sizes */
.img-large {
  width: 240px;
  height: 240px;
}

.img-medium {
  width: 410px;
  height: 410px;
}

.img-small {
  width: 200px;
  height: 200px;
}

/* TEXT AREA */
.week-text h3 {
  font-size: 16px;
  color: #ab00fa;
  margin-bottom: 1rem;
  font-weight: bold;
}

.week-text span {
  color: #555;
  font-size: 14px;
}

.week-text ul {
  padding-left: 1.2rem;
  line-height: 1.6;
  font-size: 12px;
  font-weight: bold;
  color: #00000072;
  list-style: none;
}

.deliverables {
  margin-top: 1rem;
  background: #fff;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  font-size: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}

/* POST PROGRAM SECTION */
.post-modern {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #bb00ff, #d9c3ff);
  margin-top: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.post-grid {
  display: grid;
  grid-template-columns: 190px 1fr 230px;
  gap: 2rem;
  align-items: center;
}

/* TEXT */
.post-text {
  text-align: center;
}

.post-text h2 {
  
  color: #ffffff;
  margin-bottom: 1.2rem;
  font-size: 40px;
  font-weight: 700;
}

.post-text ul {
  list-style: none;
  padding: 0;
  font-size: 12px;
  line-height: 1.7;
  font-weight: bold;
  color: #ffffff;
}


/* Responsive */
@media (max-width: 900px) {
  .week-modern {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .week-modern.reverse {
    grid-template-columns: 1fr;
  }

  .post-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .post-img,
  .week-img {
    margin: auto;
  }
}



















/* Mayooran10 Section */
.mayooran10 {
  padding: 4rem 1rem;
  background: #fef0ff;
  font-family: "Inter", sans-serif;
}

.mayooran10 .container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

/* Card */
.m10-card {
  background: #f4ebff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.m10-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Card Image */
.m10-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.m10-card:hover .m10-image img {
  transform: scale(1.05);
}

/* Card Content */
.m10-content {
  padding: 2rem;
}

.m10-content h3 {
  color: #bb00ff;
  font-size: 14px;
  margin-bottom: 1rem;
  font-weight: bold;
}

.m10-content ul {
  list-style: disc inside;
  color: #00000077;
  line-height: 1.6;
  padding-left: 0;
  font-size: 12px;
  font-weight: bold;
  list-style: none;
}

.m10-content p {
  font-weight: 400;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #8400ff6d;
}

/* Responsive */
@media (max-width: 768px) {
  .m10-image img {
    height: 180px;
  }
  .m10-content h3 {
    font-size: 1.4rem;
  }
}














.mayooran6 {
  padding: 80px 5%;
  background: linear-gradient(135deg, #2b002b, #420a4b);
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.m6-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1300px;
  margin: auto;
}

.m6-left {
  flex: 1;
  animation: fadeIn 1s ease forwards;
}

.m6-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: bold;
}

.m6-list {
  margin-bottom: 35px;
  padding-left: 20px;
}

.m6-list li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #ffffff;
  font-size: 12px;
  list-style: none;
}

.m6-cta-text {
  margin: 20px 0;
  font-size: 12px;
  line-height: 1.7;
  font-weight: bold;
}

.m6-buttons {
  margin-top: 20px;
  display: flex;
  gap: 18px;
}

.m6-btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  border: 2px solid #ffb84d;
}

.m6-btn.primary {
  background: #ffb84d;
  color: #2b0000;
}

.m6-btn.primary:hover {
  background: transparent;
  color: #ffb84d;
}

.m6-btn.secondary {
  color: #ffb84d;
  background: transparent;
}

.m6-btn.secondary:hover {
  background: #ffb84d;
  color: #2b0000;
}

/* RIGHT SIDE IMAGE */
.m6-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.m6-image {
  width: 100%;
  max-width: 450px;
  height: 450px;
  background: url('images/herolast.png')
    no-repeat center/cover;
 
 
  animation: float 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .m6-container {
    flex-direction: column;
    text-align: center;
  }

  .m6-right {
    order: -1;
  }

  .m6-image {
    height: 350px;
  }
}
