/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== BODY ===== */
body {
    min-height: 100vh;
    background: linear-gradient(135deg, #4b1c7a, #7a3fb0);
}

/* ===== HEADER ===== */
.site-header {
    width: 100%;
    background: yellow;
    position: relative;
    padding: 14px 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #000;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav ul li a {
    color: #000;
    text-decoration: none;
    font-size: 20px;
}

/* MENU ICON */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #000;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
  
    background: #fff;
    display: flex;
    align-items: center;
    padding-top: 42px;
    padding-bottom: 52px;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
/*    background: rgb(23 22 23 / 75%);*/
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* HERO TEXT */
.hero-text {
    color: #000;
    max-width: 520px;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
}

/* CTA */
.btn {
    padding-top: 40px;
}

a.cta {
    background: #ffff03;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 20px;
    color: #000;
    font-weight: 600;
}

/* ===== LOGIN BOX ===== */
.login-box {
    background: #fff;
    padding: 35px 30px;
    width: 100%;
    max-width: 380px;
    border-radius: 14px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    text-align: center;
}

.login-box h2 {
    margin-bottom: 20px;
    color: #5b2b90;
}

.login-box input {
    width: 100%;
    padding: 12px 14px;
    margin: 12px 0;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.login-box button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #4b1c7a, #7a3fb0);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.login-box p {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    min-height: 100vh;
    background: #f4f6f9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 15px;
}

.contact-container {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 10px;
    color: #222;
}

.contact-container p {
    text-align: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.form-group textarea {
    resize: none;
    height: 120px;
}

button {
    width: 100%;
    padding: 12px;
    background: #0056b3;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #003f87;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav ul {
               position: absolute;
        top: 60px;
        right: 0px;
        background: #ffffff;
        width: 416px;
        flex-direction: column;
        text-align: center;
        display: none;
        padding: 15px 0;
    }

    .nav ul.show {
        display: flex;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .nav ul {
        display: none;
    }

    .nav ul.show {
               display: flex;
        z-index: 11;
        text-align: justify;
        padding-left: 20px;
    }
}

.image-slider-section {
    width: 100%;
    height: 589px;
    position: relative;
    overflow: hidden;
}

.image-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.image-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: sliderFade 25s infinite;
}

/* Animation Delay */
.image-slider .slide:nth-child(1) { animation-delay: 0s; }
.image-slider .slide:nth-child(2) { animation-delay: 5s; }
.image-slider .slide:nth-child(3) { animation-delay: 10s; }
.image-slider .slide:nth-child(4) { animation-delay: 15s; }
.image-slider .slide:nth-child(5) { animation-delay: 20s; }

@keyframes sliderFade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    30% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

/* Mobile */
@media (max-width: 768px) {
    .image-slider-section {
        height: 160px;
    }
        .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0px 20px;
    }
}

.mission-vision {
    padding: 80px 20px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

.mv-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

/* TEXT BOXES */
.mv-box {
    max-width: 420px;
    z-index: 2;
}

.mv-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.mv-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* LEFT CURVE */
.shape-left {
    position: absolute;
    left: -120px;
    top: 120px;
    width: 260px;
    height: 420px;
    border-radius: 0 300px 300px 0;
    background: #9fc6e7;
}

/* RIGHT CURVES */
.shape-right-top {
    position: absolute;
    right: -120px;
    top: 40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 40px solid #c7e3b5;
}

.shape-right-bottom {
    position: absolute;
    right: -100px;
    bottom: 0;
    width: 240px;
    height: 360px;
    border-radius: 300px 0 0 300px;
    background: #c7e3b5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .mv-container {
        flex-direction: column;
        gap: 40px;
    }

    .shape-left,
    .shape-right-top,
    .shape-right-bottom {
        display: none;
    }

    .mv-box {
        max-width: 100%;
    }
}

.quick-links {
   
    padding: 80px 20px;
    color: #fff;
}

.links-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.links-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
}

.links-title span {
    display: block;
    width: 120px;
    height: 3px;
    background: #f5c400;
    margin: 15px auto 0;
    position: relative;
}

.links-title span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -4px;
    transform: translateX(-50%);
    width: 18px;
    height: 10px;
    background: #fff;
}

/* GRID */
.links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px 30px;
    text-align: center;
}

/* LINK BOX */
.link-box {
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.link-box:hover {
    transform: translateY(-6px);
}

.link-box .icon {
    width: 50px;
    height: 50px;
    border: 2px solid #f5c400;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5c400;
    font-size: 22px;
}

.link-box p {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}
.footer-links {
    background: linear-gradient(135deg, #1b1f26, #242a32);
    padding: 70px 20px;
    color: #bfc3c8;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* TITLE */
.footer-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.footer-title span {
    display: block;
    width: 120px;
    height: 3px;
    background: #f5c400;
    margin-top: 12px;
    position: relative;
}

.footer-title span::before {
    content: "";
    position: absolute;
    left: 0;
    top: -4px;
    width: 18px;
    height: 10px;
    background: #fff;
}

/* QUICK LINKS */
.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    border-bottom: 1px dashed rgba(255,255,255,0.15);
}

.quick-links li a {
    display: block;
    padding: 12px 0 12px 20px;
    color: #bfc3c8;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.quick-links li a::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #f5c400;
    font-size: 18px;
}

.quick-links li a:hover {
    color: #fff;
}

/* CONTACT */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: #14171c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 4px;
}

.contact-text strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.contact-text p {
    margin: 0 0 8px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
section.quick-links.fdhfd {
    background: black;
    padding-bottom: 61px;
    padding-top: 53px;
}
