 /* Base Styles */
.responsive-header {
  background-color: #f1f5ff; /* Light background color */
  padding: 30px 20px;
}

.header-container {
  max-width: 1320px; /* Max width for content */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styling */
.logo {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  font-family: Poppins !important;
}

/* Desktop Navigation */
.desktop-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.desktop-nav li {
  margin-right: 25px;
}

.desktop-nav a {
  text-decoration: none;
  color: #222;
  font-size: 20px;
  font-weight: 500;
  font-family: Poppins !important;
  line-height: 28px !important;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  align-items: center;
  gap: 10px; /* Space between buttons */
}

.log-in-link {
  text-decoration: none;
  color: #333;
  padding: 8px 0; /* Align with buttons */
  margin-right: 10px; /* Space before the first button */
  font-family: Poppins !important;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px !important;
}

.cta-demo, .cta-start {
  padding: 17px 40px;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  font-family: Poppins !important;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px !important;
}

.cta-demo {
  background-color: transparent; /* Light button */
  border: 1px solid #000000;
  color: #333;
  display: flex;
  align-items: center;
}

.cta-demo span {
  /* Placeholder for the user image */
  margin-right: 5px;
}

.cta-start {
  background-color: #2f3437; /* Dark button */
  color: #fff;
}

/* Hide the menu toggle by default on desktop */
.menu-toggle {
  display: none;
}

/* --- Media Query for Responsiveness --- */

@media (max-width: 900px) {
  /* Hide desktop navigation and log in link on smaller screens */
  .desktop-nav, .log-in-link {
    display: none;
  }
  
  /* Show the mobile menu toggle */
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
    order: 3; /* Push to the end if needed */
  }
  
  /* Adjust CTA button visibility/size for mobile */
  .cta-buttons {
    /* For smaller screens, you might hide one button or change the layout */
    gap: 5px;
  }

  /* Optional: Stack buttons or only show the most important one */
  .cta-demo {
      /* Maybe hide the demo button on the smallest screens */
      /* display: none; */
  }
}

body {
    margin: 0;
    padding: 0;
}  

/* ==== HERO SECTION STYLES ==== */
.hero {
  background: #f1f5ff;
  padding: 80px 20px;
  font-family: "Inter", sans-serif;
  color: #222;
}



/* Compliance Badges */
.compliance-wrapper {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.compliance-image {
  width: 90px;
  height: auto;
  transition: transform 0.3s ease;
}

.compliance-image:hover {
  transform: scale(1.08);
}

/* Hero Text */
.hero-title {
  font-size: 90px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 98px !important;
  font-family: Poppins !important;
}

.blue-text {
  color: #0077ff;
}

.grey-text {
  color: #333333;
}

.hero-description {
    font-size: 20px;
    max-width: 600px;
    margin: 0 0 40px 0;
    color: #000;
    line-height: 28px !important;
}
.highlight-text {
  color: #0077ff;
  font-weight: 700;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50px !important;
  line-height: 28px !important;
}

.btn-yellow {
  background-color: #ffd500;
  color: #000;
}

.btn-yellow:hover {
  background-color: #ffce00;
  transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #0077ff !important;
    color: #0077ff;
    background-color: transparent;
}

.btn-outline:hover {
  background-color: #0077ff;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .compliance-image {
    width: 70px;
  }
}


.hero  .row {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
}

/* ==== BASIC CONTAINER ==== */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1700px;
}
/* ==== ROW ==== */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* ==== COLUMNS ==== */
[class^="col-"] {
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}

/* ==== BREAKPOINT FOR md (≥768px) ==== */
@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

/* ==== MOBILE (Below 768px) — full width ==== */
@media (max-width: 767px) {
  .col-md-3,
  .col-md-4,
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ==== Optional Styling for Demo ==== */
.box {
  background: #f8f9fa;
  border: 1px solid #ddd;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 20px;
}

/* --- Global Setup & Font --- */
/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.custom-footer {
  /* Use the dark purple background and padding */
  background-color: #4b3d81; 
  padding: 40px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  /* Add the turquoise gradient border top for the visual effect */
  border-top: 10px solid transparent; 
  border-image: linear-gradient(to right, #00C4CC, #1369AC) 1;
}

.footer-content {
  max-width: 1790px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
}

/* --- Link Columns Styling (Retained from previous answer) --- */
.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}



.footer-col h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #090808;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col a {
  text-decoration: none;
  color: #5d5757; /* Light gray/purple for links */
  font-size: 16px;
  font-weight: 400;
  display: inline-block; /* Helps with hover area */
  margin-bottom: 8px; /* Space between links */
  transition: color 0.2s;
  line-height: 24px !important;
}

.footer-col a:hover {
  color: #fff;
}


/* --- Bottom Row Styling (CTA, App, Social) --- */
.footer-bottom-row {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* CTA Buttons */
.cta-section {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.btn-login {
  background-color: transparent;
  color: #000000;
  border: 1px solid #ffd500;
}

.btn-start-free {
  background-color: #ffd500; /* Bright yellow/green color */
  color: #000;
}

/* App and Social Links Container */
.app-social-section {
    display: flex;
    align-items: center;
    gap: 30px; 
}

/* --- App Store SVG Styling --- */
.app-links {
  display: flex;
  align-items: center;
}

.app-button {
  height: 40px; /* Set a consistent height for both buttons */
  margin-right: 10px;
  display: flex;
  align-items: center;
  background: #333;
  padding: 15px 20px;
  border-radius: 50px;
}

/* Target the SVG elements inside the buttons to make them fill the button's height */
.app-links svg {
  height: 100%; /* Make SVG fill the height of the anchor tag */
  width: auto;
  fill: #fff; /* Ensures main text of App Store SVG is white */
}
.logo img {
    max-width: 160px !important;
}
/* --- Social Icons Styling --- */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
  /* Mimic the dark circular button style */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ffd500;
  color: #000000;
  text-decoration: none;
  font-size: 18px; /* Size for Font Awesome icons */
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
}


/* --- Responsiveness --- */
@media (max-width: 992px) {
  .footer-col {
    flex: 1 1 50%; /* Two columns per row */
  }
}

@media (max-width: 768px) {
  .footer-links-row {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%; /* Single column */
    margin-bottom: 20px;
  }
  
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start; /* Align left */
    gap: 25px;
  }
  
  .app-social-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .app-links {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
  }

  .app-button {
      margin-right: 0;
  }
}

section#brands {
    background: #f1f5ff;
    padding-top: 50px;
    padding-bottom: 50px !important;
}

.logo-slider {
  overflow: hidden;
  background: #f1f5ff;
  padding: 30px 0;
  position: relative;
}

.logo-slide-track {
  display: flex;
  width: calc(250px * 20); /* width = image width * total slides */
  animation: scroll 40s linear infinite;
}
.logo-slide-track-sec{
     animation: scroll 50s linear infinite; 
}
.slide {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.slide img {
  max-width: 330px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Infinite scroll animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 10)); /* scroll half width */
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    width: 180px;
  }
  .slide img {
    max-width: 140px;
  }
}


h2 {
    font-family: Poppins !important;
    font-size: 40px;
    line-height: 48px !important;
}

section#brands h2 {
    text-align: center;
}



.faq-section {
    margin: 0 auto;
    padding: 20px;
    background: #8d0030;
    padding-top: 50px;
    padding-bottom: 50px !important;
}

/* Heading ki Styling */
.faq-heading {
    color: #FFFFFF; /* Safed rang */
    font-size: 2.5em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Do FAQs ke beech ka gap */
    max-width: 800px;
    margin: auto;
}

/* Individual FAQ Item ka Container */
.faq-item {
    background-color: #780016; /* FAQ card ka thoda halka red color */
    border-radius: 12px; /* Rounded corners */
    overflow: hidden; /* Content ko hide karne ke liye */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Sawaal (Question) Button ki Styling */
.faq-question {
    width: 100%;
    padding: 25px;
    text-align: left;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

/* Question hover state */
.faq-question:hover {
    background-color: #80002A;
}

/* Answer Content ki Styling */
.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0 25px; /* Initial padding zero rakha hai */
}

.faq-item.active .faq-answer-content {
    max-height: 500px; /* A large value to allow the content to expand */
    padding: 10px 25px 25px 25px; /* Jab active ho toh padding set karein */
}

.faq-answer-content p {
    color: #ffd1d1; /* Halka safed/pinkish text color */
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 10px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* Arrow Icon ki Styling */
.arrow-icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.faq-item.active .arrow-icon {
    transform: rotate(180deg); /* Jab active ho toh arrow ghoom jaata hai */
}

section.faq-section * {
    font-family: Poppins !important;
}