* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    box-sizing: border-box;
}
*,
*:after,
*:before {
    box-sizing: inherit;
}
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}
fieldset,
img,
a img,
:link img,
:visited img {
    border: 0;
}
ol,
ul {
    list-style: none;
}
body {
    font-family: "Nunito Sans", sans-serif;
    color: #2e2e2e;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}
header {
    position: relative;
    padding: 1rem 0;
    width: 100%;
    top: 0;
    z-index: 1000;
}


header {
    position: relative;
    padding: 20px 0;
    color: white;
    text-align: center;
    z-index: 1;
}
header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    min-height: 300px;
    background: linear-gradient(#f0ece6 0%,  #f0ece600 100%);
    z-index: -1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #2c5aa0;
    text-transform: uppercase;
    width: 100%;
    max-width: 200px;
}
.logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
}
.logo-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
nav a {
    text-decoration: none;
    color: #192e56;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
nav a:hover {
    color: #2c5aa0;
}
.mobile-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: 0.3s;
}
.hero {
    background: url(img/bg_promo_a.webp) no-repeat center center;
    background-size: cover;
    min-height: 75vh;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
    margin-top: -150px;
    z-index: 0;
    background-position: 0 26%;
}
.hero .container {
    position: relative;
    z-index: 1;
}
.hero-content {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 36vh;
}
.hero-left {
}
.hero-left h1 {
    color: rgb(24 46 86);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.1;
}
.hero-right {
    text-align: center;
    margin-top: auto;
}
.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    font-style: italic;
}
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    background: #5dade2;
    color: #fff;
    padding: 2rem ;
    border: none;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgb(93 173 226 / 0.4);
    width: 100%;
    height: 125px;
    max-width: 495px;
    text-transform: none;
}
.cta-button:hover {
    background: #4fa3d8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(93 173 226 / 0.6);
}
.student-note {
    margin-top: 1rem;
    font-size: 1.2rem;
}
.features {
    padding: 5rem 0;
    background: #f0ede6;
}
.features-header {
    text-align: center;
    margin-bottom: 3rem;
}
.features-header h2 {
    font-size: 2rem;
    color: #192e56;
    font-weight: 600;
    letter-spacing: 1px;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.feature-card {
    background: rgb(173 216 230 / 0.3);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: left;
}
.feature-card h3 {
    font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 600;
}
.feature-card p {
    color: #444;
    line-height: 1.5;
    font-size: 0.95rem;
}
.testimonials {
    padding: 4rem 0;
    background: #fff;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 5rem;
}
.testimonials-header p {
    font-size: 1.2rem;
    color: #53b7e8;
    font-weight: bold;
}
.testimonials-header h2 {
    font-size: 2.8rem;
    color: #0a0a0a;
    font-weight: 600;
}
.testimonials-header .highlight {
    display: block;
    color: #53b7e8;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.testimonial-avatar {
    width: 35px;
    height: 35px;
    background: #ddd;
    border-radius: 50%;
    margin-right: 8px;
    overflow: hidden;
}
.testimonial-name {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}
.testimonial-rating {
    color: #4285f4;
    margin-left: auto;
    font-size: 0.8rem;
}
.testimonial-text {
    color: #666;
    line-height: 1.4;
    font-size: 0.85rem;
}
.build {
    background: #f0ede6;
    position: relative;
    padding-bottom: 5rem;
}
.build .container {
    position: relative;
}
.build .container::before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #ffffff8c;
    overflow: hidden;
    border-radius: 20px;
}
.build_bg {
    min-height: 448px;
    background: url(img/bg_p.webp) no-repeat center center;
    background-size: cover;
    overflow: hidden;
    border-radius: 20px;
}
.contact {
    padding: 4rem 0;
    background: #f8f9fa;
}
.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}
.contact-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.contact-header p {
    color: #5dade2;
    font-size: 1.1rem;
    font-weight: 300;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.map-container {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
}
.map-placeholder {
    background: #e9ecef;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
}
.contact-details {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
}
.contact-item {
    margin-bottom: 2rem;
}
.contact-item h4 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.contact-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}
.schedule-table td {
    padding: 0.3rem 0;
    font-size: 0.85rem;
    color: #666;
}
.schedule-table td:first-child {
    font-weight: 500;
    width: 40%;
}
.vision {
    padding: 4rem 0;
    background: url(img/bg_f.png) no-repeat center center;
    background-size: cover;
    text-align: center;
}
.vision h2 {
    font-size: 3rem;
    color: #0a0a0a;
    margin-bottom: 1rem;
    font-weight: 800;
}
.vision .highlight {
    color: #5cc2fc;
}
.vision p {
    font-size: 1.2rem;
    color: #0a0a0a;
    max-width: 600px;
    font-weight: 300;
    text-align: left;
}
.vis-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cta-button-vis {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    width: 100%;
    max-width: 240px;
    color: #2e2e2e;
    border: 1.5px solid #0a0a0a;
    border-radius: 50px;
    letter-spacing: 0.16em;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #f0ede6;
    text-decoration: none;
    padding: 0 2rem;
}
.cta-button-vis:hover {
    background: #b3e7ff;
}
footer {
    background-color: #b3e7ff;
    background-image: linear-gradient(180deg, #b3e7ff 0%, rgb(197 237 255) 85%, #ffffff 100%) !important;
    color: #0a0a0a;
    padding: 3rem 0 1rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 800;
}
.footer-section ul {
    list-style: none;
}
.footer-section li {
    margin-bottom: 0.5rem;
}
.footer-section a {
    color: #0a0a0a;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer-section a:hover {
    color: #fff;
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgb(255 255 255 / 0.2);
    color: rgb(255 255 255 / 0.7);
    font-size: 0.85rem;
}
a.logo-footer {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.socials {
    display: flex;
    gap: 10px;
}
.socials a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 4px;
}
.socials a:hover {
    background: #3882fa;
}
.socials a:hover svg path {
    fill: #fff;
}
.socials a svg {
    width: 22px;
    height: 22px;
}
@media (max-width: 1220px) {
    .container {
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .hero {
        background-position: center;
    }
    .vis-box {
        flex-direction: column;
        text-align: center;
    }
    .vision p {
        text-align: center;
        margin-bottom: 20px;
    }
    .mobile-menu {
        display: flex;
    }
    .logo {
        width: 100%;
        max-width: 150px;
    }
    .logo img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
        flex-direction: column;
        padding: 1rem;
    }
    nav ul.active {
        display: flex;
        z-index: 999;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    .hero-left h1 {
        font-size: 3.2rem;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .cta-button {
        font-size: 1.5rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}
html {
    scroll-behavior: smooth;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-main {
    font-size: 0.9rem;
    font-weight: 700;
}
.logo-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: #666;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 32px;
    color: #1e3a8a;
    font-weight: 500;
    letter-spacing: 2px;
}
.info-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.info-card {
    background: #c3dce6;
    padding: 34px 30px;
    border-radius: 25px;
    position: relative;
    min-height: 212px;
    align-content: center;
    justify-content: center;
}
.info-card h3 {
    font-size: 4rem;
    color: #192e56;
    font-weight: 700;
    margin-bottom: 8px;
}
.info-card h3 span {
    font-size: 1.5rem;
    color: #192e56;
    font-style: italic;
    margin-bottom: 12px;
    font-weight: 500;
}
.info-subtitle {
    font-size: 16px;
    color: #192e56;
    font-style: italic;
    margin-bottom: 12px;
    font-weight: 500;
}
.info-card p {
    font-size: 1.5rem;
    color: #192e56;
    line-height: 1.4;
    margin-bottom: 8px;
}
.info-card .small-text {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
}
.map-container {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgb(0 0 0 / 0.15);
    height: 450px;
}
.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8f4f8, #d1ecf1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.map-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgb(173 216 230 / 0.3) 25%, transparent 25%), linear-gradient(-45deg, rgb(173 216 230 / 0.3) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgb(173 216 230 / 0.3) 75%),
    linear-gradient(-45deg, transparent 75%, rgb(173 216 230 / 0.3) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0;
    opacity: 0.4;
}
.map-street {
    position: absolute;
    background: rgb(255 255 255 / 0.8);
    border-radius: 2px;
}
.map-street.horizontal {
    height: 3px;
    width: 100%;
    top: 50%;
    left: 0;
}
.map-street.vertical {
    width: 3px;
    height: 100%;
    left: 50%;
    top: 0;
}
.map-street.diagonal1 {
    height: 2px;
    width: 80%;
    top: 30%;
    left: 10%;
    transform: rotate(15deg);
}
.map-street.diagonal2 {
    height: 2px;
    width: 70%;
    top: 70%;
    left: 15%;
    transform: rotate(-20deg);
}
.location-pin {
    position: absolute;
    top: 40%;
    right: 25%;
    width: 40px;
    height: 40px;
    background: #e53e3e;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgb(229 62 62 / 0.4);
    z-index: 10;
}
.location-pin::before {
    content: "";
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    transform: rotate(45deg);
}
.address-bubble {
    position: absolute;
    right: 30%;
    bottom: 10%;
    background: #1e3a8a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgb(30 58 138 / 0.3);
    z-index: 10;
}
.green-area {
    position: absolute;
    background: rgb(34 197 94 / 0.3);
    border-radius: 8px;
}
.green-area.area1 {
    width: 120px;
    height: 80px;
    bottom: 25%;
    left: 15%;
}
.green-area.area2 {
    width: 90px;
    height: 60px;
    top: 15%;
    left: 20%;
}
.water-area {
    position: absolute;
    background: rgb(59 130 246 / 0.3);
    border-radius: 15px;
    bottom: 20%;
    right: 10%;
    width: 100px;
    height: 70px;
}
@media (max-width: 768px) {
    .info-map-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .section-header h2 {
        font-size: 24px;
    }
    .info-card h3 {
        font-size: 28px;
    }
    .info-card {
        padding: 25px 20px;
    }
    .map-container {
        height: 300px;
    }
    .address-bubble {
        font-size: 11px;
        padding: 8px 15px;
        right: 33%;
    }
    .location-pin {
        width: 30px;
        height: 30px;
    }
    .location-pin::before {
        width: 8px;
        height: 8px;
    }
}
@media (max-width: 480px) {
    .info-card h3 {
        font-size: 24px;
    }
    .info-card {
        padding: 20px 15px;
        border-radius: 20px;
    }
    .map-container {
        height: 250px;
        border-radius: 15px;
    }
}
