.nav {
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: fixed;
  padding: 20px;
  top: 0;
  left: 0;
  right: 0;
  background-color: #6E026F;
  justify-content: space-around;
}
.nav > img {
  height: 100px;
}
.nav > button {
  display: none;
  border-radius: 10px;
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.nav-links > li {
  background-color: #ABDADC;
  padding: 10px;
  border-radius: 10px;
}
.nav-links > li a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .nav {
    justify-content: start;
  }
  .nav > img {
    position: fixed;
    right: 10px;
    height: 50px;
  }
  .nav > button {
    background-color: #ABDADC;
    padding: 10px;
    border: none;
    display: block;
    left: 10px;
  }
  .nav .nav-links {
    display: none;
    position: fixed;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    text-align: start;
    padding: 20px;
    height: 100vh;
    background-color: #F1E6C9;
  }
  .nav .nav-links.active {
    display: flex;
  }
}

.about-container {
  margin-top: 200px;
  margin-left: 200px;
  margin-right: 200px;
  text-align: justify;
}
.about-container p {
  color: grey;
}
@media (max-width: 900px) {
  .about-container {
    margin-top: 200px;
    margin-left: 50px;
    margin-right: 50px;
  }
}

.courses-container {
  margin-top: 200px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.courses-container .course-item {
  padding: 10px;
  border-radius: 10px;
  box-shadow: -10px 10px 10px gray;
  background-color: #ffffff;
}
.courses-container .course-item--2 {
  height: 200px;
  width: 200px;
  padding: 30px;
}
.courses-container .course-item--2 > img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
}
.courses-container .course-item--1 {
  height: 200px;
  width: 300px;
  overflow: hidden;
}
.courses-container .course-item--1 .heading-container, .courses-container .course-item--1 .subheading-container {
  width: 100%;
}
.courses-container .course-item--1 .heading-container > h3, .courses-container .course-item--1 .subheading-container > h3 {
  padding: 0;
  margin: 0;
  text-align: center;
}
.courses-container .course-item--1 .heading-container > h4, .courses-container .course-item--1 .subheading-container > h4 {
  padding: 0;
  margin: 0;
  text-align: center;
}
@media (max-width: 750px) {
  .courses-container {
    margin-top: 100px;
  }
}

.summercamp-section,
.courses-container {
  margin-top: 200px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}
@media (max-width: 750px) {
  .summercamp-section,
  .courses-container {
    margin-top: 100px;
  }
}

.why-us {
  text-align: center;
  margin-bottom: 80px;
}
.why-us h2 {
  font-size: 2.2rem;
  color: #2d3436;
  margin-bottom: 40px;
}
.why-us .features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 0;
  list-style: none;
}
.why-us .features-list li {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f1f1f1;
  font-size: 0.9rem;
  line-height: 1.5;
}
.why-us .features-list li strong {
  display: block;
  color: rgb(68, 140, 164);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.why-us .features-list li:hover {
  transform: translateY(-5px);
  border-color: rgb(68, 140, 164);
  box-shadow: 0 8px 25px rgba(68, 140, 164, 0.2);
}

.benefits-grid {
  margin-bottom: 80px;
}
.benefits-grid h2 {
  text-align: center;
  margin-bottom: 30px;
}
.benefits-grid .benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.benefits-grid .benefits .benefit-item {
  background-color: rgb(201, 233, 244);
  padding: 30px;
  border-radius: 20px;
  text-align: left;
  transition: transform 0.3s ease;
  box-shadow: -5px 10px 20px rgba(0, 0, 0, 0.05);
}
.benefits-grid .benefits .benefit-item h3 {
  color: rgb(45.5775862069, 93.8362068966, 109.9224137931);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.benefits-grid .benefits .benefit-item p {
  color: #2d3436;
  font-size: 0.95rem;
  line-height: 1.6;
}
.benefits-grid .benefits .benefit-item:hover {
  transform: scale(1.03);
}

.course-item--1 .heading-container h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2d3436;
  letter-spacing: -0.5px;
}
.course-item--1 .subheading-container h4 {
  font-size: 1rem;
  color: rgb(68, 140, 164);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
.course-item--1 .para-container p {
  color: #636e72;
  font-size: 1rem;
  margin-bottom: 15px;
}
.course-item--1 .ideal-container {
  display: inline-block;
  background: #f1f7f9;
  padding: 8px 15px;
  border-radius: 8px;
  border-left: 4px solid rgb(68, 140, 164);
}
.course-item--1 .ideal-container p {
  margin: 0;
  font-size: 0.85rem;
  color: rgb(38.1034482759, 78.4482758621, 91.8965517241);
}
.course-item--1 .ideal-container p strong {
  color: #2d3436;
}

hr {
  border: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
  margin: 50px 0;
}

.footer {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 0 !important;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 0 0 0;
  font-family: sans-serif;
  overflow: hidden;
}
.footer * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .footer .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer .footer-brand h2 {
  color: #00d4ff;
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.footer .footer-brand p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #cccccc;
}
.footer .footer-links h3, .footer .footer-contact h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.footer .footer-links ul, .footer .footer-contact ul {
  list-style: none;
}
.footer .footer-links li, .footer .footer-contact li {
  margin-bottom: 10px;
}
.footer .footer-links a, .footer .footer-contact a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer .footer-links a:hover, .footer .footer-contact a:hover {
  color: #00d4ff;
}
.footer .footer-newsletter .newsletter-form {
  display: flex;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .footer .footer-newsletter .newsletter-form {
    flex-direction: column;
    align-items: center;
  }
}
.footer .footer-newsletter .newsletter-form input {
  padding: 10px;
  border: 1px solid #444;
  background: #222;
  color: white;
  border-radius: 4px 0 0 4px;
  outline: none;
}
@media (max-width: 768px) {
  .footer .footer-newsletter .newsletter-form input {
    border-radius: 4px;
    width: 100%;
    margin-bottom: 10px;
  }
}
.footer .footer-newsletter .newsletter-form button {
  padding: 10px 20px;
  background: #00d4ff;
  border: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}
@media (max-width: 768px) {
  .footer .footer-newsletter .newsletter-form button {
    border-radius: 4px;
    width: 100%;
  }
}
.footer .footer-bottom {
  margin-top: 50px;
  padding: 20px;
  background-color: #111111;
  text-align: center;
  width: 100%;
}
.footer .footer-bottom p {
  font-size: 0.8rem;
  color: #777;
}

.hero-section {
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
}
.hero-section--introduction {
  margin: 0;
  background-color: #F1E6C9;
}
.hero-section--introduction h3 {
  margin: 0;
  padding: 10px;
  text-align: center;
}
.hero-section--introduction > p {
  text-align: justify;
  padding: 10px;
  margin: 0;
  color: gray;
}
.hero-section .bg-image {
  height: 600px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgb(4, 4, 4);
  text-align: center;
}
.hero-section .bg-image > div {
  background-color: white;
  opacity: 0.6;
  width: 100%;
  padding-bottom: 10px;
}
.hero-section .join-btn {
  padding: 10px;
  background-color: rgb(28, 104, 192);
  border: none;
  color: white;
  border-radius: 10px;
  width: 10%;
}
.hero-section .join-btn:hover {
  background-color: #075457;
}
.hero-section > .bg-image {
  opacity: 1;
}
@media (max-width: 800px) {
  .hero-section .bg-image {
    height: 300px;
  }
}

.bg-image {
  height: 300px;
  width: 100%;
  background-image: url("../assets/students.jpg");
  background-size: cover;
}

.home-container {
  margin: 0;
  padding: 0;
}
.home-container .content-section {
  padding: 10px;
  text-align: center;
  background-color: #ABDADC;
}
.home-container .content-section > h3 {
  text-align: center;
}
.home-container .content-section > ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.home-container .content-section > ul li {
  list-style: none;
  background-color: white;
  border-radius: 10px;
  padding: 10px;
}

.philosophy {
  margin: 0;
  padding: 10px;
  background-color: rgb(195, 233, 195);
  color: rgb(0, 0, 0);
}
.philosophy > h3 {
  text-align: center;
  color: black;
}

.philisophy-container {
  display: flex;
  gap: 10px;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 60px;
}
.philisophy-container .philosophy-item {
  background-color: white;
  width: 300px;
  height: 150px;
  padding: 10px;
  text-align: justify;
  border-radius: 10px;
}
.philisophy-container .philosophy-item:hover {
  background-color: white;
  width: 302px;
  height: 152px;
  padding: 12px;
  text-align: justify;
  border-radius: 12px;
}/*# sourceMappingURL=main.css.map */
/* Contact Page Styles */
.contact-container {
  margin-top: 200px;
  margin-left: 200px;
  margin-right: 200px;
  text-align: justify;
}
.contact-container p {
  color: grey;
}
@media (max-width: 900px) {
  .contact-container {
    margin-top: 200px;
    margin-left: 50px;
    margin-right: 50px;
  }
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.contact-info, .contact-form-wrapper {
  flex: 1;
  min-width: 300px;
}

.contact-info p {
  margin-bottom: 20px;
  color: #636e72;
}

.contact-info strong {
  color: #2d3436;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #2d3436;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00d4ff;
}

.submit-btn {
  background-color: #00d4ff;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #00b8d4;
}
