@import url("responsive.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-padding-top: 150px;
  scroll-behavior: smooth;
  width: 100%;
}

:root {
  --primary-navy: #1d3557;
  --secondary-blue: #457b9d;
  --accent-crimson: #e63946;
  --bg-soft: #f1faee;
  --white: #ffffff;
  --text-dark: #2b2d42;
  --fs-h1: 48px;
  --fs-h2: 36px;
  --fs-h3: 28px;
  --fs-p: 18px;
  --fs-span: 16px;
  --space-top: 60px;
  --space-bottom: 20px;
  --space-both: 80px;
  --page-padding: 80px;
  --section-gap: 40px;
}

/* Top Header */
.head-navbar {
  background: var(--primary-navy);
  height: 48px;
  display: flex;
  align-items: center;
  z-index: 1050;
}

.head-navbar span,
.head-navbar i {
  color: var(--white);
  font-size: 14px;
}

.address-text span {
  white-space: normal;
  line-height: 1.4;
}

.social-icons a {
  color: var(--white);
  margin-left: 12px;
}

/* Navbar */
.menu-navbar {
  background: var(--white);
  height: 90px;
  top: 48px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1040;
}

/* Logo */
.img-logo {
  width: 120px;
  margin-left: 60px;
}

/* Desktop Menu */
.menu-items-bar {
  list-style: none;
  display: flex;
  gap: 50px;
  margin: 0px 110px 0px 0px;
  font-size: 18px;
  font-weight: 600;
}

.menu-items-bar a {
  text-decoration: none;
  color: var(--primary-navy);
  position: relative;
}

.menu-items-bar a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-navy);
  transition: 0.3s;
}

.menu-items-bar a:hover::after,
.menu-items-bar a.active::after {
  width: 100%;
}

/* Header Social Link */
.social-icons {
  gap: 12px;
}

.social-icons a {
  text-decoration: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.social-icons a:nth-child(1) {
  background-color: #3b5998;
}

.social-icons a:nth-child(2) {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icons a:nth-child(3) {
  background-color: #ff0000;
}

.social-icons a:hover {
  transform: scale(1.1);
}

/* Call Button */
.btn-callnow {
  border: 2px solid var(--primary-navy);
  padding: 8px 22px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--primary-navy);
  font-weight: 600;
  margin-right: 80px;
}

.btn-callnow:hover {
  background: var(--primary-navy);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  width: 28px;
  cursor: pointer;
  margin-right: 20px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: var(--primary-navy);
  margin: 6px 0;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 200px;
  height: 100vh;
  background: var(--white);
  padding: 60px 30px;
  transition: 0.35s ease;
  box-shadow: -6px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 2000;
}

.mobile-menu.active {
  right: 0;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-navy);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: center;
}

.mobile-menu ul li {
  margin-bottom: 26px;
}

.mobile-menu ul a {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-navy);
  text-decoration: none;
}

/* Mobile Social Links */
.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.menus-social-link {
  text-decoration: none !important;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* --- Brand Colors --- */
.social-list li:nth-child(1) .menus-social-link {
  background-color: #1877F2;
}

.social-list li:nth-child(2) .menus-social-link {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-list li:nth-child(3) .menus-social-link {
  background-color: #FF0000;
}

.menus-social-link:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.navbar-spacer {
  height: 138px;
}

/* Hero Section Open */
.container-banner {
  width: 100%;
  aspect-ratio: 1920 / 501;
  max-height: 501px;
  background-color: var(--secondary-blue);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: background-image 1.5s ease-in-out;
  margin-bottom: var(--space-top);
}

/* Hero Section Close */

/* About Section Open */
.container-about {
  width: 90%;
  margin: 20px auto;
  margin-bottom: var(--space-top);
}

.container-about-heading h1 {
  font-size: 56px;
  color: var(--primary-navy);
  text-align: center;
  margin-bottom: var(--space-top);
}

.about-containt-row .about-heads {
  padding: 15px;
}

.about-heads {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(20deg, var(--primary-navy), var(--secondary-blue) 95%);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.about-heads1 img {
  width: 80px;
  height: 80px;
}

.about-heads1 {
  width: 100%;
  max-width: 350px;
  height: auto;
  min-height: 100px;
  border-right: 2px solid var(--white);
}

.about-heads1 p {
  color: var(--white);
  font-weight: 500;
}

.about-heads1:last-child {
  border: none;
}

.about-contant {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-top: 30px;
}

.about-contant-title h1 {
  color: var(--secondary-blue);
  font-weight: 900;
}

.about-contant-title p {
  text-align: justify;
}

.about-contant-photo img {
  width: 440px;
  height: 360px;
  margin-top: 20px;
}

/* About Section Close */

/* Branches Section Open */
.container-branches {
  width: 90%;
  margin: 20px auto;
  margin-top: var(--space-top);
}

.container-branches-heading h1 {
  font-size: 56px;
  color: var(--primary-navy);
  text-align: center;
  margin-bottom: var(--space-bottom);
}

.branches-head1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.branches-schools1 {
  width: 100%;
  max-width: 270px;
  height: auto;
  min-height: 260px;
  border-radius: 10px;
  padding: 15px;
  border: 1px solid var(--primary-navy);
}

.branches-schools1 .branches-schools-img {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-blue);
  align-items: center;
  border-radius: 50%;
  margin: auto;
}

.branches-schools1 .branches-schools-img img {
  width: 35px;
  height: 35px;
}

.branches-schools1 h5 {
  text-align: center;
  margin-top: 15px;
  color: var(--primary-navy);
}

.branches-schools1 address {
  text-align: center;
}

.school1-kids {
  width: 100%;
  max-width: 560px;
}

.branches-schools1 h1 {
  font-size: 56px;
  color: var(--secondary-blue);
  padding-left: 70px;
}

.branches-schools1 .btn-get-started {
  font-size: 16px;
  padding: 10px;
  border-radius: 10px;
  background-color: var(--accent-crimson);
  border: 1px solid transparent;
  color: var(--white);
  margin-left: 80px;
  transition: all 0.3s linear;
  font-weight: 500;
}

.btn-get-started:hover {
  background-color: transparent;
  color: var(--primary-navy);
  border: 1px solid var(--primary-navy);
}

.branches-schools1 .btn-all-programs {
  font-size: 16px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--primary-navy);
  color: rgb(0, 0, 0);
  margin-left: 80px;
  background: transparent;
  transition: all 0.3s linear;
  font-weight: 500;
}

.btn-all-programs:hover {
  background-color: var(--primary-navy);
  color: var(--white);
  border: 1px solid var(--primary-navy);
}

.branches-schools1:last-child {
  border: none;
}

.branches-head2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

.branches-schools2 {
  width: 100%;
  max-width: 270px;
  height: auto;
  min-height: 260px;
  border-radius: 10px;
  padding: 15px;
  border: 1px solid var(--primary-navy);
}

.branches-schools2 .branches-schools-img {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--secondary-blue);
  align-items: center;
  border-radius: 50%;
  margin: auto;
}

.branches-schools2 .branches-schools-img img {
  width: 35px;
  height: 35px;
}

.branches-schools2 h5 {
  text-align: center;
  margin-top: 15px;
  color: var(--primary-navy);
}

.branches-schools2 address {
  text-align: center;
}

/* Branches Section Close */

/* FAQ Section Open */
.faq {
  width: 90%;
  margin: 20px auto;
  display: flex;
  gap: 50px;
  padding: 30px;
  background-color: var(--primary-navy);
  border-radius: 30px;
  height: auto;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(29, 53, 87, 0.1);
  margin-top: var(--space-top);
  margin-bottom: var(--space-top);
}

.faq-picture {
  width: 100%;
  margin: 20px auto;
}

.faq-picture img {
  max-width: 100%;
  height: auto;
}

.faq-container h1 {
  text-align: center;
  color: var(--secondary-blue);
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: none;
  margin-bottom: 20px;
  padding: 0;
}

.faq-question {
  font-weight: bold;
  font-size: 18px;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, border-radius 0.3s;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.icon {
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  color: var(--primary-navy);
  transition: transform 0.3s;
}

.faq-question.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
  background-color: var(--secondary-blue);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  padding: 0 25px;
}

.faq-answer.open {
  max-height: 500px;
  padding: 15px 25px;
  padding-top: 5px;
}

.faq-answer p {
  margin: 10px 0;
  line-height: 1.6;
  color: var(--white);
}

/* FAQ Section Close */

/* Gallery Section Open  */
.container-gallery-heading {
  font-size: 56px;
  color: var(--primary-navy);
  text-align: center;
  /* margin-bottom: 30px; */
  margin-bottom: var(--space-top);

}

#gal_outer_container {
  position: relative;
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

#gal_slider_window {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

#gal_grid_wrapper {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container {
  flex: 0 0 calc(33.333% - 14px) !important;
  min-width: calc(33.333% - 14px) !important;
  aspect-ratio: 4 / 3;
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Plus Icon Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 33, 71, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
}

.image-container:hover .overlay {
  opacity: 1;
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #002147;
  font-weight: bold;
}

/* Slider Nav Buttons */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-navy);
  color: var(--white);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 18px;
}

.slider-nav-btn.prev {
  left: -22px;
}

.slider-nav-btn.next {
  right: -22px;
}

/* --- MODAL --- */
.modal {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  background-color: black;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 50px;
  cursor: pointer;
}

.prev-btn-modal,
.next-btn-modal {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 50px;
  cursor: pointer;
  padding: 20px;
  text-decoration: none;
}

.prev-btn-modal {
  left: 10px;
}

.next-btn-modal {
  right: 10px;
}

/* Gallery Section Close */

/* Contact Section Open */
.container-contact-heading {
  font-size: 56px;
  color: var(--primary-navy);
  text-align: center;
  margin-bottom: var(--space-bottom);
  margin-top: var(--space-top);
}

.contact-container {
  width: 90%;
  margin: 20px auto;
  display: flex;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(29, 53, 87, 0.1);
  border-radius: 30px;
  margin-top: var(--space-top);
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-navy);
}

.form-group input,
.form-group textarea {
  width: 90%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-blue);
}

.submit-btn {
  width: 30%;
  margin-top: 15px;
  color: var(--accent-crimson);
  padding: 10px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid var(--accent-crimson);
}

.submit-btn:hover {
  background-color: var(--accent-crimson);
  color: var(--white);
}

.contact-form {
  width: 50%;
}

.contact-form h1 {
  font-size: 50px;
  color: var(--secondary-blue);
  text-align: left;
}

.contact-with {
  width: 50%;
  margin-top: var(--space-top);
}

.contact-with h1 {
  font-size: 50px;
  color: var(--secondary-blue);
  text-align: left;
}

.fa-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border: 1px solid var(--accent-crimson);
  border-radius: 50%;
  transition: transform 0.2s linear, background-color 0.2s linear;
  box-sizing: border-box;
}

.fa-solid:hover {
  background-color: var(--accent-crimson);
  transform: scale(0.9);
  color: rgb(240, 240, 240);
}

.contact-links h1 {
  margin-top: 50px;
}

.fa-brands {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border: 1px solid var(--accent-crimson);
  border-radius: 50%;
  transition: transform 0.2s linear, background-color 0.2s linear;
  box-sizing: border-box;
}

.fa-brands:hover {
  background-color: var(--accent-crimson);
  transform: scale(0.9);
  color: rgb(240, 240, 240);
}

/* Contact Section Close */

/* Footer Section Open */
.footer-container {
  background: url("/images/footer-image.png") no-repeat center;
  background-size: cover;
  width: 100%;
  min-height: 400px;
  height: auto;
  padding: 20px 0;
  margin-top: var(--space-top);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 40px;
}

.footer-navbar {
  width: 90%;
  border-bottom: 1px solid rgb(204, 203, 203);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.footer-menus ul {
  display: flex;
  justify-content: center;
  gap: 60px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-menus li a {
  text-decoration: none;
  color: var(--white);
  font-size: var(--fs-p);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer-menus li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--white);
  transition: width 0.3s ease;
}

.footer-menus li a:hover::after,
.footer-menus li a.active::after {
  width: 100%;
}

.footer-menus li a:hover {
  color: var(--secondary-blue);
  transform: translateY(-2px);
}

.footer-timing {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 40px;
}

.footer-time1,
.footer-time2,
.footer-time3 {
  border-right: 1px solid var(--white);
  padding: 0 25px;
  text-align: center;
}

.footer-time3 {
  border-right: none;
}

.footer-time1 p {
  font-size: 18px;
  font-weight: 700;
}

.footer-time2 p,
.footer-time3 p {
  font-size: 16px;
  font-weight: 400;
}

.footer-address {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgb(204, 203, 203);
}

.ft-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background-color: var(--accent-crimson);
  border-radius: 50%;
  transition: transform 0.2s linear, background-color 0.2s linear;
  box-sizing: border-box;
}

.ft-link:hover {
  background-color: var(--accent-crimson);
  transform: scale(0.9);
  color: rgb(240, 240, 240);
}

.footer-add1,
.footer-add2,
.footer-add3 {
  flex: 1;
  width: 100%;
  max-width: 350px;
  height: auto;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
}

.footer-add1 span i,
.footer-add2 span i,
.footer-add3 span i {
  font-size: 20px;
}

.footer-add1 p,
.footer-add2 p,
.footer-add3 p {
  color: var(--white);
  font-size: var(--fs-p);
  margin: 0;
  line-height: 1.4;
}

.copy-writes p {
  padding-top: 20px;
  font-size: var(--fs-span);
  opacity: 0.8;
}

/* Footer Section Close */