
        /* ===== GLOBAL STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Poppins', 'Roboto', sans-serif;
            overflow-x: hidden;
            background-color: #fffdf8;
        }

        :root {
            --maroon: #800020;
            --maroon-dark: #5a0015;
            --cream: #FFF5E6;
            --gold: #C9A03D;
            --gold-light: #f5e1a0;
            --dark-text: #2c2c2c;
        }

        .text-maroon {
            color: var(--maroon);
        }

        .bg-maroon {
            background-color: var(--maroon);
        }

        .bg-maroon-dark {
            background-color: var(--maroon-dark);
        }

        .bg-cream {
            background-color: var(--cream);
        }

        .bg-light-cream {
            background-color: #fffaf2;
        }

        .text-gold {
            color: var(--gold);
        }

        /* Chikankari Floral Watermark Pattern */
        .floral-pattern-bg {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.08"><path fill="%23800020" d="M50,10 L55,40 L85,45 L55,50 L50,80 L45,50 L15,45 L45,40 Z"/><circle cx="50" cy="50" r="8" fill="%23800020"/></svg>');
            background-repeat: repeat;
            background-size: 60px;
        }

        /* Top Header */
        .top-header {
            background: var(--maroon);
            color: white;
            font-size: 0.85rem;
        }

        .top-header a {
            color: white;
            text-decoration: none;
            transition: 0.3s;
        }

        .top-header a:hover {
            color: var(--gold-light);
        }

        .trust-text {
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* Premium SSC Logo with Thread/Wave */
        .logo-wrapper {
            display: flex;
            align-items: center;
        }

        .ssc-logo {
            position: relative;
            background: linear-gradient(135deg, var(--maroon), #a52a2a);
            width: 55px;
            height: 55px;
            border-radius: 12px 4px 12px 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(128, 0, 32, 0.2);
            overflow: hidden;
        }

        .ssc-initials {
            font-size: 1.8rem;
            font-weight: 800;
            color: #FFD966;
            letter-spacing: 1px;
            z-index: 2;
        }

        .thread-wave {
            position: absolute;
            bottom: 3px;
            right: 3px;
            font-size: 1rem;
            color: #f9e0a0;
            opacity: 0.9;
        }

        .thread-wave i:first-child {
            transform: rotate(15deg);
            margin-right: -5px;
        }

        .logo-text h5 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--maroon-dark);
        }

        .logo-text small {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 1px;
        }

        /* Buttons */
        .btn-outline-maroon {
            border: 1.5px solid var(--maroon);
            color: var(--maroon);
            border-radius: 40px;
            padding: 6px 18px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-outline-maroon:hover {
            background: var(--maroon);
            color: white;
        }

        .btn-success-gold {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            border-radius: 40px;
            padding: 6px 18px;
            font-weight: 600;
            border: none;
        }

        .btn-success-gold:hover {
            background: #075e54;
            color: white;
        }

        /* Hero Section */
        .hero-section {
            height: 90vh;
            min-height: 550px;
            background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/4066232/pexels-photo-4066232.jpeg?auto=compress&cs=tinysrgb&w=1600');
            background-size: cover;
            background-position: center 30%;
            background-attachment: fixed;
            display: flex;
            align-items: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 0, 0, 0.3), rgba(128, 0, 32, 0.2));
        }

        .btn-hero-call,
        .btn-hero-wa {
            padding: 12px 32px;
            font-weight: bold;
            border-radius: 50px;
            transition: 0.3s;
        }

        .btn-hero-call {
            background: var(--maroon);
            color: white;
            border: none;
        }

        .btn-hero-call:hover {
            background: #a01030;
            transform: scale(1.02);
            color: white;
        }

        .btn-hero-wa {
            background: #25D366;
            color: white;
            border: none;
        }

        .btn-hero-wa:hover {
            background: #1da851;
            transform: scale(1.02);
        }

        .trust-badges span {
            background: rgba(255, 255, 240, 0.9);
            padding: 5px 15px;
            border-radius: 40px;
            font-size: 0.9rem;
            color: var(--maroon);
            font-weight: 500;
            backdrop-filter: blur(2px);
        }

        /* Section Padding */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--maroon);
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background: var(--gold);
            border-radius: 2px;
        }

        /* Service Cards */
        .service-card {
            background: white;
            border-radius: 20px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(192, 144, 80, 0.2);
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 30px rgba(128, 0, 32, 0.1);
            border-color: var(--gold);
        }

        .service-card i {
            transition: 0.3s;
        }

        .service-card:hover i {
            transform: scale(1.1);
        }

        /* Gallery */
        .gallery-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 18px;
            transition: all 0.4s;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .gallery-img:hover {
            transform: scale(1.03);
            filter: brightness(1.02);
            box-shadow: 0 12px 28px rgba(128, 0, 32, 0.2);
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
            color: white;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.1"><path fill="%23FFD966" d="M50,10 L55,40 L85,45 L55,50 L50,80 L45,50 L15,45 L45,40 Z"/></svg>');
        }

        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin: 15px 0 5px;
            color: #FFD966;
        }

        .counter-box p {
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

        /* Testimonial Card */
        .testimonial-card {
            background: white;
            border-radius: 30px;
            text-align: center;
            margin: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
        }

        .stars i {
            color: #FFB800;
            margin: 0 2px;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: var(--maroon);
            border-radius: 50%;
            padding: 10px;
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(95deg, #5a0015, #800020);
            color: white;
            background-image: radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.1) 2%, transparent 2.5%);
            background-size: 30px 30px;
        }

        .btn-cta-call,
        .btn-cta-wa {
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: bold;
            margin: 10px;
        }

        .btn-cta-call {
            background: #FFD966;
            color: var(--maroon);
            border: none;
        }

        .btn-cta-call:hover {
            background: #ffc107;
        }

        .btn-cta-wa {
            background: #25D366;
            color: white;
            border: none;
        }

        /* Contact Form */
        .btn-maroon {
            background: var(--maroon);
            color: white;
            border-radius: 40px;
            padding: 10px;
            font-weight: 600;
        }

        .btn-maroon:hover {
            background: #a52a2a;
            color: white;
        }

        .contact-info-card {
            border-left: 5px solid var(--gold);
        }

        /* Sticky WhatsApp & Mobile Call */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 25px;
            z-index: 999;
        }

        .whatsapp-float a {
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: 0.3s;
        }

        .whatsapp-float a:hover {
            transform: scale(1.05);
            background: #075e54;
        }

        .mobile-sticky-call {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 999;
        }

        .btn-call-sticky {
            background: var(--maroon);
            color: white;
            padding: 10px 18px;
            border-radius: 50px;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            text-decoration: none;
            font-size: 0.9rem;
        }

        /* Footer Logo */
        .ssc-logo-footer {
            background: #ffd966;
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.4rem;
            color: var(--maroon);
        }

        .footer a {
            transition: 0.3s;
        }

        .footer a:hover {
            color: var(--gold) !important;
            text-decoration: underline;
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        @media (max-width: 768px) {
            .hero-section {
                height: 80vh;
                background-attachment: scroll;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .section-padding {
                padding: 50px 0;
            }

            .counter-box h3 {
                font-size: 1.8rem;
            }
        }