/* 
   Theme: Vedic Yoga - Warm, Heritage, Premium
   Colors: Saffron (#E67E22), Rust (#D35400), Gold (#F1C40F), Cream (#FFFBF0)
*/

:root {
    --primary: #E67E22;
    --primary-dark: #D35400;
    --secondary: #2C3E50;
    --accent: #F1C40F;
    --bg-cream: #FFFBF0;
    --bg-white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --font-heading: 'Playfair Display', serif;
    /* Or Cinzel for more decorative */
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(230, 126, 34, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 80px 0;
}

.bg-cream {
    background-color: var(--bg-cream);
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-outline {
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navbar */
/* .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 15px 0;
} */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    /* default */
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* Navbar style after scroll */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-symbol {
    color: var(--primary);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text-dark);
}

.navbar:not(.scrolled) .nav-links a:not(.btn) {
    color: #fff;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    margin: 5px auto;
    transition: all 0.3s;
}

.navbar:not(.scrolled) .bar {
    background-color: #fff;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(44, 62, 80, 0.4), rgba(211, 84, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.highlight {
    color: var(--accent);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Headings & Dividers */
.subheading {
    display: block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto 50px;
    border-radius: 2px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.lead {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 500;
}

.mission-box {
    background: var(--bg-cream);
    padding: 30px;
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 30px;
}

.about-features {
    display: grid;
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
}

/* ===== Royal About Section ===== */
.about-section-royal {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #fdf0da 0%, #fce8c3 40%, #f9ddb0 70%, #fce4b5 100%);
    overflow: hidden;
}

/* Mandala watermark */
.mandala-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='95' fill='none' stroke='%23c87941' stroke-width='0.4' opacity='0.25'/%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='%23c87941' stroke-width='0.3' opacity='0.2'/%3E%3Ccircle cx='100' cy='100' r='60' fill='none' stroke='%23c87941' stroke-width='0.3' opacity='0.2'/%3E%3Ccircle cx='100' cy='100' r='40' fill='none' stroke='%23c87941' stroke-width='0.4' opacity='0.25'/%3E%3Ccircle cx='100' cy='100' r='20' fill='none' stroke='%23c87941' stroke-width='0.5' opacity='0.3'/%3E%3Cline x1='100' y1='5' x2='100' y2='195' stroke='%23c87941' stroke-width='0.2' opacity='0.15'/%3E%3Cline x1='5' y1='100' x2='195' y2='100' stroke='%23c87941' stroke-width='0.2' opacity='0.15'/%3E%3Cline x1='33' y1='33' x2='167' y2='167' stroke='%23c87941' stroke-width='0.2' opacity='0.15'/%3E%3Cline x1='167' y1='33' x2='33' y2='167' stroke='%23c87941' stroke-width='0.2' opacity='0.15'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
    animation: mandala-spin 60s linear infinite;
}

@keyframes mandala-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.about-royal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ---- Left Image ---- */
.about-royal-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-img-frame {
    position: relative;
    width: 420px;
    max-width: 100%;
}

.about-img-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(180, 100, 20, 0.25);
    display: block;
    position: relative;
    z-index: 2;
}

/* Decorative outer ring */
.about-img-ring {
    position: absolute;
    top: -18px;
    left: -18px;
    right: -18px;
    bottom: -18px;
    border-radius: 28px;
    border: 2px solid rgba(200, 121, 65, 0.4);
    z-index: 1;
}

.about-img-ring::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 22px;
    border: 1px dashed rgba(200, 121, 65, 0.25);
}

/* Badge overlay */
.about-img-badge {
    position: absolute;
    bottom: 25px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), #fdbb14);
    color: white;
    padding: 18px 22px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(230, 126, 34, 0.4);
    z-index: 3;
    border: 3px solid white;
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-body);
    line-height: 1;
}

.badge-number span {
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-top: 4px;
    display: block;
}

/* ---- Right Content ---- */
.about-royal-content {
    position: relative;
}

.subheading-royal {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 14px;
}

.about-royal-title {
    font-size: 2.8rem;
    color: #3b1f0f;
    line-height: 1.15;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.about-royal-title em {
    font-style: italic;
    color: var(--primary);
}

/* Om divider */
.about-royal-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.about-royal-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 121, 65, 0.5));
}

.about-royal-divider span:last-child {
    background: linear-gradient(to left, transparent, rgba(200, 121, 65, 0.5));
}

.about-royal-divider i {
    font-size: 1.4rem;
    color: var(--primary);
}

.about-royal-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: #4a2c12;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-royal-body {
    font-size: 0.98rem;
    color: #7a4a2a;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Feature pills */
.about-royal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.royal-feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(200, 121, 65, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(6px);
    font-size: 0.88rem;
    font-weight: 600;
    color: #5a2e10;
    transition: all 0.3s ease;
    cursor: default;
}

.royal-feature-pill i {
    font-size: 1rem;
    color: var(--primary);
}

.royal-feature-pill:hover {
    background: rgba(230, 126, 34, 0.12);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.15);
}

/* Mission box */
.about-royal-mission {
    background: rgba(255, 255, 255, 0.6);
    border-left: 4px solid var(--primary);
    border-radius: 0 12px 12px 0;
    padding: 20px 25px;
    backdrop-filter: blur(8px);
}

.about-royal-mission h4 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-royal-mission h4 i {
    color: #fdbb14;
    font-size: 0.9rem;
}

.about-royal-mission p {
    font-size: 0.95rem;
    color: #6a3c18;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .about-royal-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-img-frame {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .about-img-frame img {
        height: 380px;
    }

    .about-royal-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .about-img-badge {
        right: 10px;
        bottom: 15px;
    }
}

/* Programs Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    width: 100%;
    height: 200px;
    /* adjust as needed */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-content {
    padding: 25px;
}

.program-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-cream);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 15px;
    margin-bottom: 15px;
}

.program-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.highlight-card {
    background: linear-gradient(135deg, var(--secondary), #1a252f);
    color: white;
}

.highlight-card h3 {
    color: white;
}

.highlight-card p {
    color: #bdc3c7;
}

.highlight-card .tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

/* Achievements */
.achievements-section {
    background: url('https://images.unsplash.com/photo-1599901860904-17e6ed7083a0?q=80&w=2069&auto=format&fit=crop') fixed center/cover;
    position: relative;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.achievements-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.icon-stat i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px 30px;
    padding-top: 40px;
}

.team-card {
    background: white url('../images/design.png') center/cover no-repeat;
    border-radius: var(--radius-lg);
    border: 1px solid #eee;
    padding: 0 30px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    margin-top: 60px;
    box-shadow: var(--shadow-soft);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.member-image {
    width: 140px;
    height: 140px;
    margin: -70px auto 20px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    background-color: var(--bg-cream);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .member-image {
    border-color: var(--primary);
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

.founder {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--bg-cream), white);
    border: none;
    text-align: center;
    max-width: 800px;
    margin: 60px auto 30px auto;
}

.founder .member-image {
    width: 180px;
    height: 180px;
    margin-top: -90px;
}

.team-card h3 {
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.role {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.contact-info {
    flex: 1;
    background: var(--secondary);
    color: white;
    padding: 50px;
}

.contact-info h2 {
    color: white;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 40px;
    color: #bdc3c7;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-item h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.info-item p {
    margin-bottom: 0;
}

.contact-form-container {
    flex: 1.5;
    padding: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

/* ===== Achievements Section ===== */
.achievements-section-new {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative corner glow */
.achievements-section-new::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.achievements-section-new::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(253, 187, 20, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.achievements-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.achievement-card-new {
    text-align: center;
    padding: 50px 30px;
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Vertical dividers between cards */
.achievement-card-new:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.achievement-card-new:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-6px);
}

.achievement-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #fdbb14);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.35);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.achievement-card-new:hover .achievement-icon-wrap {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(253, 187, 20, 0.45);
}

.achievement-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-body);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.achievement-number span {
    color: #fdbb14;
}

.achievement-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .achievements-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievement-card-new:nth-child(2)::after {
        display: none;
    }

    /* Add horizontal divider after first row */
    .achievement-card-new:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .achievement-card-new:nth-child(1) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 480px) {
    .achievements-grid-new {
        grid-template-columns: 1fr;
    }

    .achievement-card-new::after {
        display: none !important;
    }
}

/* Testimonials Section */
.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-cream);
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: var(--bg-cream);
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
}

.testimonial-card {
    scroll-snap-align: start;
    background: #ffffff;
    padding: 70px 40px 40px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    margin-top: 60px;
    z-index: 1;
    flex-shrink: 0;
    min-width: 380px;
    width: 380px;
}

/* Marquee Slider (Infinite Left/Right Scroll) */
.marquee-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0 40px;
}

/* Yellow horizontal stripe running behind the quote badges */
.marquee-section::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 70px;
    background-color: #fdbb14;
    z-index: 0;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: marquee-scroll 35s linear infinite;
    padding: 0 15px;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-grid-advanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px 30px;
    padding: 20px 0;
}

.quote-badge {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background-color: #fdbb14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    border: 10px solid #ffffff;
    box-sizing: content-box;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* very soft shadow on the badge */
}

.testimonial-text-new {
    font-size: 1.25rem;
    font-weight: 600;
    color: #4a4a4a;
    line-height: 1.5;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.testimonial-stars {
    color: #fdbb14;
    font-size: 1.2rem;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.testimonial-author-new h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 700;
    font-family: var(--font-body);
}

.testimonial-author-new p {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
}

/* Video Testimonials - Reels */
.reels-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-cream);
}

.reels-grid::-webkit-scrollbar {
    height: 8px;
}

.reels-grid::-webkit-scrollbar-track {
    background: var(--bg-cream);
    border-radius: 10px;
}

.reels-grid::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
}

.reel-video-card {
    width: 300px;
    height: 533px;
    /* 9:16 aspect ratio */
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    scroll-snap-align: start;
    background: #000;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.reel-video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.reel-video-card video,
.reel-video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.4s ease, transform 0.5s ease;
}

.reel-video-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    z-index: 2;
}

.play-btn:hover {
    background: var(--primary);
    color: white;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 15px 35px rgba(230, 126, 34, 0.4);
}

/* Youtube Videos Grid (Postcard Style) */
.youtube-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding: 20px;
}

.youtube-card {
    width: 340px;
    background: #ffffff;
    padding: 12px 12px 25px 12px;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: rotate(-2deg);
}

.youtube-card:nth-child(even) {
    transform: rotate(2deg);
}

.youtube-card:nth-child(3n) {
    transform: rotate(-1deg) translateY(10px);
}

.youtube-card:hover {
    transform: rotate(0deg) scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.youtube-thumb-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 2px;
}

.youtube-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.youtube-card:hover .youtube-thumb {
    transform: scale(1.05);
}

.youtube-title {
    padding: 15px 5px 5px 5px;
    font-weight: 500;
    color: var(--secondary);
    font-size: 1.15rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-align: center;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.video-modal-close:hover {
    color: var(--primary);
}

.video-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 50px 0;
}

.footer-logo {
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.footer-content p {
    color: #95a5a6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: white;
}

.social-links a:hover {
    background: var(--primary);
}

/* Response */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .achievements-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        clip-path: circle(0% at 100% 0);
        transition: 0.5s;
    }

    .nav-links.active {
        clip-path: circle(150% at 100% 0);
    }

    .hamburger {
        display: block;
    }

    .navbar:not(.scrolled) .nav-links a:not(.btn) {
        color: var(--text-dark);
    }
}

/* ========================================= */
/* POSTCARD TESTIMONIALS SECTION             */
/* ========================================= */

.postcard-testimonials-section {
    background: #fdfaf3; /* vintage paper-like background */
    position: relative;
    overflow: hidden;
}

/* Subtle texture overlay for the section */
.postcard-testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.3;
    pointer-events: none;
    background-image: radial-gradient(circle at center, transparent 0%, #e6dfcc 100%);
}

.postcard-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 20px 10px;
}

/* Postcard Container */
.postcard-tcard {
    background: #fff url('../images/design.png') center/cover no-repeat;
    padding: 40px 30px;
    border-radius: 6px;
    position: relative;
    box-shadow: 2px 4px 15px rgba(0,0,0,0.06);
    transform: rotate(var(--tilt, 0deg));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid #f2f2f2;
    z-index: 1;
}

/* Hover effect */
.postcard-tcard:hover {
    transform: translateY(-8px) rotate(0deg);
    box-shadow: 5px 15px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

/* Subtle edge lines mimicking postcards */
.postcard-tcard::before {
    content: '';
    position: absolute;
    top: 8px; left: 8px; right: 8px; bottom: 8px;
    border: 1px dashed rgba(0,0,0,0.08);
    pointer-events: none;
}

/* Stamp inside postcard */
.ptcard-stamp {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 65px;
    height: 75px;
    background: #fdfdfd;
    border: 2px dashed #e2e2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    padding: 5px;
    opacity: 0.6;
    transform: rotate(12deg);
}

/* Quote Icon */
.ptcard-quote {
    font-size: 2.2rem;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: 15px;
}

/* Body Text */
.ptcard-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

/* Stars Rating */
.ptcard-stars {
    color: #F1C40F; /* Gold color */
    margin-bottom: 25px;
    font-size: 15px;
    letter-spacing: 3px;
}

/* Author Info block */
.ptcard-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.ptcard-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.ptcard-author strong {
    display: block;
    font-size: 1.15rem;
    color: var(--secondary);
    font-family: var(--font-heading);
    margin-bottom: 2px;
}

.ptcard-author span {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Postmark Decoration */
.ptcard-postmark {
    position: absolute;
    bottom: 25px;
    right: 20px;
    font-size: 0.6rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.35;
    transform: rotate(-10deg);
    border: 2px solid rgba(0,0,0,0.15);
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    pointer-events: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    height: 60px;
    padding: 0 20px;
    gap: 10px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn-text {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-body);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .whatsapp-float {
        height: 50px;
        padding: 0 15px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-btn-text {
        font-size: 14px;
    }
}