/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
}

.navbar {
  display: flex;
  justify-content: flex-start;
  padding: 15px 0;
}

.navbar-nav .nav-item {
  margin: 5px 5px;
}

.btn-success {
  background-color: #c2eacb;
  border-color: #c2eacb;
  color: #036b03;
  font-weight: bold;
}

.btn-success:hover {
  background-color: #a4e6b6;
  border-color: #a4e6b6;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  transition: box-shadow 0.3s ease-in-out;
  padding: 10px 0;
}

header.shadow {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}

.logo{
  padding-left: 90px;
}

.try-it-btn {
  padding-right: 90px;
}

.logo img {
  height: 50px;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  /* padding-left: 100px; */
}

/* Navbar background when collapsed */
.navbar-collapse {
  background-color: #ffffff;
  /* Set background color */
  padding: 10px;
  /* Add some padding */
  border-radius: 5px;
  /* Optional: Rounded corners */
  justify-content: flex-start;
}

/* Mobile Try for Free Button */
.try-free-btn {
  font-size: 14px;
  padding: 6px 12px;
  background-color: #4CAF50; /* Green button */
  color: white;
  border-radius: 5px;
  font-weight: bold;
}


/* Hero section */
.hero-section {
  padding-top: 150px;
  padding-bottom: 60px;
}

.landing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.content-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.heading {
  /* font-size: 50px; */
  font-weight: 650;
  color: #111;
  /* padding-left: 80px; */
  max-width: 700px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.subheading {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}


.btn-success {
  background-color: #22c55e !important;
  color: white;
}

.btn-success:hover {
  background-color: #16a34a !important;
}

.btn-secondary {
  background-color: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary:hover {
  background-color: #333;
}

.play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #ffffff;
}

.ratings {
  margin-top: 30px;
  /* margin-bottom: 80px; */
}

.ratings img {
  max-width: 100%;
  height: auto;
}

.hero-image {
  padding-top: 50px;
  width: 100%;
  max-width: 2500px;
  margin: auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Logo section */
.logo-section {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header p {
  font-size: 18px;
  color: #6c757d;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item img {
  max-width: 100px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
  opacity: 0.7;
}

.logo-item img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
  opacity: 1;
}

/* 📌 Image Section - Center Align */
.image-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
  padding-bottom: 80px;
}

/* 📌 Main Content - Fix Layout */
.main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 30px;
}

/* 📌 Text Section */
.text-section {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.text-section h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
}

/* 📌 Accordion Section */
.accordion {
  flex: 1;
  max-width: 45%;
  min-width: 300px;
  padding-left: 20px;
}

/* 📌 Accordion Item */
.accordion-item {
  background: #f8f8f8;
  padding: 14px;
  margin-bottom: 8px;
  cursor: pointer;
  border-radius: 6px;
  border: 1px solid #ddd;
  transition: background 0.3s ease, transform 0.2s;
}

.accordion-item:hover {
  background: #e0e0e0;
}

/* 📌 Active State Fix */
.accordion-item.active {
  background: white;
  border-left: 4px solid green; /* ✅ Border Fix */
  color: green;
  transform: scale(1.05);
}

/* 📌 Title (h6) */
.accordion-item h6 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}

/* 📌 Description (p) */
.accordion-item p {
  display: none;
  font-size: 0.95rem;
  color: #555; /* ✅ White se Dark kiya */
  margin-top: 5px;
  transition: opacity 0.3s ease-in-out;
}

/* 📌 Show Description When Active */
.accordion-item.active p {
  display: block;
  color: #333; /* ✅ White se Dark kiya */
}

/* 📌 Image Content - Fix Alignment */
.image-content {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center; /* ✅ Fix for Center Image */
}

.image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: opacity 0.3s ease-in-out;
}

/* Carousel arrows ko box ke bahar position dena */
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px; /* Adjust arrow size */
  height: 50px;
  background: none;
  border: none;
  z-index: 10;
}

/* Left Arrow Position */
.carousel-control-prev {
  left: -70px; /* Move left arrow outside */
}

/* Right Arrow Position */
.carousel-control-next {
  right: -70px; /* Move right arrow outside */
}

/* Arrow icon size */
.carousel-control-prev img,
.carousel-control-next img {
  width: 30px;
  height: auto;
}

.containers {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

h1 {
  font-weight: 900;
}

h5 {
  font-weight: 400;
  text-align: center;
  margin-top: 15px;
  line-height: 1.5;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

img {
  width: 100%;
  /* max-width: 800px; */
  height: auto;
}

.btns {
  display: inline-block;
  padding: 15px 25px;
  background-color: green;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: bold;
}

/* Card Container Styling */
.cards-v1 .card {
  background-color: #fff;
  border: none;
  border-radius: 25px;
  padding: 30px 20px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 350px;
}

.cards-v1 .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.cards-v1 .card .card-image img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

/* Card Title */
.cards-v1 .card h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Card Paragraph */
.cards-v1 .card p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #666;
}

/* Card Link */
.cards-v1 .card a {
  color: #1db954;
  text-decoration: none;
  font-weight: bold;
}

.cards-v1 .card a:hover {
  text-decoration: underline;
}

.button {
  display: flex;
  justify-content: center;
  gap: 15px;
  /* Buttons ke beech gap */
}

.button a {
  font-size: 18px;
  font-weight: bold;
}

footer {
  background-color: #191414;
  color: #ffffff;
  padding: 40px 0;
  font-size: 14px;
  padding-bottom: 150px;
}

footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  /* Icons ke darmiyan gap */
  justify-content: flex-start;
  /* Start me lane ke liye */
}

footer .logo img {
  width: 130px;
  margin-bottom: 15px;

}

footer p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.socials {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.socials li a {
  display: inline-block;
  background-color:  #692374;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  border-radius: 4px;
  color: #ffffff;
  font-size: 18px;
  transition: 0.3s;
}

.socials li a:hover {
  background-color: #47194e;
}

.footer-menus h6 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #ffffff;
}

.footer-menus ul {
  list-style: none;
  padding: 0;
}

.footer-menus ul li {
  margin-bottom: 8px;
}

.footer-menus ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-menus ul li a:hover {
  color: #ffffff;
}

.trustpilot-widget {
  margin-top: 20px;
}

/* Media Queries */
@media (min-width: 768px) {
  .navbar {
    background-color: #ffffff !important;
    /* Force background color */
  }

  .button-group {
    flex-direction: row;
    justify-content: center;
  }

  .logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .heading {
    font-size: 42px;
  }

  .row {
    display: block;
  }

  .col-md-4,
  .col-md-8 {
    width: 100%;
    margin-bottom: 20px;
  }

  .socials {
    justify-content: center;
  }

}


@media (max-width: 767px) {
  .cta {
    margin-left: auto;
  }

  .hero-section {
    padding-top: 100px;
  }
}

/* ✅ Responsive Styles */
@media (max-width: 992px) {
  .testimonial-section .row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .video-container iframe {
    height: 300px;
  }

  .swiper {
    margin-top: 20px;
  }
}

/* 📌 Responsive Fixes */
@media (max-width: 768px) {
  .main-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .accordion {
    max-width: 100%;
    text-align: center;
    padding-left: 0;
  }

  .image-content {
    width: 100%;
    text-align: center;
  }

  .image-content img {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .text-section h2 {
    font-size: 1.8rem;
  }

  .image-content {
    width: 100%;
  }

  .accordion-item {
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .navbar-collapse {
    text-align: center;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
}





/* Slider button code */
.paginate-btn {
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px;
}

.custom-carousel-control {
  background: none;
  border: none;
  padding: 0;
}

.custom-carousel-control img {
  width: 30px;
  height: auto;
}

@media (max-width: 768px) {
  .custom-carousel-control img {
      width: 25px;
  }

  .paginate-btn {
      bottom: 15px;
      gap: 3px;
  }
}