:root {
    --maroon: #800020;
    --gold: #D4AF37;
    --cream: #FFF8E7;
    --dark-maroon: #5a0016;
    --light-gold: #f3df9b;
    --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f9f9f9;
    --transition: all 0.3s ease;
    --glass-bg: rgba(255, 255, 255, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--maroon);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-maroon {
    background-color: var(--maroon);
}

.text-light {
    color: var(--text-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title.align-left {
    text-align: left;
}

.section-title h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.text-light .section-title h2 {
    color: var(--text-light);
}

.section-title.align-left h2::after {
    left: 0;
    transform: none;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.section-title p {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.primary-btn {
    background-color: var(--maroon);
    color: var(--text-light);
}

.primary-btn:hover {
    background-color: var(--dark-maroon);
    color: var(--text-light);
}

.btn-white {
    background-color: var(--text-light);
    color: var(--maroon);
}

.btn-white:hover {
    background-color: #f1f1f1;
    color: var(--maroon);
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #20b858;
}

.badge {
    background-color: var(--gold);
    color: var(--maroon);
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-left: 10px;
    vertical-align: middle;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

header.scrolled {
    padding: 10px 5%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: rgba(255, 248, 231, 0.95);
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    /*margin-right: 30px;*/
    align-items: center;
    gap: 30px;
}

.nav-links li {
    /*margin: 0 15px;*/
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding-block: 10px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--maroon);
}

.call-btn {
    background-color: var(--gold);
    color: var(--maroon);
    padding-inline: 20px;
}

.call-btn:hover {
    background-color: var(--light-gold);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--maroon);
}

/* Hero */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

#hero h2 {
    color: var(--text-light);
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 10px;
}

.stat-item span {
    font-size: 3.5rem;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* About Layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--maroon);
    padding: 20px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.experience-badge span {
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    display: block;
    line-height: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.specialty-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.specialty-list i {
    color: var(--gold);
    margin-right: 10px;
}

/* Mission Vision */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid var(--gold);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-card .icon-circle {
    width: 80px;
    height: 80px;
    background: var(--maroon);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.mv-card h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

/* Categories & Features Grid */
.categories-grid, .highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid transparent;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.category-card i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Highlights Section */
.highlights-section {
    background: linear-gradient(135deg, #fff8ee 0%, #fff3e0 100%);
    position: relative;
    overflow: hidden;
}

.highlights-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 50%;
}

.highlights-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: rgba(128, 0, 32, 0.05);
    border-radius: 50%;
}

.highlights-title {
    color: var(--maroon) !important;
}

.highlights-subtitle {
    color: #777 !important;
    margin-top: 12px;
    font-size: 1.1rem;
}

/* 3x2 grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* Cards */
.highlight-card {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 36px 28px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.35s ease;
    cursor: default;
    box-shadow: 0 4px 20px rgba(128, 0, 32, 0.06);
}

.highlight-card:hover {
    background: #fff;
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(128, 0, 32, 0.12), 0 0 0 2px rgba(212,175,55,0.2);
}

/* Gold icon circle */
.highlight-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(212,175,55,0.35);
    transition: transform 0.3s ease;
}

.highlight-card:hover .highlight-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.highlight-icon-wrap i {
    font-size: 1.8rem;
    color: var(--maroon);
}

.highlight-card h4 {
    font-size: 1.2rem;
    color: var(--maroon);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.highlight-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1110px) {
    .nav-links {
    gap: 20px;
    }
}
@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/* Bulk Order */
.bulk-section {
    position: relative;
    padding: 120px 0;
}

.bulk-section h2 {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 20px;
}

.bulk-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.bulk-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Timeline */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--maroon);
    border: 4px solid var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 30px;
    right: -10px;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    color: var(--maroon);
    margin-bottom: 10px;
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-placeholder {
    background: #eee;
    height: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.2rem;
    border: 2px dashed #ccc;
}

.video-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #ccc;
}

/* Gallery Masonry */
.masonry-grid {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.contact-info {
    background: var(--maroon);
    color: var(--text-light);
    padding: 40px;
    border-radius: 10px;
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--text-light);
}

.contact-info i {
    color: var(--gold);
    width: 25px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form input, .contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: #f9f9f9;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--maroon);
    background: #fff;
}

/* Footer */
footer {
    background-color: var(--maroon);
    color: var(--text-light);
    padding: 80px 0 20px;
}

footer h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col p {
    opacity: 0.9;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--gold);
    color: var(--maroon);
    width: 46px;
    height: 46px;
    line-height: 46px;
    border-radius: 50%;
    text-align: center;
    z-index: 99;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--light-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Floating WhatsApp */
.floating-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-btn:hover {
    transform: scale(1.1);
    animation: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 4px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-btn:hover {
    color: var(--gold);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible, .slide-left.visible, .slide-right.visible, .scale-up.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .masonry-grid {
        column-count: 2;
    }
    
    .about-layout, .mv-grid, .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        bottom: 10px;
        right: 10px;
        width: 100px;
        height: 100px;
        padding: 10px;
    }
    
    .experience-badge span {
        font-size: 1.5rem;
    }
}
@media (max-width: 1040px) {
.nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--glass-bg);
        backdrop-filter: blur(10px);.nav-links {
    display: flex;
    margin-right: 30px;
    align-items: center;
}
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    
    .nav-links.active {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding-inline: 5%;
}

    .nav-links li {
        margin: 15px 20px;
    }

    .menu-toggle {
        display: block;
    }
 
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--glass-bg);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 20px;
    }

    .menu-toggle {
        display: block;
    }

    #hero h2 {
        font-size: 2.5rem;
    }

    .masonry-grid {
        column-count: 1;
    }

    .timeline-container::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0%;
    }

    .timeline-item:nth-child(odd) {
        text-align: left;
    }

    .timeline-dot {
        left: 21px !important;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* ============================
   Instagram Showcase Section (Desktop)
   ============================ */

/* 2-column layout: embed left, CTA right */
.ig-desktop-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

/* LEFT column: embed */
.ig-embed-col {
    width: 100%;
}

.ig-embed-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
}

/* Fallback gradient background while embed loads */
.ig-embed-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0e6ff 0%, #ffe8e8 50%, #fff4e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    border-radius: 16px;
    border: 2px dashed #e0c8f0;
}

/* Once the blockquote loads, it sits above the fallback */
.ig-embed-wrapper .instagram-media {
    position: relative;
    z-index: 1;
}

.ig-fallback-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #833ab4;
    text-align: center;
    padding: 30px;
}

.ig-fallback-inner i {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ig-fallback-inner p {
    font-size: 1.1rem;
    color: #555;
}

/* RIGHT column: CTA card + stats */
.ig-cta-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CTA card fills right column */
.video-card {
    display: flex;
    align-items: stretch;
}

.instagram-follow-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 360px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 40px rgba(131, 58, 180, 0.3);
}

.instagram-follow-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(131, 58, 180, 0.45);
}

.ig-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 30px;
    color: #fff;
}

.ig-gradient-ring {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #fcb045, #fd1d1d, #833ab4, #405de6);
    border-radius: 50%;
    padding: 4px;
    margin-bottom: 20px;
    animation: igRingSpin 4s linear infinite;
}

@keyframes igRingSpin {
    0%   { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.ig-avatar-wrap {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}

.ig-avatar-icon {
    font-size: 2.8rem;
    color: #fff;
}

.ig-card-inner h3 {
    font-size: 1.8rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 12px;
}

.ig-card-inner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 260px;
}

.ig-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid rgba(255,255,255,0.5);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.instagram-follow-card:hover .ig-follow-btn {
    background: rgba(255,255,255,0.35);
    border-color: #fff;
    transform: scale(1.05);
}

/* Stats chips row */
.ig-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ig-stat-chip {
    background: #fff;
    border: 1px solid #f0e0ff;
    border-radius: 14px;
    padding: 16px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 15px rgba(131,58,180,0.08);
    transition: transform 0.2s ease;
}

.ig-stat-chip:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(131,58,180,0.15);
}

.ig-stat-chip i {
    font-size: 1.3rem;
    background: linear-gradient(135deg, #833ab4, #fd1d1d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.ig-stat-chip strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--maroon);
    display: block;
}

.ig-stat-chip span {
    font-size: 0.8rem;
    color: #888;
}

/* Watch Reels button */
.ig-reels-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--maroon);
    color: #fff;
    padding: 16px 30px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(128,0,32,0.25);
}

.ig-reels-btn:hover {
    background: var(--dark-maroon);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(128,0,32,0.35);
    color: #fff;
}

.ig-reels-btn i {
    font-size: 1.3rem;
}

/* Responsive: stack on mobile */
@media (max-width: 900px) {
    .ig-desktop-layout {
        grid-template-columns: 1fr;
    }

    .ig-embed-wrapper {
        min-height: 400px;
    }

    .ig-cta-col {
        gap: 16px;
    }
}

/* =================== */
/* .phone-icon{
    transform: rotate(60deg);
    display: inline-block;
} */
 /* ============================= */
/* Professional Achievement Area */
/* ============================= */

.achievement-section{
    background: #faf7f2;
    position: relative;
}

.achievement-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.achievement-card{
    background: #fff;
    padding: 35px 30px;
    border-radius: 18px;
    position: relative;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-left: 6px solid #800020;
    overflow: hidden;
}

.achievement-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #800020, #c79a3b);
}

.achievement-card p{
    font-size: 1.08rem;
    line-height: 1.9;
    color: #222;
    font-weight: 500;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.achievement-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

@media(max-width:768px){

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

    .achievement-card{
        padding: 28px 22px;
    }

    .achievement-card p{
        font-size: 1rem;
        line-height: 1.8;
    }
}

/* ============= */

/* Achievement Video Card */

.achievement-video-card{
    width: 100%;
    margin-top: 50px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    background: #fff;
}

.achievement-video-card video{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 24px;
}

/* Mobile */

@media(max-width:768px){

    .achievement-video-card{
        margin-top: 35px;
        border-radius: 18px;
    }

    .achievement-video-card video{
        border-radius: 18px;
    }
}