body {
      margin: 0;
      padding: 0;
      background: url('https://assets.nflxext.com/ffe/siteui/vlv3/258d0f77-2241-4282-b613-8354a7675d1a/web/IN-en-20250721-TRIFECTA-perspective_cadc8408-df6e-4313-a05d-daa9dcac139f_large.jpg') no-repeat center center/cover;
      height: 100px;
      color: white;
      position: relative;
      margin-top: 1000px;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      /* z-index: 1; */
    }

    .content {
      position: relative;
      z-index: 2;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
      max-width: 700px;
      margin: auto;
    }

    .form-control {
      background-color: rgba(0, 0, 0, 0.6);
      border: 1px solid #fff;
      color: #fff;
    }

    .form-control::placeholder {
      color: #ccc;
    }

  .navbar-brand {
  font-family: 'Arial Black', sans-serif;
  font-size: 2.5rem;
  color: #e50914;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  transform: skewX(-5deg);
  transition: all 0.3s ease-in-out;
    }

    .dropdown-toggle, .btn-outline-light {
      background: transparent;
      border: none;
    }

    .btn-danger {
      padding: 10px 25px;
      font-weight: 500;
    }
    .logo
    {
        width: 200px;
    }
    @media(max-width:667px) {
        .navbar-brand{
            /* display:none; */
            text-align: center;
            font-size: 35px;
            margin-left:0px;
            margin-top: 0px;
            
        }
    }
    .testimonial-section {
  padding: 60px 30px;
  background-color: #f7f7f7;
}

.testimonial-title h2 {
  color: #30036e;
  font-weight: 700;
}

.scrolling-wrapper {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  padding-top: 20px;
}

.testimonial-card {
  display: inline-block;
  width: 300px;
  margin-right: 20px;
  vertical-align: top;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-card .card-body {
  padding: 25px;
}

.testimonial-card .card-footer {
  background-color: transparent;
  border: none;
}

.user-info {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #7f00ff, #e100ff);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 20px;
}

.quote-icon {
  color: red;
  font-size: 1.5rem;
  text-align: right;
}

/* Hide scrollbar for better UI */
.scrolling-wrapper::-webkit-scrollbar {
  display: none;
}

.scrolling-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body, html {
  height: 100%;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.main-banner {
  position: relative;
  height: 100vh;
  background: url("https://english.cdn.zeenews.com/sites/default/files/2025/01/13/1633003-12sdfwe.png") no-repeat center center/cover;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.navbar .nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: #fff !important;
  transition: 0.3s;
}

.navbar .nav-link:hover {
  color: #ff4c4c !important;
}
.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 20px 0 10px 20px;
  color: white;
}

.scroll-container {
  position: relative;
  padding: 20px;
  background-color: #000;
  overflow: hidden;
}

.scroll-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.scroll-content {
  display: flex;
  gap: 20px;
  padding: 10px;
}

.card-item {
  position: relative;
  min-width: 200px;
  height: 300px;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.card-item:hover {
  transform: scale(1.1);
  z-index: 2;
}

.card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
}

.card-item:hover .card-preview {
  display: flex;
}

.card-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-controls {
  position: absolute;
  bottom: 10px;
  display: flex;
  gap: 10px;
  color: white;
  font-size: 18px;
}

.card-controls i {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s ease;
}

.card-controls i:hover {
  background-color: red;
}

/* Scroll Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
  transition: 0.3s ease;
}

.scroll-btn:hover {
  background-color: red;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

/* Optional: Hide scroll bar */
.scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.scroll-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}



