        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
            color: #333333;
            overflow-x: hidden;
            padding-bottom: 60px;
        }
        a {
            text-decoration: none;
        }

        /* Heading Styles */
        h1, h2, h3, h4 {
            font-family: 'Great Vibes';
            color: #e91e63;
            text-align: center;
            font-weight: 400;
            margin-bottom: 20px;
        }
        h1 {
            font-size: 3rem;
        }
        h2 {
            font-size: 2.5rem;
        }
        h3 {
            font-size: 2rem;
        }
        h4 {
            font-size: 1.5rem;
        }

        /* Top Header */
        .top-header {
            background: linear-gradient(135deg, #ffcbf6, #c3cfe2, #e1cbff);
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            padding: 0 10px;
            text-align: center;
        }
        .top-header p {
            color: #3b3b3b;
            margin: 0;
            font-size: 16px;
        }
        .top-header b {
            text-decoration: underline;
            font-size: 18px;
        }

        /* Navbar Styles */
        .navbar {
            background: linear-gradient(135deg, #f1e0ee, #c3cfe2);
            padding: 10px 20px;
            box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.5), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 10;
            width: 90%;
            border-radius: 50px;
            margin: 30px auto;
            transition: transform 0.2s ease;
        }
        .navbar:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 16px rgba(0, 0, 0, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.6), inset 0 -2px 4px rgba(0, 0, 0, 0.3);
        }
        .navbar nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .brand-image {
            font-family: 'Great Vibes', cursive;
            font-size: 2rem;
            color: #ff69b4;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }
        .navbar ul {
            list-style: none;
            display: flex;
            gap: 20px;
            align-items: center;
        }
        .navbar ul li {
            position: relative;
            cursor: pointer;
            padding: 10px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
            color: #333333;
            background-color: transparent;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            line-height: 1;
            font-family: 'Arial', sans-serif;
        }
        .navbar ul li a {
            color: #333333;
            display: block;
            width: 100%;
            text-align: center;
            line-height: 1;
        }
        .navbar ul li:hover {
            background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
            color: #ffffff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 -1px 3px rgba(0, 0, 0, 0.2), inset 0 2px 3px rgba(255, 255, 255, 0.4);
        }
        .navbar ul li:hover a {
            color: #ffffff;
        }
        .post-ad-link {
            color: white;
            font-size: 16px;
            padding: 10px 20px;
            border-radius: 30px;
            background: linear-gradient(135deg, #6a82fb, #fc5c7d);
            border: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            animation: fadeIn 0.8s ease-in-out;
        }
        .post-ad-link span {
            font-weight: 700;
            font-style: italic;
            color: white;
        }
        .post-ad-link i {
            color: white;
            font-size: 20px;
            margin-left: 8px;
        }
        .post-ad-link:hover {
            background: linear-gradient(135deg, #fc5c7d, #6a82fb);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            transform: translateY(-3px) scale(1.05);
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: linear-gradient(135deg, #f1e0ee, #c3cfe2);
            min-width: 200px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            z-index: 10;
            padding: 10px 0;
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
        .dropdown-content a {
            display: block;
            padding: 10px 15px;
            color: #333333;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .dropdown-content a:hover {
            background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
            color: #ffffff;
        }

        /* Phone-Specific Sliding Menu */
        .toggle-icon {
            font-size: 28px;
            cursor: pointer;
            color: #333333;
            display: none;
        }
        .sliding-menu {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            box-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
            transition: right 0.3s ease;
            z-index: 20;
            flex-direction: column;
            padding: 20px;
        }
        .sliding-menu.show {
            right: 0;
        }
        .sliding-menu ul {
            list-style: none;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .sliding-menu ul li {
            color: #ffffff;
            font-size: 18px;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .sliding-menu ul li:hover {
            background: linear-gradient(135deg, #89f7fe, #66a6ff);
            color: #333333;
        }
        .close-btn {
            align-self: flex-end;
            font-size: 24px;
            cursor: pointer;
            color: #ffffff;
        }
        .sliding-menu .dropdown-content {
            display: none;
            padding-left: 20px;
            background: linear-gradient(135deg, #f1e0ee, #c3cfe2);
        }
        .sliding-menu .dropdown.active .dropdown-content {
            display: block;
        }
        .sliding-menu .dropdown-content a {
            color: #333333;
            font-size: 16px;
            padding: 8px 10px;
        }
        .sliding-menu .dropdown-content a:hover {
            background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
            color: #ffffff;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #ffcbf6, #c3cfe2, #e1cbff);
            padding: 60px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
            opacity: 0.5;
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero-content p {
            font-size: 1.2rem;
            color: #333333;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        .hero-cta {
            display: inline-flex;
            align-items: center;
            padding: 12px 30px;
            font-size: 1rem;
            color: #ffffff;
            background: linear-gradient(135deg, #6a82fb, #fc5c7d);
            border-radius: 30px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .hero-cta:hover {
            background: linear-gradient(135deg, #fc5c7d, #6a82fb);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        .hero-cta i {
            margin-left: 10px;
            font-size: 1.2rem;
        }

        /* Profile Gallery */
        .profile-gallery {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .profile-card {
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        .profile-card:hover {
            transform: translateY(-5px);
        }
        .profile-image img {
            width: 100%;
            height: 390px;
            object-fit: cover;
        }
        .profile-details {
            padding: 15px;
            text-align: center;
        }
        .profile-details h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        /* Article Section */
        .article-section {
            background: linear-gradient(135deg, #f1e0ee, #c3cfe2);
            font-family: 'Poppins', sans-serif;
            padding: 20px;
            margin: 20px auto;
            max-width: 1200px;
            background-color: rgb(255, 255, 255);
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        /* FAQ Section */
        .faq-container {
            background: linear-gradient(67deg, #c3cfe2, #f1e0ee);
            max-width: 1200px;
            margin: 50px auto;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }
        .faq-header {
            margin-bottom: 20px;
        }
        .faq-item {
            border-bottom: 1px solid black;
            padding: 15px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-size: 18px;
            color: #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            font-size: 16px;
            color: #555;
            margin-top: 10px;
            display: none;
        }
        .faq-item.active .faq-answer {
            display: block;
        }
        .faq-item.active .faq-question::after {
            content: '-';
            font-size: 20px;
            color: #007BFF;
        }
        .faq-question::after {
            content: '+';
            font-size: 20px;
            color: #007BFF;
        }

        /* Service Locations */
        .service-locations {
            max-width: 1200px;
            margin: 50px auto;
            padding: 40px 20px;
            background: linear-gradient(135deg, #ffcbf6, #c3cfe2, #e1cbff);
            border-radius: 8px;
        }
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        }
        .location-btn {
            padding: 10px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
            color: #333333;
            background-color: transparent;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 2px rgba(255, 255, 255, 0.3);
            text-align: center;
            font-family: 'Arial', sans-serif;
            font-size: 0.9rem;
        }
        .location-btn:hover {
            background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
            color: #ffffff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), inset 0 -1px 3px rgba(0, 0, 0, 0.2), inset 0 2px 3px rgba(255, 255, 255, 0.4);
        }

/* Sticky Contact Bar */
.sticky-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

/* Common Button Styles */
.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Hover effect */
.sticky-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

/* Individual button colors */
.sticky-call {
  background: linear-gradient(135deg, #FFD700, #EAB308); /* bright yellow */
  color: #000;
}

.sticky-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E); /* green */
}

.sticky-telegram {
  background: linear-gradient(135deg, #0088CC, #006BA1); /* blue */
}

/* Icons */
.sticky-btn i {
  font-size: 20px;
}

/* 🔹 Responsive for mobile */
@media (max-width: 600px) {
  .sticky-contact {
    flex-direction: row;
    bottom: 0;
    right: 0;
    left: 0;
    justify-content: space-around;
    background: #fff;
    padding: 10px 0;
    border-top: 2px solid #e5e7eb;
  }

  .sticky-btn {
    flex: 1;
    border-radius: 0;
    padding: 14px 0;
    font-size: 17px;
    box-shadow: none;
  }

  .sticky-btn i {
    font-size: 22px;
  }
}


        /* Footer Styling */
        .footer {
            background-color: black;
            padding: 20px;
            text-align: center;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            border-top: 3px solid #ff9800;
        }
        .footer footer {
            font-size: 1rem;
            letter-spacing: 0.5px;
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .top-header {
                height: auto;
                padding: 10px;
                font-size: 16px;
                flex-wrap: wrap;
            }
            .top-header p,
            .top-header b {
                font-size: 14px;
            }
            .navbar ul {
                display: none;
            }
            .toggle-icon {
                display: block;
            }
            .sliding-menu {
                display: flex;
                width: 80%;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .hero-cta {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            .profile-gallery {
                grid-template-columns: 1fr;
            }
            .locations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            h4 {
                font-size: 1.2rem;
            }
            .sticky-contact a {
                font-size: 14px;
                padding: 10px;
            }
        }
        @media (max-width: 480px) {
            .top-header {
                font-size: 14px;
                padding: 10px 5px;
            }
            .top-header p,
            .top-header b {
                font-size: 12px;
            }
            .brand-image {
                font-size: 1.5rem;
            }
            .post-ad-link {
                font-size: 12px;
                padding: 10px 15px;
            }
            .post-ad-link i {
                font-size: 16px;
            }
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .hero-content p {
                font-size: 0.9rem;
            }
            .hero-cta {
                padding: 8px 15px;
                font-size: 0.8rem;
            }
            .locations-grid {
                grid-template-columns: 1fr;
            }
            .location-btn {
                font-size: 0.8rem;
                padding: 8px 12px;
            }
            .footer {
                padding: 10px;
            }
            .footer footer {
                font-size: 0.8rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            h4 {
                font-size: 1rem;
            }
            .sticky-contact a {
                font-size: 18px;
                padding: 8px;
            }
        }
/* Pricing Table */
        .mega-pricing {
            padding: 50px 20px;
            background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .flash-sale {
            display: inline-block;
            background: #ff0000;
            color: white;
            padding: 15px 30px;
            border-radius: 10px;
            font-size: 24px;
            font-weight: bold;
            animation: flash 0.5s infinite;
            margin-bottom: 30px;
        }

        @keyframes flash {
            0%, 100% { background: #ff0000; }
            50% { background: #ff6b00; }
        }

        .package-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .package-card {
            background: #000;
            border: 3px solid #ffd700;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s;
        }

        .package-card.featured {
            border-color: #00ff00;
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(0,255,0,0.3);
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255,215,0,0.3);
        }

        .best-seller {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, #ff0000, #ffd700);
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-weight: bold;
            animation: pulse 1s infinite;
        }

        .package-name {
            font-size: 28px;
            color: #ffd700;
            margin-bottom: 20px;
        }

        .package-dr {
            font-size: 48px;
            font-weight: bold;
            background: linear-gradient(90deg, #00ff00, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .package-price {
            margin-bottom: 30px;
        }

        .price-now {
            font-size: 36px;
            color: #00ff00;
            font-weight: bold;
        }

        .package-features {
            list-style: none;
            text-align: left;
            margin: 20px 0;
        }

        .package-features li {
            padding: 10px 0;
            border-bottom: 1px solid #333;
            color: #ccc;
        }

        .package-features li::before {
            content: '✅ ';
            color: #00ff00;
            margin-right: 10px;
        }

        .order-now-btn {
            width: 100%;
            padding: 20px;
            background: linear-gradient(90deg, #25d366, #128c7e);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            animation: pulse 1s infinite;
            text-decoration: none;
            display: block;
        }
