* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #071a12;
    color: white;
}

/* Navbar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #d4af37;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #f5f5f5;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-btn {
    text-decoration: none;
    background: #d4af37;
    color: #071a12;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
}

/* Hero Section */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
}

.hero-left {
    width: 55%;
}

.tagline {
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.subtitle {
    font-size: 20px;
    color: #d0d0d0;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.gold-btn {
    text-decoration: none;
    background: #d4af37;
    color: #071a12;
    padding: 15px 32px;
    border-radius: 10px;
    font-weight: bold;
}

.outline-btn {
    text-decoration: none;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 15px 32px;
    border-radius: 10px;
    font-weight: bold;
}

.hero-right {
    width: 35%;
}

.premium-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.premium-box h3 {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 10px;
}

.premium-box p {
    margin-bottom: 30px;
    color: #d0d0d0;
}

.course-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.course-card {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: #071a12;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(212,175,55,0.25);
    border: 2px solid #d4af37;
    transition: 0.4s;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212,175,55,0.35);
}

.course-card h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #071a12;
    font-weight: bold;
}

.course-card p {
    color: #1b1b1b;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.course-info {
    margin-bottom: 25px;
}

.course-info span {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #071a12;
}

.course-card .gold-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #071a12;
    color: #d4af37;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #071a12;
}

.course-card .gold-btn:hover {
    background: #0d2a1d;
}
/* ========================= */
/* PROFESSIONAL CONTACT PAGE */
/* ========================= */

.contact-page {
    min-height: 100vh;
    padding: 80px 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #071a12;
}

.contact-box {
    width: 100%;
    max-width: 900px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-box .tagline {
    color: #d4af37;
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-box h1 {
    font-size: 52px;
    color: white;
    margin-bottom: 20px;
}

.contact-box .subtitle {
    color: #d8d8d8;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.2);
    background: rgba(255,255,255,0.03);
    color: white;
    font-size: 16px;
    outline: none;
}

.contact-form textarea {
    resize: none;
    min-height: 180px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bcbcbc;
}

.contact-form .gold-btn {
    width: 220px;
    border: none;
    cursor: pointer;
    font-size: 17px;
    padding: 16px;
}

.contact-form .gold-btn:hover {
    transform: translateY(-2px);
}
/* ========================= */
/* PREMIUM ABOUT PAGE STYLE */
/* ========================= */

.about-page {
    min-height: 100vh;
    padding: 80px 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #071a12;
}

.about-box {
    width: 100%;
    max-width: 1000px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 24px;
    padding: 70px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-box .tagline {
    color: #d4af37;
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-box h1 {
    font-size: 58px;
    color: white;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-box .subtitle {
    color: #d8d8d8;
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 28px;
}
/* =============================== */
/* PREMIUM COURSE DETAILS PAGE CSS */
/* =============================== */

.details-page {
    min-height: 100vh;
    padding: 80px 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #071a12;
}

.details-card {
    width: 100%;
    max-width: 900px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.details-card h1 {
    font-size: 52px;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
}

.price {
    font-size: 28px;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 30px;
}

.details-card h3 {
    font-size: 28px;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 20px;
}

.details-card ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.details-card ul li {
    color: #d8d8d8;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.details-card p {
    color: #d8d8d8;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

#pay-btn {
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 16px 32px;
    border-radius: 12px;
    background: #d4af37;
    color: #071a12;
    font-weight: bold;
    transition: 0.3s;
}

#pay-btn:hover {
    transform: translateY(-2px);
    background: #e6c04a;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #071a12;
    color: white;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(212,175,55,0.15);
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #d4af37;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-btn {
    background: #d4af37;
    color: #071a12;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

/* COURSES TITLE */

.courses-section {
    padding: 80px 8%;
}

.courses-title {
    text-align: center;
    margin-bottom: 60px;
}

.courses-title p {
    color: #d4af37;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: bold;
}

.courses-title h1 {
    font-size: 54px;
    margin-bottom: 20px;
}

.courses-title span {
    color: #d0d0d0;
    font-size: 20px;
    max-width: 900px;
    display: block;
    margin: auto;
    line-height: 1.8;
}

/* COURSE CARDS */

.course-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.course-card {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    color: #071a12;
    box-shadow: 0 20px 50px rgba(212,175,55,0.20);
}

.icon-box {
    width: 85px;
    height: 85px;
    background: #071a12;
    color: #d4af37;
    font-size: 38px;
    border-radius: 20px;
    margin: auto;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.course-card h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.course-card p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.course-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 15px;
    text-align: center;
}

.course-details strong {
    display: block;
    margin-top: 8px;
}

.course-card h3 {
    font-size: 38px;
    margin-bottom: 25px;
}

.view-btn {
    display: block;
    background: #071a12;
    color: #d4af37;
    text-decoration: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 18px;
}

.view-btn:hover {
    background: #0d2b1e;
}
.success-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #071a12;
    padding: 40px;
}

.success-box {
    width: 100%;
    max-width: 700px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.success-box h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
}

.success-box p {
    font-size: 20px;
    color: #dcdcdc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.download-btn {
    display: inline-block;
    background: #d4af37;
    color: #071a12;
    padding: 16px 34px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.download-btn:hover {
    background: #f5d76e;
}

.back-btn {
    display: inline-block;
    margin-top: 20px;
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
}

.back-btn:hover {
    color: white;
}
.course-details-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #04130d, #0b2b1f);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

.details-box {
    width: 100%;
    max-width: 850px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.details-box h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.price {
    font-size: 24px;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 35px;
}

.details-box h2 {
    font-size: 32px;
    color: white;
    margin-top: 30px;
    margin-bottom: 20px;
}

#courseFeatures {
    padding-left: 25px;
    margin-bottom: 30px;
}

#courseFeatures li {
    font-size: 20px;
    color: #f1f1f1;
    margin-bottom: 16px;
    line-height: 1.7;
}

#courseDescription {
    font-size: 20px;
    color: #d8d8d8;
    line-height: 1.8;
    margin-bottom: 35px;
}

.buy-btn {
    display: inline-block;
    background: #d4af37;
    color: #071a12;
    padding: 16px 38px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.buy-btn:hover {
    background: #f5d76e;
    transform: translateY(-2px);
}

.back-btn {
    color: #d4af37;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
}

.back-btn:hover {
    color: white;
}



@media screen and (max-width: 768px) {

    .hero {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 40px 20px !important;
        gap: 30px !important;
    }

    .hero-left {
        width: 100% !important;
    }

    .hero-right {
        width: 100% !important;
        display: flex;
        justify-content: center;
    }

    .hero h1 {
        font-size: 42px !important;
        line-height: 1.3 !important;
        word-break: break-word;
    }

    .subtitle {
        font-size: 16px !important;
        line-height: 1.8 !important;
    }

    .premium-box {
        width: 100% !important;
        max-width: 320px;
        padding: 30px 20px !important;
        margin-top: 10px;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column !important;
    }

    .gold-btn,
    .outline-btn {
        width: 100%;
        text-align: center;
    }

    .logo {
        font-size: 26px !important;
        text-align: center;
    }

    .nav-links {
        gap: 12px !important;
    }
}