/* --- Navbar Style --- */
.navbar {
    background-color: #004d40;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 3px solid #009688;
  }
  
  .logo {
    font-size: 22px;
    font-weight: bold;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #ffcc80;
  }
  
body {
    background-color: #e0f7fa;
    font-family: Arial, sans-serif;
    padding: 20px;
  }
  
  h1 {
    color: darkgreen;
    text-align: center;
  }
  
  p {
    font-style: italic;
    text-align: center;
  }
  
  img {
    display: block;
    margin: 20px auto;
    width: 150px;
    border-radius: 50%;
  }
  
  a {
    display: block;
    text-align: center;
    font-weight: bold;
    color: #00695c;
    text-decoration: none;
  }
  /* --- Courses Section --- */
.courses {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.courses h2 {
  font-size: 28px;
  color: #004d40;
  margin-bottom: 30px;
}

.course-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.course-card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 250px;
  transition: transform 0.3s ease;
  opacity: 0;
transform: translateY(20px);
animation: fadeInUp 0.6s ease forwards;
animation-delay: calc(0.1s * var(--i));

}

.course-card:hover {
  transform: translateY(-5px);
}

.course-card h3 {
  color: #00796b;
  margin-bottom: 10px;
}

.course-card p {
  color: #555;
  font-size: 15px;
}
/* --- About Founder Section --- */
.about-founder {
  background-color: #fff;
  padding: 50px 20px;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.about-text {
  flex: 1 1 300px;
  max-width: 500px;
}

.about-text h2 {
  color: #004d40;
  font-size: 26px;
  margin-bottom: 15px;
}

.about-text p {
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

.about-image {
  flex: 1 1 250px;
  max-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* --- Notes Section --- */
.notes-section {
  background-color: #e8f5e9;
  padding: 50px 20px;
  text-align: center;
}

.notes-section h2 {
  font-size: 26px;
  color: #2e7d32;
  margin-bottom: 30px;
}

.notes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.note-card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 250px;
}

.note-card h3 {
  color: #1b5e20;
  margin-bottom: 10px;
}

.note-card a {
  text-decoration: none;
  color: white;
  background-color: #43a047;
  padding: 8px 15px;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.3s ease;
}

.note-card a:hover {
  background-color: #2e7d32;
}
/* --- Laadli Footer --- */
.laadli-footer {
  background-color: #fce4ec;
  text-align: center;
  color: #880e4f;
  padding: 30px 15px;
  font-family: 'Georgia', serif;
  font-size: 15px;
  line-height: 1.6;
  border-top: 3px dashed #f06292;
}

/* --- Contact Section --- */
.contact-section {
  background-color: #e3f2fd;
  padding: 50px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 26px;
  color: #0d47a1;
  margin-bottom: 25px;
}

.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #90caf9;
  border-radius: 6px;
  font-size: 15px;
  font-family: Arial, sans-serif;
}

.contact-form button {
  background-color: #1565c0;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #0d47a1;
}
.nav-links li a {
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #ffcc80;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
button:hover,
.note-card a:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}
.note-card {
  background: #ffffff;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.note-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.note-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #222;
}

.note-card a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.note-card a:hover {
  background: #0056b3;
}
.filter-buttons {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  margin: 0 10px;
  padding: 8px 20px;
  background: #eee;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.filter-btn:hover {
  background: #ddd;
}

.filter-btn.active {
  background: #007bff;
  color: white;
}

.notes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/* ------------------------ */
/* 📱 MOBILE RESPONSIVE CSS */
/* ------------------------ */
@media (max-width: 768px) {
  body {
    padding: 10px;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 8px;
    background-color: #f2f2f2;
  }

  .page-section h2 {
    font-size: 22px;
  }

  .course-container,
  .notes-container {
    flex-direction: column;
    align-items: center;
  }

  .course-card,
  .note-card {
    width: 90%;
    margin: 15px 0;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
  }

  .filter-buttons {
    flex-wrap: wrap;
  }

  .filter-btn {
    margin: 8px 5px;
    font-size: 15px;
  }

  footer {
    text-align: center;
    font-size: 14px;
    padding: 20px;
  }
}
/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin: 10px;
    color: #333;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #f9f9f9;
    padding: 10px 0;
    border-radius: 10px;
  }

  .nav-links li {
    text-align: center;
    margin: 8px 0;
  }

  .nav-links.show {
    display: flex;
  }
}
#authBtn {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #007a8a;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#authBtn:hover {
  background-color: #005f6b;
}
/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
}

/* Modal content box */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px 30px;
  border-radius: 12px;
  width: 350px;
  position: relative;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.modal-content button {
  width: 100%;
  padding: 10px;
  background-color: #0097a7;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}
.ad-thumbnails {
  margin-bottom: 20px;
  text-align: center;
}

.thumb-grid {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.thumb-grid img {
  width: 180px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.thumb-grid img:hover {
  transform: scale(1.05);
}
/* --- Social Media Section --- */
.pro-footer {
  background: #f1f1f1;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand h3 {
  color: #004d40;
  font-size: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
}

.store-badges img {
  width: 120px;
  margin: 8px 10px 0 0;
}

.footer-links {
  flex: 1 1 160px;
}

.footer-links h4 {
  font-size: 16px;
  color: #00796b;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin: 6px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #009688;
  text-decoration: underline;
}

/* Smaller icons for this footer */
.small-social a {
  font-size: 18px;
  color: #00796b;
  margin-right: 10px;
  transition: color 0.3s, transform 0.3s;
}

.small-social a:hover {
  color: #d81b60;
  transform: scale(1.2);
}

.site-logo-footer {
  height: 50px;
  vertical-align: middle;
  margin-right: 8px;
  

}
.navbar h1 {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 15px;
  border: 2px solid #ffcc80;  /* 🌟 Highlighted golden-orange border */
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05); /* slight white overlay */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.site-logo {
  height: 35px;
  width: auto;
}
.navbar h1:hover {
  box-shadow: 0 0 10px #ffcc80;
  transform: scale(1.02);
}
.course-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.course-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.course-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background-color: #f0f8ff; /* optional light background */
}

.course-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #1a1a1a;
}

.course-card p {
  font-size: 16px;
  color: #555;
}
.visitor-box {
  font-family: 'Segoe UI', sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(135deg, #1e90ff, #00bcd4);
  padding: 12px 20px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(30,144,255, 0.6);
  width: fit-content;
  margin: 20px auto;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: glowPulse 2s infinite ease-in-out;
}

.visitor-icon {
  font-size: 18px;
  margin-right: 6px;
}


@keyframes glowPulse {
  0% { box-shadow: 0 0 10px #00bcd4; }
  50% { box-shadow: 0 0 20px #1e90ff; }
  100% { box-shadow: 0 0 10px #00bcd4; }
}

.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #ffffff;
  color: #333;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  max-width: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  animation: popupFade 0.4s ease-out;
}

.popup-content h2 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #e53935;
}

.popup-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.popup-content button {
  padding: 8px 20px;
  font-size: 16px;
  background-color: #1e88e5;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.popup-content button:hover {
  background-color: #1565c0;
}

@keyframes popupFade {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.hero-class10 {
  background: linear-gradient(to right, #2196f3, #1e88e5);
  color: white;
  padding: 100px 20px 80px;
  text-align: center;
  background-image: url('/images/class10-bg.jpg'); /* optional image */
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-class10::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
}

.hero-class10 h1 {
  font-size: 40px;
  font-weight: bold;
  animation: fadeUp 1s ease-out;
}

.hero-class10 p {
  font-size: 18px;
  margin-top: 15px;
  animation: fadeUp 1.3s ease-out;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: #ffffff;
  color: #1e88e5;
}

.btn-primary:hover {
  background-color: #e3f2fd;
}

.btn-secondary {
  background-color: rgba(255,255,255,0.2);
  border: 1px solid white;
  color: white;
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.3);
}

/* Simple animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.syllabus-section {
  background: #f0f8ff;
  padding: 60px 20px;
  text-align: center;
}

.syllabus-section h2 {
  font-size: 32px;
  color: #0d47a1;
  margin-bottom: 40px;
  animation: fadeUp 1s ease-in-out;
}

.subjects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.subject-box {
  background: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 30px;
  width: 320px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.subject-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.subject-box h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #1976d2;
}

.subject-box ul {
  padding-left: 0;
  list-style: none;
}

.subject-box li {
  padding: 8px 0;
  font-size: 16px;
  color: #333;
  border-bottom: 1px dashed #e0e0e0;
}
/* Add this to your style.css */
.syllabus-exam {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}
.syllabus-exam h2 {
  color: #1e4b70;
  margin-bottom: 30px;
  font-size: 28px;
}
.syllabus-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.syllabus-card {
  background: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 25px;
  width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.syllabus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}
.syllabus-card h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}
.syllabus-card ul {
  text-align: left;
  padding-left: 20px;
  color: #333;
}
/* Add this to your style.css */

.methodology {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.methodology h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #1d3557;
}
.timeline {
  max-width: 900px;
  margin: auto;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  text-align: left;
}
.timeline-icon {
  font-size: 28px;
  background: #1abc9c;
  color: white;
  padding: 15px;
  border-radius: 50%;
  margin-right: 20px;
  min-width: 60px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.timeline-content h3 {
  margin-bottom: 10px;
  color: #34495e;
}
.timeline-content p {
  color: #555;
  font-size: 15px;
}
@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .timeline-icon {
    margin-bottom: 10px;
  }
}
.services {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}
.services h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #1d3557;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}
.icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #00b894;
}
.service-card h3 {
  font-size: 18px;
  color: #2d3436;
}
.service-card p {
  font-size: 15px;
  color: #636e72;
}
.fees-section {
  background-color: #e3f2fd;
  padding: 60px 20px;
  text-align: center;
}

.fees-section h2 {
  font-size: 30px;
  color: #0d47a1;
  margin-bottom: 30px;
}

.fee-table table {
  width: 100%;
  max-width: 800px;
  margin: auto;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.fee-table th, .fee-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.fee-table th {
  background-color: #1976d2;
  color: white;
  font-weight: 600;
}

.fee-table tr:hover {
  background-color: #f1f1f1;
}

.timing-box {
  margin-top: 40px;
}

.timing-box h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1b5e20;
}

.timing-box ul {
  list-style: none;
  padding-left: 0;
  color: #333;
  font-size: 16px;
}

.timing-box li {
  margin-bottom: 10px;
}

.cta-register {
  margin-top: 40px;
}

.btn-register {
  padding: 14px 30px;
  font-size: 18px;
  color: white;
  background-color: #0d47a1;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-register:hover {
  background-color: #1565c0;
}
.results-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.results-section h2 {
  font-size: 30px;
  color: #2e7d32;
  margin-bottom: 40px;
}

.achievement-summary {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.highlight {
  background: #e8f5e9;
  border-left: 6px solid #66bb6a;
  padding: 20px;
  border-radius: 8px;
  min-width: 220px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.highlight h3 {
  font-size: 28px;
  color: #388e3c;
  margin-bottom: 5px;
}

.highlight p {
  color: #4e4e4e;
  font-size: 15px;
}

.topper-title {
  margin-bottom: 25px;
  font-size: 22px;
  color: #1a237e;
}

.topper-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.topper-card {
  width: 180px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.topper-card:hover {
  transform: translateY(-6px);
}

.topper-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.topper-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.4;
}
.fee-calculator {
  background-color: #f1f8e9;
  padding: 60px 20px;
  text-align: center;
}

.fee-calculator h2 {
  font-size: 28px;
  color: #33691e;
  margin-bottom: 10px;
}

.calculator-box {
  margin-top: 20px;
}

#batchSelector {
  padding: 10px;
  font-size: 16px;
  width: 250px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.fee-output {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #2e7d32;
}
.downloads-section {
  background: #fefefe;
  padding: 60px 20px;
  text-align: center;
}
.downloads-section h2 {
  font-size: 30px;
  color: #2e86de;
  margin-bottom: 10px;
}
.section-note {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.download-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.download-card {
  background: #f0f4ff;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.download-card:hover {
  transform: translateY(-6px);
}
.download-card h3 {
  font-size: 18px;
  color: #1b4f72;
  margin-bottom: 15px;
}
.download-btn {
  padding: 10px 20px;
  background: #3498db;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.download-btn:hover {
  background: #2980b9;
}

.cta-final {
  margin-top: 60px;
}
.cta-final h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #2d3436;
}
.cta-final p {
  color: #636e72;
  margin-bottom: 20px;
}
.final-btn {
  padding: 12px 25px;
  background: #10ac84;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin: 10px;
  transition: 0.3s;
}
.final-btn:hover {
  background: #1dd1a1;
}
.final-btn.register {
  background: #2e86de;
}
.final-btn.register:hover {
  background: #1b4f72;
}
.hero-section {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: auto;
  animation: fadeInUp 1s ease-in-out;
}

.hero-section h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn {
  background-color: #ffcc00;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #fff200;
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.laadli-footer {
  box-shadow: inset 0 0 30px #f8bbd0;
  animation: glow 4s ease-in-out infinite alternate;
}

@keyframes glow {
  0% { background-color: #fce4ec; }
  100% { background-color: #f8bbd0; }
}

.laadli-footer strong {
  color: #d81b60;
  font-weight: 600;
}

