/* ===========================================================
   AK BEAUTY & FASHION TRENDZ
   PREMIUM LUXURY CSS
   PART 1
=========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Cinzel:wght@400;500;600;700&display=swap');

:root {

    --gold: #D4AF37;
    --black: #050505;
    --dark: #111111;
    --light: #ffffff;
    --gray: #bdbdbd;
    --glass: rgba(255, 255, 255, .08);

}

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: white;
    overflow-x: hidden;

}

img {

    display: block;
    width: 100%;

}

a {

    text-decoration: none;

}

ul {

    list-style: none;

}

section {

    padding: 45px 6%;
    position: relative;

}

/*=========================
SCROLLBAR
=========================*/

::-webkit-scrollbar {

    width: 8px;

}

::-webkit-scrollbar-track {

    background: #111;

}

::-webkit-scrollbar-thumb {

    background: var(--gold);
    border-radius: 20px;

}

/*=========================
LOADER
=========================*/

#loader {

    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 99999;
    transition: 1s;

}

#loader h1 {

    font-size: 90px;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    letter-spacing: 5px;

}

#loader p {

    margin-top: 10px;
    letter-spacing: 5px;
    color: #ddd;
    text-transform: uppercase;

}

/*=========================
HEADER
=========================*/

header {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(18px);
    z-index: 10001;
    transition: .5s;
    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

header.scrolled {

    background: #000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .5);

}

.menu-toggle {
    display: flex;
    cursor: pointer;
    color: white;
    font-size: 28px;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
}

.logo h2 {

    font-size: 40px;
    font-family: 'Cinzel', serif;
    color: var(--gold);

}

.logo span {

    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    color: #ddd;

}

nav ul {

    display: flex;
    gap: 35px;

}

nav a {

    color: white;
    font-weight: 500;
    position: relative;
    transition: .4s;

}

nav a::after {

    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .4s;

}

nav a:hover {

    color: var(--gold);

}

nav a:hover::after {

    width: 100%;

}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

/*=========================
BUTTONS
=========================*/

.btn {

    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: #111;
    font-weight: 600;
    border-radius: 50px;
    transition: .4s;

}

.btn:hover {

    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, .4);

}

.btn2 {

    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: white;
    transition: .4s;

}

.btn2:hover {

    background: var(--gold);
    color: #111;

}

/*=========================
HERO
=========================*/

.hero {

    height: 100vh;
    padding: 0;
    overflow: hidden;

}

.heroSwiper {

    width: 100%;
    height: 100%;

}

.heroSwiper img {

    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 10s linear infinite alternate;

}

@keyframes heroZoom {

    from {

        transform: scale(1);

    }

    to {

        transform: scale(1.12);

    }

}

.overlay {

    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .25),
            rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .9));
    z-index: 2;

}

.hero-content {

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    width: 90%;

}

.hero-content h3 {

    font-size: 22px;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;

}

.hero-content h1 {

    font-size: 80px;
    font-family: 'Cinzel', serif;
    line-height: 1.2;
    margin-bottom: 25px;

}

.hero-content p {

    max-width: 750px;
    margin: auto;
    font-size: 18px;
    line-height: 1.9;
    color: #ddd;
    margin-bottom: 40px;

}

.hero-buttons {

    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;

}

/*=========================
SCROLL INDICATOR
=========================*/

.scroll-down {

    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    z-index: 5;

}

.scroll-down span {

    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 40px;
    position: relative;

}

.scroll-down span::before {

    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--gold);
    border-radius: 50px;
    animation: scroll 2s infinite;

}

@keyframes scroll {

    0% {

        opacity: 1;
        top: 8px;

    }

    100% {

        opacity: 0;
        top: 28px;

    }

}

/*=========================
OFFER BAR
=========================*/

.offer-bar {

    background: #000;
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, .2);
    border-bottom: 1px solid rgba(212, 175, 55, .2);

}

.offer-track {

    display: inline-block;
    white-space: nowrap;
    font-weight: 600;
    color: var(--gold);
    font-size: 18px;
    animation: marquee 25s linear infinite;

}

.offer-bar:hover .offer-track {

    animation-play-state: paused;

}

@keyframes marquee {

    0% {

        transform: translateX(100%);

    }

    100% {

        transform: translateX(-100%);

    }

}

/*=========================
SECTION TITLE
=========================*/

.title {

    text-align: center;
    font-size: 34px;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 12px;

}

.section-subtitle {

    text-align: center;
    max-width: 700px;
    margin: 0 auto 25px auto;
    color: #bbb;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 14px;

}

/*==========================================================
    ABOUT SECTION
==========================================================*/

.about {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
    background: #0d0d0d;

}

.about-image {

    overflow: hidden;
    border-radius: 18px;
    position: relative;
    max-height: 380px;

}

.about-image img {

    height: 380px;
    object-fit: cover;
    transition: 1s;

}

.about-image:hover img {

    transform: scale(1.05);

}

.about-image::after {

    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .55),
            transparent);

}

.about-content {

    padding: 10px;

}

.title-left {

    font-size: 34px;
    font-family: 'Cinzel', serif;
    margin-bottom: 16px;
    line-height: 1.3;

}

.title-left span {

    color: var(--gold);

}

.about-content p {

    font-size: 15px;
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 16px;

}

/*==========================================================
COUNTER
==========================================================*/

.counter-section {

    padding: 35px 6%;
    background: #070707;

}

.counter-box {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

}

.counter {

    background: #141414;
    padding: 22px 15px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, .15);
    transition: .5s;

}

.counter:hover {

    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, .18);

}

.counter h2 {

    font-size: 36px;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    margin-bottom: 6px;

}

.counter p {

    color: #ddd;
    letter-spacing: 1px;
    font-size: 13px;

}

/*==========================================================
SERVICES
==========================================================*/

.services {

    background: #111;

}

.service-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;

}

.card {

    background: #191919;
    padding: 26px 20px;
    border-radius: 16px;
    text-align: center;
    transition: .5s;
    border: 1px solid rgba(255, 255, 255, .05);
    overflow: hidden;
    position: relative;

}

.card::before {

    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .08),
            transparent);
    transition: .8s;

}

.card:hover::before {

    left: 100%;

}

.card:hover {

    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, .18);

}

.card i {

    font-size: 38px;
    margin-bottom: 14px;
    color: var(--gold);

}

.card h3 {

    font-size: 20px;
    margin-bottom: 10px;

}

.card p {

    line-height: 1.6;
    color: #bbb;
    font-size: 14px;

}

/*==========================================================
PRICE GRID
==========================================================*/

.price-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;

}

.price-card {

    background: #181818;
    padding: 22px 18px;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, .15);
    transition: .4s;
    text-align: center;

}

.price-card:hover {

    transform: translateY(-6px);
    background: #202020;
    border-color: var(--gold);

}

.price-card h3 {

    font-size: 18px;
    margin-bottom: 12px;

}

.price-card span {

    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, .12);
    color: var(--gold);
    font-weight: 600;
    border-radius: 50px;
    font-size: 14px;

}

/*==========================================================
HAIR
==========================================================*/

.hair-services {

    background: #0d0d0d;

}

/*==========================================================
FACIAL
==========================================================*/

.facial {

    background: #111;

}

/*==========================================================
THREADING
==========================================================*/

.threading {

    background: #0d0d0d;

}

/*==========================================================
WAXING
==========================================================*/

.waxing {

    background: #111;

}

/*==========================================================
NAIL CARE
==========================================================*/

.nail-care {

    background: #0d0d0d;

}

/*==========================================================
HOVER EFFECT FOR PRICE CARD
==========================================================*/

.price-card {

    position: relative;
    overflow: hidden;

}

.price-card::after {

    content: "";
    position: absolute;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle,
            rgba(212, 175, 55, .18),
            transparent 65%);
    top: -160%;
    left: -160%;
    transition: .8s;

}

.price-card:hover::after {

    top: -60%;
    left: -60%;

}

.price-card>* {

    position: relative;
    z-index: 2;

}

/*==========================================================
SECTION SPACING
==========================================================*/

.hair-services,
.facial,
.threading,
.waxing,
.nail-care {

    padding-top: 35px;
    padding-bottom: 35px;

}

/*==========================================================
BRIDAL SECTION
==========================================================*/

.bridal {

    background: #111;

}

.bridal-container {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;

}

.bridal-card {

    background: #191919;
    padding: 24px 20px;
    border-radius: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: .5s;
    border: 1px solid rgba(212, 175, 55, .15);

}

.bridal-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, .18);

}

.bridal-card.featured {

    border: 2px solid var(--gold);
    transform: scale(1.02);

}

.bridal-card.featured:hover {

    transform: scale(1.04);

}

.tag {

    position: absolute;
    top: 18px;
    right: -40px;
    background: var(--gold);
    color: #111;
    padding: 6px 40px;
    font-weight: 600;
    font-size: 13px;
    transform: rotate(45deg);

}

.bridal-card i {

    font-size: 38px;
    color: var(--gold);
    margin-bottom: 14px;

}

.bridal-card h3 {

    font-size: 22px;
    margin-bottom: 10px;

}

.bridal-card h1 {

    font-size: 34px;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 18px;

}

.bridal-card ul {

    text-align: left;
    margin-bottom: 20px;

}

.bridal-card ul li {

    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 14px;

}

.bridal-card ul li i {

    font-size: 16px;
    margin-right: 12px;

}

/*==========================================================
COMBO
==========================================================*/

.combo {

    background: #0d0d0d;

}

.combo-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;

}

.combo-card {

    background: #181818;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    transition: .5s;
    position: relative;
    overflow: hidden;

}

.combo-card:hover {

    transform: translateY(-12px);

}

.combo-card h3 {

    font-size: 30px;
    margin-bottom: 20px;

}

.combo-card h1 {

    font-size: 60px;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 25px;

}

.combo-card p {

    padding: 10px;
    color: #ddd;

}

.combo-card span {

    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: #111;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;

}

.luxury {

    background: linear-gradient(135deg, #1a1a1a, #2a220d);

}

/*==========================================================
JEWELLERY
==========================================================*/

.jewellery {

    background: #111;

}

.jewellery-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;

}

.jewel-card {

    background: #181818;
    border-radius: 22px;
    overflow: hidden;
    transition: .5s;

}

.jewel-card:hover {

    transform: translateY(-12px);

}

.jewel-card img {

    height: 240px;
    object-fit: cover;
    transition: 1s;

}

.jewel-card:hover img {

    transform: scale(1.08);

}

.jewel-content {

    padding: 18px 15px;
    text-align: center;

}

.jewel-content h3 {

    font-size: 19px;
    margin-bottom: 8px;

}

.jewel-content p {

    color: #bbb;
    margin-bottom: 15px;
    font-size: 14px;

}

/*==========================================================
AARI WORK
==========================================================*/

.aari {

    background: #0d0d0d;

}

.aari-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;

}

.aari-card {

    position: relative;
    overflow: hidden;
    border-radius: 25px;

}

.aari-card img {

    height: 260px;
    object-fit: cover;
    transition: 1s;

}

.aari-card:hover img {

    transform: scale(1.1);

}

.overlay-box {

    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    padding: 35px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .92));
    transition: .6s;
    text-align: center;

}

.aari-card:hover .overlay-box {

    bottom: 0;

}

.overlay-box h3 {

    font-size: 28px;
    margin-bottom: 10px;

}

.overlay-box p {

    color: var(--gold);

}

/*==========================================================
FASHION
==========================================================*/

.fashion {

    background: #111;

}

.boutique-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

@media (max-width: 992px) {
    .boutique-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .boutique-grid {
        grid-template-columns: 1fr;
    }
}

.boutique-card {
    background: #161616;
}

.card-image {
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #111;
}

@media (max-width: 1024px) {
    .card-image {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .card-image {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .card-image {
        height: 280px;
    }
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .45s ease;
}

.boutique-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    background: #161616;
    padding: 20px;
    min-height: 95px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.2;
}

.card-content p {
    color: #cfcfcf;
    font-size: 1.05rem;
    margin: 0;
}

/*==========================================================
IMAGE SHADOW
==========================================================*/

.jewel-card,
.aari-card,
.boutique-card {

    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);

}

.jewel-card:hover,
.aari-card:hover,
.boutique-card:hover {

    box-shadow: 0 30px 70px rgba(212, 175, 55, .18);

}

.course-image {
    position: relative;
    overflow: visible;
}

.course-image img {
    width: 100%;
    border-radius: 18px;
    transition: .6s;
}

.course-card:hover .course-image img {
    transform: scale(1.06);
}

.student-popup {

    position: absolute;

    left: 50%;

    top: 20px;

    transform: translateX(-50%) translateY(50px);

    width: 270px;

    background: rgba(20, 20, 20, .98);

    border: 2px solid #d4af37;

    border-radius: 20px;

    padding: 15px;

    opacity: 0;

    visibility: hidden;

    transition: .6s;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);

    z-index: 100;

}

.course-card:hover .student-popup {

    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(-80px);

}

.student-photo {

    width: 100%;

    height: 180px;

    object-fit: cover;

    border-radius: 15px;

}

.popup-details {

    text-align: center;

    margin-top: 15px;

}

.popup-details h4 {

    color: #d4af37;

    margin-bottom: 8px;

}

.popup-details p {

    color: #ddd;

    font-size: 14px;

}

.certificate-img {

    margin-top: 15px;

    border-radius: 12px;

    border: 2px solid #d4af37;

}

.verify-badge {

    margin-top: 15px;

    padding: 10px;

    background: #d4af37;

    color: #111;

    border-radius: 10px;

    font-weight: 600;

}

/*==========================================================
WHY CHOOSE US
==========================================================*/

.why {

    background: #0d0d0d;

}

.why-container {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;

}

.why-card {

    background: #181818;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    transition: .5s;
    border: 1px solid rgba(212, 175, 55, .12);

}

.why-card:hover {

    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 25px 60px rgba(212, 175, 55, .15);

}

.why-card i {

    font-size: 60px;
    color: var(--gold);
    margin-bottom: 25px;

}

.why-card h3 {

    font-size: 26px;
    margin-bottom: 15px;

}

.why-card p {

    line-height: 1.9;
    color: #bdbdbd;

}

/*==========================================================
CALL TO ACTION
==========================================================*/

.cta {

    padding: 50px 6%;
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75));

    text-align: center;

}

.cta h2 {

    font-size: 34px;
    font-family: 'Cinzel', serif;
    margin-bottom: 14px;
    color: white;

}

.cta p {

    max-width: 700px;
    margin: 0 auto 25px auto;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;

}

/*==========================================================
GALLERY
==========================================================*/

.gallery {

    background: #111;

}

.gallery-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;

}

.gallery-grid img {

    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    transition: .8s;

}

.gallery-grid img:hover {

    transform: scale(1.08);
    box-shadow: 0 25px 60px rgba(212, 175, 55, .25);

}

/*==========================================================
LIGHTBOX
==========================================================*/

.lightbox {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .96);

    display: none;
    justify-content: center;
    align-items: center;

    z-index: 999999;

}

.lightbox.active {

    display: flex;

}

.lightbox img {

    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    animation: zoomImage .4s ease;

}

@keyframes zoomImage {

    from {

        transform: scale(.6);
        opacity: 0;

    }

    to {

        transform: scale(1);
        opacity: 1;

    }

}

.lightbox span {

    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 45px;
    cursor: pointer;
    color: white;

}

/*==========================================================
TESTIMONIALS
==========================================================*/

.testimonial {

    background: #0d0d0d;

}

.testimonial-container {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;

}

.testimonial-card {

    background: #181818;
    padding: 40px;
    border-radius: 22px;
    text-align: center;
    transition: .5s;

}

.testimonial-card:hover {

    transform: translateY(-12px);

}

.testimonial-card img {

    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: auto;
    object-fit: cover;
    border: 4px solid var(--gold);
    margin-bottom: 20px;

}

.testimonial-card h3 {

    margin-bottom: 15px;

}

.testimonial-card p {

    line-height: 2;
    color: #cfcfcf;
    margin-top: 20px;

}

.stars {

    color: gold;
    font-size: 18px;

}

/*==========================================================
INSTAGRAM
==========================================================*/

.instagram {

    background: #111;

}

.insta-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;

}

.insta-grid img {

    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: .6s;
    cursor: pointer;

}

.insta-grid img:hover {

    transform: scale(1.08);

}

/*==========================================================
PREMIUM IMAGE OVERLAY
==========================================================*/

.gallery-grid img,
.insta-grid img {

    position: relative;
    overflow: hidden;

}

.gallery-grid img:hover,
.insta-grid img:hover {

    filter: brightness(.85);

}

/*==========================================================
FLOATING GLOW
==========================================================*/

.gallery::before,
.instagram::before,
.cta::before {

    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    background: radial-gradient(circle,
            rgba(212, 175, 55, .12),
            transparent);

    top: 10%;
    left: -120px;

    border-radius: 50%;

    filter: blur(30px);

}

.gallery::after,
.instagram::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    background: radial-gradient(circle,
            rgba(212, 175, 55, .10),
            transparent);

    bottom: 5%;
    right: -80px;

    border-radius: 50%;

    filter: blur(30px);

}

/*==========================================================
CONTACT
==========================================================*/

.contact {

    background: #0d0d0d;

}

.contact-container {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;

}

.contact-info {

    background: #181818;
    padding: 45px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, .15);

}

.contact-info h3 {

    font-size: 34px;
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 25px;

}

.contact-info p {

    margin-bottom: 18px;
    font-size: 17px;
    color: #ddd;
    line-height: 1.8;

}

.contact-info i {

    color: var(--gold);
    margin-right: 12px;

}

.contact-buttons {

    margin-top: 35px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;

}

/*==========================================================
FORM
==========================================================*/

.contact-form {

    background: #181818;
    padding: 45px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, .15);

}

.contact-form form {

    display: flex;
    flex-direction: column;
    gap: 18px;

}

.contact-form input,
.contact-form textarea,
.contact-form select {

    padding: 16px;
    background: #101010;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    outline: none;
    transition: .4s;

}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {

    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, .15);

}

.contact-form textarea {

    resize: none;

}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form label {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-form .form-message {
    margin-top: 10px;
    min-height: 24px;
    font-size: 0.95rem;
    text-align: center;
    color: #ffffff;
    opacity: 0.95;
}

.contact-form .form-message.success {
    color: #8bc34a;
}

.contact-form .form-message.error {
    color: #ff7b7b;
}

/*==========================================================
MAP
==========================================================*/

.map {

    padding: 0;

}

.map iframe {

    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(.2);

}

/*==========================================================
FOOTER
==========================================================*/

footer {

    background: #050505;
    padding: 80px 8% 30px;

}

.footer-container {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;

}

.footer-col h2,
.footer-col h3 {

    color: var(--gold);
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;

}

.footer-col p {

    color: #bdbdbd;
    line-height: 1.9;

}

.footer-col ul {

    padding: 0;

}

.footer-col li {

    margin-bottom: 14px;

}

.footer-col a {

    color: #ddd;
    transition: .4s;

}

.footer-col a:hover {

    color: var(--gold);
    padding-left: 8px;

}

/*==========================================================
SOCIAL
==========================================================*/

.social {

    display: flex;
    gap: 15px;
    margin-top: 15px;

}

.social a {

    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #181818;
    border-radius: 50%;
    font-size: 20px;
    color: white;
    transition: .5s;

}

.social a:hover {

    background: var(--gold);
    color: #111;
    transform: translateY(-8px);

}

/*==========================================================
COPYRIGHT
==========================================================*/

footer hr {

    margin: 45px 0 25px;
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, .08);

}

.copyright {

    text-align: center;
    color: #999;
    letter-spacing: 1px;

}

/*==========================================================
WHATSAPP
==========================================================*/

.whatsapp {

    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #25D366;

    border-radius: 50%;

    font-size: 34px;

    color: white;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);

    z-index: 999;

    transition: .4s;

}

.whatsapp:hover {

    transform: scale(1.12);

}

/*==========================================================
BACK TO TOP
==========================================================*/

#topBtn {

    position: fixed;

    bottom: 105px;

    right: 25px;

    width: 55px;
    height: 55px;

    border: none;

    border-radius: 50%;

    background: var(--gold);

    color: #111;

    font-size: 22px;

    cursor: pointer;

    display: none;

    z-index: 999;

    transition: .4s;

}

#topBtn:hover {

    transform: translateY(-8px);

}

/*==========================================================
SECTION ANIMATION
==========================================================*/

.card,
.price-card,
.bridal-card,
.combo-card,
.jewel-card,
.aari-card,
.boutique-card,
.why-card,
.testimonial-card {

    transition: .5s ease;

}

/*==========================================================
RESPONSIVE
==========================================================*/

@media(max-width:1200px) {

    .hero-content h1 {

        font-size: 65px;

    }

}

@media(max-width:991px) {

    header {

        padding: 20px 6%;

        flex-direction: row;

        align-items: center;

        justify-content: space-between;

    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 12px;
        background: rgba(255, 255, 255, .05);
    }

    nav {
        position: fixed;
        inset: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, .96);
        transform: translateY(-110%);
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 110px;
        transition: transform .35s ease;
        z-index: 999;
        overflow-y: auto;
    }

    nav.open {
        transform: translateY(0);
    }

    nav ul {

        flex-direction: column;

        gap: 18px;

        width: 100%;

        padding: 0 24px;

    }

    nav li {
        width: 100%;
    }

    nav a {
        display: block;
        width: 100%;
        padding: 18px 0;
        font-size: 18px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .menu-toggle {
        position: relative;
        z-index: 1001;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10001;
    }

    .hero-content h1 {

        font-size: 52px;

    }

    .about {

        grid-template-columns: 1fr;

    }

    .contact-container {

        grid-template-columns: 1fr;

    }

    .counter-box {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    section {

        padding: 80px 20px;

    }

    .hero-content h1 {

        font-size: 42px;

    }

    .hero-content h3 {

        font-size: 18px;

    }

    .hero-content p {

        font-size: 15px;

    }

    .title {

        font-size: 38px;

    }

    .title-left {

        font-size: 38px;

    }

    .counter-box {

        grid-template-columns: 1fr;

    }

    .contact-buttons {

        flex-direction: column;

    }

    .footer-container {

        grid-template-columns: 1fr;

    }

    .gallery-grid {

        grid-template-columns: 1fr;

    }

    .jewellery-grid {

        grid-template-columns: 1fr;

    }

    .aari-grid {

        grid-template-columns: 1fr;

    }



    .service-grid {

        grid-template-columns: 1fr;

    }

    .price-grid {

        grid-template-columns: 1fr;

    }

}

@media(max-width:500px) {

    .hero-content h1 {

        font-size: 34px;

    }

    .hero-content p {

        font-size: 14px;

    }

    .btn,
    .btn2 {

        width: 100%;
        text-align: center;

    }

    .logo h2 {

        font-size: 30px;

    }

}

/*==========================================================
END OF CSS
==========================================================*/
/*======================================================
        PREMIUM ADVANCED COURSE - PART 1
======================================================*/

.premium-course {
    display: flex;
    gap: 25px;
    align-items: center;
    justify-content: center;
    background: #111;
    border: 1px solid rgba(255, 215, 0, .25);
    border-radius: 18px;
    padding: 26px 20px;
    margin: 25px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .45);
}

.premium-course::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 215, 0, .06),
            transparent 35%,
            rgba(255, 215, 0, .03));
    pointer-events: none;
}

.premium-ribbon {
    position: absolute;
    top: 25px;
    right: -45px;
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #111;
    padding: 10px 55px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(255, 215, 0, .35);
}

.course-left {
    flex: 1;
    position: relative;
}

.course-image {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.course-image img {
    width: 100%;
    display: block;
    border-radius: 22px;
    transition: .6s ease;
}

.course-image:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .55),
            transparent 45%);
}

.student-popup {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, .25);
    border-radius: 16px;
    padding: 15px;
}

.student-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid gold;
    object-fit: cover;
}

.popup-content h4 {
    color: #FFD700;
    margin-bottom: 5px;
}

.popup-content p {
    color: #ddd;
    font-size: .9rem;
    margin-bottom: 10px;
}

.certificate {
    width: 95px;
    margin-bottom: 10px;
}

.verify {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #FFD700;
    color: #111;
    padding: 6px 12px;
    border-radius: 25px;
    font-size: .8rem;
    font-weight: 600;
}

.course-right {
    flex: 1;
}

.course-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 215, 0, .12);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, .3);
    margin-bottom: 20px;
    font-weight: 600;
}

.course-title {
    font-size: 3rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
}

.course-title span {
    display: block;
    color: #FFD700;
}

.course-description {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.course-info {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.price-card {
    flex: 1;
    background: linear-gradient(135deg, #FFD700, #b8860b);
    color: #111;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    min-width: 230px;
}

.price-card small {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-card h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.price-card span {
    font-weight: 600;
}

.duration-card {
    flex: 1;
    min-width: 230px;
    display: flex;
    gap: 15px;
    align-items: center;
    background: #1b1b1b;
    border: 1px solid rgba(255, 215, 0, .25);
    border-radius: 20px;
    padding: 25px;
}

.duration-card i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFD700;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.duration-card h4 {
    color: #FFD700;
    margin-bottom: 6px;
}

.duration-card p {
    color: #ddd;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.highlight-box {
    background: #1b1b1b;
    border: 1px solid rgba(255, 215, 0, .15);
    border-radius: 18px;
    text-align: center;
    padding: 22px;
    transition: .35s;
}

.highlight-box i {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 12px;
}

.highlight-box h5 {
    color: #fff;
    font-size: 1rem;
}

.highlight-box:hover {
    transform: translateY(-8px);
    border-color: #FFD700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, .18);
}

.course-topics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.topic-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #181818;
    padding: 14px 18px;
    border-radius: 12px;
    color: #eee;
    transition: .3s;
    border: 1px solid transparent;
}

.topic-item i {
    color: #FFD700;
}

.topic-item:hover {
    transform: translateX(10px);
    border-color: #FFD700;
}

.course-footer {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.course-footer .btn,
.course-footer .btn-outline {
    padding: 15px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
}

.course-footer .btn {
    background: linear-gradient(135deg, #FFD700, #B8860B);
    color: #111;
}

.course-footer .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, .35);
}

.course-footer .btn-outline {
    border: 2px solid #FFD700;
    color: #FFD700;
}

.course-footer .btn-outline:hover {
    background: #FFD700;
    color: #111;
}

@media(max-width:1100px) {

    .premium-course {
        flex-direction: column;
        padding: 35px;
    }

    .course-title {
        font-size: 2.4rem;
    }

    .course-topics {
        grid-template-columns: 1fr;
    }

    .highlight-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width:768px) {

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .course-info {
        flex-direction: column;
    }

    .course-footer {
        flex-direction: column;
    }

    .course-footer a {
        text-align: center;
    }

    .course-title {
        font-size: 2rem;
    }

    .student-popup {
        position: static;
        margin-top: 20px;
    }

}

/*======================================================
        PREMIUM ADVANCED COURSE - PART 2
======================================================*/


/* Floating Animation */

@keyframes floatCard {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }

}

.course-image {

    animation: floatCard 5s ease-in-out infinite;

}


/* Gold Glow */

@keyframes goldGlow {

    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, .2);
    }

    50% {
        box-shadow: 0 0 35px rgba(255, 215, 0, .6);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, .2);
    }

}

.price-card {

    animation: goldGlow 3s infinite;

}


/* Ribbon Animation */

@keyframes ribbonGlow {

    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }

    100% {
        filter: brightness(1);
    }

}

.premium-ribbon {

    animation: ribbonGlow 2.5s infinite;

}


/* Shine Effect */

.course-image::after {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 60%;

    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);

    transform: skewX(-25deg);

    transition: 1s;

}

.course-image:hover::after {

    left: 150%;

}


/* Hover Card */

.premium-course {

    transition: .5s;

}

.premium-course:hover {

    transform: translateY(-8px);

    box-shadow: 0 30px 80px rgba(255, 215, 0, .15);

}


/*----------------------------------
ACADEMY FEATURES
-----------------------------------*/

.academy-bottom {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin: 70px 0;

}

.bottom-box {

    background: #151515;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    border: 1px solid rgba(255, 215, 0, .2);

    transition: .4s;

    position: relative;

    overflow: hidden;

}

.bottom-box::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: linear-gradient(90deg, #FFD700, #b8860b);

}

.bottom-box:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(255, 215, 0, .18);

}

.icon-circle {

    width: 75px;

    height: 75px;

    margin: auto;

    border-radius: 50%;

    background: linear-gradient(135deg, #FFD700, #B8860B);

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

}

.icon-circle i {

    font-size: 2rem;

    color: #111;

}

.bottom-box h4 {

    color: #FFD700;

    margin-bottom: 15px;

    font-size: 1.2rem;

}

.bottom-box p {

    color: #ddd;

    line-height: 1.8;

}


/*----------------------------------
Gallery
-----------------------------------*/

.gallery {

    padding: 90px 8%;

}

.gallery-heading {

    text-align: center;

    margin-bottom: 60px;

}

.gallery-heading span {

    color: #FFD700;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.gallery-heading h2 {

    font-size: 3rem;

    color: white;

    margin: 15px 0;

}

.gallery-heading h2 span {

    display: block;

    font-size: 3.3rem;

}

.gallery-heading p {

    color: #bbb;

    max-width: 750px;

    margin: auto;

    line-height: 1.8;

}

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 22px;

}

.gallery-grid img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    border-radius: 20px;

    cursor: pointer;

    transition: .5s;

    filter: brightness(.9);

    border: 2px solid transparent;

}

.gallery-grid img:hover {

    transform: translateY(-10px) scale(1.05);

    filter: brightness(1);

    border-color: #FFD700;

    box-shadow: 0 20px 40px rgba(255, 215, 0, .25);

}


/* Scroll Fade */

.course-card,
.bottom-box,
.gallery-grid img {

    opacity: 0;

    animation: fadeUp .8s forwards;

}

.course-card {

    animation-delay: .2s;

}

.bottom-box:nth-child(1) {

    animation-delay: .3s;

}

.bottom-box:nth-child(2) {

    animation-delay: .5s;

}

.bottom-box:nth-child(3) {

    animation-delay: .7s;

}

.gallery-grid img:nth-child(1) {
    animation-delay: .2s;
}

.gallery-grid img:nth-child(2) {
    animation-delay: .3s;
}

.gallery-grid img:nth-child(3) {
    animation-delay: .4s;
}

.gallery-grid img:nth-child(4) {
    animation-delay: .5s;
}

.gallery-grid img:nth-child(5) {
    animation-delay: .6s;
}

.gallery-grid img:nth-child(6) {
    animation-delay: .7s;
}

.gallery-grid img:nth-child(7) {
    animation-delay: .8s;
}

.gallery-grid img:nth-child(8) {
    animation-delay: .9s;
}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(50px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* Premium Title */

.course-title {

    background: linear-gradient(90deg, #fff, #FFD700, #fff);

    background-size: 200% auto;

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: titleShine 5s linear infinite;

}

.course-title span {

    -webkit-text-fill-color: #FFD700;

}

@keyframes titleShine {

    0% {
        background-position: 0%;
    }

    100% {
        background-position: 200%;
    }

}


/*----------------------------------
Responsive
-----------------------------------*/

@media(max-width:992px) {

    .academy-bottom {

        grid-template-columns: 1fr;

    }

    .gallery-heading h2 {

        font-size: 2.4rem;

    }

    .gallery-heading h2 span {

        font-size: 2.6rem;

    }

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .gallery-grid {

        grid-template-columns: 1fr;

    }

    .gallery-grid img {

        height: 250px;

    }

    .bottom-box {

        padding: 30px;

    }

    .gallery-heading h2 {

        font-size: 2rem;

    }

    .gallery-heading h2 span {

        font-size: 2.2rem;

    }

}

@media(max-width:480px) {

    .premium-course {

        padding: 25px;

    }

    .course-title {

        font-size: 1.8rem;

    }

    .price-card h1 {

        font-size: 2.2rem;

    }

    .gallery {

        padding: 70px 20px;

    }

}

.text-center {
    text-align: center;
}

.d-block {
    display: block;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.title-group h2 {
    margin-top: 15px;
    display: block;
    width: 100%;
}

/* =========================================
   ACADEMY & COURSE LAYOUT MODIFICATIONS
========================================= */

/* Center Headers and fix clean description spacing */
.text-center {
    text-align: center;
}

.section-heading {
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.academy-main-desc {
    max-width: 800px;
    margin: 20px auto 0 auto;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #cccccc;
}

/* Yellow Glow Effect for Titles */
.glow-title-yellow {
    font-family: 'Cinzel', serif;
    color: #fff;
    font-size: 2.5rem;
    margin: 10px 0;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 200, 0, 0.4);
}

.glow-title-yellow-small {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5), 0 0 15px rgba(255, 200, 0, 0.3);
}

/* Parallel Container (Flexbox layout) */
.course-card-custom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    background: #111111;
    border: 1px solid #222222;
    border-radius: 14px;
    padding: 26px 20px;
    margin-bottom: 25px;
    position: relative;
    overflow: visible;
}

/* Force stacked layout on smaller tablets and mobile screens */
@media (max-width: 992px) {
    .course-card-custom {
        flex-direction: column;
    }

    .course-main-details,
    .course-media-right {
        width: 100% !important;
    }
}

/* Main text content area taking up left side */
.course-main-details {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Pricing and Metadata clean horizontal spacing */
.course-pricing-row {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 1.3rem;
    border-bottom: 1px solid #222222;
    padding-bottom: 15px;
}

.price-tag {
    color: #ffd700;
    font-weight: 700;
    font-size: 1.6rem;
}

/* Clean Horizontal Grid Features */
.course-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background: #161616;
    padding: 15px;
    border-radius: 8px;
}

/* Clean multi-column arrangement for long list items */
.course-list-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
    padding-left: 20px;
    list-style-type: square;
    color: #dddddd;
}

/* Horizontal alignment for buttons */
.course-footer-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

/* Media Area Placement on the Right side */
.course-media-right {
    width: 35%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.course-image-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.course-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Right-side aligned Pop-up card container styling */
.student-achievement-popup {
    background: #1c1c1c;
    border: 1px solid #ffd700;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.student-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffd700;
}

.popup-header h4 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
}

.popup-header p {
    margin: 2px 0 0 0;
    font-size: 0.85rem;
    color: #aaa;
}

.certificate-img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #333;
}

.verify-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffd700;
    color: #000;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    justify-content: center;
}

/* =========================================
   INTERACTIVE BUTTONS & ANIMATION EFFECTS
========================================= */

/* 1. Enroll Now Button Glow Effect on Cursor Hover */
.enroll-glow-btn {
    background-color: #ffd700;
    color: #000000;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    border: 2px solid #ffd700;
}

.enroll-glow-btn:hover {
    background-color: #ffe033;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

/* 2. Attractive & Premium Upgrade for Student Success Button */
.btn-success-premium {
    background: transparent;
    color: #ffd700;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #ffd700;
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
}

.btn-success-premium:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* 3. Heartbeat Pulse Effect for Limited Seats Badge */
.heartbeat-effect {
    background-color: #d9534f;
    /* Premium Crimson Red alert tone */
    color: #ffffff;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    display: inline-block;
    animation: heartbeat 1.5s infinite ease-in-out;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 83, 79, 0.7);
    }

    30% {
        transform: scale(1.06);
        box-shadow: 0 0 0 10px rgba(217, 83, 79, 0);
    }

    60% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 83, 79, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 83, 79, 0);
    }
}

/* =========================================
   AK PROFESSIONAL BEAUTY ACADEMY
========================================= */

/* Main Section Wrapper Spacing */
.beauty-course {
    padding: 80px 0;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

/* Center Headers & Clean Spacing */
.text-center {
    text-align: center;
}

.section-heading {
    margin-bottom: 50px;
    padding: 0 20px;
}

.section-tag {
    display: inline-block;
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* 1. Yellow Glow Effect for Titles */
.glow-title-yellow {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 2.5rem;
    margin: 10px auto;
    max-width: 800px;
    line-height: 1.3;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 200, 0, 0.4);
}

.glow-title-yellow-small {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5), 0 0 15px rgba(255, 200, 0, 0.3);
}

.academy-main-desc {
    max-width: 750px;
    margin: 20px auto 0 auto;
    line-height: 1.7;
    font-size: 1.05rem;
    color: #cccccc;
}

/* Stats Counter Grid Layout */
.academy-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
}

.stat-box {
    background: #111111;
    border: 1px solid #222222;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: #ffd700;
}

.stat-box h3 {
    font-family: 'Cinzel', serif;
    color: #ffd700;
    font-size: 2rem;
    margin: 0 0 10px 0;
}

.stat-box p {
    margin: 0;
    color: #aaaaaa;
    font-size: 0.95rem;
}

/* Course Main Container Layout */
.course-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Parallel Container Block (Flexbox Row Alignment) */
.course-card-custom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 50px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 60px;
    position: relative;
    overflow: visible;
}

.course-card-custom.premium-course {
    border-color: #ffd700;
    background: linear-gradient(145deg, #0a0a0a 0%, #141105 100%);
}

/* Heartbeat Pulse Effect for Limited Seats Badge */
.limited-seat {
    position: absolute;
    top: -15px;
    left: 40px;
    z-index: 5;
}

.heartbeat-effect {
    background-color: #d9534f;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(217, 83, 79, 0.7);
    animation: heartbeat 1.6s infinite ease-in-out;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 83, 79, 0.7);
    }

    30% {
        transform: scale(1.06);
        box-shadow: 0 0 0 12px rgba(217, 83, 79, 0);
    }

    60% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 83, 79, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(217, 83, 79, 0);
    }
}

.premium-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffd700;
    color: #000000;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Left Main Content Configuration */
.course-main-details {
    width: 58%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-badge {
    color: #ffd700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.course-description-text {
    color: #bbbbbb;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Custom Pricing and Meta Container Layout Rows */
/* =========================================
   PRICE CARD & TOP-RIGHT VIBRANT ICON FIX
========================================= */

/* Default State: Solid Yellow Card with Dark Text */
.price-card {
    position: relative !important;
    /* Forces top-right icon positioning */
    background-color: #ffd700 !important;
    border: 2px solid #ffd700 !important;
    border-radius: 16px;
    padding: 30px 20px 20px 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

/* BIGGER & COLORFUL TOP-RIGHT ICON */
.card-top-icon {
    position: absolute !important;
    top: 12px !important;
    right: 14px !important;
    font-size: 1.5rem !important;
    /* Made significantly bigger */
    color: #8b0000 !important;
    /* Colorful Vibrant Deep Ruby Red on Yellow */
    transition: all 0.35s ease;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
}

/* Default Headings (Service Name) */
.price-card h3 {
    color: #000000 !important;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 10px 0 6px 0;
    transition: all 0.35s ease;
}

/* Default Subtext (Price Range) */
.price-card span {
    display: inline-block;
    color: #222222 !important;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.35s ease;
}

/* =========================================
   CURSOR HOVER STATE (WHITE TEXT & GLOW)
========================================= */

.price-card:hover {
    background-color: #121212 !important;
    /* Sleek dark card background */
    border-color: #ffd700 !important;
    transform: translateY(-5px);
    /* Outer Box Yellow Glow */
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7),
        0 0 35px rgba(255, 215, 0, 0.4) !important;
}

/* Force BOTH Title and Price to turn BRIGHT WHITE on Hover */
.price-card:hover h3,
.price-card:hover span {
    color: #ffffff !important;
    text-shadow: 0 0 8px #ffd700, 0 0 15px rgba(255, 215, 0, 0.8) !important;
}

/* Icon Turns Glowing Golden-White on Hover */
.price-card:hover .card-top-icon {
    color: #ffd700 !important;
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.9));
}


/* Two-Column List Configurations */
.course-list-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 30px;
    padding-left: 0;
    margin: 0 0 35px 0;
    list-style: none;
}

.course-list-split li {
    color: #dddddd;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.course-list-split li::before {
    content: "▪";
    color: #ffd700;
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 1.1rem;
}

/* Dynamic Core Button Interface Row Elements */
.course-footer-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Enroll Now Button Glow Effect on Cursor Hover */
.enroll-glow-btn {
    background-color: #ffd700;
    color: #000000 !important;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid #ffd700;
    cursor: pointer;
}

.enroll-glow-btn:hover {
    background-color: #ffe033;
    border-color: #ffe033;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
}

/* Attractive & Premium Upgrade for Student Success Button */
.btn-success-premium {
    background: transparent;
    color: #ffd700;
    font-weight: 600;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-success-premium:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Media Component Architecture (Right Side Layout) */
.course-media-right {
    width: 38%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: space-between;
}

.course-image-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222222;
    position: relative;
}

.course-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card-custom:hover .course-image-container img {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

/* Achievement Pop-up Box Configuration */
.student-achievement-popup {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.3s ease;
}

.course-card-custom:hover .student-achievement-popup {
    border-color: rgba(255, 215, 0, 0.4);
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.student-photo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffd700;
}

.popup-header h4 {
    margin: 0;
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 600;
}

.popup-header p {
    margin: 4px 0 0 0;
    font-size: 0.85rem;
    color: #aaaaaa;
}

.certificate-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    border: 1px solid #222222;
}

.verify-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffd700;
    color: #000000;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    justify-content: center;
    letter-spacing: 0.3px;
}

/* Academy Bottom Multi-Feature Row Grid */
.academy-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    padding: 0 20px;
}

.bottom-box {
    background: #080808;
    border: 1px solid #161616;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid #ffd700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.icon-circle i {
    color: #ffd700;
    font-size: 1.4rem;
}

.bottom-box h4 {
    font-size: 1.15rem;
    margin: 0 0 12px 0;
    color: #ffffff;
}

.bottom-box p {
    margin: 0;
    color: #999999;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =========================================
   RESPONSIVE DESIGN INTERFACE BREAKPOINTS
========================================= */

/* Adaptive Media Query Breakdown for Tablets and Medium Displays */
@media (max-width: 992px) {
    .course-card-custom {
        flex-direction: column;
        padding: 35px;
        gap: 35px;
    }

    .course-main-details,
    .course-media-right {
        width: 100%;
    }

    .academy-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .academy-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Adaptive Media Query Breakdown for Small Smart Displays & Smartphones */
@media (max-width: 576px) {
    .glow-title-yellow {
        font-size: 1.85rem;
    }

    .glow-title-yellow-small {
        font-size: 1.4rem;
    }

    .course-card-custom {
        padding: 25px 20px;
    }

    .course-pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .course-features-grid,
    .course-list-split {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .course-footer-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .enroll-glow-btn,
    .btn-success-premium {
        justify-content: center;
        width: 100%;
    }

    .academy-stats {
        grid-template-columns: 1fr;
    }

    .limited-seat {
        left: 20px;
    }
}

/* =========================================
   LOCATION BUTTON STYLES
========================================= */

.map-location-section {
    padding: 40px 0;
    text-align: center;
    background-color: #000000;
}

.location-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-location-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #111111;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.map-location-btn .map-icon {
    font-size: 1.4rem;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.map-location-btn:hover {
    background-color: #ffd700;
    color: #000000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7), 0 0 25px rgba(255, 215, 0, 0.5);
    transform: translateY(-3px);
}

.map-location-btn:hover .map-icon {
    color: #000000;
    transform: scale(1.15);
}