/* =========================================================
   TELANGANA STATE DRONE ACADEMY
   MAIN WEBSITE STYLES
========================================================= */


/* =========================================================
   BASIC RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #080d12;
    color: #ffffff;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   NAVIGATION BAR
========================================================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;

    display: flex;
    align-items: center;

    padding: 0 55px;

    z-index: 1000;

    background: linear-gradient(
        to bottom,
        rgba(5, 10, 15, 0.90),
        rgba(5, 10, 15, 0)
    );
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;

    width: 290px;

    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}


/* NAVIGATION LINKS */

.nav-links {
    display: flex;
    align-items: center;

    gap: 38px;

    margin-left: auto;
}

.nav-links > a,
.dropdown-trigger {
    position: relative;

    font-size: 14px;
    font-weight: 600;

    color: rgba(255, 255, 255, 0.92);

    white-space: nowrap;

    padding: 12px 0;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.nav-links > a:hover,
.dropdown-trigger:hover {
    color: #ffffff;
}


/* SMALL LINE UNDER ACTIVE/HOVER LINK */

.nav-links > a::after,
.dropdown-trigger::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 3px;

    width: 0;
    height: 2px;

    background: #f15a24;

    transition: width 0.25s ease;
}

.nav-links > a:hover::after,
.dropdown-trigger:hover::after {
    width: 100%;
}


/* =========================================================
   COURSES DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
}


/* Arrow */

.arrow {
    margin-left: 5px;
    font-size: 11px;
}


/* Dropdown box */

.dropdown-menu {
    position: absolute;

    top: calc(100% + 12px);
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    width: 360px;

    padding: 10px;

    background: rgba(10, 17, 24, 0.98);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-top: 2px solid #f15a24;

    border-radius: 6px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.55);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}


/* Keep dropdown open when hovering */

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}


/* Dropdown links */

.dropdown-menu a {
    display: block;

    padding: 13px 15px;

    border-radius: 4px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;
    line-height: 1.45;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(241, 90, 36, 0.12);

    color: #ffffff;

    padding-left: 20px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image: url("images/airfield.webp");

    background-size: cover;
    background-position: center center;

    background-repeat: no-repeat;
}


/* Dark cinematic overlay */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 9, 14, 0.60) 0%,
            rgba(4, 9, 14, 0.40) 40%,
            rgba(4, 9, 14, 0.15) 75%,
            rgba(4, 9, 14, 0.25) 100%
        );

    z-index: 1;
}


/* Additional subtle bottom fade */

.hero::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 180px;

    background: linear-gradient(
        to bottom,
        transparent,
        #080d12
    );

    z-index: 2;

    pointer-events: none;
}


/* Hero content */

.hero-content {
    position: relative;

    z-index: 3;

    max-width: 850px;

    margin-left: 8%;

    padding-top: 80px;
}


/* Eyebrow */

.hero-eyebrow {
    margin-bottom: 18px;

    color: #f15a24;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 4px;
}


/* Main heading */

.hero h1 {
    font-size: clamp(55px, 7vw, 105px);

    line-height: 0.95;

    font-weight: 700;

    letter-spacing: -4px;

    max-width: 900px;
}


/* Drone Academy highlighted */

.hero h1 span {
    display: block;

    color: #ffffff;
}


/* Description */

.hero-description {
    max-width: 620px;

    margin-top: 28px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;

    line-height: 1.6;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    gap: 15px;

    margin-top: 35px;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 3px;

    font-size: 14px;

    font-weight: 700;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border 0.25s ease,
        transform 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}


/* Orange primary button */

.btn-primary {
    background: #f15a24;

    color: #ffffff;

    border: 1px solid #f15a24;
}

.btn-primary:hover {
    background: #ff6b32;

    border-color: #ff6b32;
}


/* Transparent secondary button */

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);

    border-color: #ffffff;
}


/* =========================================================
   HERO BOTTOM INFORMATION
========================================================= */

.hero-bottom {
    position: absolute;

    z-index: 4;

    bottom: 45px;
    right: 7%;

    display: flex;

    gap: 55px;
}

.hero-bottom div {
    display: flex;

    flex-direction: column;

    border-left: 1px solid rgba(255, 255, 255, 0.25);

    padding-left: 18px;
}

.hero-bottom span {
    color: rgba(255, 255, 255, 0.55);

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 3px;
}

.hero-bottom strong {
    font-size: 13px;

    letter-spacing: 1px;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.courses-section,
.gallery-section {
    padding: 120px 8%;
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    max-width: 750px;

    margin-bottom: 60px;
}

.section-label {
    margin-bottom: 12px;

    color: #f15a24;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}

.section-heading h2,
.info-content h2,
.contact-content h2 {
    font-size: clamp(38px, 5vw, 65px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;
}

.section-heading > p:last-child {
    color: rgba(255, 255, 255, 0.62);

    font-size: 16px;

    max-width: 680px;
}


/* =========================================================
   COURSE GRID
========================================================= */

.course-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* Course card */

.course-card {
    position: relative;

    min-height: 270px;

    padding: 32px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.015)
        );

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 5px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        border 0.3s ease,
        background 0.3s ease;
}


/* Orange line */

.course-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #f15a24;

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-7px);

    border-color: rgba(241, 90, 36, 0.5);

    background:
        linear-gradient(
            145deg,
            rgba(241, 90, 36, 0.09),
            rgba(255, 255, 255, 0.025)
        );
}

.course-card:hover::before {
    transform: scaleX(1);
}


/* Course number */

.course-number {
    position: absolute;

    top: 22px;
    right: 25px;

    color: rgba(255, 255, 255, 0.20);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* Course title */

.course-card h3 {
    font-size: 21px;

    line-height: 1.25;

    margin-bottom: 8px;
}


/* Course subtitle */

.course-card p {
    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;

    margin-bottom: 22px;
}


/* Course link */

.course-link {
    color: #f15a24;

    font-size: 13px;

    font-weight: 700;
}

.course-link:hover {
    color: #ffffff;
}


/* =========================================================
   INFORMATION SECTIONS
========================================================= */

.info-section {
    min-height: 550px;

    padding: 130px 8%;

    display: flex;

    align-items: center;

    background:
        linear-gradient(
            90deg,
            #0c131a,
            #080d12
        );
}

.info-section.alternate {
    background:
        linear-gradient(
            90deg,
            #080d12,
            #101820
        );
}

.info-content {
    max-width: 700px;
}

.info-content p:not(.section-label) {
    color: rgba(255, 255, 255, 0.62);

    font-size: 17px;

    max-width: 650px;

    margin-bottom: 25px;
}


/* Text links */

.text-link {
    color: #f15a24;

    font-size: 14px;

    font-weight: 700;
}

.text-link:hover {
    color: #ffffff;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
    min-height: 450px;

    background: #080d12;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 130px 8%;

    background:
        linear-gradient(
            135deg,
            #111b24,
            #080d12
        );
}

.contact-content {
    max-width: 700px;
}

.contact-content p:not(.section-label) {
    color: rgba(255, 255, 255, 0.62);

    font-size: 17px;

    margin-bottom: 30px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 60px 8% 35px;

    background: #05090d;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;
}


/* Footer logo */

.footer-logo {
    width: 110px;

    margin: 0 auto 20px;
}

.footer-logo img {
    width: 100%;

    height: auto;
}


/* Footer title */

.footer > p {
    font-size: 14px;

    color: rgba(255, 255, 255, 0.85);
}

.footer-small {
    color: rgba(255, 255, 255, 0.45) !important;

    margin-top: 5px;
}


/* Copyright */

.copyright {
    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    color: rgba(255, 255, 255, 0.30) !important;

    font-size: 11px !important;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1200px) {

    .navbar {
        padding: 0 35px;
    }

    .nav-links {
        gap: 22px;
    }

    .nav-links > a,
    .dropdown-trigger {
        font-size: 12px;
    }

    .logo {
        width: 120px;
    }

    .course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 850px) {

    .navbar {
        height: auto;

        min-height: 80px;

        padding: 15px 25px;

        flex-direction: column;

        align-items: flex-start;
    }

    .logo {
        width: 105px;

        margin-bottom: 15px;
    }

    .nav-links {
        width: 100%;

        flex-wrap: wrap;

        gap: 8px 20px;

        margin-left: 0;
    }

    .nav-links > a,
    .dropdown-trigger {
        font-size: 12px;
    }

    .dropdown-menu {
        left: 0;

        transform: translateY(10px);

        width: 310px;
    }

    .nav-dropdown:hover .dropdown-menu {
        transform: translateY(0);
    }

    .hero-content {
        margin-left: 7%;

        margin-right: 7%;

        padding-top: 190px;

        padding-bottom: 140px;
    }

    .hero h1 {
        font-size: clamp(50px, 12vw, 85px);

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-bottom {
        display: none;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .courses-section,
    .gallery-section,
    .info-section,
    .contact-section {
        padding-left: 7%;
        padding-right: 7%;
    }
}


/* =========================================================
   RESPONSIVE — SMALL PHONES
========================================================= */

@media (max-width: 500px) {

    .nav-links {
        gap: 5px 15px;
    }

    .hero-content {
        padding-top: 220px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .btn {
        width: 100%;
    }

    .dropdown-menu {
        width: 280px;
    }

    .course-card {
        min-height: 250px;

        padding: 25px;
    }
}


/* ================================
   COURSE PAGE HERO
================================ */

.course-hero {
    position: relative;
    min-height: 75vh;
    background-image: url("images/classroom.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.course-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 9, 14, 0.85) 0%,
            rgba(4, 9, 14, 0.55) 45%,
            rgba(4, 9, 14, 0.20) 100%
        );

    z-index: 1;
}

.course-hero-content {
    position: relative;
    z-index: 2;

    max-width: 900px;
    padding: 180px 8% 100px;
}

.course-eyebrow {
    color: #e58b32;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.course-hero h1 {
    color: white;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.course-hero h1 span {
    display: block;
    color: #e58b32;
}

.course-hero-description {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 50px;
}

.course-stats {
    display: flex;
    gap: 55px;
    flex-wrap: wrap;
}

.course-stats div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.course-stats span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    letter-spacing: 2px;
}

.course-stats strong {
    color: white;
    font-size: 15px;
    letter-spacing: 1px;
}


/* MOBILE */

@media (max-width: 768px) {

    .course-hero {
        min-height: 85vh;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .course-hero-content {
        padding: 150px 30px 70px;
    }

    .course-hero h1 {
        font-size: 48px;
    }

    .course-stats {
        gap: 30px;
    }
}

/* ================================
   COURSE INTRODUCTION
================================ */

.course-intro {
    background: #080d12;
    color: white;
    padding: 110px 8%;
}

.course-intro-label {
    color: #e58b32;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.course-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.course-intro-heading h2 {
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.05;
    margin: 0;
}

.course-intro-heading h2 span {
    display: block;
    color: #e58b32;
}

.course-intro-text {
    max-width: 600px;
}

.course-intro-text p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}


/* MOBILE */

@media (max-width: 768px) {

    .course-intro {
        padding: 80px 30px;
    }

    .course-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


/* ================================
   COURSE OVERVIEW
================================ */

.course-overview {
    background: #0c1319;
    color: white;
    padding: 120px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-label {
    color: #e58b32;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 45px;
}

.overview-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto 70px;
    align-items: end;
}

.overview-header h2 {
    font-size: clamp(45px, 5vw, 72px);
    line-height: 1.05;
    margin: 0;
}

.overview-header h2 span {
    display: block;
    color: #e58b32;
}

.overview-header p {
    max-width: 580px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 18px;
    line-height: 1.8;
}

.overview-grid {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.overview-card {
    position: relative;
    min-height: 190px;

    padding: 30px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: transform 0.3s ease,
                background 0.3s ease,
                border-color 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    background: rgba(229, 139, 50, 0.06);
    border-color: rgba(229, 139, 50, 0.35);
}

.overview-number {
    color: rgba(255, 255, 255, 0.25);
    font-size: 13px;
    letter-spacing: 2px;
}

.overview-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 10px;
    letter-spacing: 2px;
    margin-top: 25px;
}

.overview-card strong {
    color: white;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}


/* MOBILE */

@media (max-width: 768px) {

    .course-overview {
        padding: 80px 30px;
    }

    .overview-header {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 50px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-card {
        min-height: 160px;
    }

}
/* COURSE BENEFITS */

.course-benefits {
    background: #f3f4f5;
    color: #080d12;
    padding: 120px 8%;
}

.benefits-header {
    max-width: 1200px;
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end;
}

.benefits-header h2 {
    font-size: clamp(45px, 5vw, 72px);
    line-height: 1.05;
    margin: 0;
}

.benefits-header h2 span {
    display: block;
    color: #e58b32;
}

.benefits-header p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.benefits-list {
    max-width: 1200px;
    margin: auto;
}

.benefit-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 30px;
    padding: 35px 0;
    border-top: 1px solid rgba(0,0,0,0.12);
}

.benefit-item > span {
    color: #e58b32;
    font-size: 14px;
    letter-spacing: 2px;
}

.benefit-item h3 {
    font-size: 28px;
    margin: 0 0 10px;
}

.benefit-item p {
    max-width: 700px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.benefit-item:hover h3 {
    color: #e58b32;
}

@media (max-width: 768px) {

    .course-benefits {
        padding: 80px 30px;
    }

    .benefits-header {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .benefit-item {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .benefit-item h3 {
        font-size: 22px;
    }

}

 .enroll-button {
   position: relative;
   right: auto;
    bottom: auto;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 18px 30px;
    background: #e58b32;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.enroll-button span {
    font-size: 24px;
    transition: 0.3s ease;
}

.enroll-button:hover {
    background: #ffffff;
    color: #080d12;
}

.enroll-button:hover span {
    transform: translateX(6px);
}

/* ABOUT HERO */

.about-hero {
    min-height: 65vh;
    background: #080d12;
    color: white;
    display: flex;
    align-items: center;
    padding: 140px 8% 100px;
}

.about-hero-content {
    max-width: 800px;
}

.about-eyebrow {
    color: #e58b32;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-hero h1 {
    font-size: clamp(55px, 7vw, 95px);
    line-height: 1;
    margin: 0;
}

.about-hero h1 span {
    display: block;
    color: #e58b32;
}

.about-hero-content > p:last-child {
    max-width: 600px;
    margin-top: 30px;
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    line-height: 1.6;
}


/* ABOUT INTRO */

.about-intro {
    background: #ffffff;
    color: #080d12;
    padding: 120px 8%;
}

.about-intro-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-intro-heading h2 {
    font-size: clamp(45px, 5vw, 72px);
    line-height: 1.05;
    margin: 0;
}

.about-intro-heading h2 span {
    display: block;
    color: #e58b32;
}

.about-intro-text p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin: 0 0 25px;
}


/* DRONE TRAINING */

.about-drone-training {
    background: #080d12;
    color: white;
    padding: 120px 8%;
}

.about-drone-content {
    max-width: 1200px;
    margin: auto;
}

.about-drone-content h2 {
    max-width: 850px;
    font-size: clamp(45px, 6vw, 80px);
    line-height: 1.05;
    margin: 0 0 45px;
}

.about-drone-content h2 span {
    color: #e58b32;
}

.about-drone-content p {
    max-width: 850px;
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}


@media (max-width: 768px) {

    .about-hero {
        min-height: 60vh;
        padding: 120px 30px 80px;
    }

    .about-intro,
    .about-drone-training {
        padding: 80px 30px;
    }

    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

/* MANAGEMENT TEAM */

.management-team {
    background: #ffffff;
    color: #080d12;
    padding: 120px 8%;
}

.management-header {
    max-width: 1200px;
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end;
}

.management-header h2 {
    font-size: clamp(45px, 5vw, 72px);
    line-height: 1.05;
    margin: 0;
}

.management-header h2 span {
    display: block;
    color: #e58b32;
}

.management-header p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.management-grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.management-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.management-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.management-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 18, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.management-photo:hover .management-overlay {
    opacity: 1;
}

.management-overlay a {
    width: 58px;
    height: 58px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s ease;
}

.management-overlay a:hover {
    background: #e58b32;
    border-color: #e58b32;
}

.linkedin-icon {
    font-size: 22px;
    font-weight: 700;
}

.management-card h3 {
    font-size: 24px;
    margin: 20px 0 0;
}

@media (max-width: 768px) {

    .management-team {
        padding: 80px 30px;
    }

    .management-header {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .management-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

}
/* ================================
   ENROLLMENT POPUP
================================ */

.enrollment-modal {
    position: fixed;
    inset: 0;
    background: rgba(4, 9, 14, 0.82);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9999;
}

.enrollment-modal.active {
    opacity: 1;
    visibility: visible;
}

.enrollment-box {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: #ffffff;
    color: #080d12;
    padding: 55px;
    transform: translateY(25px);
    transition: 0.3s ease;
}

.enrollment-modal.active .enrollment-box {
    transform: translateY(0);
}

.enrollment-box .course-eyebrow {
    color: #e58b32;
    margin-bottom: 18px;
}

.enrollment-box h2 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    margin: 0 0 20px;
}

.enrollment-box h2 span {
    display: block;
    color: #e58b32;
}

.enrollment-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.enrollment-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.enrollment-box input {
    width: 100%;
    padding: 17px 18px;
    border: 1px solid #d8d8d8;
    background: #f8f8f8;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.enrollment-box input:focus {
    border-color: #e58b32;
    background: #ffffff;
}

.enrollment-box form button {
    margin-top: 8px;
    padding: 17px 22px;
    border: none;
    background: #080d12;
    color: white;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s ease;
}

.enrollment-box form button:hover {
    background: #e58b32;
}

.enrollment-box form button span {
    margin-left: 8px;
}

.enrollment-close {
    position: absolute;
    top: 18px;
    right: 22px;
    border: none;
    background: none;
    color: #080d12;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 5px;
}

.enrollment-close:hover {
    color: #e58b32;
}


/* MOBILE */

@media (max-width: 600px) {

    .enrollment-box {
        padding: 40px 25px;
    }

    .enrollment-box h2 {
        font-size: 40px;
    }

}
/* ================================
   STUDENT TESTIMONIAL
================================ */

.student-testimonial {
    background: #080d12;
    color: #ffffff;
    padding: 120px 8%;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.testimonial-content .section-label {
    color: #e58b32;
    margin-bottom: 20px;
}

.testimonial-content h2 {
    font-size: clamp(45px, 6vw, 76px);
    line-height: 1.05;
    margin: 0 0 25px;
}

.testimonial-content h2 span {
    display: block;
    color: #e58b32;
}

.testimonial-content p:last-child {
    max-width: 650px;
    margin: 0 auto;
    color: #b8bec4;
    font-size: 17px;
    line-height: 1.8;
}

.testimonial-video {
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000000;
    overflow: hidden;
}

.testimonial-video iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}


/* MOBILE */

@media (max-width: 768px) {

    .student-testimonial {
        padding: 80px 30px;
    }

    .testimonial-content {
        margin-bottom: 40px;
    }

}
/* ================================
   GOOGLE REVIEWS
================================ */

.google-reviews {
    background: #ffffff;
    color: #080d12;
    padding: 110px 8%;
    text-align: center;
}

.google-reviews-content {
    max-width: 900px;
    margin: 0 auto;
}

.google-reviews .section-label {
    color: #e58b32;
    margin-bottom: 20px;
}

.google-reviews h2 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    margin: 0 0 45px;
}

.google-reviews h2 span {
    display: block;
    color: #e58b32;
}

.google-rating {
    margin-bottom: 35px;
}

.google-rating strong {
    display: block;
    font-size: clamp(70px, 9vw, 110px);
    line-height: 1;
    font-weight: 700;
}

.rating-stars {
    color: #e58b32;
    font-size: 28px;
    letter-spacing: 5px;
    margin: 15px 0 8px;
}

.google-rating p {
    margin: 0;
    color: #555;
    font-size: 17px;
}

.google-review-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: #080d12;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.google-review-button:hover {
    background: #e58b32;
}

.google-review-button span {
    font-size: 18px;
}


/* MOBILE */

@media (max-width: 768px) {

    .google-reviews {
        padding: 80px 30px;
    }

    .google-reviews h2 {
        margin-bottom: 35px;
    }

}
