/* ==========================
   GOOGLE FONT
========================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f7f9fc;
    color: #222;
    line-height: 1.7;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================
   CONTAINER
========================== */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ==========================
   HEADER
========================== */

header {
    width: 100%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    position: sticky;
    top: 0;
    z-index: 999;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 70px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #1e3a8a;
    font-weight: 600;
    transition: .3s;
}

nav ul li a:hover {
    color: #7c3aed;
}

/* ==========================
   BUTTON
========================== */

.btn {
    display: inline-block;
    padding: 14px 19px;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 8px 20px rgba(37, 99, 235, .3);
    border: 1px solid #345beb;
}

.btn:hover {
    background: linear-gradient(135deg, #7C3AED, #2563EB);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(124, 58, 237, .35);
}

.btn2 {
    margin-left: 10px;
    background: #7c3aed;
}

.btn2:hover {
    background: #2563eb;
}

/* ==========================
   HERO
========================== */

.hero {
    padding: 42px 0px 0px 0px;
    background: linear-gradient(135deg, #eef4ff, #ffffff);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

/* ==========================
   SECTION TITLE
========================== */

section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    color: #1e3a8a;
    font-size: 38px;
    margin-bottom: 20px;
}

section p {
    text-align: center;
}

/* ==========================
   COURSES
========================== */

.course-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .08);
    transition: .3s;
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 50px;
    color: #2563eb;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 10px;
    color: #7c3aed;
}

/* ==========================
   WHY CHOOSE
========================== */

.why {
    background: #eef4ff;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.features div {
    background: #fff;
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, .08);
}

.features i {
    font-size: 45px;
    color: #2563eb;
    margin-bottom: 15px;
}

.features h3 {
    color: #1e3a8a;
}

/* ==========================
   FOOTER
========================== */

footer {
    background: #1e3a8a;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

footer h3 {
    margin-bottom: 15px;
}

footer p {
    margin: 8px 0;
}

/* ==========================
   SIMPLE ANIMATION
========================== */

.card,
.features div,
.hero-image img {
    transition: .4s ease;
}

.hero-image img:hover {
    transform: scale(1.03);
}

.about {
    padding: 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.about-content h5 {
    color: #2563EB;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 42px;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.about-list div {
    font-weight: 600;
}

.about-list i {
    color: #22C55E;
    margin-right: 10px;
}

/* ==========================
POPULAR COURSES
========================== */

.popular-courses {
    padding: 100px 0;
    background: #f8fbff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    color: #2563EB;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 42px;
    color: #1E3A8A;
    margin: 15px 0;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.course-card {
    position: relative;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
    overflow: hidden;
}

.course-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, .18);
}

.course-card .icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, .25);
    transition: .4s;
}

.course-card:hover .icon {
    transform: rotate(10deg) scale(1.08);
    background: linear-gradient(135deg, #7C3AED, #2563EB);
}

.course-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-card:hover h3 {
    background: linear-gradient(135deg, #7C3AED, #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.course-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.course-card a {
    color: #2563EB;
    font-weight: 600;
    text-decoration: none;
}

.course-card a:hover {
    color: #7C3AED;
}

/* ==========================
WHY CHOOSE US
========================== */

.why-us {
    padding: 100px 0;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    position: relative;
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;
    overflow: hidden;
}

.why-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, .18);
}

.why-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #7C3AED, #06B6D4, #2563EB);
    background-size: 300% 100%;
    animation: gradientMove 5s linear infinite;
}

.why-card i {
    font-size: 45px;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.why-card i {
    font-size: 45px;
    color: #2563EB;
    margin-bottom: 20px;
}

.why-card h3 {
    color: #1E3A8A;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.7;
}

/* ==========================
PLACEMENT PROCESS
========================== */

.placement-process {
    padding: 100px 0;
    background: #F8FAFC;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transition: .4s;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(37, 99, 235, .18);
}

.process-card .number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #2563EB;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-card i {
    font-size: 45px;
    color: #2563EB;
    margin: 20px 0;
}

.process-card h3 {
    color: #1E3A8A;
    margin-bottom: 15px;
}

.process-card p {
    color: #666;
    line-height: 1.7;
}

/*========================================
        STUDENT SUCCESS STATISTICS
========================================*/

/*====================================
    STUDENT SUCCESS STATISTICS
====================================*/

.statistics {
    position: relative;
    padding: 100px 0;
    background: url("../image/about.jpg") center center/cover no-repeat;
    overflow: hidden;
}

/* Dark Overlay */

.statistics::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 18, 45, 0.78);
}

.statistics .container {
    position: relative;
    z-index: 2;
}

.statistics .section-title {
    text-align: center;
    color: #fff;
}

.statistics .section-title span {
    color: #60A5FA;
    letter-spacing: 2px;
    font-weight: 600;
}

.statistics .section-title h2 {
    color: #fff;
    font-size: 42px;
    margin: 15px 0;
}

.statistics .section-title p {
    color: #E2E8F0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: .4s;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .18);
}

.stat-card h2 {
    font-size: 48px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #60A5FA, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    color: #fff;
    font-size: 18px;
}

@media(max-width:992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .statistics {
        padding: 70px 0;
    }

    .statistics .section-title h2 {
        font-size: 32px;
    }
}


/*====================================
        STUDENT TESTIMONIALS
====================================*/

.testimonials {

    padding: 100px 0;

    background: #F8FAFC;

}

.testimonial-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.testimonial-card {

    background: #fff;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    transition: .4s;

    position: relative;

}

.testimonial-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(37, 99, 235, .18);

}

.testimonial-card img {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    object-fit: cover;

    border: 4px solid #2563EB;

    margin-bottom: 20px;

}

.stars {

    color: #FFC107;

    font-size: 20px;

    margin-bottom: 20px;

    letter-spacing: 2px;

}

.testimonial-card p {

    color: #666;

    line-height: 1.8;

    margin-bottom: 25px;

    font-style: italic;

}

.testimonial-card h3 {

    color: #1E3A8A;

    margin-bottom: 8px;

}

.testimonial-card span {

    color: #2563EB;

    font-size: 15px;

    font-weight: 600;

}

/*=========================
Responsive
=========================*/

@media(max-width:992px) {

    .testimonial-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .testimonials {

        padding: 70px 0;

    }

    .testimonial-grid {

        grid-template-columns: 1fr;

    }

    .testimonial-card {

        padding: 30px;

    }

}

@media(max-width:480px) {

    .testimonial-card img {

        width: 75px;

        height: 75px;

    }

    .testimonial-card {

        padding: 25px;

    }

}

/*=========================
Gallery Preview
==========================*/

.gallery-preview {
    padding: 100px 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    transition: .4s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.gallery-btn {
    text-align: center;
    margin-top: 40px;
}

@media(max-width:768px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

}

/*=========================
FAQ
==========================*/

.faq {
    padding: 100px 0;
    background: #F8FAFC;
}

.faq-box {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    padding: 25px;
    border-left: 5px solid #2563EB;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
}

.faq-item h3 {
    color: #1E3A8A;
    margin-bottom: 10px;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}


/*=========================
CTA
==========================*/

/*====================================
        ADMISSION CTA
====================================*/

.cta {

    position: relative;

    padding: 120px 0;

    background: url("../image/banner.jpg") center center/cover no-repeat;

    overflow: hidden;

}

/* Dark Overlay */

.cta::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(8, 18, 45, .75);

}

.cta .container {

    position: relative;

    z-index: 2;

    text-align: center;

    color: #fff;

}

.cta h2 {

    font-size: 48px;

    margin-bottom: 20px;

    font-weight: 700;

}

.cta p {

    max-width: 750px;

    margin: auto;

    line-height: 1.9;

    font-size: 18px;

    color: #F1F5F9;

    margin-bottom: 40px;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

.cta .btn {

    padding: 15px 35px;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

}

.cta .btn2 {

    background: #ffffff;

    color: #2563EB;

}

.cta .btn2:hover {

    background: #2563EB;

    color: #fff;

}

/* Responsive */

@media(max-width:768px) {

    .cta {

        padding: 80px 20px;

    }

    .cta h2 {

        font-size: 32px;

    }

    .cta p {

        font-size: 16px;

    }

    .cta-buttons {

        flex-direction: column;

        align-items: center;

    }

    .cta .btn {

        width: 250px;

    }

}

/*=========================
FOOTER
==========================*/

footer {

    background: #0F172A;

    color: #fff;

    padding: 80px 0 30px;

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 40px;

}

.footer-logo {

    width: 180px;

    margin-bottom: 20px;

}

footer h3 {

    margin-bottom: 20px;

}

footer ul {

    list-style: none;

    padding: 0;

}

footer ul li {

    margin-bottom: 12px;

}

footer ul li a {

    color: #CBD5E1;

    text-decoration: none;

}

footer ul li a:hover {

    color: #fff;

}

.social {

    margin-top: 20px;

}

.social a {

    width: 42px;

    height: 42px;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    background: #2563EB;

    border-radius: 50%;

    margin-right: 10px;

    color: #fff;

    text-decoration: none;

    transition: .3s;

}

.social a:hover {

    background: #7C3AED;

}

.copy {

    text-align: center;

    margin-top: 30px;

    color: #94A3B8;

}

@media(max-width:768px) {

    .footer-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }

    .social {

        display: flex;

        justify-content: center;

    }

}


/*=========================
WHATSAPP BUTTON
=========================*/

.whatsapp {

    position: fixed;

    right: 77px;

    bottom: 20px;

    width: 65px;

    height: 65px;

    background: #25D366;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    font-size: 32px;

    text-decoration: none;

    z-index: 999;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .3);

    animation: pulse 2s infinite;

}

.call {

    position: fixed;

    left: 20px;

    bottom: 20px;

    width: 65px;

    height: 65px;

    background: #ff0000;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    font-size: 28px;

    text-decoration: none;

    z-index: 999;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .3);

}

/*=========================
PULSE
=========================*/

@keyframes pulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }

    100% {
        transform: scale(1);
    }

}

@media(max-width:768px) {



    .whatsapp,

    .call {

        width: 55px;

        height: 55px;

        font-size: 25px;

    }

}

/*====================================
        COURSES DROPDOWN
====================================*/

.dropdown {
    position: relative;
}

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 7px;
}

.dropdown>a i {
    font-size: 11px;
    transition: .3s;
}

/* Dropdown Menu */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);

    width: 325px;

    background: #fff;

    padding: 12px 0;

    border-radius: 12px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);

    opacity: 0;
    visibility: hidden;

    transition: .3s;

    z-index: 1000;
}

/* Show Dropdown */

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Items */

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 20px;

    color: #1E3A8A !important;

    font-size: 15px !important;

    transition: .3s;
}

.dropdown-menu li a i {
    width: 25px;
    color: #2563EB;
    font-size: 17px;
}

.dropdown-menu li a:hover {
    background: linear-gradient(90deg,
            #EFF6FF,
            #F5F3FF);

    color: #2563EB !important;

    padding-left: 25px;
}

.dropdown:hover>a i {
    transform: rotate(180deg);
}
.course-info {
    margin: 18px 0;
    font-size: 14px;
    color: #666;
}

.course-info i {
    margin-right: 6px;
}

.enroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 100%;
    padding: 13px 20px;

    background: linear-gradient(
        135deg,
        #2563EB,
        #7C3AED
    );

    color: #fff;
    text-decoration: none;

    border-radius: 10px;

    font-weight: 600;

    transition: all .3s ease;
}

.enroll-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(37, 99, 235, .25);
}

.enroll-btn i {
    font-size: 18px;
}

/* =========================
   TEAM / ABOUT SECTION
========================= */

.about-team {
    padding: 70px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 45px;
}

.section-title h2 {
    margin-bottom: 12px;
}

.section-title p {
    color: #666;
    line-height: 1.7;
}


/* Team Grid */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}


/* Team Card */

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
}


/* Photo */

.team-photo {
    width: 100%;
    height: 475px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.04);
}


/* Content */

.team-content {
    padding: 30px;
}

.team-role {
    display: inline-block;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #6c0c91;
}

.team-content h3 {
    font-size: 25px;
    margin-bottom: 18px;
}

.team-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: left;
}


/* Mobile */

@media (max-width: 768px) {

    .about-team {
        padding: 50px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .team-photo {
        height: 330px;
    }

    .team-content {
        padding: 24px;
    }

    .team-content h3 {
        font-size: 22px;
    }

}