* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
    background-color: #1a1a1a;
}
.btn-brown {
    background-color: hwb(354 6% 11%);
    color: white;
    border: none;
}

.btn-brown:hover {
    background-color: hsl(358, 90%, 48%);
    color: white;
}

.navbar-nav .nav-link.active {
    border-bottom: 3px solid hsl(359, 94%, 47%);
    color: hsl(357, 90%, 46%);
}

.navbar-nav .nav-link:hover {
    color: hsl(358, 92%, 49%);
}


nav {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.nav-link {
    font-weight: 700;
    color: black;
}
 .navbar-nav .nav-link {
      position: relative;
      padding-bottom: 5px;
      transition: color 0.3s, border-color 0.3s;
    }
    .navbar-nav .nav-link.active {
      color: red !important;
    }
    .navbar-nav .nav-link.active::after {
      content: "";
      display: block;
      height: 2px;
      background: red;
      width: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
    }
    .navbar-nav .nav-link:hover {
      color: red;
    }
.hero-section {
    position: relative;
    background: url('./images/Banner.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    font-size: 30px;
    font-weight: 600;
}

/* Make font smaller on mobile screens */
@media (max-width: 576px) {
  .highlight {
    font-size: 28px;
  }
}
.hero-heading {
    font-family: 'Courier New', Courier, ;
}

.btn-brown {
    border-radius: 25px;
    padding: 9px;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
    margin: 10px;
}

.slider .slide-track {
    display: flex;
    width: calc(250px * 14);
    animation: scroll 40s linear infinite;
}

.slider .slide {
    width: 250px;
    height: 50px;
    flex-shrink: 0;
  
}
.slider .slide img{
    border-radius: 20px;
}

.feature-card {
    background: #1a1a1a;
    border-radius: 1rem;
    padding: 1.2rem 1.5rem;
    height: 100%;
    transition: 0.3s ease;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2rem;
    color: #ff2e2e;
    background-color: #fff;
    border-radius: 50%;
    padding: 0.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h5 {
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.feature-text p {
    color: #ccc;
    margin: 0;
    font-size: 0.95rem;
}

.mobile-mockup {
    max-width: 230px;
    border-radius: 1.5rem;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4);
    border: 5px solid #ff2e2e;
}

.section-title {
    font-weight: bold;
    color: #ff2e2e;
}

.section-subtitle {
    color: black;
    font-size: 17px;
}

.image-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: black;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.feature-card {
    background: linear-gradient(135deg, #1c1a34, #1f1222);
    border-radius: 16px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-cards:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.feature-cards .feature-icon {
    font-size: 2rem;
    text-align: right;
    background-color: hsl(0, 93%, 57%);
    border-radius: 50%;
}

.fast1tv-section {
    background: linear-gradient(135deg, #1e1b29, #231933);
    position: relative;
}

.tv-mockup-wrapper {
    max-width: 350px;
    margin: auto;
}

.tv-mockup {
    width: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.fast1tv-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    color: #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fast1tv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.fast1tv-card h5 {
    margin-top: 15px;
    font-weight: 600;
    color: #fff;
}

.fast1tv-card p {
    color: #ccc;
    font-size: 0.95rem;
}

.icon-wrap {
    background: linear-gradient(135deg, #ff6a6a, #ffb6c1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.fast1tv-features-section {
    background: linear-gradient(135deg, #1e1b29, #231933);
}

.section-title {
    font-weight: 700;
    font-size: 2rem;
}

.section-subtitle {
    color: #aaa;
}

/* Carousel styling */
#fast1tvCarousel {
    border-radius: 16px;
    overflow: hidden;
}

/* Feature Cards */
.fast1tv-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: #ddd;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fast1tv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.fast1tv-icon {
    background: linear-gradient(135deg, #ff6a6a, #ffb6c1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.faq-section {
    background: linear-gradient(135deg, #1e1b29, #231933);
    color: #fff;
}

.faq-list {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px;
    color: #fff;
    text-align: left;
    font-weight: 500;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #ccc;
    font-size: 0.95rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 20px 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}
 .contact-section {
      background: white;
      border-radius: 0.5rem;
      padding: 2rem;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }
    .contact-title {
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .contact-info i {
      color: #ff2e2e;
      font-size: 1.2rem;
      margin-right: 0.5rem;
    }
    .form-check-input:checked {
      background-color:#ff2e2e;
      border-color: #ff2e2e;
    }
    .btn-primary {
      background-color: #ff2e2e;
      border-color: #ff2e2e;
    }
    .btn-primary:hover {
      background-color: #ff2e2e;
      border-color: #ff2e2e;
    }
  
    /*about us*/
    /* Animate.css CDN (add in your <head>) */
/* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/> */


.about-section {
  padding: 60px 20px;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
  border: 2px solid red;
  border-radius: 10px;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-content {
  flex: 1 1 500px;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: hsl(355, 90%, 49%);
}

.about-content p {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 1.05rem;
}
 