/* header */
:root{
      --bg:#1b1b2f;
      --card:#232946;
      --accent:#ff2d55;
      --accent-2:#e91e63;
      --text:#000;
      --muted:#c7c9d1;
      --gradient:linear-gradient(135deg,#667eea 0%,#764ba2 100%);
    }
    *{box-sizing:border-box}
    body{margin:0;font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial;color:var(--text);background:#0e0e16}
    a{text-decoration:none;color:inherit}

    /* Header */
    .site-header{position:sticky;top:0;z-index:50;background:rgba(13,13,23,.7);backdrop-filter:blur(10px);border-bottom:1px solid rgba(255,255,255,.08)}
    .header-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:12px 20px}

    .brand{display:flex;align-items:center;gap:12px}
    .brand-logo{width:42px;height:42px;border-radius:12px;background:var(--gradient);display:grid;place-items:center;font-weight:700}
    .brand-name{font-weight:700;letter-spacing:.4px}
    .brand-sub{font-size:12px;color:var(--muted)}

    .nav{display:flex;align-items:center;gap:20px}
    .nav a{padding:8px 12px;border-radius:10px;color:var(--muted);font-weight:500}
    .nav a:hover{color:#fff;background:rgba(255,255,255,.06)}

    .cta{display:flex;align-items:center;gap:10px}
    .btn{padding:10px 16px;border-radius:12px;font-weight:600}
    .btn-outline{border:1px solid rgba(255,255,255,.16);color:#fff}
    .btn-primary{background:linear-gradient(45deg,var(--accent),var(--accent-2));color:#fff;box-shadow:0 8px 22px rgba(233,30,99,.35)}
    .btn-primary:hover{transform:translateY(-1px)}

    /* Mobile */
    .hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer}
    .hamburger span{width:24px;height:2px;background:#000;border-radius:2px}
    .mobile-nav{display:none;flex-direction:column;padding:12px 20px;border-top:1px solid rgba(255,255,255,.08);background:rgba(13,13,23,.9)}
    .mobile-nav a{padding:12px;border-radius:10px;color:var(--muted)}
    .mobile-nav a:hover{background:rgba(255,255,255,.06);color:#fff}

    /* Responsive Breakpoints */
    @media (max-width: 1400px) {
        .header-inner { max-width: 95%; }
    }

    @media (max-width: 1200px) {
        .header-inner { padding: 10px 18px; }
        .brand-logo { width: 38px; height: 38px; }
        .nav { gap: 15px; }
        .cta { gap: 8px; }
    }

    @media (max-width: 900px){
        .nav,.cta{display:none}
        .hamburger{display:flex}
        .header-inner { padding: 10px 16px; }
    }

    @media (max-width: 768px) {
        .header-inner { padding: 8px 14px; }
        .brand-logo { width: 36px; height: 36px; }
        .brand-name { font-size: 0.95rem; }
        .brand-sub { font-size: 11px; }
    }

    @media (max-width: 480px) {
        .header-inner { padding: 8px 12px; }
        .brand-logo { width: 32px; height: 32px; }
        .brand-name { font-size: 0.9rem; }
        .brand-sub { font-size: 10px; }
        .hamburger span { width: 20px; height: 2px; }
    }

    /* Promo strip */
    .promo{background:#ff2d55;color:#fff;text-align:center;padding:8px 14px;font-weight:600;letter-spacing:.2px}

    /* Demo spacer for banner integration */
    .demo-banner{height:0}

    /* Promo responsive */
    @media (max-width: 768px) {
        .promo { padding: 6px 12px; font-size: 0.9rem; }
    }

    @media (max-width: 480px) {
        .promo { padding: 5px 10px; font-size: 0.85rem; }
    }

/* header design end */

/* Banner Section Responsive */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a2e;
}

.banner-section {
    background: #ff6699 !important;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ff6699;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Categories Navigation */
.categories-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    font-size: 24px;
}

.category-text {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Banner Content */
.banner-content {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.achievement-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a6f);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.main-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sub-heading {
    font-size: 72px;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-bottom: 30px;
}

/* Models Grid */
.models-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.model-card {
    width: 120px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.model-card:hover {
    transform: scale(1.05);
}

.model-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Call to Action */
.cta-button {
    background: linear-gradient(45deg, #ff1744, #e91e63);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 23, 68, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.cta-button:hover {
    background: linear-gradient(45deg, #d50000, #c2185b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 23, 68, 0.6);
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.feature-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 16px;
}

.feature-desc {
    font-size: 14px;
    opacity: 0.8;
}

/* Banner Responsive Design */
@media (max-width: 1200px) {
    .container { max-width: 95%; }
    .categories-nav { gap: 30px; }
    .features { gap: 40px; }
}

@media (max-width: 768px) {
    .banner-section { padding: 30px 15px; }

    .categories-nav {
        gap: 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .category-text {
        font-size: 12px;
    }

    .main-heading {
        font-size: 32px;
    }

    .sub-heading {
        font-size: 48px;
    }

    .cta-button {
        font-size: 20px;
        padding: 16px 40px;
    }

    .features {
        gap: 30px;
    }

    .model-card {
        width: 100px;
        height: 130px;
    }
}

@media (max-width: 480px) {
    .banner-section { padding: 20px 10px; }

    .categories-nav { gap: 15px; }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .category-text {
        font-size: 11px;
    }

    .main-heading {
        font-size: 24px;
    }

    .sub-heading {
        font-size: 36px;
    }

    .achievement-badge {
        padding: 12px 24px;
        font-size: 14px;
    }

    .cta-button {
        font-size: 18px;
        padding: 14px 32px;
    }

    .features {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .model-card {
        width: 80px;
        height: 100px;
    }
}

/* floating button responsive */

/* Floating Contacts Styles */
.floating-contacts {
  position: fixed;
  left: 16px;
  bottom: 18vh;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.fc-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  position: relative;
  background: #333;
  text-decoration: none;
}
.fc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.28);
}
.fc-label {
  position: absolute;
  left: 62px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  pointer-events: none;
  transition: all 0.2s;
}
.fc-btn:hover .fc-label {
  opacity: 1;
  transform: translateX(0);
}
.fc-call {
  background: linear-gradient(135deg,#ff3b30,#ff2d55);
}
.fc-wa {
  background: linear-gradient(135deg,#25d366,#128c7e);
}

/* Position for the floating contacts */
.floating-contacts {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

/* Common button style */
.fc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  animation: blink 1.2s infinite alternate;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.fc-btn:hover {
  transform: scale(1.1);
}

/* WhatsApp and Call color themes */
.fc-call {
  background-color: #007bff;
}

.fc-wa {
  background-color: #25D366;
}

/* Label (optional) */
.fc-label {
  display: none;
}

/* Blinking animation */
@keyframes blink {
  from {
    box-shadow: 0 0 8px 3px rgba(255,255,255,0.5);
    opacity: 1;
  }
  to {
    box-shadow: 0 0 20px 8px rgba(255,255,255,0.9);
    opacity: 0.8;
    transform: scale(1.05);
  }
}

/* Floating contacts responsive */
@media (max-width: 768px) {
  .floating-contacts {
    left: 12px;
    bottom: 14vh;
    right: auto;
  }
  .fc-btn {
    width: 48px;
    height: 48px;
  }
  .fc-label {
    display: none;
  }
}

@media (max-width: 480px) {
  .floating-contacts {
    left: 10px;
    bottom: 12vh;
    gap: 10px;
  }
  .fc-btn {
    width: 44px;
    height: 44px;
  }
}

/* Locations Grid Styles */
.locations-section {
  padding: 20px;
  background: #111;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 2fr));
  gap: 12px;
}

.location-card {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 4px;
}

.location-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.location-label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: #e20b0b;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 3px;
  white-space: nowrap;
}

/* Locations responsive adjustments */
@media (max-width: 1200px) {
  .locations-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
  }
  .location-card img {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .locations-section { padding: 15px; }
  .locations-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
  }
  .location-card img {
    height: 120px;
  }
  .location-label {
    font-size: 12px;
    padding: 4px 8px;
  }
}

@media (max-width: 480px) {
  .locations-section { padding: 10px; }
  .locations-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 6px;
  }
  .location-card img {
    height: 100px;
  }
  .location-label {
    font-size: 11px;
    padding: 3px 6px;
  }
}

/* header site responsive */
.site-header {
    background-color: #000;
      position: relative;
      overflow: hidden;
}

@media (max-width: 768px) {
    .site-header {
        padding-top: 0;
    }
}

/* Footer responsive */
    .footer {
       background-color: #00000080;
      position: relative;
      overflow: hidden;
      padding-top: 80px;
    }

    /* Decorative Elements */
    .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #ff2d55, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
      background-size: 400% 400%;
      animation: gradientShift 8s ease infinite;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Footer Top Section */
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Brand Section */
    .footer-brand {
      padding-right: 40px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 25px;
    }

    .logo-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #ff2d55, #ff6b6b);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: bold;
    }

    .brand-name {
      font-size: 28px;
      font-weight: 700;
      background: linear-gradient(135deg, #ff2d55, #ff6b6b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-description {
      color: #ffffff;
      line-height: 1.6;
      margin-bottom: 25px;
      font-size: 17px;
    }

    /* Social Icons */
    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-link {
      width: 45px;
      height: 45px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 19px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 29px;
    }

    .social-link:hover {
      background: linear-gradient(135deg, #ff2d55, #ff6b6b);
      border-color: transparent;
      transform: translateY(-2px);
    }

    /* Footer Columns */
    .footer-column h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 20px;
      color: #ffffff;
      position: relative;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 30px;
      height: 2px;
      background: linear-gradient(90deg, #ff2d55, #ff6b6b);
      border-radius: 2px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #ffffff;
      text-decoration: none;
      font-size: 17px;
      transition: all 0.3s ease;
      position: relative;
    }

    .footer-links a:hover {
      color: #ff2d55;
      padding-left: 5px;
    }

    /* Newsletter Section */
    .newsletter {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 15px;
      padding: 25px;
    }

    .newsletter h3 {
      margin-bottom: 15px;
    }

    .newsletter p {
      color: #ffffff;
      font-size: 13px;
      margin-bottom: 20px;
      line-height: 1.5;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .newsletter-input {
      padding: 12px 15px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      color: #ffffff;
      font-size: 17px;
      outline: none;
    }

    .newsletter-input::placeholder {
      color: rgba(255, 255, 255, 0.5);
    }

    .newsletter-btn {
      padding: 12px 20px;
      background: linear-gradient(135deg, #ff2d55, #ff6b6b);
      border: none;
      border-radius: 8px;
      color: #ffffff;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 5px 15px rgba(255, 45, 85, 0.4);
    }

    /* Footer Bottom */
    .footer-bottom {
      padding: 30px 0;
      text-align: center;
    }

    .footer-bottom-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .copyright {
      color: #ffffff;
      font-size: 17px;
    }

    .footer-bottom-links {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .footer-bottom-links a {
      color: #ffffff;
      text-decoration: none;
      font-size: 17px;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: #ff2d55;
    }

    /* Footer Responsive Design */
    @media (max-width: 1200px) {
      .footer-container { max-width: 95%; padding: 0 18px; }
      .footer-top { gap: 30px; }
    }

    @media (max-width: 1024px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      }
      .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
      }
    }

    @media (max-width: 768px) {
      .footer {
        padding-top: 60px;
      }
      .footer-container {
        padding: 0 15px;
      }
      .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
      }

      .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
      }

      .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
      }

      .social-links {
        justify-content: center;
      }

      .brand-name {
        font-size: 24px;
      }

      .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
      }

      .social-link {
        width: 40px;
        height: 40px;
        font-size: 24px;
      }
    }

    @media (max-width: 480px) {
      .footer {
        padding-top: 40px;
      }

      .footer-container {
        padding: 0 12px;
      }

      .newsletter {
        padding: 20px;
      }

      .brand-name {
        font-size: 22px;
      }

      .logo-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
      }

      .footer-description {
        font-size: 15px;
      }

      .footer-links a {
        font-size: 15px;
      }

      .copyright {
        font-size: 14px;
      }

      .footer-bottom-links a {
        font-size: 14px;
      }

      .social-link {
        width: 36px;
        height: 36px;
        font-size: 20px;
      }
    }

    /* Demo content styling */
    .demo-content {
      height: 200px;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      margin-bottom: 50px;
    }

    @media (max-width: 768px) {
      .demo-content {
        height: 150px;
        font-size: 16px;
        margin-bottom: 30px;
      }
    }

    @media (max-width: 480px) {
      .demo-content {
        height: 120px;
        font-size: 14px;
        margin-bottom: 20px;
      }
    }

    /* body bg responsive */

    body {
  background-image: url('/images/body-background2.webp') !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center center !important;
  background-attachment: fixed !important;
}

body::before {
  /* Dark overlay for text readability */
  background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll !important;
  }
}

/* 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;
        }

        /* Local areas Responsive Design */
        @media (max-width: 1400px) {
            .hyderabad-locations-section { max-width: 95%; }
        }

        @media (max-width: 1200px) {
            .hyderabad-areas-grid {
                gap: 6px;
                min-height: 550px;
            }

            .area-name-label {
                font-size: 15px;
                padding: 6px 14px;
            }

            .locations-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 1024px) {
            .hyderabad-areas-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: repeat(4, 1fr);
                min-height: 700px;
            }

            .locations-title {
                font-size: 2rem;
            }

            .area-location-card {
                height: 160px;
            }
        }

        @media (max-width: 768px) {
            .hyderabad-areas-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(6, 1fr);
                gap: 8px;
                min-height: 800px;
            }

            .locations-title {
                font-size: 1.8rem;
            }

            .locations-header {
                margin-bottom: 30px;
            }

            .area-name-label {
                font-size: 14px;
                padding: 6px 12px;
            }

            .area-location-card {
                height: 140px;
            }
        }

        @media (max-width: 480px) {
            .hyderabad-areas-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(12, 1fr);
                gap: 10px;
                min-height: 1200px;
            }

            .locations-title {
                font-size: 1.6rem;
            }

            .locations-subtitle {
                font-size: 1rem;
            }

            .area-name-label {
                font-size: 12px;
                padding: 4px 10px;
                bottom: 8px;
                left: 8px;
            }

            .area-location-card {
                height: 120px;
            }
        }

        /* Hover effects for desktop */
        @media (min-width: 769px) {
            .area-location-card::after {
                content: 'Click to View Escorts';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                background: rgba(255, 45, 85, 0.95);
                color: white;
                padding: 8px 16px;
                border-radius: 20px;
                font-size: 12px;
                font-weight: 600;
                opacity: 0;
                transition: opacity 0.3s ease;
                pointer-events: none;
                white-space: nowrap;
            }

            .area-location-card:hover::after {
                opacity: 1;
            }
        }

/* girl card section responsive */

        /* Main Section */
        .escort-profiles-section {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Section Header */
        .profiles-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .profiles-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
        }

        .profiles-subtitle {
            font-size: 1.1rem;
            color: #ff2d55;
            font-weight: 500;
        }

        /* Cards Grid Layout */
        .escort-cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Individual Escort Card */
        .escort-profile-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            position: relative;
            min-height: 180px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(217, 70, 239, 0.3);
        }

        .escort-profile-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(217, 70, 239, 0.4);
        }

        /* Card Image Section */
        .card-image-section {
            width: 200px;
            height: 180px;
            overflow: hidden;
            border-radius: 15px 0 0 15px;
            position: relative;
        }

        .escort-profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .escort-profile-card:hover .escort-profile-image {
            transform: scale(1.05);
        }

        /* Card Content Section */
        .card-content-section {
            flex: 1;
            padding: 20px 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            color: black;
        }

        /* Escort Name */
        .escort-name-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: black;
        }

        /* Escort Details */
        .escort-details-info {
            font-size: 0.95rem;
            margin-bottom: 12px;
            opacity: 0.9;
        }

        /* Service Info */
        .service-info-row {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .service-icon {
            width: 16px;
            height: 16px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 3px;
            display: inline-block;
        }

        .view-count {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-left: 10px;
        }

        /* Action Buttons */
        .action-buttons-row {
            display: flex;
            gap: 12px;
        }

        .contact-btn {
            padding: 10px 20px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .phone-btn {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: white;
        }

        .phone-btn:hover {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            transform: translateY(-2px);
        }

        .whatsapp-btn {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
        }

        .whatsapp-btn:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateY(-2px);
        }

        /* Girl cards Responsive Design */
        @media (max-width: 1400px) {
            .escort-profiles-section { max-width: 95%; }
        }

        @media (max-width: 1200px) {
            .escort-cards-grid {
                gap: 15px;
                max-width: 95%;
            }

            .card-image-section {
                width: 180px;
                height: 170px;
            }

            .escort-profile-card {
                min-height: 170px;
            }
        }

        @media (max-width: 1024px) {
            .escort-cards-grid {
                gap: 15px;
            }

            .card-image-section {
                width: 160px;
                height: 160px;
            }

            .escort-profile-card {
                min-height: 160px;
            }

            .profiles-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .escort-cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .card-image-section {
                width: 140px;
                height: 140px;
            }

            .escort-profile-card {
                min-height: 140px;
            }

            .card-content-section {
                padding: 15px 20px;
            }

            .escort-name-title {
                font-size: 1.3rem;
            }

            .profiles-title {
                font-size: 2rem;
            }

            .profiles-header {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 480px) {
            .escort-profile-card {
                flex-direction: column;
                min-height: auto;
            }

            .card-image-section {
                width: 100%;
                height: 200px;
                border-radius: 15px 15px 0 0;
            }

            .action-buttons-row {
                flex-direction: column;
                gap: 8px;
            }

            .contact-btn {
                justify-content: center;
                padding: 12px 20px;
            }

            .profiles-title {
                font-size: 1.8rem;
            }

            .escort-name-title {
                font-size: 1.2rem;
            }

            .card-content-section {
                padding: 15px;
            }
        }

        /* Hover Effects */
        .contact-btn:active {
            transform: translateY(0);
        }

        /* Icon Styling */
        .btn-icon {
            font-size: 1rem;
        }

/* Hotel Css responsive */

.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 */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* 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;
    }
}

/* video responsive */

.video-banner {
  position: relative;
  width: 70%;             /* 👈 Set width to 60% */
  height: 500px;          /* You can change as needed */
  margin: 50px auto;      /* 👈 Centers the section horizontally */
  overflow: hidden;
  border-radius: 15px;    /* Optional rounded corners */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Centered responsive video */
.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;  /* Keeps aspect ratio, fills area */
  z-index: 1;
}

/* Optional overlay */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay */
  z-index: 2;
}

/* Video banner responsive */
@media (max-width: 1200px) {
  .video-banner {
    width: 80%;
    height: 450px;
    margin: 40px auto;
  }
}

@media (max-width: 768px) {
  .video-banner {
    width: 90%;
    height: 300px;
    margin: 30px auto;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .video-banner {
    width: 95%;
    height: 250px;
    margin: 20px auto;
    border-radius: 10px;
  }
}

/* faq responsive (already included above) */

.faq-section {
    padding: 40px 15px;    /* Reduced from 60px */
    background: #00000080;   /* Dark background exactly like screenshot */
    min-height: 50vh;      /* Reduced from 70vh */
}

.container {
    max-width: 700px;      /* Reduced from 800px */
    margin: 0 auto;
}

/* FAQ Title - Pink color like screenshot */
.faq-title {
    text-align: center;
    font-size: 1.8rem;     /* Reduced from 2.2rem */
    color: #ff1493;        /* Hot pink color from screenshot */
    font-weight: 700;
    margin-bottom: 25px;   /* Reduced from 40px */
    text-shadow: 0 2px 8px rgba(255, 20, 147, 0.3);
}

/* FAQ Container */
.faq-container {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
}

/* Individual FAQ Item */
.faq-item {
    background: #2d2d2d;   /* Dark gray background like screenshot */
    margin-bottom: 1px;    /* Reduced from 2px */
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #333333;
}

.faq-item.active {
    background: #2d2d2d;
}

/* FAQ Question */
.faq-question {
    display: flex;
    align-items: center;
    padding: 15px 20px;    /* Reduced from 20px 25px */
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* FAQ Icon (+ or -) */
.faq-icon {
    color: #ffffff;
    font-size: 1.3rem;     /* Reduced from 1.5rem */
    font-weight: 300;
    margin-right: 12px;    /* Reduced from 15px */
    min-width: 18px;       /* Reduced from 20px */
    text-align: center;
    transition: all 0.3s ease;
}

.question-text {
    color: #ffffff;
    font-size: 1rem;       /* Reduced from 1.1rem */
    font-weight: 500;
    flex: 1;
    line-height: 1.3;      /* Reduced from 1.4 */
}

/* FAQ Arrow */
.faq-arrow {
    color: #ffffff;
    font-size: 0.75rem;    /* Reduced from 0.8rem */
    margin-left: 12px;     /* Reduced from 15px */
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #f5f5f5;   /* Light background for answer like screenshot */
}

.faq-item.active .faq-answer {
    max-height: 200px;     /* Reduced from 300px */
    padding: 18px 20px 18px 50px; /* Reduced from 25px 25px 25px 60px */
}

.faq-answer p {
    color: #333333;        /* Dark text on light background */
    font-size: 0.9rem;     /* Reduced from 1rem */
    line-height: 1.5;      /* Reduced from 1.6 */
    margin: 0;
}

/* Highlighted text in green */
.faq-answer .highlight {
    color: #4CAF50;
    font-weight: 600;
}

/* Strong text styling */
.faq-answer strong {
    color: #333333;
    font-weight: 700;
}

/* Active state changes */
.faq-item.active .faq-icon {
    color: #ffffff;
}

/* Animation for smooth opening */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);  /* Reduced from -10px */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.active .faq-answer p {
    animation: slideDown 0.3s ease;
}

/* Loading Animation for FAQ items */
.faq-item {
    animation: fadeInUp 0.4s ease forwards; /* Reduced from 0.5s */
    opacity: 0;
    transform: translateY(15px); /* Reduced from 20px */
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item:nth-child(1) { animation-delay: 0.05s; } /* Reduced delays */
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }
.faq-item:nth-child(6) { animation-delay: 0.3s; }
.faq-item:nth-child(7) { animation-delay: 0.35s; }
.faq-item:nth-child(8) { animation-delay: 0.4s; }

/* Focus states for accessibility */
.faq-question:focus {
    outline: 2px solid #ff1493;
    outline-offset: 2px;
}

/* Smooth hover transition */
.faq-question:active {
    transform: scale(0.99);
}

/* Ripple effect styles */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 20, 147, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.faq-question {
    position: relative;
    overflow: hidden;
}

/* FAQ Enhanced Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 30px 12px;   /* Reduced from 40px 15px */
    }

    .container {
        max-width: 650px;     /* Reduced from 700px */
    }

    .faq-title {
        font-size: 1.6rem;    /* Reduced from 1.8rem */
        margin-bottom: 20px;  /* Reduced from 25px */
    }

    .faq-question {
        padding: 12px 18px;   /* Reduced from 15px 20px */
    }

    .question-text {
        font-size: 0.95rem;   /* Reduced from 1rem */
    }

    .faq-icon {
        font-size: 1.2rem;    /* Reduced from 1.3rem */
        margin-right: 10px;   /* Reduced from 12px */
    }

    .faq-item.active .faq-answer {
        padding: 15px 18px 15px 40px; /* Reduced padding */
        max-height: 180px;    /* Reduced from 200px */
    }

    .faq-answer p {
        font-size: 0.85rem;   /* Reduced from 0.9rem */
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 25px 10px;   /* Further reduced */
    }

    .container {
        max-width: 95%;
    }

    .faq-title {
        font-size: 1.4rem;    /* Reduced from 1.6rem */
        margin-bottom: 18px;  /* Reduced from 20px */
    }

    .faq-question {
        padding: 10px 15px;   /* Reduced from 12px 18px */
    }

    .question-text {
        font-size: 0.9rem;    /* Reduced from 0.95rem */
    }

    .faq-icon {
        font-size: 1.1rem;    /* Reduced from 1.2rem */
        margin-right: 8px;    /* Reduced from 10px */
    }

    .faq-item.active .faq-answer {
        padding: 12px 15px 12px 35px; /* Further reduced */
        max-height: 160px;    /* Reduced from 180px */
    }

    .faq-answer p {
        font-size: 0.8rem;    /* Reduced from 0.85rem */
        line-height: 1.4;     /* Slightly tighter */
    }
}

/* reel section responsive design */

/* Auto-Playing Video Slider Cards Section */

.video-slider-section {
    padding: 80px 20px;
    background: #00000080;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Slider Container */
.slider-container {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Video Card */
.video-card {
    min-width: 350px;
    max-width: 350px;
    margin-right: 30px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0.8;
    transform: scale(0.95);
    flex-shrink: 0;
}

.video-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px) scale(1.02);
}

.video-card.active:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;
    border-radius: 15px 15px 0 0;
}

.video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    border: none;
    outline: none;
}

/* Subtle zoom effect on hover */
.video-card:hover .video-element {
    transform: scale(1.05);
}

/* Video Info Overlay */
.video-info-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
    z-index: 10;
}

.video-duration {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.video-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.sound-indicator {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    backdrop-filter: blur(5px);
}

/* Playing indicator animation */
.video-card.active .sound-indicator::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #ff4444;
    border-radius: 50%;
    margin-left: 5px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Card Content */
.card-content {
    padding: 20px;
    position: relative;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.video-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 15px;
}

.views {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Unmute Button */
.unmute-btn {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.unmute-btn:hover {
    background: linear-gradient(45deg, #45a049, #4CAF50);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.unmute-btn.muted {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.3);
}

.unmute-btn.muted:hover {
    background: linear-gradient(45deg, #ee5a52, #ff6b6b);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

/* Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.nav-prev {
    left: 10px;
}

.nav-next {
    right: 10px;
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffffff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Global Controls */
.global-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Add Video Section */
.add-video-section {
    text-align: center;
    margin-top: 40px;
}

.add-video-btn {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.add-video-btn:hover {
    background: linear-gradient(45deg, #ee5a52, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
    transition: opacity 0.3s ease;
}

.close-modal:hover {
    opacity: 0.7;
}

.modal-video {
    width: 100%;
    height: auto;
    max-height: 70vh;
}

.modal-info {
    padding: 20px;
    color: white;
    background: #000;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.modal-description {
    color: #ccc;
    line-height: 1.6;
}

/* Loading State */
.video-card.loading .video-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.video-card {
    animation: slideIn 0.5s ease forwards;
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }
.video-card:nth-child(4) { animation-delay: 0.4s; }
.video-card:nth-child(5) { animation-delay: 0.5s; }

/* Auto-play indicator */
.video-card.auto-playing .video-info-overlay::before {
    content: 'AUTO-PLAY';
    position: absolute;
    bottom: -25px;
    left: 0;
    background: rgba(76, 175, 80, 0.9);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Video Slider Enhanced Responsive Design */
@media (max-width: 1200px) {
    .container { max-width: 95%; }
    .slider-container {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .video-slider-section { padding: 60px 15px; }

    .slider-container {
        padding: 20px;
    }

    .video-card {
        min-width: 280px;
        max-width: 280px;
        margin-right: 20px;
    }

    .video-container {
        height: 160px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .nav-arrow {
        width: 40px;
        height: 40px;
    }

    .global-controls {
        flex-wrap: wrap;
        gap: 10px;
    }

    .control-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .card-content {
        padding: 18px;
    }

    .video-title {
        font-size: 1.1rem;
    }

    .video-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .video-slider-section {
        padding: 40px 12px;
        min-height: auto;
    }

    .video-card {
        min-width: 250px;
        max-width: 250px;
        margin-right: 15px;
    }

    .video-container {
        height: 140px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .card-content {
        padding: 15px;
    }

    .video-title {
        font-size: 1rem;
    }

    .video-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .video-stats {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .unmute-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .nav-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-dots {
        gap: 8px;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .global-controls {
        margin-top: 15px;
        gap: 8px;
    }

    .control-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .add-video-section {
        margin-top: 30px;
    }

    .add-video-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .modal-content {
        max-width: 95%;
        max-height: 85%;
    }

    .modal-info {
        padding: 15px;
    }

    .modal-title {
        font-size: 1.2rem;
    }
}

/* Smooth scrolling for touch devices */
@media (hover: none) and (pointer: coarse) {
    .slider-wrapper {
        scroll-behavior: smooth;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .video-card {
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .nav-arrow {
        display: none;
    }
}
