/*==================================
        GLOBAL
==================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #fff;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

/*==================================
        TOP BAR
==================================*/

.top-bar {
    background: #0B3A78;
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
}

.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.top-bar a:hover {
    color: #FFD54F;
}

/*==================================
        HEADER
==================================*/

header {
    width: 100%;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.navbar {
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 140px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.menu-toggle {
    display: none;
}

.nav-links a {
    color: #222;
    font-weight: 500;
    position: relative;
    transition: .3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #0B3A78;
    transition: .3s;
}

.nav-links a:hover {
    color: #0B3A78;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn {
    background: #0B3A78;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s;
}

.btn:hover {
    background: #FFD54F;
    color: #111;
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    margin-left: 15px;
}

.btn-outline:hover {
    background: #fff;
    color: #0B3A78;
}

/*==================================
        HERO
==================================*/
/*==================================
            HERO
==================================*/
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url("Images/hero.jpeg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    color: #fff;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    margin-bottom: 30px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    font-size: 15px;
    font-weight: 500;
}

.hero h1 {
    font-size: 78px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #FFD54F;
}

.hero p {
    max-width: 720px;
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 1.8;
    color: #f5f5f5;
}

.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.hero-features i {
    color: #FFD54F;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 28px;
    animation: bounce 1.8s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 28px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

/*==================================
            ABOUT
==================================*/

.about {
    padding: 70px 0;
    background: #F8FAFC;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 80px;
}

.section-tag {
    display: inline-block;
    background: #EAF2FF;
    color: #0B3A78;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #111;
}

.about-content h2 span {
    color: #0B3A78;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 35px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature i {
    color: #0B3A78;
    font-size: 18px;
}

.founder-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    max-width: 400px;
    margin-left: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
    transition: .4s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);
}

.founder-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: .4s ease;
}

.founder-card:hover img {
    transform: scale(1.04);
}

.founder-info {
    padding: 28px 25px 30px;
    text-align: center;
}

.founder-info h3 {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.founder-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}

.founder-info span {
    display: inline-block;
    background: #FFF3F3;
    color: #D62828;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
}

/*==================================
            COURSES
==================================*/

.courses {
    padding: 70px 0;
    background: #fff;
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin: 20px 0;
    line-height: 1.2;
}

.section-title span {
    color: #0B3A78;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
    color: #666;
    font-size: 18px;
    line-height: 1.8;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.course-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    min-height: 340px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    transition: .35s ease;
}

.course-card:hover {
    transform: translateY(-12px);
    border-color: #0B3A78;
    box-shadow: 0 20px 45px rgba(11, 58, 120, .15);
}

.course-card img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    margin-bottom: 25px;
    transition: .35s ease;
}

.course-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.course-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.3;
}

.course-card p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

.courses-heading {
    text-align: center;
    margin-bottom: 70px;
}

.courses-heading .section-tag {
    display: inline-block;
    margin-bottom: 20px;
}

.courses-heading .section-title {
    margin: 20px 0;
}

.courses-heading .section-desc {
    max-width: 700px;
    margin: 0 auto;
}

/*==================================
        WHO CAN ENROLL
==================================*/

.enroll {
    padding: 70px 0;
    background: #F8FAFC;
    text-align: center;
}

.enroll .section-tag {
    display: inline-block;
    margin: 0 auto 20px;
}


.enroll .section-title {
    text-align: center;
    margin: 0 auto 20px;
}

.enroll .section-desc {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}

.enroll {
    padding: 70px 0;
    background: #F8FAFC;
}

.enroll-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.enroll-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.enroll-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #edf2f7;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.enroll-card:hover {
    transform: translateX(10px);
    border-color: #0B3A78;
}

.enroll-card i:first-child {
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0B3A78;
    color: #fff;
    border-radius: 50%;
    font-size: 26px;
}

.enroll-card h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.enroll-card p {
    color: #666;
    line-height: 1.6;
}

.enroll-video {
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
}

.enroll-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enroll-cta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 70px;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #0B3A78;
    color: #fff;
    padding: 28px;
    border-radius: 20px;
    transition: .35s;
}

.cta-card:hover {
    transform: translateY(-8px);
    background: #082B5B;
}


.cta-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.cta-card p {
    color: #e8e8e8;
    font-size: 15px;
}

.cta-card>i:first-child {
    font-size: 36px;
}

.cta-card .fa-chart-pie {
    color: #FFD54F;
}

.cta-card .fa-whatsapp {
    color: #25D366;
}

/* ==========================
        GALLERY
========================== */

.gallery {
    padding: 70px 0;
    background: #fff;
}

.gallery-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.gallery-heading h2 {
    font-size: 48px;
    color: #0B3A78;
    margin-bottom: 15px;
}

.gallery-heading p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    height: 320px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    cursor: pointer;
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* First poster image */
.poster img {
    object-fit: contain;
    background: #fff;
    padding: 10px;
}

/* ==========================
        LIGHTBOX
========================== */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    transition: .3s;
}

.close:hover {
    color: #FFD54F;
}

/* ==========================
        CONTACT
========================== */

.contact {
    padding: 70px 0;
    background: #F8FAFC;
}

.contact-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-heading h2 {
    font-size: 48px;
    color: #0B3A78;
    margin-bottom: 15px;
}

.contact-heading p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr .9fr;
    gap: 35px;
    align-items: start;
}

/* ==========================
        CONTACT FORM
========================== */

.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    transition: .3s;
    outline: none;
}

.contact-form textarea {
    resize: none;
    min-height: 170px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0B3A78;
    box-shadow: 0 0 0 4px rgba(11, 58, 120, .12);
}

.contact-form button {
    width: 100%;
    border: none;
    background: #0B3A78;
    color: #fff;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.contact-form button:hover {
    background: #082B5B;
    transform: translateY(-3px);
}

/* ==========================
        FAQ (RIGHT SIDE)
========================== */

.faq {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    position: sticky;
    top: 110px;
}

.faq-heading {
    text-align: center;
    margin-bottom: 25px;
}

.faq-heading .section-tag {
    display: inline-block;
    margin-bottom: 15px;
}

.faq-heading h2 {
    font-size: 30px;
    color: #0B3A78;
    line-height: 1.3;
    margin-bottom: 10px;
}

.faq-heading p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.faq-wrapper {
    margin-top: 20px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: .3s;
}

.faq-item:hover {
    border-color: #0B3A78;
}

.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #0B3A78;
    transition: .3s;
    text-align: left;
}

.faq-question:hover {
    background: #F5F9FF;
}

.faq-question i {
    font-size: 14px;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 180px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

/*==========================
          FOOTER
==========================*/

.footer {
    margin-top: 50px;
    background: linear-gradient(135deg, #071A3D, #123C78);
    color: #fff;
    border-radius: 35px 35px 0 0;
    overflow: hidden;
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .08);
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1.2fr;
    gap: 55px;
    padding: 50px 0 40px;
}

/*==========================
        ABOUT
==========================*/

.footer-logo {
    width: 190px;
    background: #fff;
    padding: 12px;
    border-radius: 15px;
    margin-bottom: 18px;
    transition: .3s;
}

.footer-logo:hover {
    transform: translateY(-3px);
}

.footer-about p {
    max-width: 360px;
    color: #D8E5F5;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 22px;
}

/*==========================
        HEADINGS
==========================*/

.footer h3 {
    font-size: 26px;
    margin-bottom: 22px;
    position: relative;
}

.footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: #FFD166;
    border-radius: 20px;
}

/*==========================
        LINKS
==========================*/

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #E8F0FF;
    transition: .3s;
}

.footer-links a::before {
    content: "➜";
    opacity: 0;
    transform: translateX(-8px);
    transition: .3s;
}

.footer-links a:hover {
    color: #FFD166;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/*==========================
        CONTACT
==========================*/

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #E8F0FF;
    line-height: 1.7;
}

.footer-contact i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #4DA3FF;
    flex-shrink: 0;
    font-size: 15px;
}

/*==========================
        BUTTONS
==========================*/

.footer-buttons {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.footer-btn {
    min-width: 160px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, .3);
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    align-items: center;
    justify-content: center;
}

.whatsapp-btn i {
    font-size: 28px;
    color: #fff;
    line-height: 1;
}

.demat-btn {
    background: #FFD166;
    color: #071A3D;
}

.demat-btn:hover {
    background: #fff;
    transform: translateY(-3px);
}

/*==========================
        YOUTUBE
==========================*/

.yt-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 22px;
    background: #FF0000;
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.yt-btn:hover {
    background: #D90000;
    transform: translateY(-3px);
}

.yt-btn i {
    font-size: 18px;
}

/*==========================
      COPYRIGHT
==========================*/

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .15);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 55px;
    gap: 15px;
}

.footer-bottom p {
    font-size: 15px;
    color: #D0DCEF;
}

.footer-bottom a {
    color: #FFD166;
    font-weight: 600;
    transition: .3s;
}

.footer-bottom a:hover {
    color: #fff;
}

body {
    background: #F8FAFC;
}

.about,
.courses,
.enroll,
.gallery,
.contact {
    background: #F8FAFC;
}

.disclaimer-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.disclaimer-box {
    width: 90%;
    max-width: 850px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.disclaimer-header {
    background: #C62828;
    color: #fff;
    padding: 18px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

.disclaimer-content {
    max-height: 420px;
    overflow: auto;
    padding: 25px;
    line-height: 1.9;
}

.agree-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 30px;
    cursor: pointer;
}

.agree-box input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    flex-shrink: 0;
    cursor: pointer;
}

.agree-box span {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
}

.agree-box strong {
    color: #0B3A78;
}

.disclaimer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 25px;
}

.disclaimer-buttons button {
    border: none;
    padding: 15px 35px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 8px;
}

#acceptBtn {
    background: #2E7D32;
    color: #fff;
}

#acceptBtn:disabled {
    background: #bbb;
    cursor: not-allowed;
}

#declineBtn {
    background: #C62828;
    color: #fff;
}