* {
 margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: sans-serif;
background: #f8f9fa;
overflow-x: hidden;
}
/* Header Styles */
.header {
background: white;
padding: 12px 0;
border-bottom: 1px solid #e9ecef;
position: sticky;
top: 0;
z-index: 1000;
}
.header-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
display: flex;
align-items: center;
gap: 8px;
}
.logo-icon {
width: 42px;
height: 42px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
}
.logo-text {
font-size: 14px;
font-weight: 600;
color: #1298fd;
text-transform: uppercase;
}
/* Navigation */
.nav-menu {
display: flex;
list-style: none;
gap: 30px;
align-items: center;
}
.nav-menu a {
text-decoration: none;
color: #333;
font-size: 14px;
font-weight: 500;
padding: 8px 16px;
border: 1px solid #06afff;
border-radius: 10px;
transition: all 0.2s;
}
.nav-menu a:hover {
background: #06afff;
color: white;
}
.mobile-menu-toggle {
display: none;
font-size: 18px;
cursor: pointer;
color: #333;
background: none;
border: none;
}
.mobile-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
right: 0;
background: white;
border-top: 1px solid #e9ecef;
}
.mobile-menu.active {
display: block;
}
.mobile-menu-content {
padding: 16px 20px;
}
.mobile-nav-menu {
list-style: none;
margin-bottom: 16px;
}
.mobile-nav-menu a {
display: block;
padding: 8px 16px;
color: #333;
text-decoration: none;
font-size: 14px;
font-weight: 500;
border: 1px solid #00bcd4;
border-radius: 20px;
margin-bottom: 8px;
text-align: center;
}
.mobile-nav-menu a:hover {
background: #00bcd4;
color: white;
}
/* Hero Section */
.hero-container {
padding: 60px 20px;
background: url("./Background.svg");
}
.hero-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
gap: 40px;
flex-wrap: wrap;
align-items: flex-start;
justify-content: center;
}
.hero-left {
flex: 0 1 500px;
display: flex;
flex-direction: column;
gap: 20px;
}
.hero-button {
background-color: #fff;
border: 1px solid #000;
color: #01317a;
padding: 12px 24px;
border-radius: 10px;
font-size: 16px;
font-weight: 600;
width: fit-content;
}
.hero-heading {
font-size: 36px;
font-weight: 700;
line-height: 1.2;
}
.hero-subheading ul {
font-size: 16px;
font-weight: 500;
padding-left: 20px;
line-height: 1.6;
}
.hero-rating p {
font-size: 18px;
margin-bottom: 8px;
color: gray;
}
.hero-rating img {
width: 120px;
}
.hero-button-area {
margin-top: 16px;
padding: 12px 24px;
border: 1px solid gray;
border-radius: 5px;
display: flex;
align-items: center;
gap: 12px;
display: inline-flex;
}
.hero-rating-action-button {
background-color: #ff9900;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size:18px;
font-weight: bold;
}
.hero-rating-action-button:hover {
background-color: #e68a00;
}
.hero-right {
flex: 0 1 300px;
text-align: center;
}
.hero-right p{
font-weight: bold;
font-size: 16px;
line-height: 1.6;
color: gray;
margin-bottom: 16px;
}
.responsive-video-wrapper {
width: 100%;
height: 400px;
border-radius: 10px;
overflow: hidden;
position: relative;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}
/* Book Slide Wrapper */
.video-slide-wrapper {
position: relative;
width: 100%;
height: 100%;
}
.video-slide-wrapper iframe {
position: absolute;
top: 0;
left: 0;
/* width: 100%;
height: 100%; */
transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
border: none;
opacity: 0;
z-index: 1;
aspect-ratio: 9/16;
}
#heroVideoFront {
z-index: 2;
opacity: 1;
}
/* .book-slide-next #heroVideoFront {
 transform: translateX(-100%);
 opacity: 0;
}
.book-slide-next #heroVideoBack {
 transform: translateX(0%);
 opacity: 1;
 z-index: 3;
}
.book-slide-prev #heroVideoFront {
 transform: translateX(100%);
 opacity: 0;
}
.book-slide-prev #heroVideoBack {
 transform: translateX(0%);
 opacity: 1;
 z-index: 3;
} */
.video-controls {
margin-top: 12px;
display: flex;
gap: 16px;
justify-content: center;
}
.arrow-btn {
width: 48px;
height: 48px;
border-radius: 50%;
/* background-color: #ff9900; */
background-color: transparent;
border: none;
color: white;
font-size: 24px;
cursor: pointer;
}
.arrow-btn img {
width: 100%;
}
.arrow-btn img:hover {
transform: scale(1.1);
}
/* Responsive */
@media (max-width: 768px) {
.nav-menu {
display: none;
 }
 .video-slide-wrapper iframe {
position: absolute;
top: 0;
left: 0;
 width: 100%;
height: 100%;
transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
border: none;
opacity: 0;
z-index: 1;
aspect-ratio: 9/16;
background-color: #fff;

}
.hero-subheading ul {
padding-left:15px;
text-align: justify;
}
.mobile-menu-toggle {
display: block;
 }
.hero-inner {
flex-direction: column;
align-items: center;
text-align: center;
 }
.hero-left,
.hero-right {
width: 100%;
 }
.hero-button {
margin-right: auto;
margin-left: auto;
 }
}
/* awards section styling - REDUCED SPACING */
.awards-section {
background-color: #f7f7fa;
padding: 1rem; /* Reduced from 2rem */
border: 4px solid #e2e4eb;
border-radius: 8.31px;
box-shadow: inset 0.7px 3.5px 34.98px rgba(84, 99, 122, 0.1);
margin: 1rem auto; /* Reduced from 2rem */
max-width: 750px;
}
.awards-container {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 1rem; /* Reduced from 1.5rem */
}
.awards-title {
font-size: 2.5rem; /* Reduced from 3rem */
font-weight: 700;
color: #1c2b2b;
flex: 0 0 auto;
margin-left: auto;
margin-right: 3rem; /* Reduced from 5rem */
}
.awards-logos {
display: flex;
align-items: center;
flex-wrap: nowrap;
overflow-x: auto;
}
.award {
text-align: center;
flex: 0 0 auto;
min-width: 160px; /* Reduced from 180px */
}
.award img {
width: 100px; /* Reduced from 120px */
height: 100px; /* Reduced from 120px */
object-fit: contain;
border-radius: 50%;
border: 1px solid #ddd;
padding: 8px; /* Reduced from 10px */
background: #fff;
margin: 0 auto;
display: block;
}
.award p {
margin-top: 0.3rem; /* Reduced from 0.5rem */
font-size: 0.85rem; /* Reduced from 0.9rem */
color: #333;
}
@media (max-width: 768px) {
.awards-section {
padding: 0.75rem; /* Reduced mobile padding */
margin: 0.75rem auto; /* Reduced mobile margin */
}
.awards-title {
font-size: 1.75rem; /* Reduced from 2rem */
text-align: center;
margin-bottom: 0.75rem; /* Reduced from 1rem */
margin-left: auto;
margin-right: auto;
 }
.awards-container {
flex-direction: column;
align-items: center;
gap: 1rem; /* Reduced from 1.5rem */
 }
.awards-logos {
display: flex;
align-items: center;
gap: 0.75rem; /* Reduced from 1rem */
justify-content: center;
 }
.award {
min-width: 90px; /* Reduced from 100px */
text-align: center;
 }
.award img {
width: 70px; /* Reduced from 80px */
height: 70px; /* Reduced from 80px */
padding: 6px; /* Reduced from 8px */
 }
.award p {
font-size: 0.75rem; /* Reduced from 0.8rem */
 }
}
.testimonial-reels {
padding: 3rem 1rem;
background: white;
text-align: center;
}
.testimonial-title {
font-size: 1.8rem;
font-weight: 700;
margin-bottom: 2rem;
color: #1c2b2b;
}
.reel-videos {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2.5rem;
}
.reel-frame {
width: 200px;
aspect-ratio: 9 / 16;
border-radius: 12px;
position: relative;
overflow: hidden;
cursor: pointer;
transition: transform 0.3s ease;
}
.video-thumbnail {
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
border-radius: 8px;
position: absolute;
top: 0;
left: 0;
z-index: 2;
transition: transform 0.5s ease, opacity 0.5s ease;
}
.video-title {
position: absolute;
bottom: 10px;
left: 10px;
font-size: 0.95rem;
font-weight: 600;
color: white;
text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
z-index: 3;
text-align: left;
}
.reel-frame:hover .video-thumbnail {
transform: translateY(-100%);
opacity: 0;
}
.reel-frame.pink {
box-shadow: -12px -12px 5px 2px rgba(252, 228, 236, 1);
}
.reel-frame.yellow {
box-shadow: -12px -12px 5px 2px rgba(255, 240, 203, 1);
}
.reel-frame.blue {
box-shadow: -12px -12px 5px 2px rgba(235, 242, 255, 1);
}
.reel-frame.green {
box-shadow: -12px -12px 5px 2px rgba(235, 255, 243, 1);
}
.reel-frame iframe {
position: absolute;
top: 0;
left: 0;
z-index: 1;
width: 100%;
height: 100%;
border-radius: 8px;
border: none;
}
@media (max-width: 768px) {
.testimonial-title {
font-size: 1.1rem;
 }
}
/* smart section */
.smart-section {
background: #f8f8f8;
padding: 2rem;
max-width: 1100px;
margin: 2rem auto;
font-family: "Roboto", sans-serif;
}
.smart-container {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 2rem;
}
.smart-text {
flex: 1 1 40%;
}
.smart-text h2 {
font-size: 1.9rem;
color: #2356a3;
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.2rem;
flex-wrap: wrap;
}
.seven-day {
display: inline-flex;
align-items: center;
}
.icon-inline {
height: 2rem;
vertical-align: middle;
margin-left: 0.4rem;
}
.cta-wrapper {
display: flex;
align-items: center;
gap: 0.5rem;
margin-top: 1rem;
}
.enroll-span {
background: #ff9900;
color: #000;
border: none;
padding: 0.7rem 1.2rem;
font-weight: 600;
border-radius: 6px;
cursor: pointer;
font-size: 0.95rem;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
white-space: nowrap;
}
.pointer-icon {
width: 3.5rem;
}
.class-grid {
flex: 1 1 55%;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0.75rem;
}
.class-btn {
background: #2356a3;
color: #fff;
border: none;
padding: 0.6rem 0.5rem;
font-weight: 600;
border-radius: 10px;
cursor: pointer;
font-size: 0.9rem;
min-height: 48px;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
line-height: 1.2;
transition: 0.2s ease;
}
.class-btn:hover {
background: #2356a3;
transform: scale(1.1);
}
.class-btn.sold-out {
background: linear-gradient(135deg, #d2d2d2, #ada29f);
color: #fff;
cursor: not-allowed;
font-weight: 500;
margin-top: 0;
}
.class-btn.sold-out span {
font-size: 0.7rem;
margin-top: 2px;
}
@media (max-width: 768px) {
.smart-text h2 {
font-size: 1.5rem;
text-align: center;
justify-content: center;
 }
.smart-text p {
text-align: center;
justify-content: center;
 }
.cta-wrapper {
justify-content: center;
 }
.pointer-icon {
width: 3rem;
transform: rotate(90deg);
 }
.class-grid {
grid-template-columns: repeat(3, 1fr);
 }
}
/* ai section */
.ai-section {
max-width: 72rem;
padding: 50px 20px;
margin-left: auto;
margin-right: auto;
}
.ai-section h1 {
font-size: 2rem;
color: #162525;
margin-bottom: 40px;
white-space: nowrap;
overflow: hidden;
width: 30ch;
margin: 0 auto;
text-align: center;
}
.ai-section h1::after {
content: "";
display: inline-block;
width: 3px;
height: 1em;
background-color: #000;
margin-left: 4px;
animation: blink 1s steps(2, start) infinite;
vertical-align: middle;
}
@keyframes blink {
 to {
visibility: hidden;
 }
}
.ai-section .images-row {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 30px;
}
.ai-section .images-row img {
width: 200px;
height: auto;
border-radius: 15px;
}
.ai-section .subtext {
font-size: 1.3rem;
max-width: 700px;
margin: 0 auto;
color: #01317a;
font-weight: 600;
text-align: center;
font-family: "Crimson Pro", serif;
margin-bottom: 25px;
}
.ai-btn-wrapper {
text-align: center;
padding: 20px 0;
}
.ai-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
position: relative;
}
.ai-btn button {
background-color: #ff9900;
border: none;
border-radius: 12px;
padding: 10px 20px;
color: white;
font-weight: 600;
font-size: 15px;
cursor: pointer;
font-family: inherit;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.2s ease;
}
.ai-btn button:hover {
transform: scale(1.05);
}
.ai-btn img {
width: 30px;
height: 30px;
margin-left: 4px;
transform: translateX(4px);
}
@media (max-width: 768px) {
.ai-section {
padding: 40px 0;
 }
.ai-section h1 {
font-size: 1.3rem;
white-space: normal;
padding: 0 10px;
width: auto;
 }
.ai-section .images-row {
display: flex;
flex-wrap: nowrap;
gap: 15px;
overflow-x: auto;
overflow-y: hidden;
width: 100vw;
padding: 10px 20px;
margin-left: calc(-50vw + 50%);
box-sizing: content-box;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
justify-content: flex-start;
padding: 10px 20px;
margin-left: calc(-50vw + 50%);
width: 100vw;
box-sizing: border-box;
padding-right: calc(50vw - 50% + 20px);
 }
.ai-section .images-row img {
flex: 0 0 100vw;
width: 100vw;
max-height: 500px;
scroll-snap-align: center;
 }
.ai-section .subtext {
font-size: 1.1rem;
padding: 0 15px;
 }
}
.educator-section {
position: relative;
background-color: #fff0cb;
padding: 4rem 1rem;
text-align: center;
overflow: hidden;
}
.educator-section .team-image {
max-width: 100%;
width: 600px;
height: auto;
margin: 0 auto 2rem;
display: block;
}
.educator-section .headline {
font-size: 2rem;
font-weight: 700;
color: #222;
margin: 0;
}
.educator-section .subheadline {
font-size: 1rem;
color: #555;
margin-top: 0.5rem;
}
.doodle {
position: absolute;
width: 90px;
opacity: 0.9;
z-index: 0;
}
.doodle.left {
bottom: 10px;
left: 20px;
}
.doodle.right {
top: 60px;
right: 40px;
}
@media (max-width: 768px) {
.educator-section .team-image {
width: 90%;
 }
.doodle {
width: 50px;
 }
}
.custom-shape-divider-top-1752487518 {
position: absolute;
top: 0;
left: 0;
width: 100%;
overflow: hidden;
line-height: 0;
transform: rotate(180deg);
}
.custom-shape-divider-top-1752487518 svg {
position: relative;
display: block;
width: calc(100% + 1.3px);
height: 77px;
}
.custom-shape-divider-top-1752487518 .shape-fill {
fill: #f8f8f8;
}
.footer {
background-color: #f9fafd;
padding: 40px 20px 20px;
text-align: center;
font-family: "Segoe UI", sans-serif;
color: #1d1d1d;
border-top: 1px solid #ddd;
}
.footer-logo img {
width: 60px;
height: auto;
margin: 0 auto 20px;
}
.footer-text {
max-width: 600px;
margin: 0 auto 20px;
font-size: 14px;
line-height: 1.6;
color: #333;
}
.footer-apps {
margin: 20px 0;
}
.footer-apps img {
width: 120px;
margin: 0 10px;
}
.footer-social {
margin: 20px 0;
}
.footer-social a {
margin: 0 10px;
font-size: 18px;
color: #0f172a;
transition: color 0.3s ease;
}
.footer-social a:hover {
color: #007bff;
}
.footer-bottom {
margin-top: 30px;
display: flex;
flex-direction: column;
gap: 8px;
font-size: 13px;
color: #777;
}
.footer-copy {
margin-bottom: 5px;
}
.footer-links {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.footer-links a {
color: #1d1d1d;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #007bff;
}
/* Reservation Popup Styles */
.reservation-popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 9999;
/* Increased z-index to ensure it appears on top */
justify-content: center;
align-items: center;
}
.reservation-popup.show {
display: flex;
}
.reservation-content {
background-color: white;
border-radius: 8px;
width: 90%;
max-width: 380px;
padding: 20px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
position: relative;
z-index: 10000;
/* Even higher z-index for the content */
}
.reservation-content h2 {
text-align: center;
font-size: 20px;
font-weight: bold;
margin-bottom: 20px;
}
.timer-container {
display: flex;
justify-content: center;
margin-bottom: 20px;
gap: 10px;
}
.timer-box {
background-color: #1b9cff;
color: white;
width: 50px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 5px;
font-weight: bold;
font-size: 20px;
}
.timer-label {
font-size: 12px;
text-align: center;
color: #666;
margin-top: 5px;
}
.reservation-form .form-group {
margin-bottom: 15px;
}
.reservation-form label {
display: block;
margin-bottom: 5px;
font-size: 14px;
color: #666;
}
.reservation-form select,
.reservation-form input {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 14px;
}
.remaining-seats {
font-size: 14px;
color: #666;
margin: 10px 0;
text-align: center;
background-color: #eee;
padding: 5px;
border-radius: 5px;
}
.phone-input-container {
display: flex;
height: 45px;
}
.country-code {
width: 60px;
padding: 10px;
height: 45px;
border: 1px solid #ddd;
border-radius: 5px 0 0 5px;
background-color: #f5f5f5;
text-align: center;
}
.phone-input {
flex-grow: 1;
height: 45px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
border-top-left-radius: 0px;
border-bottom-left-radius: 0px;
}
.reserve-btn {
width: 100%;
background-color: #1b9cff;
color: white;
border: none;
padding: 12px;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
margin-top: 10px;
}
.close-popup {
position: absolute;
top: 10px;
right: 10px;
background: none;
border: none;
font-size: 20px;
cursor: pointer;
color: #666;
}
/* Ensure the popup appears above everything */
.modal-backdrop {
z-index: 9998;
}
@media (min-width: 768px) {
.show-in-mobile {
display: none;
 }
}