/* Base Styles */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  transition: background 0.4s, color 0.4s;
}

.light-mode {
  --bg: #ffffff;
  --text: #1e1e2f;
  --hero-bg: linear-gradient(135deg, #e0eafc, #cfdef3);
  --services-bg: #f4f9fc;
  --footer-bg: #1e1e2f;
  --footer-text: #ffffff;
  --card-bg: #ffffff;
  --btn-bg: #2575fc;
  --btn-text: #ffffff;
}

.dark-mode {
  --bg: #121212;
  --text: #eeeeee;
  --hero-bg: linear-gradient(135deg, #2b2b2b, #000000);
  --services-bg: #1a1a1a;
  --footer-bg: #101010;
  --footer-text: #ffffff;
  --card-bg: #1e1e1e;
  --btn-bg: #00c6ff;
  --btn-text: #000000;
}

body {
  background: var(--bg);
  color: var(--text);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(30, 30, 47, 0.9);
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo-box {
  display: flex;
  align-items: center;
}
.logo-img {
  width: 40px;
  margin-right: 10px;
}
.logo-text {
  font-size: 22px;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: white;
  text-decoration: none;
}
#modeToggle {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

/* Banner */
.course-banner {
  text-align: center;
  padding: 30px 0;
}
.banner-img {
  max-width: 90%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Hero */
.hero {
  background: var(--hero-bg);
  padding: 60px 20px;
  text-align: center;
}
.glow-heading {
  font-family: 'Great Vibes', cursive;
  font-size: 3em;
  color: var(--text);
}
.curve-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00f260, #0575e6);
  margin: 10px auto;
  border-radius: 10px;
}
.btn {
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  transition: transform 0.3s;
}
.btn:hover {
  transform: scale(1.05);
}
.course-points {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
}
.course-points li {
  margin: 10px 0;
}

/* Alert Box */
.alert-box {
  background: #ffe9e9;
  color: #c40000;
  border-left: 6px solid #ff4d4d;
  padding: 20px;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 8px;
}

/* Services */
.services-animated {
  padding: 60px 20px;
  background: var(--services-bg);
}
.section-heading {
  font-family: 'Pacifico', cursive;
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #6a11cb;
}
.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.service-img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.service-text {
  max-width: 500px;
  padding: 10px 20px;
}
.reverse {
  flex-direction: row-reverse;
}

/* Features */
.features {
  padding: 60px 20px;
  text-align: center;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}
.card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 50px 20px 20px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.footer-grid > div {
  flex: 1 1 250px;
}
.footer-grid h4 {
  color: #00c6ff;
}
.footer-grid ul {
  list-style: none;
  padding-left: 0;
}
.footer-grid a {
  color: var(--footer-text);
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  .service-row {
    flex-direction: column;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}
/* Banner */
.course-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Hero Grid Layout */
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--hero-bg);
}
.hero-left {
  flex: 1 1 250px;
  text-align: center;
}
.hero-right {
  flex: 1 1 500px;
  padding: 20px;
}
.profile-img {
  width: 300px;
  height: 800px;
  
  border-radius: 20%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Two-Column Info Row */
.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  background: var(--bg);
}
.info-left,
.info-right {
  flex: 1 1 450px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .hero-grid,
  .info-row {
    flex-direction: column;
  }
  .profile-img {
    margin-bottom: 20px;
  }
}



.about-page {
  padding: 60px 20px;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.about-text {
  flex: 1 1 500px;
}
.about-photo {
  flex: 1 1 250px;
  text-align: center;
}
.profile-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.mission {
  text-align: center;
  padding: 40px 20px;
}
.mission h2 {
  color: #2575fc;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
}



.contact-section {
  padding: 60px 20px;
  text-align: center;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.contact-form {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1em;
}
.contact-form .btn {
  width: fit-content;
  align-self: center;
}
.contact-info {
  flex: 1 1 300px;
  text-align: left;
}
.contact-info a.btn {
  margin-top: 15px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-info {
    text-align: center;
  }
}
.course-start {
  text-align: center;
  padding: 50px 20px;
  background: var(--hero-bg);
}
.course-start .glow-heading {
  font-family: 'Pacifico', cursive;
  font-size: 2.8rem;
}
.course-tagline {
  font-size: 1.5rem;
  color: #d9534f;
  font-weight: bold;
  margin-top: 10px;
}
.course-intro {
  max-width: 700px;
  margin: 15px auto;
  font-size: 1.1rem;
  color: var(--text-color);
}

.digital-tools-section {
  padding: 40px 20px;
  background: var(--services-bg);
}
.digital-tools-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #2575fc;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}
.card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  margin-bottom: 10px;
  color: #00a8ff;
}

.benefit-box {
  background: #eef9f8;
  padding: 40px 20px;
  border-radius: 10px;
  max-width: 800px;
  margin: 50px auto;
}
.benefit-box h2 {
  text-align: center;
  color: #00c6a9;
}
.benefit-box ul {
  padding-left: 20px;
  margin-top: 20px;
  font-size: 1.05rem;
}

.alert-box.danger {
  background: #ffe6e6;
  color: #a94442;
  border-left: 6px solid #d43f3a;
  padding: 25px;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 10px;
}
.alert-box.danger h3 {
  color: #c9302c;
}
.alert-box.danger ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.enroll-cta {
  text-align: center;
  padding: 30px 20px;
}
.enroll-cta .btn {
  background: #28a745;
  color: #fff;
  padding: 15px 30px;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.enroll-cta .btn:hover {
  background: #218838;
}
.course-visuals {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.course-banner-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.course-profile-img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .course-visuals {
    flex-direction: column;
    gap: 20px;
  }
}












.materials-header {
  text-align: center;
  padding: 40px 20px;
}
.materials-header h1 {
  font-size: 2.5rem;
  color: #2575fc;
  margin-bottom: 10px;
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 40px 20px;
}
.material-card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: center;
}
.material-card:hover {
  transform: translateY(-5px);
}
.material-card h3 {
  margin-bottom: 10px;
  color: #00a8ff;
}
.material-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.material-card .btn {
  background: #28a745;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
}
.material-card .btn:hover {
  background: #218838;
}











.pricing-header {
  text-align: center;
  padding: 50px 20px;
}
.pricing-header h1 {
  font-size: 2.5rem;
  color: #2575fc;
  margin-bottom: 10px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 20px;
}
.pricing-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
}
.pricing-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
.pricing-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: #28a745;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 15px 0;
}
.pricing-card ul li {
  margin: 8px 0;
}
.pricing-card .btn {
  margin-top: 10px;
  background: #2575fc;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}
.pricing-card.popular {
  border: 2px solid #ff9800;
}
.pricing-card .tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff9800;
  color: white;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
}











/* Services Header */
.service-header {
  text-align: center;
  padding: 50px 20px;
}
.service-header h1 {
  font-size: 2.5rem;
  color: #2575fc;
  margin-bottom: 10px;
}
.service-header p {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: auto;
}

/* Services Container */

body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #f7f7f7;
  color: #333;
}

.page-header {
  background: #0e6ba8;
  color: white;
  padding: 2rem;
  text-align: center;
  border-bottom: 4px solid #05527a;
}

.page-header h1 {
  font-size: 2.5rem;
  margin: 0;
}

.service-section {
  padding: 2rem;
}

.service-section h2 {
  font-size: 1.8rem;
  color: #0e6ba8;
  border-left: 6px solid #0e6ba8;
  padding-left: 10px;
  margin-bottom: 1rem;
}

.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  margin-top: 0;
  color: #444;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.note {
  color: #d35400;
  font-weight: bold;
  margin-top: 0.5rem;
}

.page-footer {
  text-align: center;
  background: #05527a;
  color: white;
  padding: 1rem;
  font-size: 0.95rem;
}








.auto-scroll {
  overflow: hidden;
  position: relative;
}
.scroll-track {
  display: flex;
  gap: 20px;
  animation: scrollTrack 20s linear infinite;
}
.scroll-card {
  flex: 0 0 auto;
  background: linear-gradient(135deg, #a29bfe, #81ecec);
  padding: 16px 20px;
  border-radius: 15px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  min-width: 200px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}
@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}














.materials-section {
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.materials-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.materials-section p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.materials-section h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: #0e6ba8;
  border-left: 5px solid #0e6ba8;
  padding-left: 10px;
  text-align: left;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.material-card {
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.material-card:hover {
  transform: translateY(-5px);
}

.material-card h4 {
  font-size: 1.1rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.material-card .btn {
  display: inline-block;
  padding: 0.45rem 1rem;
  margin: 0.3rem 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  background-color: #3498db;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.material-card .btn.green {
  background-color: #27ae60;
}

.material-card .btn:hover {
  opacity: 0.9;
}












.faq-section {
  background: #f0f4f8;
  padding: 60px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.faq-container {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.faq-item {
  background: white;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.faq-answer {
  font-size: 1rem;
  color: #555;
}












.course-highlights {
  background: #fff6ec;
  padding: 60px 20px;
  text-align: center;
  border-top: 5px solid #ff8c00;
  border-bottom: 5px solid #ff8c00;
}

.course-highlights h2 {
  font-size: 2.2rem;
  color: #d35400;
  margin-bottom: 30px;
  font-weight: bold;
}

.highlight-list {
  list-style: none;
  max-width: 800px;
  margin: auto;
  padding: 0;
  text-align: left;
}

.highlight-list li {
  background: #fff;
  margin: 15px 0;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: #444;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: relative;
  transition: all 0.3s ease;
}

.highlight-list li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 5px;
  height: 80%;
  background: #ffa726;
  border-radius: 3px;
}

.highlight-list li:hover {
  background: #ffe2c1;
  transform: translateX(5px);
}










.impact-warning {
  background: #fff3f3;
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid #ff4d4d;
  border-bottom: 4px solid #ff4d4d;
}

.impact-box {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.1);
}

.impact-box h2 {
  color: #c62828;
  font-size: 2rem;
  margin-bottom: 25px;
}

.impact-box ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.impact-box ul li {
  font-size: 1.1rem;
  color: #444;
  background: #ffe5e5;
  padding: 15px;
  margin-bottom: 10px;
  border-left: 5px solid #f44336;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.impact-box ul li:hover {
  background: #ffdada;
}

.final-line {
  margin-top: 30px;
  font-size: 1.2rem;
  color: #2e7d32;
  font-weight: bold;
}

.final-line .highlight {
  color: #d84315;
  font-size: 1.3rem;
}











.premium-offer {
  background: #f3f9ff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.offer-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.strike {
  text-decoration: line-through;
  color: #999;
}

.premium-offer h1 {
  color: #27ae60;
  font-size: 3rem;
  margin: 10px 0;
}

.premium-offer h2 {
  color: #f39c12;
  margin: 0;
}

.premium-offer h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.limited {
  color: #e74c3c;
  font-weight: bold;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background: #27ae60;
  color: #fff;
  font-weight: bold;
  padding: 15px 30px;
  margin: 20px 0;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #219150;
}

.secure-satisfaction {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 30px 0;
  gap: 20px;
}

.secure, .guarantee {
  background: #eafaf1;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: left;
  font-size: 0.95rem;
}

.learn-title {
  margin-top: 40px;
  color: #34495e;
  font-weight: bold;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 40px;
}

.features-grid ul {
  list-style: none;
  padding: 0;
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.features-grid li {
  margin-bottom: 10px;
  font-size: 1rem;
  background: #f8f8f8;
  padding: 10px 15px;
  border-left: 5px solid #2ecc71;
  border-radius: 8px;
}









.faq-section {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}

.faq-section h2 {
  font-size: 2rem;
  color: #34495e;
  margin-bottom: 40px;
}

.faq-box {
  max-width: 900px;
  margin: auto;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  border-left: 5px solid #3498db;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #2c3e50;
}

.faq-item p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}












.ai-typing-magic {
  background: linear-gradient(to right, #fff1eb, #ace0f9);
  padding: 50px 20px;
  text-align: center;
  margin-top: -40px;
  z-index: 2;
  position: relative;
}

.ai-highlight-box {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.ai-highlight-box h2 {
  font-size: 1.8rem;
  color: #d32f2f;
  font-weight: 700;
  margin-bottom: 15px;
}

.ai-highlight-text {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
}

.ai-highlight-text .ai-boost {
  color: #2e7d32;
  font-weight: bold;
  background: #e0f2f1;
  padding: 3px 8px;
  border-radius: 5px;
}

.ai-note {
  margin-top: 25px;
  font-size: 1rem;
  color: #1a237e;
  font-weight: 600;
}












body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #f8f9fa;
  color: #333;
}

.blog-header {
  background: #e3f2fd;
  text-align: center;
  padding: 60px 20px;
}

.blog-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1565c0;
}

.blog-header p {
  font-size: 1.1rem;
  color: #444;
}

.blog-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #2c3e50;
}

.blog-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.blog-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

footer {
  background: #222;
  color: white;
  padding: 40px 20px 10px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}

.footer-grid div {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-grid h4 {
  margin-bottom: 10px;
  color: #f1c40f;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
}

.footer-grid ul li a {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #bbb;
}





/* Carousel Styles */
.carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}