/* ========================================================= */
/* --- 1. GLOBAL SETUP & NAVBAR SECTION --- */
/* ========================================================= */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: 'Poppins', sans-serif; 
    background-color: #0a0a0a; 
    color: #fff; 
    line-height: 1.6; 
    overflow-x: hidden;
}

h1, h2, h3 { 
    font-family: 'Poppins', sans-serif; 
}

/* --- Navbar Desktop Version --- */
.navbar { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 50px; 
    background-color: #ffffff; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

.brand-link { 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    text-decoration: none; 
}

/* 🔥 HEADER LOGO & ROTATING RING FIX (No Stretching) 🔥 */
.header-logo-wrapper {
    position: relative;
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-rotating-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed #d4af37;
    animation: rotateRing 8s linear infinite;
}

@keyframes rotateRing { 
    from { transform: rotate(0deg); } 
    to { transform: rotate(360deg); } 
}

.brand-logo { 
    width: 42px; 
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
    animation: none !important; 
}

.brand-name { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 20px; 
    font-weight: 700; 
    color: #000000; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    transition: color 0.3s ease; 
}

.brand-link:hover .brand-name { 
    color: #d4af37; 
}

.menu-toggle { 
    display: none; 
    font-size: 28px; 
    color: #333; 
    cursor: pointer; 
}

.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 25px; 
}

.nav-links a { 
    text-decoration: none; 
    color: #333; 
    font-weight: 500; 
    font-size: 15px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    display: inline-block; 
    transition: all 0.3s ease; 
}

.nav-links a:hover { 
    color: #d4af37; 
    transform: scale(1.1) translateY(-2px); 
}

/* Navbar Link Hover aur Active State */
.nav-links li a {
    transition: color 0.3s ease;
}

/* Jab mouse le jayein (hover) ya page active ho */
.nav-links li a:hover,
.nav-links li a.active {
    color: #d4af37 !important;
}

/* ========================================================= */
/* --- 2. HERO SECTION --- */
/* ========================================================= */
.hero-overlay-section {
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    padding: 60px 8% 0 8%;
    background: linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.7)), url('./Image/bg-brushes.jpg');
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
    color: #ffffff; 
    min-height: 90vh; 
    position: relative; 
    overflow: hidden;
    z-index: 1;
}

.hero-overlay-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.9), #d4af37);
    border-bottom: 2px solid #ffffff; 
    pointer-events: none;
    z-index: 10;
}

.particle-container { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    pointer-events: none; 
    z-index: 0; 
}

.gold-dust { 
    position: absolute; 
    background: radial-gradient(circle, rgba(212, 175, 55, 0.8) 0%, rgba(212, 175, 55, 0) 70%); 
    border-radius: 50%; 
    opacity: 0; 
    animation: float-sparkles infinite ease-in-out; 
}

.p1 { width: 40px; height: 40px; left: 15%; bottom: -10%; animation-duration: 8s; }
.p2 { width: 80px; height: 80px; left: 50%; bottom: -20%; animation-duration: 12s; animation-delay: 2s; }
.p3 { width: 30px; height: 30px; left: 75%; bottom: -10%; animation-duration: 9s; animation-delay: 4s; }
.p4 { width: 100px; height: 100px; left: 85%; bottom: -30%; animation-duration: 15s; animation-delay: 1s; }
.p5 { width: 50px; height: 50px; left: 30%; bottom: -15%; animation-duration: 10s; animation-delay: 3s; }
.p6 { width: 25px; height: 25px; left: 65%; bottom: -5%; animation-duration: 7s; animation-delay: 5s; }

@keyframes float-sparkles { 
    0% { transform: translateY(0) scale(0.5); opacity: 0; } 
    50% { transform: translateY(-300px) scale(1.2); opacity: 0.7; } 
    100% { transform: translateY(-700px) scale(0.5); opacity: 0; } 
}

.hero-left { 
    flex: 1; 
    padding-right: 40px; 
    text-align: left; 
    z-index: 2; 
    padding-bottom: 60px; 
}

.hero-left h2 { 
    font-family: 'Alex Brush', cursive;
    font-size: 65px; 
    color: #ffffff;
    font-weight: 400; 
    margin-top: 0px; 
    margin-bottom: -15px; 
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); 
}

.hero-left h1 { 
    font-family: 'Cinzel', serif; 
    font-size: 120px; 
    color: #ffffff; 
    line-height: 1; 
    font-weight: normal; 
    margin-bottom: 30px; 
    text-shadow: 0px 10px 30px rgba(0,0,0,0.8); 
}

.hero-tagline { 
    font-family: 'Poppins', sans-serif; 
    font-weight: 300;
    font-size: 20px; 
    color: #d4af37; 
    letter-spacing: 2px; 
    margin-bottom: 25px; 
}

.btn-animated-gold { 
    display: inline-block; 
    font-family: 'Poppins', sans-serif; 
    padding: 15px 200px;
    margin-top: 10px;
    border: 1px solid #d4af37; 
    color: #d4af37; 
    font-size: 16px; 
    font-weight: 500; 
    border-radius: 40px; 
    text-decoration: none; 
    letter-spacing: 2px; 
    background: rgba(212, 175, 55, 0.05); 
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    animation: gold-pulse 2s infinite; 
    transition: all 0.3s ease; 
}

.btn-animated-gold:hover { 
    background-color: #d4af37; 
    color: #000; 
    animation: none; 
    transform: scale(1.05); 
    box-shadow: 0px 10px 25px rgba(212, 175, 55, 0.4); 
}

@keyframes gold-pulse { 
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); } 
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); } 
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); } 
}

.hero-right { 
    flex: 1; 
    display: flex; 
    justify-content: flex-end; 
    align-items: flex-end; 
    z-index: 2; 
    height: 100%; 
}

.hero-portrait { 
    max-width: 450px; 
    height: 90vh; 
    width: 100%; 
    display: block; 
    object-fit: cover; 
    object-position: center 10%; 
    filter: drop-shadow(0px 10px 40px rgba(212, 175, 55, 0.5)); 
}


/* ========================================================= */
/* --- 3. SERVICES SECTION --- */
/* ========================================================= */
.services-section {
    padding: 50px 5% 100px 5%;
    background-color: #ffffff;
    color: #f7f3f3;
    text-align: center;
}

.section-header { 
    margin-bottom: 50px; 
}

.services-section .sub-heading {
    font-family: 'Alex Brush', cursive;
    font-size: 45px;
    color: #d4af37;
    font-weight: 400;
    margin-bottom: -10px;
}

.services-section .main-heading {
    font-family: 'Cinzel', serif;
    font-size: 55px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #000000;
}

.heading-line {
    width: 60px;
    height: 2px;
    background-color: #d4af37;
    margin: 15px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #111111;
    border: 1px solid #333333;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    border-color: #d4af37;
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.card-img-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 15px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; 
    transition: transform 0.5s ease;
}

.service-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 25px;
    color: #d4af37;
    margin-bottom: 8px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-icon { 
    font-size: 16px; 
}

.card-content p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.5;
    flex-grow: 1;
}

.service-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 2px;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    color: #d4af37;
    border-color: #ffffff;
}


/* ========================================================= */
/* --- 4. COURSE SECTION --- */
/* ========================================================= */
.luxury-course-section {
    position: relative;
    background-color: #060606;
    background-image: 
        radial-gradient(rgba(212, 175, 55, 0.18) 1.5px, transparent 1.5px),
        radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(6, 6, 6, 0.94), rgba(6, 6, 6, 0.94));
    background-size: 40px 40px, 25px 25px, cover;
    background-position: 0 0, 10px 10px, center;
    animation: dotParticleAnimation 30s linear infinite;
    
    padding: 130px 5%;
    overflow: hidden;
    color: #ffffff;
}

@keyframes dotParticleAnimation {
    0% { background-position: 0 0, 10px 10px, center; }
    100% { background-position: 100px 100px, 110px 110px, center; }
}

.luxury-top-border, .luxury-bottom-border {
    position: absolute;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    box-sizing: border-box;
    z-index: 10;
}
.luxury-top-border { top: 25px; }
.luxury-bottom-border { bottom: 25px; }

.border-glow-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, #ffffff, #d4af37, transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.9);
}

.border-diamond {
    color: #d4af37;
    font-size: 16px;
    padding: 0 20px;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.9);
}

.luxury-course-container {
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}

.luxury-left-side {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.luxury-main-heading {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    background: linear-gradient(45deg, #ffffff, #d4af37, #f3e5ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    line-height: 1.25;
}

.luxury-feature-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 35px;
    width: 100%;
    max-width: 580px;
}

.lux-box {
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 22px 18px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.lux-box:hover {
    border-color: #d4af37;
    transform: translateY(-6px);
    background: rgba(28, 28, 28, 0.95);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
}

.lux-emoji {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.lux-box p {
    font-size: 15px;
    color: #f0f0f0;
    margin: 0;
    font-weight: 600;
}

.luxury-sub-heading {
    font-family: 'Alex Brush', cursive;
    font-size: 50px;
    color: #d4af37;
    margin-bottom: 30px;
    font-weight: 400;
}

.luxury-animated-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #111111;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-animated-btn svg {
    transition: transform 0.3s ease;
}

.luxury-animated-btn:hover {
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.luxury-animated-btn:hover svg {
    transform: translateX(6px);
}

.luxury-right-side {
    display: flex;
    justify-content: center;
}

.luxury-form-card {
    position: relative;
    background: #ffffff;
    border: 2px solid #d4af37;
    padding: 40px;
    border-radius: 18px;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
    text-align: left;
}

.luxury-form-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 65px rgba(212, 175, 55, 0.45), 0 0 25px rgba(255, 255, 255, 0.9);
}

.form-card-header {
    margin-bottom: 25px;
}

.form-box-title {
    font-family: 'Cinzel', serif;
    font-size: 23px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
}

.form-box-subtitle {
    font-size: 14px;
    color: #555555;
}

.lux-input-group {
    margin-bottom: 16px;
}

.lux-input-group input {
    width: 100%;
    padding: 14px 18px;
    background: #f8f8f8;
    border: 1px solid #cccccc;
    border-radius: 9px;
    color: #111111;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.lux-input-group input:focus {
    border-color: #d4af37;
    background: #ffffff;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.lux-input-group input::placeholder {
    color: #777777;
}

.lux-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #d4af37, #b08d26);
    color: #ffffff;
    border: none;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    margin-top: 8px;
}

.lux-submit-btn:hover {
    background: linear-gradient(135deg, #e5be40, #c49c2b);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.55);
}


/* ========================================================= */
/* --- 5. SOCIAL MEDIA SECTION (Desktop & Mobile with 5 Options) --- */
/* ========================================================= */
.social-media-section {
    padding: 80px 5%;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.social-white-box {
    position: relative;
    width: 100%;
    max-width: 1100px;
    background: #ffffff;
    border-radius: 24px;
    padding: 60px 40px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.social-white-box:hover {
    transform: translateY(-12px) rotateX(3deg) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(212, 175, 55, 0.1);
}

.floating-icons-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.fly-icon {
    position: absolute;
    opacity: 0.3;
    animation: flyUpward 9s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fly-icon:nth-child(1) { left: 8%; bottom: -15%; animation-duration: 7s; animation-delay: 0s; }
.fly-icon:nth-child(2) { left: 30%; bottom: -15%; animation-duration: 10s; animation-delay: 2s; }
.fly-icon:nth-child(3) { left: 55%; bottom: -15%; animation-duration: 8s; animation-delay: 1s; }
.fly-icon:nth-child(4) { left: 80%; bottom: -15%; animation-duration: 9s; animation-delay: 3s; }

@keyframes flyUpward {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    15% { opacity: 0.3; }
    85% { opacity: 0.3; }
    100% { transform: translateY(-450px) rotate(360deg); opacity: 0; }
}

.social-media-header {
    margin-bottom: 45px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.social-sub-heading {
    font-family: 'Alex Brush', cursive;
    font-size: 40px;
    color: #d4af37;
    font-weight: 400;
    margin-bottom: -5px;
}

.social-main-heading {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111111;
}

.social-heading-line {
    width: 50px;
    height: 2px;
    background-color: #d4af37;
    margin: 12px auto 0;
}

.social-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.social-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: translateY(-6px);
}

/* 🔥 SOCIAL ICON RING FIX (No Stretching) 🔥 */
.icon-ring-wrapper {
    position: relative;
    width: 85px;
    height: 85px;
    min-width: 85px;
    min-height: 85px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed #d4af37;
    animation: rotateRing 7s linear infinite;
}

.social-circle-icon {
    width: 68px;
    height: 68px;
    min-width: 68px;
    min-height: 68px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    background: #111111;
    color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2;
}

.social-item:hover .social-circle-icon {
    background: #d4af37;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.social-name {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    letter-spacing: 0.5px;
}

.social-item:hover .social-name {
    color: #d4af37;
}


/* ========================================================= */
/* --- 6. WHY CHOOSE US SECTION --- */
/* ========================================================= */
.why-choose-section {
    padding: 80px 10% 100px 10%;
    background-color: #0a0a0a;
    text-align: center;
}

.why-choose-header { 
    margin-bottom: 50px; 
}

.why-sub-heading {
    font-family: 'Alex Brush', cursive;
    font-size: 40px;
    color: #d4af37;
    font-weight: 400;
    margin-bottom: -10px;
}

.why-main-heading {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
}

.why-heading-line {
    width: 60px;
    height: 2px;
    background-color: #d4af37;
    margin: 15px auto 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.why-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.25);
}

.why-icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    background-color: rgba(212, 175, 55, 0.1);
    border: 1px solid #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon-box {
    background-color: #d4af37;
    transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    color: #111111;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.why-card p {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}


/* ========================================================= */
/* --- 7. REVIEWS SECTION --- */
/* ========================================================= */
.reviews-section {
    padding: 80px 5% 100px 5%;
    background-color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.reviews-header { 
    margin-bottom: 40px; 
}

.reviews-sub-heading {
    font-family: 'Alex Brush', cursive;
    font-size: 40px;
    color: #d4af37;
    font-weight: 400;
    margin-bottom: -8px;
}

.reviews-main-heading {
    font-family: 'Cinzel', serif;
    font-size: 38px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
}

.reviews-heading-line {
    width: 60px;
    height: 2px;
    background-color: #d4af37;
    margin: 15px auto 0;
}

.reviews-slider-container {
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar { 
    display: none; 
}

.review-card {
    min-width: calc(33.333% - 20px);
    background-color: #fff5f7;
    border: 1px solid #f3d1dc;
    border-radius: 12px;
    padding: 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37;
}

.client-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 600;
    color: #222222;
}

.star-rating {
    font-size: 13px;
    letter-spacing: 1px;
}

.review-text {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.reviews-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.review-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: 2px solid #d4af37;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-btn:hover {
    background-color: #d4af37;
    color: #1a1a1a;
    transform: scale(1.05);
}


/* ========================================================= */
/* --- 8. FOOTER SECTION --- */
/* ========================================================= */
.footer-section {
    background-color: #141414;
    color: #ffffff;
    padding: 80px 5% 30px 5%;
    position: relative;
    border-top: 3px solid #d4af37;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 90px;
    margin-bottom: 50px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

/* 🔥 FOOTER LOGO & ROTATING RING FIX (No Stretching) 🔥 */
.footer-logo-wrapper {
    position: relative;
    width: 55px;
    height: 55px;
    min-width: 55px;
    min-height: 55px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-rotating-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed #d4af37;
    animation: rotateRing 8s linear infinite;
}

.footer-logo {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    flex-shrink: 0;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    z-index: 2;
}

.footer-brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-bio {
    font-size: 14px;
    color: #b5b5b5;
    line-height: 1.6;
    margin: 0;
}

.footer-column h3 {
    font-family: 'Cinzel', serif;
    font-size: 17px;
    color: #d4af37;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    text-decoration: none;
    color: #cccccc;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #cccccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: #d4af37;
}

.footer-contact-item svg {
    color: #d4af37;
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 13px;
    color: #888888;
}

.footer-bottom span {
    color: #d4af37;
}


/* ========================================================= */
/* --- 9. MOBILE RESPONSIVE VERSION --- */
/* ========================================================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); 
        padding: 0 15px;
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .review-card {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .navbar { 
        padding: 15px 20px; 
    } 
    
    .header-logo-wrapper {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
    }

    .brand-logo { 
        max-height: 40px; 
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
    } 
    
    .brand-name { 
        font-size: 13px !important; 
        position: absolute; 
        left: 50%; 
        transform: translateX(-50%); 
    }
    
    .menu-toggle { 
        display: block !important; 
        font-size: 22px !important; 
        border: 2px solid #000000 !important; 
        color: #000000 !important; 
        border-radius: 6px; 
        padding: 4px 8px !important; 
        line-height: 1;
        cursor: pointer;
    }
    
    .nav-links { 
        display: none; 
        flex-direction: column; 
        width: calc(100% - 40px); 
        position: absolute; 
        top: 100%; 
        left: 20px; 
        background-color: #ffffff; 
        padding: 10px 0; 
        border: 2px solid #000000; 
        border-radius: 12px; 
        margin-top: 15px; 
    }
    
    .nav-links.active { 
        display: flex; 
    } 
    
    .nav-links a { 
        padding: 12px 0 12px 45px !important; 
        font-size: 15px !important; 
        display: block; 
        text-align: left !important; 
        border-bottom: 1px solid #f0f0f0; 
    }

    /* Hero Mobile */
    .hero-overlay-section { flex-direction: column; text-align: left; padding: 60px 20px 0 20px; }
    .hero-left { padding-right: 0; padding-bottom: 20px; }
    .hero-left h2, .glam-text { 
        font-size: 40px !important; 
        margin-top: 0px !important;
        margin-bottom: 0px !important;
        margin-left: 10px !important;
    }
    .hero-left h1 { 
        font-size: 70px !important; 
        margin-top: 0px !important;
        margin-bottom: 30px !important;
        margin-left: 10px !important;
    }
    .hero-tagline { 
        font-size: 15px !important; 
        margin-bottom: 10px !important;
        margin-left: 10px !important;
        text-align: center !important;
    }
    .btn-animated-gold {
        padding-left: 130px !important;
        padding-right: 110px !important;
        font-size: 15px !important;
    }
    .hero-right { width: 100%; height: 400px; justify-content: center; }
    .hero-portrait { height: 100%; object-position: center top; margin-right: 0; margin-bottom: 0; }

    /* Services Mobile */
    .services-section { 
        padding: 40px 1px 40px 1px !important;
    }
    .services-section .main-heading { 
        font-size: 28px !important; 
    }
    .service-card {
        padding: 12px !important;
    }
    .card-img-wrapper {
        height: 400px !important; 
    }
    .card-content h3 {
        font-size: 22px !important;
    }
    .card-content p {
        font-size: 14px !important;
    }
    .services-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
    }

    /* Course Mobile */
    .luxury-course-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .luxury-course-section {
        padding: 90px 15px;
    }
    .luxury-top-border { top: 15px; }
    .luxury-bottom-border { bottom: 15px; }
    .luxury-left-side {
        align-items: center;
        text-align: center;
    }
    .luxury-main-heading {
        font-size: 25px !important;
        letter-spacing: 1.5px;
    }
    .luxury-sub-heading {
        font-size: 28px !important;
    }
    .luxury-feature-boxes {
        gap: 12px;
    }
    .lux-box {
        padding: 16px 12px;
    }
    .lux-emoji {
        font-size: 22px;
    }
    .lux-box p {
        font-size: 13px;
    }
    .luxury-form-card {
        margin: 0 auto;
        padding: 25px;
        text-align: left;
    }
    .form-box-title {
        font-size: 22px;
    }

    /* Social Media Mobile Grid (5 in one line) */
    .social-media-section {
        padding: 30px 10px;
    }
    .social-white-box {
        padding: 25px 8px;
        border-radius: 16px;
    }
    .social-main-heading {
        font-size: 16px !important;
    }
    .social-sub-heading {
        font-size: 23px !important;
    }
    .social-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        gap: 2px !important;
    }
    .social-item {
        flex: 1;
        min-width: 0;
        gap: 4px;
    }
    .icon-ring-wrapper {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
    }
    .social-circle-icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
    }
    .social-circle-icon svg {
        width: 16px !important;
        height: 16px !important;
    }
    .social-name {
        font-size: 9.5px !important;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Why Choose Us Mobile */
    .why-choose-section {
        padding: 50px 5px 70px 5px !important;
    }
    .why-main-heading {
        font-size: 20px !important;
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 10px !important;
    }
    .why-card {
        padding: 10px !important;
    }
    .why-icon-box {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 12px;
        box-align: center;
    }
    .why-card h3 {
        font-size: 13px !important;
    }
    .why-card p {
        font-size: 11px !important;
        line-height: 1.4;
    }

    /* Reviews Mobile */
    .reviews-section {
        padding: 50px 15px 50px 15px !important;
    }
    .reviews-main-heading {
        font-size: 24px !important;
    }
    .review-card {
        min-width: calc(100% - 8px) !important; 
        padding: 15px !important;
    }
    .client-avatar {
        width: 35px;
        height: 35px;
    }
    .client-name {
        font-size: 13px !important;
    }
    .star-rating {
        font-size: 9px !important;
        letter-spacing: 0px !important;
    }
    .review-text {
        font-size: 12px !important;
        line-height: 1.4;
    }
    .review-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    /* Footer Mobile View */
    .footer-section {
        padding: 50px 40px 20px 40px !important;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 30px;
        margin-bottom: 25px;
        text-align: left;
    }

    .footer-brand-name {
        font-size: 16px;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 15px;
    }
}