
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #faf5ed;
    color: #1e293b;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0.4); }
    70% { box-shadow: 0 0 0 14px rgba(185, 28, 28, 0); }
    100% { box-shadow: 0 0 0 0 rgba(185, 28, 28, 0); }
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes neonWave {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


header {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #e2e8f0;
    padding: 10px 30px;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-bottom: none !important;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

header a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s;
}

header a:hover { color: #ffffff; }

.icon-box {
    width: 34px;
    height: 34px;
    background: #1f2937;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

header a:hover .icon-box {
    background: #b91c1c;
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #fca5a5;
}

/* ==========================================
   3. PREMIUM STICKY NAVBAR & DROPDOWNS
   ========================================== */

nav {
    position: sticky;
    top: 54px;
    background: rgba(250, 245, 237, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    z-index: 40;
    border-bottom: 1px solid rgba(185, 28, 28, 0.12);
}

/* ==========================================
   NAV CONTAINER
   ========================================== */

.nav-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ==========================================
   BRAND
   ========================================== */

.brand-left {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-decoration: none;
}

/* Logo */

.brand-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 20px;
    box-shadow: 0 6px 18px rgba(185, 28, 28, 0.35);
    border: 2px solid white;
    animation: pulseGlow 3s infinite;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.brand-left:hover .brand-logo {
    transform: translateY(-2px) rotate(-2deg);
    box-shadow: 0 10px 25px rgba(185, 28, 28, 0.45);
}

/* Brand Name */

.brand-left h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, #0f172a 0%, #b91c1c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
}

/* ==========================================
   DESKTOP NAV LINKS
   ========================================== */

.nav-links-right {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 800;
    font-size: 14px;
    color: #334155;
}

/* ==========================================
   NORMAL NAV LINK
   ========================================== */

.nav-links-right > a {
    position: relative;
    padding: 11px 16px;
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

/* Animated underline */

.nav-links-right > a:not(.home-btn)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b91c1c, #ef4444);
    border-radius: 10px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* Hover */

.nav-links-right > a:not(.home-btn):hover {
    color: #b91c1c;
    background: rgba(254, 242, 242, 0.75);
    transform: translateY(-1px);
}

/* Underline expand */

.nav-links-right > a:not(.home-btn):hover::after {
    width: 55%;
}

/* ==========================================
   ACTIVE NAV LINK
   ========================================== */

.nav-links-right > a.active {
    color: #b91c1c;
    background: #fef2f2;
}

.nav-links-right > a.active::after {
    width: 55%;
}

/* ==========================================
   HOME BUTTON
   ========================================== */

.nav-links-right > a.home-btn {
    position: relative;
    background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
    color: white;
    padding: 10px 19px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(185, 28, 28, 0.28);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Shine effect */

.nav-links-right > a.home-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
}

.nav-links-right > a.home-btn:hover::before {
    left: 140%;
}

.nav-links-right > a.home-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 22px rgba(185, 28, 28, 0.4);
}

/* ==========================================
   DROPDOWN WRAPPER
   ========================================== */

.dropdown-wrapper {
    position: relative;
    display: inline-block;
}

/* ==========================================
   DROPDOWN BUTTON
   ========================================== */

.dropdown-btn {
    position: relative;
    padding: 11px 16px;
    border-radius: 10px;
    background: transparent;
    border: none;
    font-weight: 800;
    font-size: 14px;
    color: #334155;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: inherit;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

/* Dropdown arrow */

.dropdown-btn i,
.dropdown-btn svg {
    font-size: 11px;
    transition: transform 0.3s ease;
}

/* Hover */

.dropdown-btn:hover {
    color: #b91c1c;
    background: rgba(254, 242, 242, 0.75);
    transform: translateY(-1px);
}

/* Arrow rotate */

.dropdown-wrapper:hover .dropdown-btn i,
.dropdown-wrapper:hover .dropdown-btn svg {
    transform: rotate(180deg);
}

/* Dropdown underline */

.dropdown-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #b91c1c, #ef4444);
    border-radius: 10px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.dropdown-wrapper:hover .dropdown-btn::after {
    width: 45%;
}

/* ==========================================
   DROPDOWN MENU
   ========================================== */

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    border-radius: 14px;
    padding: 8px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    z-index: 1000;
    overflow: hidden;
    animation: dropdownShow 0.25s ease forwards;
}

/* Transparent Hover Bridge (Mouse gap me jaane par menu gayab nahi hoga) */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: transparent;
}

/* Show dropdown */

.dropdown-wrapper:hover .dropdown-menu {
    display: block;
}

/* ==========================================
   DROPDOWN ANIMATION
   ========================================== */

@keyframes dropdownShow {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==========================================
   DROPDOWN LINKS
   ========================================== */

.dropdown-menu a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 15px;
    margin: 2px 0;
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    border-radius: 9px;
    transition: all 0.25s ease;
    overflow: hidden;
}

/* Left animated line */

.dropdown-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: #b91c1c;
    border-radius: 0 5px 5px 0;
    transform: translateY(-50%);
    transition: height 0.25s ease;
}

/* Dropdown hover */

.dropdown-menu a:hover {
    color: #b91c1c;
    background: #fef2f2;
    padding-left: 20px;
    transform: translateX(2px);
}

/* Expand left line */

.dropdown-menu a:hover::before {
    height: 65%;
}

/* Dropdown icons */

.dropdown-menu a i {
    color: #94a3b8;
    width: 18px;
    text-align: center;
    transition: all 0.25s ease;
}

.dropdown-menu a:hover i {
    color: #b91c1c;
    transform: scale(1.12);
}

/* ==========================================
   MOBILE MENU BUTTON
   ========================================== */

.menu-btn {
    display: none;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 20px;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: #fef2f2;
    color: #b91c1c;
    border-color: #fecaca;
    transform: translateY(-1px);
}

/* ==========================================
   MOBILE MENU
   ========================================== */

.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-top: 1px solid #e2e8f0;
    padding: 18px;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08);
}

/* Mobile normal links */

.mobile-menu > a {
    position: relative;
    display: block;
    padding: 11px 14px;
    color: #334155;
    text-decoration: none;
    border-radius: 9px;
    font-size: 14px;
    transition: all 0.25s ease;
    margin-bottom: 4px;
}

/* Mobile hover */

.mobile-menu > a:hover {
    background: #fef2f2;
    color: #b91c1c;
    padding-left: 20px;
}

/* ==========================================
   MOBILE DROPDOWN BUTTON
   ========================================== */

.mobile-dropdown-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 14px;
    background: transparent;
    border: none;
    font-weight: 700;
    font-size: 14px;
    color: #334155;
    border-radius: 9px;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    margin-bottom: 4px;
    transition: all 0.25s ease;
}

.mobile-dropdown-btn:hover {
    background: #fef2f2;
    color: #b91c1c;
    padding-left: 20px;
}

/* ==========================================
   MOBILE SUB MENU
   ========================================== */

.mobile-sub-menu {
    display: none;
    padding-left: 20px;
    flex-direction: column;
    gap: 4px;
    margin: 4px 0 10px 0;
    border-left: 2px solid #fecaca;
}

/* Sub menu links */

.mobile-sub-menu a {
    position: relative;
    display: block;
    padding: 9px 12px;
    color: #475569;
    text-decoration: none;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.mobile-sub-menu a:hover {
    background: #fef2f2;
    color: #b91c1c;
    padding-left: 17px;
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */

@media (max-width: 900px) {
    .nav-container {
        padding: 9px 18px;
    }
    .brand-left h1 {
        font-size: 23px;
    }
    .brand-logo {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .nav-links-right {
        gap: 2px;
    }
    .nav-links-right > a,
    .dropdown-btn {
        padding: 9px 11px;
        font-size: 13px;
    }
}

/* ==========================================
   SMALL MOBILE
   ========================================== */

@media (max-width: 768px) {
    .nav-links-right {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .nav-container {
        padding: 8px 15px;
    }
    .brand-left h1 {
        font-size: 21px;
    }
}

/* ==========================================
   EXTRA SMALL MOBILE
   ========================================== */

@media (max-width: 480px) {
    .brand-left {
        gap: 9px;
    }
    .brand-logo {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }
    .brand-left h1 {
        font-size: 18px;
    }
    .mobile-menu {
        padding: 14px;
    }
}.slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0f172a;
}


/* ================================
   SWIPER
================================ */

.swiper {
    width: 100%;
    height: 650px;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* ================================
   SLIDER IMAGE
================================ */

.swiper-slide img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    /* Brightness normal rakhi gayi hai taaki dark na lage */
    filter: brightness(1);

    transform: scale(1);
    transition: transform 6s ease-in-out;
}


/* Active slide par halka zoom */

.swiper-slide-active img {
    transform: scale(1.06);
}


/* ================================
   SLIDE CONTENT
================================ */

.slide-content {
    position: relative;

    z-index: 10;

    width: 100%;
    max-width: 1200px;

    padding: 0 30px;

    text-align: center;

    color: #ffffff;
}


/* ================================
   BADGE
================================ */

.slide-badge {
    display: inline-block;

    margin-bottom: 20px;
    padding: 10px 24px;

    background-color: #b91c1c;
    color: #ffffff;

    font-size: 15px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1.8px;

    border-radius: 50px;

    box-shadow: 0 5px 18px rgba(185, 28, 28, 0.35);
}


/* ================================
   HEADING
================================ */

.slide-content h2 {
    margin: 0 0 18px;

    font-family: 'Outfit', sans-serif;

    font-size: 58px;
    font-weight: 900;

    line-height: 1.12;

    color: #ffffff;

    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}


/* ================================
   DESCRIPTION
================================ */

.slide-content p {
    margin: 0 auto;

    max-width: 850px;

    font-size: 21px;
    font-weight: 500;

    line-height: 1.6;

    color: #e2e8f0;

    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}


/* ================================
   SWIPER PAGINATION
================================ */

.swiper-pagination {
    z-index: 20;
}


.swiper-pagination-bullet {
    width: 13px;
    height: 13px;

    background: #ffffff !important;

    opacity: 0.7;

    transition: all 0.3s ease;
}


.swiper-pagination-bullet-active {
    width: 42px;
    height: 13px;

    background: #b91c1c !important;

    opacity: 1;

    border-radius: 7px;
}


/* ================================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 768px) {

    .swiper {
        height: 550px;
    }

    .swiper-slide img {
        filter: brightness(1);
    }

    .slide-content {
        padding: 0 20px;
    }

    .slide-badge {
        padding: 8px 18px;

        font-size: 12px;
        letter-spacing: 1.3px;

        margin-bottom: 15px;
    }

    .slide-content h2 {
        font-size: 38px;

        line-height: 1.15;

        margin-bottom: 14px;
    }

    .slide-content p {
        font-size: 16px;

        line-height: 1.5;
    }
}


/* ================================
   SMALL MOBILE
================================ */

@media (max-width: 480px) {

    .swiper {
        height: 500px;
    }

    .slide-content {
        padding: 0 15px;
    }

    .slide-badge {
        font-size: 11px;

        padding: 7px 16px;

        letter-spacing: 1px;
    }

    .slide-content h2 {
        font-size: 30px;
    }

    .slide-content p {
        font-size: 14px;
    }

    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .swiper-pagination-bullet-active {
        width: 30px;
        height: 10px;
    }
}
/* ==========================================
   5. EDITORIAL SHOWCASE
   ========================================== */
.editorial-wrapper {
    max-width: 1500px;
    margin: 60px auto 40px auto; 
    padding: 0 40px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 30px;
}

.editorial-column {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 0;
    transition: transform 0.4s ease;
}

.editorial-column:hover {
    transform: translateY(-4px);
}

.editorial-column:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #d9ccb8, transparent);
}

.section-tag-heading {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    cursor: pointer;
}

.section-tag-heading i {
    color: #b91c1c;
    font-size: 18px;
    background: #fef2f2;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fecaca;
    box-shadow: 0 6px 15px rgba(185, 28, 28, 0.12);
    transition: all 0.4s ease;
}

.editorial-column:hover .section-tag-heading i {
    background: #b91c1c;
    color: #fff;
    transform: rotate(10deg) scale(1.08);
    box-shadow: 0 8px 20px rgba(185, 28, 28, 0.3);
}

.section-tag-heading h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-tag-heading h3::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e2d7c5;
    border-radius: 4px;
}

.section-tag-heading h3::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(270deg, #b91c1c, #f43f5e, #fb7185, #b91c1c);
    background-size: 300% 300%;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(185, 28, 28, 0.5);
    animation: neonWave 6s ease infinite;
    transition: all 0.4s ease;
}

.editorial-column:hover .section-tag-heading h3::after {
    height: 6px;
    box-shadow: 0 4px 20px rgba(185, 28, 28, 0.9), 0 0 8px #fb7185;
}

/* ==========================================
   PROFILE RECTANGULAR BOX STYLING (Updated)
   ========================================== */
.profile-box-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.profile-box-content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.profile-main-box-wrap {
    position: relative;
    width: 100%;
    max-width: 280px;
    height: 320px;
    border-radius: 16px;
    padding: 6px;
    background: linear-gradient(135deg, #b91c1c, #f59e0b);
    margin-bottom: 24px;
    box-shadow: 0 15px 35px rgba(185, 28, 28, 0.25);
    overflow: hidden;
}

.profile-main-box-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #fff;
    transition: transform 0.5s ease;
}

.profile-box-col:hover .profile-main-box-wrap img {
    transform: scale(1.04);
}

.box-img-glow {
    position: absolute;
    inset: -5px;
    border-radius: 16px;
    background: linear-gradient(45deg, #b91c1c, transparent, #f59e0b);
    z-index: -1;
    filter: blur(12px);
    opacity: 0.5;
    animation: pulseGlow 4s infinite;
}

.profile-name-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.profile-mini-badge {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(185, 28, 28, 0.08);
}

.hero-dr-name {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.hero-dr-designation {
    font-size: 15px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
}

.header-luxury-underline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 4px;
}

.line-dot {
    width: 5px;
    height: 5px;
    background-color: #b91c1c;
    border-radius: 50%;
    box-shadow: 0 0 6px #b91c1c;
}

.header-glow-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #b91c1c, transparent);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(185, 28, 28, 0.6);
}

/* Biography & News elements */
.editorial-bio-text {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 18px;
}

.editorial-quote-strip {
    background: #fff;
    border-left: 4px solid #b91c1c;
    padding: 12px 16px;
    border-radius: 0 14px 14px 0;
    font-size: 13.5px;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.02);
    border-top: 1px solid #f3ede2;
    border-right: 1px solid #f3ede2;
    border-bottom: 1px solid #f3ede2;
}

.editorial-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    font-weight: 900;
    font-size: 13.5px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.editorial-link-btn i {
    width: 28px;
    height: 28px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all 0.3s;
}

.editorial-link-btn:hover { color: #b91c1c; }
.editorial-link-btn:hover i { background: #b91c1c; transform: translateX(3px); }

.editorial-news-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.editorial-news-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid #e5dccb;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: block;
}

.editorial-news-card:hover {
    background: #fff;
    border-color: #b91c1c;
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(185, 28, 28, 0.08);
}

.news-meta-date {
    font-size: 10px;
    font-weight: 900;
    color: #b91c1c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 3px;
}

.news-meta-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.4;
}


/* ==========================================
   6. CYBER-GLASSMORPHIC HOLOGRAPHIC SECTIONS
   ========================================== */
.cyber-hologram-section {
    background: linear-gradient(135deg, #f0e6d6 0%, #e2d2bc 100%);
    padding: 70px 40px;
    border-top: 3px solid #b91c1c;
    border-bottom: 3px solid #b91c1c;
    margin-top: 60px;
    width: 100%;
}

.cyber-wrapper {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.cyber-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.holo-card-module {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.holo-card-module:nth-child(odd) {
    transform: translateX(-20px);
    opacity: 0.9;
}

.holo-card-module:nth-child(even) {
    transform: translateX(20px);
    opacity: 0.9;
}

.holo-card-module:hover,
.holo-card-module.reveal-active {
    transform: translateX(0) translateY(-8px);
    opacity: 1;
    box-shadow: 0 35px 80px rgba(185, 28, 28, 0.2);
    border-color: #fca5a5;
    background: #ffffff;
}

.holo-header-strip {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 18px 28px;
    font-size: 16px;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #b91c1c;
    position: relative;
}

.holo-header-strip span {
    display: flex;
    align-items: center;
    gap: 12px;
}

.holo-header-strip i {
    color: #f59e0b;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 10px;
}

.holo-body-content {
    padding: 28px;
    background: linear-gradient(180deg, #fffcf7 0%, #f7f0e6 100%);
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 22px;
    align-items: center;
}

.holo-spotlight-frame {
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid #e7dcce;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.holo-card-module:hover .holo-spotlight-frame {
    transform: perspective(1000px) rotateY(-3px) translateY(-3px);
    box-shadow: -8px 12px 28px rgba(185, 28, 28, 0.15);
    border-color: #fca5a5;
}

.holo-spotlight-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.holo-card-module:hover .holo-spotlight-frame img {
    transform: scale(1.08);
}

.holo-details-pane {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.holo-card-module:hover .holo-details-pane {
    transform: perspective(1000px) rotateY(3px) translateY(-3px);
}

.holo-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.holo-thumb-card {
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e2d2bc;
    cursor: pointer;
    transition: all 0.4s ease;
}

.holo-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.holo-thumb-card:hover {
    border-color: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(185, 28, 28, 0.2);
}

.holo-thumb-card:hover img {
    transform: scale(1.12);
}

.holo-info-text {
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
    line-height: 1.6;
}

.holo-footer-strip {
    padding: 18px 28px;
    background: #ede3d2;
    border-top: 1px solid #dcd0bc;
    text-align: center;
}

.cyber-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    color: white;
    font-size: 13.5px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 50px;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
    transition: all 0.4s ease;
    width: 100%;
}

.cyber-action-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(185, 28, 28, 0.45);
}

/* Video Module Specifics */
.big-video-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.big-video-link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid #e7dcce;
    text-decoration: none;
    color: #1e293b;
    font-weight: 800;
    font-size: 13.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.big-video-link-item i {
    color: #ff0000;
    font-size: 18px;
    background: #fef2f2;
    padding: 8px;
    border-radius: 8px;
}

.big-video-link-item:hover {
    border-color: #ff0000;
    transform: translateX(5px);
    box-shadow: 0 6px 18px rgba(255, 0, 0, 0.12);
    color: #b91c1c;
}


/* ==========================================
   7. FOOTER SECTION
   ========================================== */
footer {
    background: linear-gradient(135deg, #070a14 0%, #0f172a 100%);
    color: #94a3b8;
    padding: 70px 40px 30px 40px;
    border-top: 4px solid #b91c1c;
    width: 100%;
    position: relative;
}

.footer-fluid-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-col h3 {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
}

.footer-brand-col h3 i {
    color: #b91c1c;
    background: rgba(185, 28, 28, 0.15);
    padding: 8px;
    border-radius: 10px;
}

.footer-brand-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.footer-social-strip {
    display: flex;
    gap: 12px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-btn:hover {
    background: #b91c1c;
    transform: translateY(-4px) scale(1.08);
    border-color: #fca5a5;
    box-shadow: 0 6px 15px rgba(185, 28, 28, 0.4);
}

.footer-nav-col h4 {
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 18px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.footer-nav-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #b91c1c, #f43f5e);
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(185, 28, 28, 0.6);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links-list a i {
    font-size: 10px;
    color: #b91c1c;
}

.footer-contact-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    color: #cbd5e1;
    line-height: 1.5;
}

.footer-contact-row i {
    color: #f59e0b;
    margin-top: 3px;
    font-size: 15px;
    background: rgba(245, 158, 11, 0.1);
    padding: 7px;
    border-radius: 8px;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}


/* ==========================================
   8. RESPONSIVE MEDIA QUERIES
   ========================================== */
@media (max-width: 1300px) {
    .nav-links-right { display: none; }
    .menu-btn { display: block; }
    .brand-left h1 { font-size: 24px; }
    .swiper { height: 450px; }
    .slide-content h2 { font-size: 34px; }
    .editorial-grid { grid-template-columns: 1fr; }
    .editorial-column::after { display: none; }
    .cyber-grid-2x2 { grid-template-columns: 1fr; }
    .footer-fluid-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .cyber-grid-2x2 { grid-template-columns: 1fr; }
    .holo-body-content { grid-template-columns: 1fr; }
    .footer-fluid-container { grid-template-columns: 1fr; }
    .footer-bottom-bar { flex-direction: column; text-align: center; }
}

/* ==========================================
   FIXED & SPACIOUS 6-COLUMN COUNTER SECTION
   ========================================== */
.luxury-stats-section {
    background: linear-gradient(135deg, #070a14 0%, #0f172a 100%);
    padding: 60px 30px;
    border-top: 2px solid rgba(185, 28, 28, 0.4);
    border-bottom: 2px solid rgba(185, 28, 28, 0.4);
    position: relative;
    overflow: hidden;
}

.luxury-stats-wrapper {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 3 columns on desktop so cards get proper space and don't cramp */
.luxury-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.luxury-stat-card {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.luxury-stat-card:hover {
    transform: translateY(-5px);
    border-color: #b91c1c;
    box-shadow: 0 15px 35px rgba(185, 28, 28, 0.25);
    background: rgba(30, 41, 59, 0.9);
}

.luxury-icon-circle {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
    color: #ffffff;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(185, 28, 28, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.luxury-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.luxury-stat-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap; /* Text ko ek hi line mein rakhne ke liye */
}

/* Glowing bottom line inside card */
.stat-glow-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 3px;
    background: #b91c1c;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.luxury-stat-card:hover .stat-glow-line {
    width: 70px;
    background: #f59e0b;
    box-shadow: 0 0 8px #f59e0b;
}

/* Responsive Media Queries for Clean Layout */
@media (max-width: 1024px) {
    .luxury-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .luxury-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .luxury-stats-section {
        padding: 40px 15px;
    }
}

.big-video-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}


/* =========================
   VIDEO CARD
========================= */

.video-card {
    display: flex;
    flex-direction: column;

    text-decoration: none;

    background: rgba(15, 23, 42, 0.75);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 12px;

    overflow: hidden;

    transition: all 0.3s ease;
}


.video-card:hover {
    transform: translateY(-4px);

    border-color: #b91c1c;

    box-shadow: 0 10px 25px rgba(185, 28, 28, 0.25);
}


/* =========================
   VIDEO THUMBNAIL
========================= */

.video-thumbnail {
    position: relative;

    width: 100%;
    height: 150px;

    overflow: hidden;

    background: #020617;
}


.video-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}


.video-card:hover .video-thumbnail img {
    transform: scale(1.06);
}


/* =========================
   PLAY BUTTON
========================= */

.video-play {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ff0000;

    color: #ffffff;

    border-radius: 50%;

    font-size: 18px;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);

    transition: all 0.3s ease;
}


.video-card:hover .video-play {
    transform: translate(-50%, -50%) scale(1.12);
}


/* =========================
   VIDEO INFO
========================= */

.video-info {
    padding: 12px 14px;
}


.video-info h4 {
    margin: 0 0 6px;

    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.4;
}


.video-info p {
    margin: 0;

    color: #94a3b8;

    font-size: 12px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .big-video-links {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .video-thumbnail {
        height: 170px;
    }

}