 /* styles.css content */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f9f9f9;
            color: #333;
        }


        .logo-image {
            width: 130px;
            height: 100px;
        }

        .logo h3 {
            line-height: 1.1;
            color: red;
            font-size: 20px;
        }

        .top-bar a{
            text-decoration: none;
            color: white;
        }
        /* Top Bar */
        .top-bar {
            background-color: #e91e63;
            color: white;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        .top-bar .email {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar .for-rent {
            background-color: #4caf50;
            padding: 5px 12px;
            border-radius: 4px;
            font-weight: 600;
        }

        /* Header */
        header {
            background-color: #000;
            color: white;
            padding: 10px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 24px;
            font-weight: 700;
        }

        .logo i {
            color: #e91e63;
            font-size: 32px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: #e91e63;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 80vh;
            background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), 
                        url('./img/banner-5.jpg') no-repeat center right;
            background-size: cover;
            display: flex;
            align-items: center;
            padding-left: 10%;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 10px;
            background: repeating-linear-gradient(
                90deg,
                #e91e63,
                #e91e63 20px,
                transparent 20px,
                transparent 40px
            );
        }

        .hero-content {
            max-width: 600px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero h1 span {
            color: #e91e63;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .btn {
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .btn-call {
            background-color: #e91e63;
            color: white;
        }

        .btn-call:hover {
            background-color: #c2185b;
            transform: translateY(-3px);
        }

        .btn-whatsapp {
            background-color: #25d366;
            color: white;
        }

        .btn-whatsapp:hover {
            background-color: #1ebe57;
            transform: translateY(-3px);
        }

        /* Bottom Bar */
        .bottom-bar {
            position: fixed;
            bottom: 0;
            width: 100%;
            background-color: #e91e63;
            color: white;
            height: 8vh;
            /* padding: 15px 40px; */
            display: flex;
            z-index: 99;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
        }

        
        .bottom-bar .phone {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100%;
            width: 50%;
            background-color: #c00;
            /* padding: 8px 20px; */
            border-radius: 4px;
        }

        .bottom-bar .whatsapp {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #25d366;
            /* padding: 8px 20px; */
            height: 100%;
            width: 50%;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .bottom-bar a{
            text-decoration: none;
            color: white;
            /* width: 50%; */
            /* height: 100%; */
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero {
                background-position: 70% center;
                padding-left: 5%;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .top-bar, .bottom-bar {
                /* flex-direction: column; */
                text-align: center;
                /* gap: 10px; */
            }
            header {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            nav ul {
                flex-wrap: wrap;
                justify-content: center;
            }
            .hero {
                height: 70vh;
                text-align: center;
                padding: 0 20px;
            }
            .cta-buttons {
                justify-content: center;
            }
        }

        .about-section {
            padding: 80px 10%;
            display: flex;
            align-items: center;
            gap: 50px;
            height: 80vh;
            background-color: #16213e;
            /* border-radius: 12px; */
            margin: 40px auto;
            width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .about-content {
            flex: 1;
            max-width: 600px;
        }

        .about-content h2 {
            font-size: 2.5rem;
            color: #ffffff;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .about-content p {
            font-size: 1.05rem;
            color: #bbbbbb;
            margin-bottom: 18px;
        }

        .about-content p:last-of-type {
            margin-bottom: 30px;
        }

        .explore-btn {
            display: inline-block;
            background-color: #e91e63;
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
        }

        .explore-btn:hover {
            background-color: #c2185b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
        }

        .about-image {
            flex: 1;
            width: 9vw;
            height: 40vh;
            /* background-color: red; */
            overflow: hidden;
            border-radius: 12px;
            position: relative;
            /* background: url('https://images.unsplash.com/photo-1599423300746-b62533397364?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center; */
            background-size: cover;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            transition: transform 0.6s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .slider {
            width: 100%;
            max-width: 500px;
            height: 40vh;
            max-height: 600px;
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Responsive placeholder images */
        .placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: bold;
            text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
            background: linear-gradient(135deg, #ff6b6b, #feca57);
        }

        .placeholder:nth-child(2) { background: linear-gradient(135deg, #48dbfb, #0abde3); }
        .placeholder:nth-child(3) { background: linear-gradient(135deg, #1dd1a1, #10ac84); }
        .placeholder:nth-child(4) { background: linear-gradient(135deg, #5f27cd, #341f97); }

        /* Mobile adjustments */
        @media (max-width: 480px) {
            .slider {
                border-radius: 12px;
                height: 35vh;
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .about-section {
                flex-direction: column;
                text-align: center;
                padding: 60px 5%;
            }

            .about-content, .about-image {
                max-width: 100%;
            }

            .about-image {
                width: 100%;
                height: 35vh;
            }
            .about-image {
                order: -1;
                margin-bottom: 30px;
            }

            .about-content h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .about-section {
                height: auto;
                gap: 30px;
            }
            .about-image {
                /* background-color: red; */
                height: 30vh;

            }
            .about-content h2 {
                font-size: 1.8rem;
            }

            .explore-btn {
                padding: 12px 28px;
                font-size: 1rem;
            }
        }

        /* Escorts Section */
        .escorts-section {
            background-color: #e91e63;
            padding: 60px 20px;
            text-align: center;
        }

        .section-subtitle {
            color: white;
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .section-title1 {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 50px;
            text-transform: uppercase;
        }

        .escorts-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(250px, 1fr));
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .escort-card {
            background-color: #000;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .escort-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(233, 30, 99, 0.4);
        }

        .escort-image {
            position: relative;
            height: 320px;
            overflow: hidden;
        }

        .escort-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .escort-card:hover .escort-image img {
            transform: scale(1.08);
        }

        .escort-info {
            padding: 18px 15px;
            color: white;
        }

        .escort-name {
            background-color: #e91e63;
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            padding: 8px 0;
            margin-bottom: 8px;
        }

        .availability {
            font-size: 0.95rem;
            color: #4caf50;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .rating {
            color: #ffd700;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .contact-buttons a{
            text-decoration: none;
        }

        .btn-contact {
            background-color: #25d366;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
        }

        .btn-contact.call {
            background-color: #4caf50;
            box-shadow: 0 4px 10px rgba(76, 175, 80, 0.4);
        }

        .btn-contact:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-title1 {
                font-size: 2rem;
            }
            .escorts-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .escorts-grid {
                grid-template-columns: 1fr;
            }
            .section-title1 {
                font-size: 1.8rem;
            }
        }

         /* Locations Section */
        .locations-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), 
                        url('./img/escorts-background-new3.jpg') no-repeat center center;
            background-size: cover;
            background-attachment: fixed;
            padding: 100px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .section-title2 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 60px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            z-index: 2;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            z-index: 2;
        }

        .location-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
        }

        .location-item:hover {
            transform: translateY(-10px);
        }

        .location-image {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 15px;
            border: 4px solid #e91e63;
            box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
            transition: all 0.3s ease;
        }

        .location-item:hover .location-image {
            border-color: #fff;
            box-shadow: 0 12px 30px rgba(233, 30, 99, 0.6);
            transform: scale(1.05);
        }

        .location-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .location-item:hover .location-image img {
            transform: scale(1.1);
        }

        .location-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }

        .location-item:focus .location-name,
        .location-item:hover .location-name {
            color: #e91e63;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .section-title2 {
                font-size: 2.3rem;
            }
            .locations-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
            .location-image {
                width: 110px;
                height: 110px;
            }
        }

        @media (max-width: 768px) {
            .section-title2 {
                font-size: 2rem;
                margin-bottom: 40px;
            }
            .locations-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .section-title2 {
                font-size: 1.8rem;
            }
            .locations-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .location-image {
                width: 130px;
                height: 130px;
            }
        }

        .why-choose-section {
            max-width: 1000px;
            margin: 0 auto;
            background-color: #fff;
            padding: 50px 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(233, 30, 99, 0.08);
            border: 1px solid #fce4ec;
        }

        .section-intro {
            margin-bottom: 40px;
            text-align: center;
        }

        .section-intro h1 {
            font-size: 2.2rem;
            color: #e91e63;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .section-intro p {
            font-size: 1rem;
            color: #e91e63;
            font-weight: 500;
        }

        .feature {
            margin-bottom: 35px;
        }

        .feature h2 {
            font-size: 1.5rem;
            color: #e91e63;
            margin-bottom: 14px;
            font-weight: 600;
            position: relative;
            padding-left: 20px;
        }

        .feature h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background-color: #e91e63;
            border-radius: 50%;
        }

        .feature p {
            font-size: 1.02rem;
            color: #555;
            padding-left: 20px;
        }

        .services-title {
            text-align: center;
            font-size: 1.8rem;
            color: #e91e63;
            margin: 50px 0 20px;
            font-weight: 700;
        }

        .service-item {
            margin-bottom: 25px;
        }

        .service-item h3 {
            font-size: 1.35rem;
            color: #e91e63;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .service-item p {
            font-size: 1rem;
            color: #666;
            padding-left: 5px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .why-choose-section {
                padding: 40px 25px;
            }
            .section-intro h1 {
                font-size: 1.9rem;
            }
            .feature h2 {
                font-size: 1.4rem;
            }
            .services-title {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 576px) {
            .section-intro h1 {
                font-size: 1.7rem;
            }
            .feature h2 {
                font-size: 1.3rem;
            }
            .services-title {
                font-size: 1.5rem;
            }
            .why-choose-section {
                padding: 30px 20px;
            }
        }

                .booking-section {
            max-width: 1000px;
            margin: 0 auto;
            background-color: #fff;
            padding: 50px 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(233, 30, 99, 0.08);
            border: 1px solid #fce4ec;
        }

        .section-title3 {
            text-align: center;
            font-size: 2rem;
            color: #e91e63;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .process-item {
            margin-bottom: 40px;
        }

        .process-item h2 {
            font-size: 1.5rem;
            color: #e91e63;
            margin-bottom: 14px;
            font-weight: 600;
            position: relative;
            padding-left: 20px;
        }

        .process-item h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background-color: #e91e63;
            border-radius: 50%;
        }

        .process-item p {
            font-size: 1.02rem;
            color: #555;
            padding-left: 20px;
        }

        .commitment-title {
            text-align: center;
            font-size: 1.8rem;
            color: #e91e63;
            margin: 50px 0 30px;
            font-weight: 700;
        }

        .commitment-item h2 {
            font-size: 1.5rem;
            color: #e91e63;
            margin-bottom: 14px;
            font-weight: 600;
            position: relative;
            padding-left: 20px;
        }

        .commitment-item h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background-color: #e91e63;
            border-radius: 50%;
        }

        .commitment-item p {
            font-size: 1.02rem;
            color: #555;
            padding-left: 20px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .booking-section {
                padding: 40px 25px;
            }
            .section-title3 {
                font-size: 1.8rem;
            }
            .process-item h2,
            .commitment-item h2 {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 576px) {
            .section-title3 {
                font-size: 1.6rem;
            }
            .process-item h2,
            .commitment-item h2 {
                font-size: 1.3rem;
            }
            .booking-section {
                padding: 30px 20px;
            }
        }


                .ethics-section {
            max-width: 1000px;
            margin: 0 auto;
            background-color: #fff;
            padding: 50px 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(233, 30, 99, 0.08);
            border: 1px solid #fce4ec;
        }

        .section-title4 {
            font-size: 1.8rem;
            color: #e91e63;
            margin-bottom: 18px;
            font-weight: 700;
            position: relative;
            padding-left: 20px;
        }

        .section-title4::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background-color: #e91e63;
            border-radius: 50%;
        }

        .ethics-content p {
            font-size: 1.02rem;
            color: #555;
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .highlight {
            font-size: 1.6rem;
            color: #e91e63;
            margin: 40px 0 20px;
            font-weight: 700;
            text-align: center;
        }

        .cta-text {
            font-size: 1.02rem;
            color: #444;
            margin-bottom: 30px;
            padding-left: 20px;
        }

        .cta-button {
            display: block;
            width: fit-content;
            margin: 30px auto 0;
            background-color: #e91e63;
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(233, 30, 99, 0.4);
        }

        .cta-button:hover {
            background-color: #c2185b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(233, 30, 99, 0.6);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .ethics-section {
                padding: 40px 25px;
            }
            .section-title4 {
                font-size: 1.6rem;
            }
            .highlight {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .section-title4 {
                font-size: 1.4rem;
            }
            .highlight {
                font-size: 1.3rem;
            }
            .ethics-section {
                padding: 30px 20px;
            }
            .cta-button {
                padding: 12px 28px;
                font-size: 1rem;
            }
        }
             
                .services-section {
            max-width: 1000px;
            margin: 0 auto;
            background-color: #fff;
            padding: 50px 40px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(233, 30, 99, 0.08);
            border: 1px solid #fce4ec;
        }

        .service-item {
            margin-bottom: 40px;
        }

        .service-item h2 {
            font-size: 1.5rem;
            color: #e91e63;
            margin-bottom: 14px;
            font-weight: 600;
            position: relative;
            padding-left: 20px;
        }

        .service-item h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background-color: #e91e63;
            border-radius: 50%;
        }

        .service-item p {
            font-size: 1.02rem;
            color: #555;
            padding-left: 20px;
        }

        .service-item p strong {
            color: #e91e63;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .services-section {
                padding: 40px 25px;
            }
            .service-item h2 {
                font-size: 1.4rem;
            }
            .service-item p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .service-item h2 {
                font-size: 1.3rem;
            }
            .services-section {
                padding: 30px 20px;
            }
        }

        .areas-section {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 100%;
            margin: 0 auto;
            padding: 40px;
            background-color: #111;
            /* border-radius: 16px; */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 1.6rem;
            color: #e91e63;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .area-column h3 {
            font-size: 1.4rem;
            color: #e91e63;
            margin-bottom: 18px;
            font-weight: 600;
            text-align: start;
        }

        .area-list {
            list-style: none;
        }

        .area-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
            color: #ddd;
            margin-bottom: 12px;
            padding: 6px 0;
            transition: all 0.3s ease;
        }

        .area-item:hover {
            color: #e91e63;
            transform: translateX(5px);
        }

        .area-item i {
            color: #e91e63;
            font-size: 1.1rem;
        }

        .area-item a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .area-item a:hover {
            color: #e91e63;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .areas-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .section-header {
                justify-content: center;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .areas-grid {
                grid-template-columns: 1fr;
            }
            .area-column h3 {
                text-align: left;
            }
        }

        @media (max-width: 576px) {
            .section-title {
                font-size: 1.4rem;
            }
            .area-column h3 {
                font-size: 1.3rem;
            }
            .areas-section {
                padding: 30px 20px;
            }
        }

         /* Dripping Effect Background */
        .drip-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120px;
            pointer-events: none;
            z-index: 1;
        }

        .drip {
            position: absolute;
            width: 40px;
            height: 80px;
            background: #fff;
            clip-path: path('M20,0 Q10,40 20,80 Q30,40 20,0');
            animation: drip 3s infinite ease-in-out;
            opacity: 0.9;
        }

        .drip:nth-child(1) { left: 10%; animation-delay: 0s; }
        .drip:nth-child(2) { left: 25%; animation-delay: 0.5s; width: 50px; height: 90px; }
        .drip:nth-child(3) { left: 40%; animation-delay: 1.2s; }
        .drip:nth-child(4) { left: 60%; animation-delay: 0.8s; width: 45px; height: 85px; }
        .drip:nth-child(5) { left: 80%; animation-delay: 1.5s; }
        .drip:nth-child(6) { left: 90%; animation-delay: 0.3s; width: 35px; height: 75px; }

        @keyframes drip {
            0% { transform: translateY(-100px); }
            70% { transform: translateY(20px); }
            100% { transform: translateY(0); }
        }

        /* Main Container */
        .keywords-section {
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            background: rgba(0, 0, 0, 0.7);
            padding: 40px;
            /* border-radius: 20px; */
            box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
        }

        .keywords-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 16px;
        }

        .keyword-tag {
            display: block;
            padding: 14px 10px;
            text-align: center;
            font-weight: 600;
            font-size: 0.95rem;
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            text-transform: capitalize;
        }

        .keyword-tag:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }

        /* Color Classes */
        .pink { background: #e91e63; }
        .green { background: #4caf50; }
        .yellow { background: #ffc107; color: #000; }
        .red { background: #f44336; }
        .blue { background: #2196f3; }
        .brown { background: #795548; }

        .pink:hover { background: #c2185b; }
        .green:hover { background: #388e3c; }
        .yellow:hover { background: #ffa000; }
        .red:hover { background: #d32f2f; }
        .blue:hover { background: #1976d2; }
        .brown:hover { background: #5d4037; }

        /* Responsive */
        @media (max-width: 1200px) {
            .keywords-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 992px) {
            .keywords-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .keywords-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .keyword-tag {
                font-size: 0.9rem;
                padding: 12px 8px;
            }
        }

        @media (max-width: 576px) {
            .keywords-grid {
                grid-template-columns: 1fr;
            }
            .keywords-section {
                padding: 30px 15px;
            }
        }

           .body1 {
            font-family: 'Poppins', sans-serif;
            background: #000 url('https://images.unsplash.com/photo-1583511655826-05700d52b0a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: #fff;
            min-height: 100vh;
            padding: 80px 20px;
            position: relative;
        }

                .body1::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            z-index: 1;
        }

        .cities-container {
            position: relative;
            z-index: 2;
            max-width: 1600px;
            margin: 0 auto;
            background: rgba(17, 17, 17, 0.7);
            padding: 50px 30px;
            border-radius: 20px;
            backdrop-filter: blur(8px);
            box-shadow: 0 15px 40px rgba(233, 30, 99, 0.2);
        }

        .section-title5 {
            text-align: center;
            font-size: 2.2rem;
            color: #e91e63;
            margin-bottom: 40px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 20px 15px;
            font-size: 0.95rem;
        }

        .city-header {
            grid-column: span 1;
            color: #e91e63;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 10px;
            text-align: start;
        }

        .city-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .city-item {
            color: #ddd;
            text-decoration: none;
            padding: 6px 8px;
            border-radius: 6px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .city-item:hover {
            background: rgba(233, 30, 99, 0.3);
            color: #fff;
            transform: translateX(4px);
        }

        /* Responsive */
        @media (max-width: 1400px) {
            .cities-grid { grid-template-columns: repeat(6, 1fr); }
        }

        @media (max-width: 1200px) {
            .cities-grid { grid-template-columns: repeat(5, 1fr); }
        }

        @media (max-width: 992px) {
            .cities-grid { grid-template-columns: repeat(4, 1fr); }
            .section-title5 { font-size: 1.9rem; }
        }

        @media (max-width: 768px) {
            .cities-grid { grid-template-columns: repeat(3, 1fr); }
            .city-header { text-align: left; }
        }

        @media (max-width: 576px) {
            .cities-grid { grid-template-columns: repeat(2, 1fr); }
            .cities-container { padding: 30px 15px; }
            .section-title5 { font-size: 1.6rem; }
        }

        @media (max-width: 400px) {
            .cities-grid { grid-template-columns: 1fr; }
        }

        /* Header */
        .header {
            background-color: #fff;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .header h1 {
            font-size: 2.2rem;
            color: #e91e63;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Play Boy Cities Section */
        .playboy-section {
            padding: 60px 20px;
            background: #000 url('https://images.unsplash.com/photo-1583511655826-05700d52b0a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            position: relative;
        }

        .playboy-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0, 0, 0, 0.88);
            z-index: 1;
        }

        .playboy-container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            background: rgba(17, 17, 17, 0.6);
            padding: 40px;
            border-radius: 16px;
            backdrop-filter: blur(6px);
            box-shadow: 0 10px 30px rgba(233, 30, 99, 0.15);
        }

        .cities-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 25px 15px;
            font-size: 0.95rem;
        }

        .city-column {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .city-header {
            color: #e91e63;
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 8px;
            text-align: center;
            text-transform: uppercase;
        }

        .city-item {
            color: #ddd;
            text-decoration: none;
            padding: 6px 10px;
            border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            white-space: nowrap;
            text-align: center;
        }

        .city-item:hover {
            color: #e91e63;
            background: rgba(233, 30, 99, 0.2);
            border-radius: 6px;
            border-bottom: 1px solid #e91e63;
            transform: translateY(-2px);
        }

        /* Responsive */
        @media (max-width: 1400px) {
            .cities-grid { grid-template-columns: repeat(6, 1fr); }
        }

        @media (max-width: 1200px) {
            .cities-grid { grid-template-columns: repeat(5, 1fr); }
        }

        @media (max-width: 992px) {
            .cities-grid { grid-template-columns: repeat(4, 1fr); }
            .header h1 { font-size: 1.9rem; }
        }

        @media (max-width: 768px) {
            .cities-grid { grid-template-columns: repeat(3, 1fr); }
            .city-header { text-align: left; font-size: 1rem; }
            .city-item { text-align: left; }
        }

        @media (max-width: 576px) {
            .cities-grid { grid-template-columns: repeat(2, 1fr); }
            .playboy-container { padding: 30px 15px; }
            .header h1 { font-size: 1.7rem; }
        }

        @media (max-width: 400px) {
            .cities-grid { grid-template-columns: 1fr; }
        }

        /* ===== RESET ===== */
/* ===== HEADER ===== */
.admin-header {
    background: #111;
    padding: 16px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    font-size: 22px;
    font-weight: 600;
}

.admin-header .admin-actions a {
    color: #0af;
    margin-left: 12px;
    text-decoration: none;
    font-size: 16px;
}

.admin-header .admin-actions a:hover {
    text-decoration: underline;
}

/* ===== MAIN AREA ===== */
.admin-main {
    padding: 25px;
}

/* ===== TABLE ===== */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

.admin-table th {
    background: #222;
    color: #fff;
    padding: 12px 10px;
    text-align: left;
    font-size: 14px;
}

.admin-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.admin-table tr:hover {
    background: #fafafa;
}

.admin-table img {
    border-radius: 4px;
    object-fit: cover;
}

/* ===== BUTTONS ===== */
button,
.link-like {
    background: #007bff;
    border: none;
    padding: 6px 12px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background: #0056c7;
}

.link-like {
    background: none;
    color: #007bff;
    text-decoration: underline;
    border: none;
    cursor: pointer;
    padding: 0;
}

.link-like:hover {
    color: #0056c7;
}

/* ===== LOGIN PAGE ===== */
.admin-login {
    background: #ececec;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-box {
    background: #fff;
    width: 330px;
    padding: 25px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 6px;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 22px;
}

.login-box input[type=text],
.login-box input[type=password],
.admin-main input,
.admin-main select,
.admin-main input[type=number] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    margin: 8px 0 18px;
    border-radius: 4px;
    font-size: 15px;
}

.login-box button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
}

/* ===== FORMS (Add/Edit pages) ===== */
form label {
    font-weight: 600;
    margin-bottom: 5px;
    display: inline-block;
}

form button {
    margin-top: 8px;
    padding: 10px 18px;
}

.error {
    background: #ffcccc;
    border: 1px solid #ff8b8b;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    color: #900;
}

/* ===== PAGINATION ===== */
.pagination {
    margin-top: 18px;
}

.pagination a {
    background: #333;
    color: #fff;
    padding: 6px 12px;
    margin-right: 6px;
    text-decoration: none;
    border-radius: 4px;
}

.pagination a:hover {
    background: #000;
}
