/* Local areas responsive */

/* Main Container */
        .hyderabad-locations-section {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Section Header */
        .locations-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .locations-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .locations-subtitle {
            font-size: 1.1rem;
            color: #ff2d55;
            font-weight: 500;
        }

        /* Grid Layout */
        .hyderabad-areas-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 8px;
            min-height: 600px;
        }

        /* Area Cards */
        .area-location-card {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #000;
            position: relative;
  width: 100%;
  height: 180px;        /* Match Gachibowli card height */
  overflow: hidden;     /* Hide any overflow */
  border-radius: 8px;
        }

        .area-location-card:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(255, 45, 85, 0.3);
        }

        /* Card Images */
        .area-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .area-location-card:hover .area-card-image {
            transform: scale(1.1);
        }

        /* Location Labels */
        .area-name-label {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: #e60012;
            color: #fff;
            padding: 8px 16px;
            font-size: 17px;
            font-weight: 600;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 2px 10px rgba(230, 0, 18, 0.4);
            z-index: 2;
        }

        /* Location Pin Icon */
        .location-pin-icon {
            font-size: 16px;
        }

        /* Overlay for better text visibility */
        .area-location-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            pointer-events: none;
            z-index: 1;
        }

        
       
/* ------------Header------------- */

  /* Main Header */


        .main-header {
            background: linear-gradient(135deg, #FF4444 0%, #000000 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1001;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .main-header-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .search-box {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .search-box select {
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            background: white;
            color: #333;
            cursor: pointer;
            min-width: 200px;
        }

        .search-box button {
            padding: 10px 30px;
            background: #000;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .search-box button:hover {
            background: #FF4444;
            transform: scale(1.05);
        }

        /* Secondary Navigation Menu */
        .secondary-nav {
            background: #1a1a1a;
            padding: 0;
            /* position: sticky; */
            top: 80px;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .secondary-nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 20px;
        }

        .secondary-menu {
            display: flex;
            list-style: none;
            gap: 0;
            width: 100%;
            justify-content: center;
        }

        .secondary-menu li {
            position: relative;
        }

        .secondary-menu > li > a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 18px 25px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        .secondary-menu > li > a:hover {
            background: #FF4444;
            border-bottom-color: white;
        }

        /* Dropdown Menu */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #2a2a2a;
            min-width: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-menu li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dropdown-menu li:last-child {
            border-bottom: none;
        }

        .dropdown-menu a {
            display: block;
            color: white;
            padding: 12px 20px;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            background: #FF4444;
            padding-left: 25px;
        }

        .dropdown > a::after {
            content: " ▼";
            font-size: 10px;
            margin-left: 5px;
        }

        /* Mobile Hamburger */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 10px;
        }

        .menu-toggle span {
            width: 30px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* Tablet Styles */
        @media (max-width: 1024px) {
            .secondary-menu > li > a {
                padding: 16px 18px;
                font-size: 14px;
            }

            .search-box select {
                min-width: 150px;
                font-size: 14px;
            }

            .search-box button {
                padding: 8px 20px;
                font-size: 14px;
            }
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .main-header-container {
                flex-wrap: wrap;
                gap: 15px;
            }

            .search-box {
                width: 100%;
                order: 3;
            }

            .search-box select {
                flex: 1;
                min-width: auto;
            }

            .search-box button {
                flex-shrink: 0;
            }

            .menu-toggle {
                display: flex;
            }

            .secondary-nav {
                top: 140px;
            }

            .secondary-menu {
                position: fixed;
                right: -100%;
                top: 140px;
                flex-direction: column;
                background: #1a1a1a;
                width: 100%;
                padding: 20px 0;
                transition: right 0.3s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
                max-height: calc(100vh - 140px);
                overflow-y: auto;
            }

            .secondary-menu.active {
                right: 0;
            }

            .secondary-menu > li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .secondary-menu > li > a {
                padding: 15px 20px;
                font-size: 16px;
            }

            .dropdown-menu {
                position: static;
                display: none;
                background: #2a2a2a;
                box-shadow: none;
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .dropdown > a::after {
                float: right;
            }

            .logo img {
                height: 40px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .logo img {
                height: 35px;
            }

            .search-box select {
                font-size: 13px;
                padding: 8px 10px;
            }

            .search-box button {
                padding: 8px 15px;
                font-size: 13px;
            }

            .main-header-container {
                padding: 0 12px;
            }
        }

/* ------------Header End------------- */

/* footer */
.site-footer {
    background: #111;
    color: #eee;
    padding-top: 40px;
    font-family: Arial, sans-serif;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
  }

  .footer-column {
    flex: 1 1 220px;
    min-width: 180px;
  }

  .footer-column h3 {
    color: #ff4444;
    margin-bottom: 15px;
    font-size: 18px;
  }

  .footer-column p,
  .footer-column ul {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-column ul {
    list-style: none;
    padding: 0;
  }

  .footer-column ul li {
    margin-bottom: 8px;
  }

  .footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-column ul li a:hover {
    color: #ff4444;
  }

  .social-icons {
    display: flex;
    gap: 15px;
  }

  .social-icons a {
    color: #ccc;
    font-size: 18px;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #ff4444;
  }

  .newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .newsletter-form input[type="email"] {
    flex: 1 1 140px;
    padding: 10px;
    border: none;
    border-radius: 4px;
  }

  .newsletter-form button {
    background: #ff4444;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .newsletter-form button:hover {
    background: #e03333;
  }

  .footer-bottom {
    border-top: 1px solid #222;
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #888;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-column {
      max-width: 400px;
    }

    .newsletter-form {
      justify-content: center;
    }
  }
/* footer END*/

/* HOTELS */

.hotels-section {
    padding: 80px 20px;
    background: #00000080;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    margin: 20px auto;
    border-radius: 2px;
}

/* Grid Layout */
/* Strict 3 columns × 2 rows grid */
.hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  margin-top: 40px;
}

/* Ensure only six cards are rendered (hide extras) */
.hotels-grid > *:nth-child(n+7) {
  display: none;
}


/* Hotel Card Styles */
.hotel-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-card:hover .card-image img {
    transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hotel-card:hover .image-overlay {
    opacity: 1;
}

.view-details {
    background: #3498db;
    color: black;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.view-details:hover {
    background: #2980b9;
}

/* Card Content */
.card-content {
    padding: 25px;
}

.hotel-name {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}

.hotel-location {
    color: #000;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.stars {
    font-size: 1rem;
}

.rating-score {
    background: #f39c12;
    color: black;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.hotel-description {
    color: #000;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
}

.book-now-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    transform: scale(1.05);
}

/* Add Hotel Card */
.add-hotel-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: white;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px dashed rgba(255, 255, 255, 0.3);
}

.add-hotel-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.6);
}

.add-content {
    padding: 30px;
}

.add-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.add-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.add-content p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.add-hotel-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.add-hotel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Delete Hotel Button */
.hotel-card {
    position: relative;
}

.delete-hotel {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(231, 76, 60, 0.9);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.hotel-card:hover .delete-hotel {
    display: flex;
}

.delete-hotel:hover {
    background: #c0392b;
    transform: scale(1.1);
}

/* Enhanced hover effects */
.hotel-card {
    position: relative;
    overflow: visible;
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
    z-index: 1;
}

.hotel-card:hover::before {
    opacity: 1;
}

/* Image upload functionality styles */
.image-upload-area {
    position: relative;
    cursor: pointer;
}

.image-upload-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card-image:hover .image-upload-overlay {
    opacity: 1;
}

.hidden-file-input {
    display: none;
}

/* Animation for cards on load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hotel-card {
    animation: fadeInUp 0.6s ease forwards;
}

.hotel-card:nth-child(1) { animation-delay: 0.1s; }
.hotel-card:nth-child(2) { animation-delay: 0.2s; }
.hotel-card:nth-child(3) { animation-delay: 0.3s; }
.hotel-card:nth-child(4) { animation-delay: 0.4s; }
.add-hotel-card { animation-delay: 0.5s; }

/* Hotels Responsive Design */
@media (max-width: 1200px) {
    .container { max-width: 95%; }
    .hotels-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hotels-section { padding: 60px 15px; }
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .card-content {
        padding: 20px;
    }

    .hotel-name {
        font-size: 1.3rem;
    }

    .card-image {
        height: 220px;
    }

    .add-hotel-card {
        min-height: 350px;
    }

    .add-content {
        padding: 25px;
    }

    .add-icon {
        font-size: 3rem;
    }

    .add-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hotels-section { padding: 40px 12px; }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .card-footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .price {
        font-size: 1.2rem;
    }

    .card-content {
        padding: 18px;
    }

    .hotel-name {
        font-size: 1.2rem;
    }

    .card-image {
        height: 200px;
    }

    .add-hotel-card {
        min-height: 300px;
    }

    .add-content {
        padding: 20px;
    }

    .add-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .add-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .delete-hotel {
        width: 26px;
        height: 26px;
        font-size: 16px;
        top: 12px;
        right: 12px;
    }
}

/* HOTELS END*/

/* FAQ */
.faq-section-unique {
  background: #00000080;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.faq-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-heading {
  text-align: center;
  font-size: 2.75rem;
  color: #dd3b3b;
  margin-bottom: 20px;
}

.faq-search {
  position: relative;
  max-width: 400px;
  margin: 0 auto 50px;
}

.faq-search input {
  width: 100%;
  padding: 12px 45px 12px 20px;
  border: 2px solid #ddd;
  border-radius: 30px;
  font-size: 1rem;
}

.faq-search i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 1.1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.faq-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-card-header {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.faq-icon {
  color: #dd3b3b;
  font-size: 1.5rem;
  margin-right: 15px;
}

.faq-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  background: none;
  border: none;
  flex: 1;
  text-align: left;
  position: relative;
}

.faq-card-title::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  color: #888;
  transition: transform 0.3s ease;
}

.faq-card.active .faq-card-title::after {
  content: '−';
}

.faq-card-body {
  max-height: 0;
  padding: 0 20px;
  background: #f9f9f9;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-card.active .faq-card-body {
  max-height: 200px;
  padding: 15px 20px 20px;
}

.faq-card-body p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-heading { font-size: 2.25rem; }
  .faq-grid { gap: 20px; }
  .faq-search { margin-bottom: 30px; }
}
/* FAQ END*/



/* local Area */

.service-areas-section {
            background: #000;
            padding: 80px 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #dd3b3b;
            font-weight: 600;
        }

        .areas-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .area-card {
            position: relative;
            height: 280px;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .area-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(221, 59, 59, 0.5);
        }

        .area-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .area-card:hover .area-image {
            transform: scale(1.15);
        }

        .area-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 25px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .location-btn {
            background: #dd3b3b;
            color: #fff;
            border: none;
            padding: 14px 35px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(221, 59, 59, 0.3);
        }

        .location-btn:hover {
            background: #ff4444;
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(221, 59, 59, 0.5);
        }

        .location-icon {
            font-size: 1.2rem;
        }

        /* Special card with center button */
        .area-card.special-card .area-overlay {
            top: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            flex-direction: column;
            justify-content: center;
            gap: 20px;
        }

        .view-escorts-btn {
            background: #dd3b3b;
            color: #fff;
            border: none;
            padding: 14px 35px;
            border-radius: 30px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(221, 59, 59, 0.4);
        }

        .view-escorts-btn:hover {
            background: #ff4444;
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .areas-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .section-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 900px) {
            .areas-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
            }

            .area-card {
                height: 250px;
            }
        }

        @media (max-width: 600px) {
            .service-areas-section {
                padding: 60px 15px;
            }

            .areas-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .area-card {
                height: 280px;
            }

            .location-btn {
                padding: 12px 28px;
                font-size: 1rem;
            }
        }

/* local area end */

/* body bg */

body {
    background-image: url('/images/bg-image2.png');
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed !important;
    background-color: #000 !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* Or for a more subtle effect */
/* body {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('/images/bg-image.webp');
    background-repeat: repeat;
    background-size: 400px 400px;
    background-attachment: fixed;
} */
/* body bg end*/

/* floating button */

/* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
        }

        .whatsapp-button {
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-icon {
            width: 35px;
            height: 35px;
            fill: white;
        }

        /* Pulse Animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
            }
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            }
        }

        /* Tooltip */
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            color: #333;
            padding: 10px 15px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            white-space: nowrap;
            font-size: 14px;
            font-weight: 600;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .whatsapp-tooltip::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid white;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-button {
                width: 55px;
                height: 55px;
            }

            .whatsapp-icon {
                width: 30px;
                height: 30px;
            }

            .whatsapp-tooltip {
                display: none;
            }
        }

        /* dot remove */
        .dropdown-menu {
  list-style: none; /* removes the dots */
  margin: 0;
  padding: 0;
}


/*   extra inner pages  */

.city-slider-section {
            max-width: 1400px;
            margin: 0 auto;
            background: #00000080;
            border-radius: 20px;
            padding: 40px 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: red;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .slider-container {
            position: relative;
            overflow: hidden;
            padding: 0 60px;
        }

        .slider-wrapper {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 20px 0;
        }

        .slider-wrapper::-webkit-scrollbar {
            display: none;
        }

        .city-button {
            flex: 0 0 auto;
            padding: 15px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
            white-space: nowrap;
            border: 2px solid transparent;
        }

        .city-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            border-color: #fff;
        }

        .city-button:active {
            transform: translateY(-2px);
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-nav:hover {
            background: #667eea;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-nav.prev {
            left: 0;
        }

        .slider-nav.next {
            right: 0;
        }

        .slider-nav svg {
            width: 24px;
            height: 24px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }

            .slider-container {
                padding: 0 50px;
            }

            .city-button {
                padding: 12px 24px;
                font-size: 1rem;
            }

            .slider-nav {
                width: 40px;
                height: 40px;
            }

            .slider-nav svg {
                width: 20px;
                height: 20px;
            }
        }

        @media (max-width: 480px) {
            .city-slider-section {
                padding: 30px 15px;
            }

            .section-title {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .slider-container {
                padding: 0 45px;
            }

            .city-button {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        /* banner  */

        .banner {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust the height ratio as needed */
      min-height: 300px;
      background: url('/images/banner-image.png') no-repeat center center;
      background-size: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .banner__overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.45); /* Dark overlay for text contrast */
    }
    .banner__heading {
      position: relative;
      color: red;
      text-align: center;
      font-size: 2.5rem;
      font-weight: 700;
      padding: 0 20px;
      z-index: 1;
    }
    @media (max-width: 768px) {
      .banner {
        height: 50vh;
      }
      .banner__heading {
        font-size: 2rem;
      }
    }
    @media (max-width: 480px) {
      .banner {
        height: 40vh;
      }
      .banner__heading {
        font-size: 1.5rem;
      }
    }
    .gradient-text {
  background: linear-gradient(to right, #ff0000, #b30000);
  -webkit-background-clip: text;     /* Clip the background to the text */
  -webkit-text-fill-color: transparent; /* Make the text transparent to show gradient */
  font-size: 42px;
  font-weight: bold;
}
