
        .hero-section {
            position: relative;
            min-height: 850px;
            display: flex;
            align-items: center;
            /* "public" likhne ki zaroorat nahi hoti */
background: url("../images/hero-bg-4b9lRgRI.jpg") no-repeat center center/cover;
            padding: 100px 0 200px 0;
            color: white;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(153, 27, 27, 0.90) 0%, rgba(153, 27, 27, 0.60) 40%, rgba(255, 255, 255, 0.5) 75%, rgba(245, 242, 243, 0.353) 100%);
            z-index: 1;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(to bottom, transparent, rgba(81, 77, 77, 0.3));
            z-index: 2;
            pointer-events: none;
        }

        .hero-container {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .badge-container {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .dot {
            width: 8px;
            height: 8px;
            background-color: #ffb400;
            border-radius: 50%;
        }

        .badge-text {
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 20px;
            max-width: 800px;
        }

        .hero-title .highlight {
            color: #ffb400;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            max-width: 500px;
            margin-bottom: 35px;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-btns {
            display: flex;
            gap: 15px;
            margin-bottom: 50px;
        }

        .btn-white {
            background: white;
            color: #991b1b;
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 700;
            text-decoration: none;
        }

        .btn-outline {
            border: 1px solid white;
            color: white;
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
        }

        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            max-width: 900px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 12px;
            flex: 1;
            min-width: 160px;
        }

        .stat-card h3 {
            font-size: 1.8rem;
            margin-bottom: 5px;
        }

        .stat-card p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .stats-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .badge-container,
        .hero-title,
        .hero-description,
        .hero-btns,
        .stats-grid {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .badge-container {
            animation-delay: 0.2s;
        }

        .hero-title {
            animation-delay: 0.4s;
        }

        .hero-description {
            animation-delay: 0.6s;
        }

        .hero-btns {
            animation-delay: 0.8s;
        }

        .stats-grid {
            animation-delay: 1.0s;
        }

        .stat-card {
            transition: transform 0.3s ease, background 0.3s ease;
            cursor: default;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
        }

        @keyframes pulse-white {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            }

            70% {
                box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }

        .btn-white {
            animation: pulse-white 2s infinite;
        }

        .services-section {
            padding: 100px 0 80px 0;
            background-color: #ffffff;
            position: relative;
            z-index: 20;
            margin-top: -110px;
            padding-top: 80px;
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .services-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }

        .services-header h2 {
            font-size: 3rem;
            color: #000000;
            font-weight: 800;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .header-desc {
            margin-top: 15px;
            color: #666;
            font-size: 1.1rem;
        }

        .service-card-vip {
            background: #ffffff;
            position: relative;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(153, 27, 27, 0.08);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            height: 100%;
            border: 1px solid rgba(153, 27, 27, 0.05);
            z-index: 1;
        }

        .service-card-vip:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(153, 27, 27, 0.15);
            border-color: #991b1b;
        }

        .service-card-vip:hover .icon-wrapper {
            background: #991b1b;
            color: white;
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(153, 27, 27, 0.4);
        }

        .icon-wrapper {
            width: 70px;
            height: 70px;
            background: #FFF1F2;
            color: #991b1b;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 25px;
            transition: all 0.4s ease;
        }

        .service-card-vip h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .service-card-vip p {
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-link {
            margin-top: auto;
            color: #991b1b;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .service-link span {
            transition: transform 0.3s ease;
            margin-left: 5px;
        }

        .service-link:hover span {
            transform: translateX(5px);
        }

        .about-section {
            padding: 100px 5%;
            display: flex;
            justify-content: center;
            background: #fff;
            position: relative;
        }

        .about-main-container {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            width: 100%;
        }

        .about-stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .about-card {
            padding: 35px 20px;
            border-radius: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 160px;
        }

        .about-card h2 {
            font-size: 2.2rem;
            margin-bottom: 5px;
            font-family: "Arial Narrow", Arial, "Liberation Sans Narrow", sans-serif;
        }

        .about-card p {
            font-size: 0.9rem;
            margin: 0;
        }

        .light-pink {
            background-color: #F3E5E5;
            color: #E11D48;
        }

        .red-card {
            background-color: #E11D48;
            color: white !important;
        }

        .dark-blue-card {
            background-color: #0F2E47;
            color: white !important;
        }

        .orange-card {
            background-color: #F97316;
            color: white !important;
        }

        .about-content h1 {
            font-family: "Arial Narrow", Arial, "Liberation Sans Narrow", sans-serif;
            font-size: 2.5rem;
            margin: 15px 0;
            line-height: 1.2;
            color: #0F172A;
        }

        @media (max-width: 968px) {
            .about-main-container {
                grid-template-columns: 1fr;
            }

            .about-content {
                text-align: center;
                margin-top: 40px;
            }

            .features-list {
                grid-template-columns: 1fr;
                text-align: left;
            }
        }

        .drop-icon {
            font-size: 40px;
            color: #E11D48;
        }

        .features-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            list-style: none;
            gap: 15px;
            margin-bottom: 30px;
        }

        .features-list li {
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            color: #334155;
        }

        .badge {

            background: rgba(229, 141, 141, 0.2);
            padding: 8px 22px;
            border-radius: 25px;
            font-size: 14px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            display: inline-block;
            margin-bottom: 18px;
            animation: fadeInUp 0.6s ease;
            color: #991B1B
        }

        .check {
            color: #E11D48;
            background: #FFE4E6;
            width: 20px;
            height: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 10px;
            margin-right: 10px;
        }

        .btn-primary {
            display: inline-block;
            background-color: #B91C1C;
            color: white;
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-primary:hover {
            background-color: #991B1B;
        }

        .vip-treatment-section {
            padding: 100px 5%;
            background: linear-gradient(135deg, #450a0a 0%, #916464 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .vip-treatment-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 180, 0, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        .vip-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .vip-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .vip-header h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            background: linear-gradient(to right, #ffffff, #fca5a5);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .vip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .vip-card {
            position: relative;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 40px 30px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .bg-number {
            position: absolute;
            top: -20px;
            right: -10px;
            font-size: 6rem;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.03);
            line-height: 1;
            transition: all 0.4s ease;
            pointer-events: none;
        }

        .vip-icon-box {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 24px;
            color: #ffb400;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }

        .vip-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .vip-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            z-index: 1;
        }

        .vip-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(255, 180, 0, 0.5);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 180, 0, 0.1);
        }

        .vip-card:hover .bg-number {
            color: rgba(255, 255, 255, 0.08);
            transform: translateX(-10px);
        }

        .vip-card:hover .vip-icon-box {
            background: #ffb400;
            color: #450a0a;
            box-shadow: 0 0 25px rgba(255, 180, 0, 0.6);
            transform: rotate(5deg);
        }

        @media (max-width: 768px) {
            .vip-header h2 {
                font-size: 2rem;
            }

            .vip-grid {
                gap: 20px;
            }
        }

        .partners-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #ffffff, #FFF0F0);
            overflow: hidden;
            position: relative;
            text-align: center;
        }

        .partners-header {
            margin-bottom: 50px;
        }

        .marquee-wrapper {
            display: flex;
            width: 100%;
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .marquee-content {
            display: flex;
            gap: 60px;
            padding: 20px 0;
            animation: scroll-left 30s linear infinite;
            min-width: 100%;
        }

        .marquee-wrapper:hover .marquee-content {
            animation-play-state: paused;
        }

        .partner-logo {
            flex: 0 0 auto;
            width: 180px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 12px;
            padding: 10px;
            border: 1px solid rgba(229, 141, 141, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.6);
            transition: filter 0.4s ease, transform 0.4s ease;
        }

        .partner-logo:hover {
            background: white;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(153, 27, 27, 0.15);
            border-color: #991b1b;
            z-index: 10;
        }

        .partner-logo:hover img {
            filter: grayscale(0%) opacity(1);
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-100% - 60px));
            }
        }

        @media (max-width: 768px) {
            .partners-section {
                padding: 40px 0;
            }

            .partner-logo {
                width: 140px;
                height: 80px;
            }

            .marquee-content {
                gap: 30px;
                animation-duration: 25s;
            }
        }

