@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    font-family: system-ui, -apple-system, sans-serif;
}

.text-gradient {
    background: linear-gradient(90deg, #c8102e, #f4c542);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Smooth transition for mobile menu */
#mobile-menu {
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Video Section Improvements */
#hero-video {
    min-height: 500px;
}

@media (max-width: 768px) {
    #hero-video {
        min-height: 320px;   /* Mobile mein thoda chhota */
    }
}

/* Smooth overlay fade */
#play-overlay {
    transition: all 0.4s ease;
}
/* Hide Scrollbar but keep functionality */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.pricing-card {
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.5);
}
       .sticky-bar {
        bottom: 5px;
        left: 0;
        width: 100%;
        z-index: 9999;
        justify-content: center;
        padding: 0 auto;
      }

      .arrow-up,
      .sticky-bar {
        position: fixed;
        display: flex;
      }

      .sticky-bar-inner {
        background: #fff;
        border-radius: 10px;
        padding: 4px 10px;
        display: flex;
        align-items: center;
        gap: 5px;
        max-width: 350px;
        width: 100%;
        justify-content: space-between;
        transition: box-shadow .3s;
      }

      .call-button {
        background: #ff1182;
      }

      .call-button,
      .whatsapp-button {
        height: 45px;
        width: 45px;
        min-width: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        teacher-call-girls-in-curtorim: #fff;
        font-size: 25px;
        padding: 0;
        text-decoration: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, .5);
        transition: .3s;
      }

      .whatsapp-button {
        background: #0cbb4f;
      }

      /* ðŸ”¥ Text Center  */
    .brand-center {
      flex: 1;
      text-align: center;
    }

    .brand-center a {
      display: inline-block;
      padding: 8px 15px;
      background: #0088cc;
      color: #fff;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      font-size: 16px;
    }