
        /* style.css */
        :root {
            --dark-bg: #1a1a1a;
            --darker-bg: #0f0f0f;
            --gold: #D4AF37;
            --light-text: #f8f8f8;
            --off-white: #e0e0e0;
            --gray: #888888;
            --transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: var(--light-text);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--light-text);
        }
        
        .desktop-menu {
            display: flex;
            gap: 30px;
        }
        
        .desktop-menu a {
            color: var(--light-text);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: var(--transition);
            position: relative;
        }
        
        .desktop-menu a:hover {
            color: var(--gold);
        }
        
        .desktop-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: var(--transition);
        }
        
        .desktop-menu a:hover::after {
            width: 100%;
        }
        
        .call-btn {
            background-color: var(--gold);
            color: var(--darker-bg);
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: 2px solid var(--gold);
        }
        
        .call-btn:hover {
            background-color: transparent;
            color: var(--gold);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            opacity: 0.8;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           background: linear-gradient(90deg, #1F0021, #751006);
            z-index: -1;
        }
        
        .hero-content {
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: var(--off-white);
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .btn {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
        }
        
        .btn-primary {
            background-color: var(--gold);
            color: var(--darker-bg);
            border: 2px solid var(--gold);
        }
        
        .btn-primary:hover {
            background-color: transparent;
            color: var(--gold);
        }
        
        .btn-secondary {
            background-color:#009933;
            color:#FFFFFF;
            border: 2px solid #FFFFFF;
        }
        
        .btn-secondary:hover {
            background-color: var(--gold);
            color: var(--darker-bg);
        }
        
        /* Section Styling */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--gold);
        }
        section h1 {
            font-size: 2rem;   /* adjust as per your design */
            line-height: 1.3;
        }

        /* About Section */
        .about-content {
            max-width: 100%;
            margin: 0 auto;
            text-align: left;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--off-white);
        }
        
        .about-content p {
            margin-bottom: 20px;
        }
        .about-content p strong {
            color: #ffcc99; 
            font-weight: 700; ;
        }
        
        /* Video Section */
        .video-section {
            position: relative;
            padding: 80px 0;
            background-color: var(--darker-bg);
        }
        
        .video-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }
        
        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #1F0021, #751006);
            z-index: 1;
        }
        
        .video-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            color: white;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .video-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .video-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* Contact Banner */
        .contact-banner {
            background: linear-gradient(90deg, #FFCF67, #D3321D);
            padding: 20px 0;
            text-align: center;
            border-top: 2px solid #D4AF37;
            border-bottom: 2px solid #D4AF37;
        }
        
        .contact-banner h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: black;
            font-weight: 600;
        }
        
        .contact-banner .phone {
            font-size: 2rem;
            font-weight: 700;
            color: black;
            letter-spacing: 1px;
        }
        
        /* Services Section */
        .services-section {
            background-color: #5C2D2D;
            padding: 80px 0;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: linear-gradient(90deg, #FFCF67, #D3321D);
            border: 3px solid #D4AF37;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: var(--transition);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        }
        
        .service-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
        }
        
        .service-content {
            padding: 20px;
            text-align: center;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: black;
        }
        
        .service-content p {
            color: black;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .service-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #5C2D2D;
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .service-btn:hover {
            background-color: #4B2424;
        }
        
        /* Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .gallery-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
            border: 2px solid rgba(212, 175, 55, 0.3); /* Added border */
        }
        
        .gallery-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
        }
        
        .card-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            object-position: top;
            display: block;
            transition: var(--transition);
        }
        
        .gallery-card:hover .card-img {
            transform: scale(1.05);
        }
        
        .verified-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #00ff00;
            color: #000;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 2;
            animation: neonBlink 1.0s infinite;
            box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
            font-weight: bold;
        }
        
        @keyframes neonBlink {
            0% { 
                opacity: 1; 
                box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
            }
            50% { 
                opacity: 0.7; 
                box-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00, 0 0 15px #00ff00;
            }
            100% { 
                opacity: 1; 
                box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
            }
        }
        
        .trusted-tag {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #ff6b6b;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
            animation: trustedBlink 2s infinite;
        }
        
        @keyframes trustedBlink {
            0% { opacity: 1; }
            50% { opacity: 0.5; }
            100% { opacity: 1; }
        }
        
        .card-info {
            padding: 20px;
            background-color: rgba(26, 26, 26, 0.9);
            backdrop-filter: blur(5px);
        }
        
        .card-name {
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: var(--gold);
        }
        
        .card-stats {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        .card-cta {
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        
        .card-btn {
            flex: 1;
            padding: 8px 0;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: var(--transition);
            font-size: 0.9rem;
        }
        
        .call-card-btn {
            background-color: var(--gold);
            color: var(--darker-bg);
        }
        
        .call-card-btn:hover {
            background-color: #c19b2a;
        }
        
        .whatsapp-card-btn {
            background-color: #25D366;
            color: white;
        }
        
        .whatsapp-card-btn:hover {
            background-color: #1da851;
        }
        
        /* New Content Section Below Gallery */
        .content-section {
            padding: 60px 0;
            background-color: var(--darker-bg);
        }
        
        .content-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: left;
        }
        
        .content-container h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: var(--gold);
        }
        
        .content-container p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--off-white);
        }
        
        /* Highlight bold keywords */
        .content-container p strong {
            color: #ffcc99; /* change this color if needed */
            font-weight: 700;
        }

      
        /* Rates Section */
        .rates-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0 auto;
            max-width: 800px;
        }
        
        .rates-table th,
        .rates-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .rates-table th {
            background-color:#FF9900;
            color: white;
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .rates-table tr:last-child td {
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }
        
        .rates-table tr:hover td {
            background-color: rgba(212, 175, 55, 0.05);
        }
        
        .price {
            color: var(--gold);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            background-color: rgba(26, 26, 26, 0.7);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--gold);
        }
        
        .faq-question i {
            transition: var(--transition);
            color: var(--gold);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: rgba(26, 26, 26, 0.9);
            color: var(--off-white);
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
            
        }
        
        /* Locations Section */
        .locations-section {
            position: relative;
        }
        
        .locations-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .location-tag {
            background-color: rgba(212, 175, 55, 0.1);
            color: var(--gold);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 1rem;
            transition: var(--transition);
            border: 1px solid rgba(212, 175, 55, 0.3);
            text-decoration: none;
        }
        
        .location-tag:hover {
            background-color: var(--gold);
            color: var(--darker-bg);
            transform: translateY(-3px);
        }
        
        .locations-cta {
            text-align: center;
            margin-top: 40px;
        }
        
        .locations-cta .btn {
            background-color: var(--gold);
            color: var(--darker-bg);
            border: 2px solid var(--gold);
        }
        
        .locations-cta .btn:hover {
            background-color: transparent;
            color: var(--gold);
        }
        
        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background-color: rgba(26, 26, 26, 0.7);
            padding: 30px;
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--off-white);
            font-weight: 500;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background-color: rgba(10, 10, 10, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            color: var(--light-text);
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--gold);
        }
        
        .submit-btn {
            width: 100%;
            padding: 14px;
            background-color: var(--gold);
            color: var(--darker-bg);
            border: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .submit-btn:hover {
            background-color: #c19b2a;
        }
        
        /* Floating Buttons */
        .floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 100;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-btn {
            background-color: #25D366;
            color: white;
        }
        
        .call-float-btn {
            background-color: #ff0000; /* Changed to red */
            color: white;
            bottom: 110px; /* Positioned above WhatsApp button */
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        
        @keyframes callPulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 0, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
        }
        
        .call-float-btn {
            animation: callPulse 2s infinite;
        }
        
        /* Footer */
        footer {
            background-color: var(--darker-bg);
            padding: 40px 0 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 20px;
        }
        
        .disclaimer {
            color: var(--gray);
            font-size: 0.9rem;
            margin: 20px 0;
            max-width: 600px;
        }
        
        .footer-links {
            display: flex;
            gap: 25px;
            margin: 20px 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .footer-links a {
            color: var(--off-white);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--gold);
        }
        
        .copyright {
            color: var(--gray);
            font-size: 0.9rem;
            margin-top: 20px;
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* 18+ Warning Popup */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        
        .popup-content {
            background-color: #1a1a1a;
            border: 3px solid #D4AF37;
            border-radius: 10px;
            padding: 30px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
        }
        
        .popup-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #ff0000;
        }
        
        .popup-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.6;
        }
        
        .popup-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .popup-btn {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.1rem;
            border: 2px solid #D4AF37;
        }
        
        .accept-btn {
            background-color: #D4AF37;
            color: #0f0f0f;
        }
        
        .accept-btn:hover {
            background-color: transparent;
            color: #D4AF37;
        }
        
        .decline-btn {
            background-color: transparent;
            color: #D4AF37;
        }
        
        .decline-btn:hover {
            background-color: #D4AF37;
            color: #0f0f0f;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .desktop-menu {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            /* Mobile: Show only one card per row */
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            
            .card-img {
                height: 320px;
            }
            
            .card-cta {
                flex-direction: column;
                gap: 8px;
            }
            
            .card-btn {
                padding: 10px 0;
            }
            
            /* Adjust floating buttons for mobile */
            .floating-btn {
                bottom: 20px;
                right: 20px;
                width: 55px;
                height: 55px;
            }
            
            .call-float-btn {
                bottom: 90px; /* Positioned above WhatsApp button on mobile */
            }
            
            /* Video section adjustments */
            .video-content h2 {
                font-size: 2rem;
            }
            
            .video-content p {
                font-size: 1rem;
            }
            
            /* Services section adjustments */
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .service-image {
                height: 250px;
            }
            
            .service-content h3 {
                font-size: 1.3rem;
            }
            
            /* Content section adjustments */
            .content-container h2 {
                font-size: 1.8rem;
            }
            
            .content-container p {
                font-size: 1rem;
            }
            
            /* Popup adjustments */
            .popup-content {
                padding: 20px;
            }
            
            .popup-content h2 {
                font-size: 1.7rem;
            }
            
            .popup-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .popup-btn {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.7rem;
            }
            
            .card-img {
                height: 480px;
            }
            
            .contact-banner h3 {
                font-size: 1.2rem;
            }
            
            .contact-banner .phone {
                font-size: 1.5rem;
            }
        }
        
        /* Ensure mobile menu is hidden on desktop */
        @media (min-width: 769px) {
            .mobile-menu {
                display: none !important;
            }
        }


		.nowcalling
{display:block;position:fixed;bottom:0;width:100%;z-index:9999}
.lcol,.rcol,.ccol
{float:left;width:50%}
.lcol{background-color:#0C22C9}
.rcol{background-color:#058937}
.ccol{background-color: #4D4E54;}
.lcol a,.rcol a,.ccol a{display:block;padding:10px 0;text-align:center;text-decoration:none;color:#fff}	