
/* BRAND STORY SECTION */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800&family=Rajdhani:wght@700;900&display=swap');

:root {
    --y-gold: #f5a623;
    --y-gold-dark: #b37400;
    --y-bg: #080808;
    --card-bg: #121214;
}

.yamraj-about-legacy {
    background: var(--y-bg);
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Background Atmosphere */
.legacy-glow-1 { position: absolute; top: -10%; left: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%); }
.legacy-glow-2 { position: absolute; bottom: -10%; right: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 70%); }

.about-legacy-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* LEFT: NARRATIVE */
.legacy-eyebrow {
    color: var(--y-gold);
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 15px;
    display: block;
}

.legacy-title-3d {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
    /* 3D Soft Text Depth */
    text-shadow: 0 1px 0 #888, 0 2px 0 #777, 0 3px 0 #666, 0 10px 20px rgba(0,0,0,0.5);
}

.gold-gradient { color: var(--y-gold); }

.legacy-text-block p {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.legacy-text-block p strong { color: #fff; font-weight: 600; }

.trust-stamp {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 25px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(245, 166, 35, 0.2); border-radius: 12px;
    color: var(--y-gold); font-weight: 800; font-size: 12px; letter-spacing: 1px;
}

/* RIGHT: ACHIEVEMENT CARDS */
.legacy-highlights-right { display: grid; gap: 20px; }

.milestone-card {
    background: var(--card-bg);
    padding: 25px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid rgba(255,255,255,0.03);
    /* 3D Box Shadow */
    box-shadow: 10px 10px 20px rgba(0,0,0,0.4), inset 1px 1px 1px rgba(255,255,255,0.05);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.milestone-card:hover {
    transform: translateX(15px) translateY(-5px);
    border-color: var(--y-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
}

.m-icon {
    width: 60px; height: 60px;
    background: #1a1a1c;
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    color: var(--y-gold); font-size: 1.5rem;
    box-shadow: inset 4px 4px 8px rgba(0,0,0,0.5);
}

.m-year { display: block; font-size: 1.4rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 5px; }
.m-info p { font-size: 0.9rem; color: #888; margin: 0; }

.current-status {
    background: linear-gradient(145deg, #161618, #0a0a0a);
    border: 1px solid rgba(245, 166, 35, 0.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-legacy-container { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .legacy-text-block p { max-width: 700px; margin-left: auto; margin-right: auto; }
    .trust-stamp { margin: 0 auto; }
    .milestone-card { text-align: left; }
}

@media (max-width: 600px) {
    .yamraj-about-legacy { padding: 80px 15px; }
    .milestone-card { flex-direction: column; align-items: flex-start; gap: 15px; }
    .legacy-title-3d { font-size: 2.2rem; }
}


/* What We Do Section */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&family=Rajdhani:wght@700;900&display=swap');

:root {
    --y-gold: #f5a623;
    --y-dark: #050505;
    --y-glass: rgba(20, 20, 20, 0.7);
}

.yamraj-epic-deals {
    background-color: var(--y-dark);
    padding: 120px 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.epic-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 5; }

/* --- HEADER DESIGN --- */
.epic-header-box { text-align: center; margin-bottom: 80px; }

.header-top-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(245, 166, 35, 0.1); border: 1px solid rgba(245, 166, 35, 0.2);
    padding: 6px 15px; border-radius: 4px; color: var(--y-gold);
    font-family: monospace; font-size: 11px; letter-spacing: 2px;
}

.pulse-gold { width: 8px; height: 8px; background: var(--y-gold); border-radius: 50%; box-shadow: 0 0 10px var(--y-gold); animation: pulse 2s infinite; }

@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.3; } 100% { opacity: 1; } }

.epic-main-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900; text-transform: uppercase; margin-top: 15px;
}
.epic-main-title span { color: var(--y-gold); text-shadow: 0 0 20px rgba(245, 166, 35, 0.3); }

.epic-lead-text { max-width: 600px; margin: 0 auto 20px; color: #888; line-height: 1.6; }

.header-divider { display: flex; align-items: center; justify-content: center; gap: 20px; }
.header-divider .line { width: 40px; height: 2px; background: var(--y-gold); border-radius: 10px; }
.header-divider i { color: var(--y-gold); font-size: 14px; }

/* --- GRID & CARDS DESIGN --- */
.epic-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.epic-card {
    background: var(--y-glass);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.epic-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--y-gold);
}

/* 3D Background Number */
.card-bg-number {
    position: absolute; top: -10px; right: -10px;
    font-size: 100px; font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Rajdhani', sans-serif;
    line-height: 1;
}

.card-icon-wrap {
    width: 60px; height: 60px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--y-gold);
    margin-bottom: 30px;
    transition: 0.3s;
}

.epic-card:hover .card-icon-wrap {
    background: var(--y-gold);
    color: #000;
    transform: rotateY(180deg);
}

.card-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.card-info p { font-size: 0.95rem; color: #999; line-height: 1.7; margin-bottom: 30px; }

.card-action {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05);
}

.action-tag { font-size: 11px; font-weight: 800; color: var(--y-gold); letter-spacing: 1px; }

.arrow-icon {
    width: 35px; height: 35px; background: rgba(255,255,255,0.05);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: #fff; transition: 0.3s;
}

.epic-card:hover .arrow-icon {
    background: var(--y-gold); color: #000;
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .epic-header-box { margin-bottom: 50px; }
    .epic-card { padding: 30px; border-radius: 15px; }
}


/* WHY YAMRAJ FF DIFFRENT */


/* --- Difference Section V2 --- */
.yamraj-difference-v2 {
    background-color: #080808;
    padding: 120px 0;
    overflow: hidden;
}

.diff-content-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.diff-left {
    position: sticky;
    top: 100px;
    padding-right: 30px;
}

/* --- CYBER CARD DESIGN --- */
.diff-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cyber-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 166, 35, 0.1);
    padding: 40px 30px;
    position: relative;
    /* This creates the unique "Cut Corner" look */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cyber-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--y-gold);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    opacity: 0.2;
    transition: 0.4s;
}

.cyber-card:hover {
    background: rgba(245, 166, 35, 0.05);
    border-color: var(--y-gold);
    transform: translateY(-10px);
}

.cyber-card:hover::before {
    opacity: 1;
}

/* Card Elements */
.card-number-tag {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 900;
    color: rgba(245, 166, 35, 0.2);
    font-size: 1.2rem;
}

.cyber-icon {
    font-size: 32px;
    color: var(--y-gold);
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(245, 166, 35, 0.4);
}

.cyber-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-info p {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cyber-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 800;
    color: var(--y-gold);
    letter-spacing: 1px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--y-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--y-gold);
}

/* --- FULL RESPONSIVE LOGIC --- */

/* For Tablets (IPads/Laptops) */
@media (max-width: 1024px) {
    .diff-content-wrapper {
        grid-template-columns: 1fr; /* Stack columns */
        padding: 0 30px;
    }
    .diff-left {
        position: relative;
        top: 0;
        text-align: center;
        padding-right: 0;
        margin-bottom: 60px;
    }
    .diff-left .header-divider {
        justify-content: center !important;
    }
    .diff-description {
        margin: 0 auto 20px;
    }
}

/* For Mobile Phones */
@media (max-width: 768px) {
    .diff-right-grid {
        grid-template-columns: 1fr; /* Cards become full width */
        gap: 20px;
    }
    .yamraj-difference-v2 {
        padding: 80px 0;
    }
    .cyber-card {
        padding: 30px 25px;
    }
    .epic-main-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .epic-main-title {
        font-size: 1.8rem;
    }
    .cyber-info h3 {
        font-size: 1.2rem;
    }
}


/* Stats Section */

/* --- Online Presence Section --- */
.yamraj-presence {
    background-color: #050505; /* Slightly darker for contrast */
    padding: 120px 0;
    position: relative;
}

.presence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* Base Card Styling */
.platform-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

/* Background Platform Glow */
.platform-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 20%, transparent 80%);
    transition: 0.5s;
    z-index: -1;
    opacity: 0.1;
}

/* Content Styling */
.platform-icon {
    font-size: 45px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.platform-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 166, 35, 0.1);
    color: var(--y-gold);
    font-size: 10px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 166, 35, 0.2);
}

.platform-card p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.platform-link {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.platform-link i {
    font-size: 10px;
    transition: 0.3s;
}

/* --- PLATFORM SPECIFIC COLORS --- */

/* YouTube */
.yt .platform-icon { color: #ff0000; }
.yt:hover { border-color: #ff0000; }
.yt:hover .platform-glow { background: radial-gradient(circle, rgba(255,0,0,0.15) 0%, transparent 70%); }

/* Instagram */
.ig .platform-icon { color: #e1306c; }
.ig:hover { border-color: #e1306c; }
.ig:hover .platform-glow { background: radial-gradient(circle, rgba(225,48,108,0.15) 0%, transparent 70%); }

/* WhatsApp */
.wa .platform-icon { color: #25d366; }
.wa:hover { border-color: #25d366; }
.wa:hover .platform-glow { background: radial-gradient(circle, rgba(37,211,102,0.15) 0%, transparent 70%); }

/* Premium Group (Yamraj Gold) */
.premium .platform-icon { color: var(--y-gold); }
.premium:hover { border-color: var(--y-gold); }
.premium:hover .platform-glow { background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%); }

/* General Hover State */
.platform-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
}

.platform-card:hover .platform-link {
    color: var(--y-gold);
}

.platform-card:hover .platform-link i {
    transform: translateX(5px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .presence-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    .platform-card {
        text-align: center;
    }
    .verified-badge {
        justify-content: center;
    }
}


/* FINAL CTA SECTION */


/* --- Yamraj Final Strike CTA --- */
.yamraj-final-strike {
    background-color: var(--y-dark);
    padding: 100px 20px;
    position: relative;
}

.strike-wrapper {
    position: relative;
    background: #111;
    /* Aggressive Clipped Shape */
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    padding: 80px 100px;
    border: 1px solid rgba(245, 166, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

/* Moving Background Line Effect */
.strike-lines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(45deg, rgba(245, 166, 35, 0.02) 0px, rgba(245, 166, 35, 0.02) 2px, transparent 2px, transparent 10px);
    pointer-events: none;
}

.strike-glow {
    position: absolute;
    top: 50%; left: -10%;
    width: 40%; height: 100%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
}

/* Content */
.strike-content { position: relative; z-index: 5; max-width: 600px; }

.strike-tag {
    color: var(--y-gold);
    font-family: monospace;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.strike-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
}

.strike-title span {
    color: var(--y-gold);
    text-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
}

.strike-text {
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* EPIC BUTTONS */
.strike-btns { display: flex; gap: 20px; align-items: center; }

.btn-primary-epic {
    background: var(--y-gold);
    padding: 18px 45px;
    color: #000;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    transition: 0.3s;
}

.btn-primary-epic:hover {
    transform: scale(1.05) skewX(-5deg);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.4);
}

.btn-secondary-epic {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--y-gold);
    padding-bottom: 5px;
    transition: 0.3s;
}

.btn-secondary-epic:hover { color: var(--y-gold); }

/* Visual Icon on Right */
.strike-visual {
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    right: 5%;
    transform: rotate(-15deg);
    z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .strike-wrapper {
        clip-path: none;
        padding: 60px 40px;
        flex-direction: column;
        text-align: center;
    }
    .strike-btns { justify-content: center; }
    .strike-visual { display: none; }
}

@media (max-width: 600px) {
    .strike-btns { flex-direction: column; width: 100%; }
    .btn-primary-epic { width: 100%; justify-content: center; }
}

@media (max-width: 1100px) {
.yamraj-epic-deals {
    padding: 60px 20px;
}

.yamraj-presence {
    padding: 60px 0;
}

.yamraj-final-strike {
    padding: 50px 20px 70px;
}

.diff-left {
    margin-bottom: 0px;
}

}
