@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  scroll-behavior: smooth;
}

:root {
  --card-bg: #ffffff;
  --card-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  --primary: #ff7334;
  --text-dark: #222;
  --text-light: #303030;
  --radius: 10px;
}

body {
  width: 80vw;
  margin: auto;
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.5;
  overflow-x: hidden;
}

@media (max-width: 800px) {
  body {
    width: 90vw;
    margin: auto;
  }
}

/* Navbar */

@media (max-width: 800px) {
  header #links {
    display: none;
  }
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  border-bottom: 1px solid #eee;
}

.header-bar p {
  font-size: 1.5rem;
  font-weight: 600;
}

#links {
  display: flex;
  gap: 20px;
}

#logo-link {
  font-size: 1.5rem;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: black;
  display: block;
}

.course-hover {
  position: relative;
}

.categories-hover-items {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 250px;
  top: 120%;
  z-index: 10;
  left: 0;
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ffdfc5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease-in;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.course-hover:hover .categories-hover-items {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.categories-based-items {
  position: relative;
}

.it-categories-hover {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 250px;
  top: 0;
  z-index: 10;
  left: 100%;
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ffdfc5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease-in;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.categories-based-items:hover .it-categories-hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.categories-hover-items a {
  padding: 5px 10px;
}

.categories-hover-items a:hover {
  background: #ff7300;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.categories-based-items-accounts {
  position: relative;
}

.acc-categories-hover {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 250px;
  top: 0;
  z-index: 10;
  left: 100%;
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ffdfc5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease-in;
}

.categories-based-items-accounts:hover .acc-categories-hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.di-hover {
  position: relative;
}

.di-hover-items {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
  top: 120%;
  z-index: 10;
  left: 0;
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #ffdfc5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease-in;
}

.di-hover-items a {
  padding: 6px 10px;
  font-size: 1rem;
}

.di-hover-items a:hover {
  background: #ff7300;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
}

.di-hover:hover .di-hover-items {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.di-courses-menu {
  display: flex;
  flex-direction: column;
}

.di-courses-menu .di-course-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 5px 0px;
  font-weight: 600;
}

.di-courses {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
}

.di-courses a {
  padding: 10px 5px;
}

@media (min-width: 800px) {
  header #dropdown-btn {
    display: none;
  }
}

#dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

#dropdown-btn button {
  outline: none;
  border: none;
  background: transparent;
  padding: 5px;
  cursor: pointer;
}

#mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  padding: 20px;
  z-index: 10;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

#mobile-menu.active {
  transform: translateX(0);
}

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.menu-logo {
  font-size: 1.3rem;
  font-weight: 600;
}

.menu-close {
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.menu-links {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-section {
  border-bottom: 1px solid #f1f1f1;
  padding: 10px 0;
}

.menu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
}

.menu-content {
  display: none;
  padding-left: 10px;
}

.menu-category {
  margin-top: 10px;
}

.category-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
}

.category-items {
  display: none;
  padding-left: 15px;
}

.category-items p {
  padding: 6px 0;
  font-size: 0.95rem;
  cursor: pointer;
}

.category-items p:hover {
  color: #ff7300;
}

.menu-arrow {
  transition: transform 0.2s ease;
}

.rotate {
  transform: rotate(90deg);
}

.mobile-cat-title {
  font-weight: 600;
  cursor: pointer;
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  margin: 5px 0;
  transition: background 0.2s ease;
}

.mobile-cat-title:hover {
  background: #ff7300;
  color: #fff;
}

.mobile-cat-items {
  display: none;
  padding: 2px 0;
}

.mobile-cat-items p {
  padding: 10px 10px;
  margin: 2px 0;
  font-size: 15px;
  background: #ffd4b1;
  border-radius: 8px;
  border: 1px solid #ff7300;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-cat-items p:hover {
  background: #ff7300;
  color: #fff;
}

/* Hero Section */

.hero-section {
  padding: 40px 20px;
  border-radius: 1rem;
  margin-top: 20px;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.hero-text {
  flex: 1 1 300px;
  min-width: 250px;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.125rem;
  margin-bottom: 25px;
  color: #000000;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-btn-primary,
.hero-btn-secondary {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  transition: 0.3s;
  text-decoration: none;
  outline: none;
  border: none;
}

.hero-btn-primary {
  background-color: #fe7743;
  color: #fff;
}
.hero-btn-primary:hover {
  background-color: #d95f2f;
}

.hero-btn-secondary {
  background-color: #fff;
  color: #fe7743;
  border: 2px solid #fe7743;
}
.hero-btn-secondary:hover {
  background-color: #fe7743;
  color: #fff;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stat-box {
  background: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid #c0c0c0;
  font-weight: 600;
  font-size: 0.875rem;
  color: #000000;
  flex: 1 1 100px;
  text-align: center;
  text-wrap: nowrap;
  transition: 0.2s ease-out;
  cursor: default;
}

.hero-stat-box:hover {
  background: #ff7334;
  color: white;
  border: 1px solid #ff7334;
}

.hero-image {
  flex: 1 1 300px;
  min-width: 250px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 2.4rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 0.95rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
  }
  .hero-stat-box {
    flex: 1 1 100%;
  }
  .hero-image img {
    max-width: 80%;
  }
}

@media (max-width: 350px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-text p {
    font-size: 0.875rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .hero-stat-box {
    font-size: 0.75rem;
    padding: 8px 10px;
  }
}

/* Courses */

.courses-section {
  margin-top: 40px;
  position: relative;
}

.courses-container {
  padding: 20px 20px;
  border-radius: 1rem;
  background: linear-gradient(335deg, #ffede6, #ffffff);
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid #ffe1d2;
}

.section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 26px;
  font-weight: 600;
  color: #000000;
}

.section-header p {
  font-size: 16px;
  color: #000000;
}

.courses-grid {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  justify-content: flex-start;
}

.courses-grid::-webkit-scrollbar {
  height: 4px;
}
.courses-grid::-webkit-scrollbar-thumb {
  background: #fe7743;
  border-radius: 3px;
}

.course-card {
  background: #fff;
  border-radius: 12px;
  max-width: 420px;
  min-width: 350px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
  flex: 0 0 auto;
}
.course-card:hover {
  transform: translateY(-5px);
}

.course-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.course-content {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.course-badge {
  display: inline-block;
  background: #fe7743;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.course-content h3 {
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: 800;
}

.course-rating,
.course-instructor,
.course-duration {
  font-size: 14px;
  color: #000000;
}

.course-description {
  font-size: 14px;
  color: #000000;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-buttons-wrapper a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  margin-bottom: 8px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.course-btn-primary {
  background-color: #fe7743;
  color: #fff;
  padding: 12px 24px;
}
.course-btn-primary:hover {
  background-color: #d95f2f;
}

.course-btn-secondary {
  border: 2px solid #fe7743;
  color: #fe7743;
  background-color: #fff;
  padding: 12px 24px;
}
.course-btn-secondary:hover {
  background-color: #fe7743;
  color: #fff;
}

.courses-explore {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.courses-explore .course-btn-primary {
  width: fit-content;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  background-color: transparent;
  color: #000;
  font-weight: 600;
  border: 2px solid #fe7743;
  transition: 0.3s;
}
.courses-explore .course-btn-primary:hover {
  background-color: #fe7743;
  color: #fff;
}

.courses-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fe7743;
  color: #fff;
  border: none;
  padding: 10px 10px;
  border-radius: 100%;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  z-index: 100;
  transition: 0.3s;
}
.courses-scroll-btn:hover {
  background-color: #d95f2f;
}
.courses-scroll-left {
  left: 10px;
}
.courses-scroll-right {
  right: 10px;
}

@media (max-width: 800px) {
  .courses-grid {
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  .course-card {
    max-width: 300px;
    min-width: 280px;
  }
  .courses-container {
    padding: 20px 10px;
  }
  .courses-scroll-btn {
    padding: 8px 12px;
    font-size: 18px;
  }

  .courses-container .section-header h1 {
    font-size: 26px;
  }

  .courses-container .section-header p {
    font-size: 16px;
  }
}

/* Reviews */

.review-section {
  padding: 20px 20px;
  background: linear-gradient(235deg, #fff5ed, #ffffff);
  border-radius: 1rem;
  border: 1px solid #ffddd0;
  margin-top: 1rem;
}

.review-section .section-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.review-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .review-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.review-card {
  padding: 18px 20px;
  border-radius: 10px;
  border: 2px solid transparent;
  border-bottom: 2px solid #ff7300;
  transition: 0.3s ease-in-out;
}

.review-card:hover {
  transform: translateY(5px);
  border: 2px solid #ff7300;
  background: #ffe1c8;
}

.review-card h4 {
  margin: 0 0 6px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
}

.stars {
  margin-bottom: 10px;
  display: flex;
  gap: 2px;
}

.star {
  color: #f7a800;
  font-size: 18px;
  line-height: 1;
}

.review-card p {
  margin: 0;
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.5;
}

.review-course {
  font-weight: 600;
}

@media (max-width: 400px) {
  .review-section {
    padding: 20px 12px;
  }

  .review-card {
    padding: 16px;
    border-radius: 8px;
  }

  .review-card h4 {
    font-size: 1rem;
  }

  .star {
    font-size: 16px;
  }

  .review-card p {
    font-size: 0.92rem;
  }
}

/* Why Choose Us */

.why-choose-us {
  padding: 20px 20px;
  background: linear-gradient(135deg, #ffede6, #ffffff);
  border-radius: 1rem;
  width: 100%;
  margin-top: 40px;
  border: 1px solid #ffe1d2;
}

.why-choose-us .section-header {
  text-align: start;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.why-choose-us .section-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
}

.why-choose-us .section-header p {
  font-size: 16px;
  color: #000000;
}

.choose-us-grid {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.choose-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #ffe1d2;
}

.choose-icon {
  width: 40px;
  margin-bottom: 20px;
}

.choose-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fe7743;
}

.choose-card p {
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why-choose-us {
    padding: 50px 15px;
  }

  .choose-us-grid {
    width: 100%;
    gap: 20px;
  }
}

@media (max-width: 800px) {
  .why-choose-us .section-header h1 {
    font-size: 26px;
  }

  .why-choose-us .section-header p {
    font-size: 18px;
  }

  .choose-us-grid {
    grid-template-columns: 1fr;
  }

  .choose-card {
    width: 100%;
    padding: 25px 18px;
  }
}

@media (max-width: 450px) {
  .choose-card h3 {
    font-size: 18px;
  }

  .choose-card p {
    font-size: 16px;
  }
}

/* Batches */

.batches-section {
  padding: 20px 20px;
  background: linear-gradient(235deg, #fff5ed, #ffffff);
  border-radius: 1rem;
  border: 1px solid #ffddd0;
  margin-top: 1rem;
}

.batches-section .section-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.section-header h2 {
  font-size: 26px;
  font-weight: 600;
  color: #000000;
}

.section-header p {
  font-size: 16px;
  color: #000000;
}

.batch-section {
  width: 100%;
  margin: auto;
}

.batch-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.batch-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.batch-card {
  background: var(--card-bg);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid #ff9c6d;
}

.batch-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 20px;
  color: var(--text-dark);
}

.batch-info {
  font-size: 16px;
  margin: 4px 0;
  color: var(--text-light);
}

.batch-status {
  margin: 10px 0;
  font-weight: 600;
  color: var(--primary);
}

.btn {
  margin-top: auto;
  display: inline-block;
  padding: 10px 14px;
  text-align: center;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 15px;
  transition: 0.2s ease;
}

.batch-card button {
    outline: none;
    border: none;
}

.btn:hover {
  background: #ff4800;
}

/* Contact */

.contact-section {
  padding: 20px 20px;
  background: linear-gradient(135deg, #ffede6, #ffffff);
  border-radius: 1rem;
  margin-top: 1rem;
  width: 100%;
  border: 1px solid #ffe1d2;
}

.contact-container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 10px;
}

.contact-form {
  flex: 1;
  width: 50%;
}

.contact-form h2 {
  font-size: 28px;
  font-weight: 600;
  color: #000;
}

.contact-form p {
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #000000;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #ffddd0;
  border-radius: 8px;
  font-size: 15px;
  appearance: none;
  background: transparent;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #ff7300;
  outline: none;
  box-shadow: 0 0 6px rgba(255, 115, 0, 0.4);
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.btn-contact {
  background: #ff7300;
  color: #fff;
  padding: 12px 20px;
  border: none;
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-contact:hover {
  background: #000;
  color: #fff;
}

.contact-image {
  flex: 1;
  width: 50%;
  text-align: right;
}

.contact-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  object-fit: cover;
  animation: float 2s ease-in-out infinite;
}

@media (max-width: 1200px) {
  .contact-container {
    max-width: 1100px;
  }
}

@media (max-width: 800px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .contact-form {
    width: 100%;
  }

  .contact-image {
    display: none;
  }
}

#show-message {
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 500px) {
  .contact-form h2 {
    font-size: 26px;
  }

  .contact-section {
    padding: 30px 15px;
  }
}

/* About Us */

.about-section {
  padding: 20px 40px;
  background: linear-gradient(335deg, #ffede6, #ffffff);
  border-radius: 1rem;
  width: 100%;
  margin-top: 1rem;
  border: 1px solid #ffe1d2;
}

.about-container {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #000;
  font-weight: 800;
}

.about-content p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 12px;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  text-align: right;
  animation: float 3s ease-in-out infinite;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  object-fit: cover;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    width: 100%;
    gap: 30px;
    text-align: center;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 15px;
  }

  .about-image img {
    max-width: 80%;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-container {
    width: 100%;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-image {
    display: none;
  }
}

@media (max-width: 450px) {
  .about-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* Footer */

footer {
  color: #ffffff;
  background: #111111;
  padding: 40px 20px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 20px;
}

.footer-container {
  width: 100%;
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ff7334;
}

.footer-social img {
  width: 15px;
  height: 15px;
}

.footer-col p,
.footer-col a {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #ff7300;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ff7300;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s ease;
}

.footer-social a:hover {
  background: #ffffff;
  color: #000000;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #a1a1a1;
  color: #ffffff;
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  footer {
    padding: 40px 15px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-col h3 {
    font-size: 18px;
  }

  .footer-col p,
  .footer-col a {
    font-size: 14px;
  }
}

/* Spinner */

.spinner-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  margin: auto;
}

.spinner {
  border: 4px solid #fe7743;
  border-top: 4px solid #f3f3f3;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 0.5s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.center-message {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  height: 250px;
  font-size: 1.2rem;
  color: #000000;
  text-align: center;
}

/* Hide Images Media Queries */

@media (max-width: 800px) {
  .hero-image,
  .about-image,
  .contact-image {
    display: none !important;
  }

  .hero-container,
  .about-container,
  .contact-container {
    grid-template-columns: 1fr !important;
  }

  .hero-section .hero-container .hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}

/* Blogs Section */

.blogs-container {
  width: 100%;
  border: 2px solid #ffe1d2;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
  gap: 10px;
  padding: 10px 20px;
  margin: 20px 0 20px 0;
}

.blogs-container h2 {
  font-weight: 700;
  font-size: 26px;
}

.blogs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.image-box {
  width: 100%;
  max-height: 200px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: 100%;
  max-width: 350px;
  padding: 10px;
  border-radius: 10px;
  border: 2px solid transparent;
  border-bottom: 2px solid #ff7343;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 15px -10px;
  transition: 0.2s ease-in-out;
}

.blog:hover {
  transform: translateY(2px);
}

.blogSpinner {
  border: 4px solid #fe7743;
  border-top: 4px solid #f3f3f3;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 0.5s linear infinite;
  margin: auto;
  margin-top: 15px;
}

.blog-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}

.blog button {
  outline: none;
  border: none;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  transition: 0.2s ease;
  border-radius: 10px;
}

.blog-info #date {
  color: #a1a1a1;
  font-size: 12px;
}

.blog-info #title {
  font-size: 20px;
}

.blog-info #desc {
  color: #3f3f3f;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog button:hover {
  background: #ff7343;
  color: white;
}

.blogs-container #see-more {
  outline: none;
  border: 2px solid #ff7334;
  padding: 10px 40px;
  cursor: pointer;
  transition: 0.2s ease;
  border-radius: 10px;
  margin: auto;
  margin-top: 10px;
  background: transparent;
}

.blogs-container #see-more:hover {
  background: #ff7343;
  color: white;
}

@media (max-width: 800px) {
  .blogs {
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    width: 100%;
  }

  .blog {
    flex: 0 0 auto;
    max-width: 250px;
  }

  .image-box {
    max-height: 150px;
  }
}

/* Mentor Section */

.spinner {
  display: none;
  width: 50px;
  height: 50px;
  border: 4px solid transparent;
  border-top: 4px solid #ff7443;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 30px auto;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.mentors-container {
  width: 100%;
  padding: 10px 20px;
  margin: 20px auto;
  box-sizing: border-box;
  text-align: left;
  border: 2px solid #ffe1d2;
  border-radius: 10px;
}

.mentors-container h2 {
  font-size: 26px;
  font-weight: 700;
}

.mentors {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 10px;
}

.mentor {
  background: #fff;
  border-radius: 10px;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 15px -10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 2px solid #ff7334;
}

.mentor img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 12px;
}

.mentor .name {
  font-size: 20px;
  font-weight: 600;
}

.mentor .experience {
  color: #ff7443;
  font-weight: 600;
  margin: 5px 0;
}

.mentor .description {
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .mentors-container {
    padding: 10px;
  }
  .mentor img {
    height: 150px;
  }
}

/* Overlay */

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 999;
}

.enroll-modal {
  width: 70%;
  max-width: 550px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

.modal-left {
  width: 50%;
}
.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-right {
  width: 50%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  position: relative;
}

.modal-right h2 {
  margin-bottom: 5px;
  font-size: 26px;
  font-weight: 700;
}

.modal-right input,
.modal-right select {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 15px;
  appearance: none;
  width: 100%;
}

.modal-right button {
  background: #ff7443;
  color: white;
  padding: 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-top: 5px;
  transition: 0.2s ease;
}
.modal-right button:hover {
  opacity: 0.9;
}

#close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  font-weight: bold;
}

.enroll-open-btn {
  background: #ff7443;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 17px;
  margin: 30px auto;
  display: block;
}
.enroll-open-btn:hover {
  opacity: 0.9;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -46%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 800px) {
  .enroll-modal {
    width: 92%;
    flex-direction: column;
  }

  .modal-left,
  .modal-right {
    width: 100%;
  }

  .modal-left img {
    height: 200px;
  }
}

/* Whatsapp Button */

#whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.2s ease-in-out;
  overflow: hidden; 
}

#whatsapp-btn img {
  width: 50%;         
  height: 50%;
  object-fit: contain; 
  display: block;
}


#whatsapp-btn:hover {
  transform: scale(1.1);
}


/* ChatBot */


#chat-toggle {
    position: fixed;
    bottom: 75px;
    right: 20px;
    background-color: #ff7334;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 10px 10px;
    cursor: pointer;
    font-size: 19px;
    z-index: 1000;
}

#chat-toggle:hover {
    background-color: #e65c00;
}

#chat-container {
    position: fixed;
    bottom: 130px;
    right: 20px;
    width: 320px;
    max-width: 90vw;
    height: 400px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease-in-out;
    z-index: 999;
}

#chat-container.active {
    transform: translateY(0);
    opacity: 1;
}


#chat-header {
    background-color: #ff7334; /* Orange */
    color: white;
    padding: 15px;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chat-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}


#chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.message {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 20px;
    word-wrap: break-word;
}

.message.user {
    background-color: #ff7334;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.message.bot {
    background-color: #e9ecef;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

#chat-form {
    display: flex;
    padding: 10px;
    border-top: 1px solid #ddd;
}

#chat-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 14px;
}

#chat-form button {
    margin-left: 10px;
    padding: 10px 20px;
    background-color: #ff7334; 
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
}

#chat-form button:hover {
    background-color: #e65c00;
}


#chat-messages::-webkit-scrollbar {
    width: 6px;
}

#chat-messages::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 3px;
}

