* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #000;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: #fff;
    position: relative;
    z-index: 1000;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #008080;
    z-index: 100;
}

.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 100;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background: #000;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #444;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #008080;
}

/* Mobile Navbar */
@media (max-width: 868px) {
    .navbar {
        padding: 18px 30px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        text-align: center;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 18px;
        display: block;
        padding: 10px;
    }

    .nav-links a:hover {
        background: #f0f0f0;
    }

    .nav-toggle:checked ~ .nav-links {
        display: flex;
    }

    .nav-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .nav-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }
}

@media (max-width: 600px) {
    .navbar {
        padding: 15px 20px;
    }
    .logo {
        font-size: 18px;
    }
}

/* ===== LOCATION SECTION ===== */
.location-section {
    padding: 60px 20px;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.location-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

.location-left h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.show-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #d6005a;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    font-weight: 600;
}

.location-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 30px;
}

.location-list {
    display: grid;
    color: #ff00dd;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 30px;
    
}


.location-list label {
    font-size: 14px;
    color: #ff00d4;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-list input {
    accent-color: #d40fba;
}

.location-list .active {
    font-weight: 600;
}

/* Responsive Location */
@media (max-width: 991px) {
    .location-container {
        grid-template-columns: 1fr;
    }
    .location-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .location-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .location-left h2 {
        font-size: 24px;
    }
}


/* ===== BULK LINKS SECTION ===== */
.bulk-links-section {
 
  padding: 50px 10px;
  background: #f9fafc;
}

.bulk-links-container {
  max-width: 1300px;
  margin: auto;
}

/* TITLE */
.bulk-links-container h2 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 0px;
}

.bulk-desc {
  font-size: 15px;
  color: #ff00b3;
  text-align: center;
  margin-bottom: 45px;
  line-height: 1.6;
}

/* GRID */
.bulk-links-grid {
  display: grid;
  position: relative;
  left: 250px;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}

/* LIST */
.bulk-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bulk-links-grid li {
  margin-bottom: 4px;
}

/* LINKS */
.bulk-links-grid a {
  display: inline-block;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.bulk-links-grid a:hover {
  color: #ff0055;
  transform: translateX(4px);
}

/* ======================
   RESPONSIVE BREAKPOINTS
   ====================== */

/* LARGE TABLET */
@media (max-width: 1024px) {
  .bulk-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .bulk-links-container h2 {
    font-size: 26px;
  }
}

/* TABLET */
@media (max-width: 768px) {
  .bulk-links-section {
    padding: 65px 18px;
  }

  .bulk-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .bulk-desc {
    font-size: 14px;
    margin-bottom: 35px;
  }
}

/* MOBILE */
@media (max-width: 480px) {
  .bulk-links-section {
    padding: 55px 15px;
  }

  .bulk-links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bulk-links-container h2 {
    font-size: 22px;
  }

  .bulk-links-grid a {
    font-size: 15px;
    padding: 10px 12px;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  .bulk-links-grid li {
    margin-bottom: 10px;
  }
}


/* ===== PROFILES SECTION ===== */
.profiles-section {
    padding: 80px 20px;
    background: #f9fcff;
    text-align: center;
}

.profiles-section h2 {
    font-size: 26px;
    margin-bottom: 40px;
}

.profiles-grid {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.profile-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 6px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-6px);
}

.profile-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
}

.profile-card h3 {
    margin-top: 15px;
    font-size: 18px;
}

.profile-card p {
    font-size: 14px;
    color: #555;
    margin: 8px 0 14px;
}

.profile-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff0055;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s ease;
}

.profile-btn:hover {
    background: #e6004c;
}

/* Responsive Profiles */
@media (max-width: 1024px) {
    .profiles-section {
        padding: 60px 20px;
    }
    .profiles-section h2 {
        font-size: 24px;
    }
    .profile-card img {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .profiles-grid {
        gap: 20px;
    }
    .profile-card {
        padding: 15px;
    }
    .profile-card img {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .profiles-grid {
        grid-template-columns: 1fr;
    }
    .profile-card img {
        height: 240px;
    }
    .profile-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== SOUTH DELHI PROMO SECTION ===== */
.south-delhi-section {
    padding: 90px 20px;
    background: linear-gradient(135deg, #fff6fa, #f9fcff);
}

.south-delhi-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.south-delhi-content {
    flex: 1;
}

.south-delhi-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.south-delhi-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.south-delhi-list {
    list-style: none;
    margin: 25px 0;
}

.south-delhi-list li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

.south-delhi-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #ff0055;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

.south-delhi-image {
    flex: 1;
}

.south-delhi-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Responsive South Delhi */
@media (max-width: 992px) {
    .south-delhi-container {
        flex-direction: column;
        gap: 40px;
    }
    .south-delhi-content h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .south-delhi-section {
        padding: 60px 15px;
    }
    .south-delhi-content h2 {
        font-size: 22px;
    }
    .south-delhi-btn {
        width: 100%;
        text-align: center;
    }
}