.navbar {
    background-color: #8B0000; /* Dark Red */
    padding: 1rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
}
.nav-link {
    color: white !important;
    font-size: 1.1rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff6347 !important; /* Tomato */
}
.btn-custom {
    background-color: #fff; /* Orange Red */
    color: #8B0000 !important;
    padding: 20px;
    font-weight: bold;
    width: 150px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.main-btn-custom {
  background-color: #dc3545; /* Orange Red */
  color: #fff !important;
  padding: 20px;
  font-weight: bold;
    width: 170px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

/* .main-section{
    background-color: #f9f9f9;
} */
 /* ====== Section Styling ====== */
 .why-section {
    padding: 4rem 0;
  }

  .why-section h2 {
    font-weight: 700;
    margin-bottom: 3rem;
    font-size: 40px;
  }

  /* Large number styling */
  .feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: #dc3545; /* Red tone */
    margin-right: 1rem;
  }

  /* Feature title */
  .feature-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }

  /* Spacing between features */
  .feature-item {
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 8px;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  /* Hover effect: Move up and add shadow */
  .feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 5px 9px rgba(0, 0, 0, 0.30);
  }

  /* Phone image styling */
  .phone-image {
    max-width: 100%;
    height: auto;
  }

  .live-stream-demo {
    background-color: #f9f9f9; /* Light background */
    text-align: center;
  }
  
  .carousel {
    max-width: 1200px; /* Adjust size */
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .carousel img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  



  /* review section  */
  .review-section {
    text-align: center;
    padding: 60px 20px;
    background: #f8f8f8;
}

.section-title {
    font-size: 28px;
    color: #b22222; /* Matching theme color */
    margin-bottom: 20px;
}

.review-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    overflow: hidden;
    justify-content: center;
    scroll-behavior: smooth;
}

.review-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.review-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.reviewer-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.review-text {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
}

.stars {
    color: #ffcc00;
    font-size: 18px;
}



/* pricing section */
/* Pricing Section */
.pricing-section {
  text-align: center;
  padding: 60px 20px;
  background: white;
}

.section-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}

.pricing-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Pricing Section */
.pricing-section {
  text-align: center;
  padding: 60px 20px;
  background: #f8f8f8;
}

.section-title {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Pricing Container */
.pricing-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Pricing Card */
.pricing-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 350px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Most Popular Plan */
.popular {
  border: 2px solid #d32f2f;
  position: relative;
}

.most-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #d32f2f;
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 8px;
}

/* Price Details */
.old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 14px;
}

.discount {
  background: #ffcccc;
  color: #b22222;
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 5px;
  margin: 5px 0;
}

.price {
  font-size: 28px;
  color: #d32f2f;
  font-weight: bold;
}

.price span {
  font-size: 18px;
}

.duration {
  font-size: 14px;
  color: #444;
}

/* Features */
.features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}

.features li {
  font-size: 16px;
  padding: 5px 0;
  color: #333;
}

.disabled {
  color: #888;
  text-decoration: line-through;
}

/* Choose Plan Button */
.choose-plan {
  background: #d32f2f;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
  margin-top: 15px;
}

.choose-plan:hover {
  background: #b71c1c;
}

/* See All Features */
.see-features {
  display: block;
  margin-top: 10px;
  color: #d32f2f;
  font-weight: bold;
  text-decoration: none;
}

.see-features:hover {
  text-decoration: underline;
}



/* CTA Section  */
.cta-section {
  background: linear-gradient(135deg, #a10000, #ff0000);
  text-align: center;
  padding: 60px 20px;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: white;
  color: #a10000;
  padding: 12px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #a10000;
  color: white;
  box-shadow: 0 5px 10px rgba(255, 255, 255, 0.2);
}


/* Contact Us Section */
/* Contact Section */
.contact-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Title & Subtext */
.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
}

.contact-title span {
  color: #d90429;
}

.contact-subtext {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 50px;
}

/* Contact Wrapper */
.contact-wrapper {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

/* Contact Details */
.contact-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}

.contact-item:hover {
  background: #d90429;
  color: white;
}

.contact-item i {
  font-size: 2rem;
  color: #d90429;
}

.contact-item:hover i {
  color: white;
}

.contact-item h4 {
  font-size: 1.3rem;
  margin: 10px 0;
}

.contact-item p a {
  text-decoration: none;
  color: #222;
  font-weight: bold;
}

.contact-item:hover p a {
  color: white;
}

/* Contact Form */
.contact-form {
  flex: 1;
  background: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  text-align: left;
}

.contact-form h3 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease-in-out;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d90429;
  box-shadow: 0 0 5px rgba(217, 4, 41, 0.5);
}

.send-btn {
  background: #d90429;
  color: white;
  padding: 12px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  border: none;
}

.send-btn:hover {
  background: #800000;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-wrapper {
      flex-direction: column;
  }
}



/* FAQ Section */
/* FAQs Section */
.faqs-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Title & Subtext */
.faqs-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
}

.faqs-title span {
  color: #d90429;
}

.faqs-subtext {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

/* FAQ Wrapper */
.faqs-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

/* FAQ Item */
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #222;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.faq-question:hover {
  color: #d90429;
}

.faq-question i {
  font-size: 1.2rem;
  transition: 0.3s;
}

.faq-answer {
  display: none;
  padding: 10px 15px;
  color: #555;
  font-size: 1rem;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-answer a {
  color: #d90429;
  text-decoration: none;
  font-weight: bold;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Open State */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .faqs-wrapper {
      width: 100%;
  }
}



/* Footer Section */

/* Footer */
.footer {
  background: #b30000; /* Deep Crimson Red */
  color: #fff; /* White Text */
  padding: 50px 20px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  text-align: left;
}

/* Footer Section */
.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff; /* Gold Highlight */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-section ul li a {
  color: #fff; /* Light Pinkish-White */
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #fff; /* Pure White */
}

/* Contact Info */
.footer-section p {
  font-size: 1rem;
  color: #f8d7da;
  margin: 8px 0;
}

/* Social Media */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #f8d7da;
  font-size: 1.5rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: white; /* Gold */
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #900000; /* Darker Red */
  margin-top: 30px;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #f8d7da;
}

.footer-bottom p:hover {
  color: #fff;
}





/* Partners Section  */
/* Partners Section */
.partners-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #b30000;
  font-weight: bold;
}

.section-subtitle {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Partner Cards */
.partner-card {
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-in-out;
  text-align: left;
  padding: 15px;
  margin-bottom: 30px;
  overflow: hidden;
  align-items: center;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.partner-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.partner-info {
  padding: 0 15px;
  width: 60%;
}

.partner-info h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #b30000;
  margin-bottom: 8px;
}

.partner-info p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 8px;
}

/* Buttons */
.btn-watch {
  display: inline-block;
  padding: 10px 20px;
  background: #b30000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-watch:hover {
  background: #900000;
  color: #fff;
}

.btn-more {
  padding: 14px 30px;
  background: #333;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-more:hover {
  background: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .partner-card {
      flex-direction: column;
      text-align: center;
  }
  .partner-img {
      width: 100%;
      height: auto;
  }
  .partner-info {
      width: 100%;
      padding-top: 10px;
  }
}




/* Tournament Page  */
/* Tournaments Section */
.tournaments-section {
  padding: 80px 0;
  background: #f8f8f8;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #b30000;
  font-weight: bold;
}

.section-subtitle {
  color: #555;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Tournament Cards */
.tournament-card {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  margin: 20px auto;
  text-align: left;
  transition: 0.3s ease-in-out;
}

.tournament-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.tournament-banner {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.tournament-details {
  display: flex;
  align-items: center;
  padding: 15px;
}

.streamer-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 15px;
}

.tournament-info {
  flex-grow: 1;
}
/* Tournament Buttons Container */
.tournament-buttons {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

/* Glowing Effect for Buttons */
@keyframes glow {
  0% {
      box-shadow: 0 0 5px rgba(255, 255, 2, 0.8);
  }
  50% {
      box-shadow: 0 0 15px rgba(255, 255, 2, 1);
  }
  100% {
      box-shadow: 0 0 5px rgba(255, 255, 2, 0.8);
  }
}

/* View Tournament Button */
.btn-view {
  display: inline-block;
  padding: 10px 20px;
  background: #b30000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
  animation: glow 1.5s infinite alternate;
}

/* Register Now Button */
.btn-register {
  display: inline-block;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
  animation: glow 1.5s infinite alternate;
}

/* Button Hover Effects */


/* Responsive Adjustments */
@media (max-width: 768px) {
  .tournament-buttons {
      flex-direction: column;
      align-items: center;
      display: none;
  }
  .tournament-banner {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
}

.tournament-info h3 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #b30000;
  margin-bottom: 5px;
}

.tournament-info p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* View Button */


/* Popup Overlay */
.popup-overlay {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Popup Content */
.popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  max-width: 90%;
  width: 900px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Popup Banner */
.popup-banner {
  width: 100%;
  border-radius: 5px;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #b30000;
  color: #fff;
  border: none;
  font-size: 18px;
  border-radius: 50%;
  padding: 10 10 10 10;
  cursor: pointer;
  transition: 0.3s;
}

.popup-close:hover {
  background: #900000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .tournament-details {
      flex-direction: column;
      text-align: center;
  }
  .streamer-logo {
      margin-bottom: 10px;
  }
}


/* Responsive */
@media (max-width: 768px) {
    .navbar-toggler{
  border: none;
}
.navbar-toggler span{
    color: white !important;
    
}
  .contact-title span {
      font-size: 30px;
  }
  .contact-subtext{
    font-size: 14px;
  }
  .contact-item{
    width: 320px;
  }
  .contact-form{
    width: 320px;
  }
  .faqs-title{
    font-size: 30px;
  }
  .faq-question{
    font-size: 12px;
  }
  .cta-content h2{
    font-size: 24px;
  }
  .cta-content p{
    font-size: 14px;
  }
}