* {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  /* background-color: #ffffff; */
  /* display: flex;
            align-items: center;
            justify-content: center; */
  min-height: 100vh;
  /* margin: 0; */
  font-family: "Montserrat", sans-serif;
}
/* =========================
   Color Variables
========================= */
:root {
  --primary-color: #b71c1c;
  --heading: #7a060b;
  --black: #000000;
  --white: #ffffff;
  --borders: #ffe5eb;
  --footer-bg: #ff88b9;
  --text-gunmetal: #272e33;
  --text-charcoal: #303030;
  --text-black-muted: #00000099;
  --card-bg: #fbf4f4;
}

/* NAVBAR START*/
.navbar {
  background-color: transparent !important;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.navbar.navbar-expand-lg.fixed-top {
  padding: 0 !important;
}

.navbar.scrolled {
  /* background-color: rgba(255, 192, 203, 0.95) !important; */
  background-color: var(--white) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0 !important;
        padding-left: 0 !important;
            margin: 0 12px;
    }}
.navbar-brand {
      padding: 14px 0 !important;
}

.navbar-brand img {
  height: 65px;
  padding: 0 !important;
  outline: none;
}

.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link {
  position: relative;
  color: #000;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: #b00c14;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #b00c14 !important;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:active {
  color: #b00c14 !important;
}

.navbar-nav .nav-link:active::after {
  width: 100%;
}
.navbar {
  background-color: transparent;
  padding: 15px 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar-brand img {
  height: 65px;
  transition: height 0.3s ease;
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 50px;
  }
  .navbar-nav .nav-link {
    margin: 10px 0;
  }
}
@media (max-width: 991px) {
  .navbar-brand img {
    height: 55px; /* slightly smaller for tablets */
  }
  .navbar {
  background-color: var(--white) !important;
  padding: 20px 0;
  transition: all 0.3s ease;
}
}
@media (max-width: 575px) {
  .navbar-brand img {
    height: 45px; /* smaller logo fits mobile screens */
  }
  .navbar {
  background-color: var(--white) !important;
  padding: 20px 0;
  transition: all 0.3s ease;
}
}


.navbar-nav .nav-link {
  position: relative;
  color: #000;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #b00c14;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #b00c14 !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-toggler {
  border: none;
}

/* NAVBAR END*/

/* HERO SECTION START  */
.hero-section {
  /* background: linear-gradient(135deg, #ffc0cb 0%, #ffb6c1 50%, #ffa6b1 100%); */
  background-image: url("../images/heroBg.png");
  position: relative;
  /* overflow: hidden; */
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content {
  padding-top: 120px;
  /* padding-bottom: 80px; */
}

.phone-mockup {
  position: relative;
  max-width: 350px;
  margin: 0 auto;
}

.phone-mockup img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-text .download-btn {
  margin-top: 28px !important;
}

.hero-text .brand-name {
  max-width: 100%;
  height: 28px;
  margin-bottom: 8px;
  align-self: center;
   align-self: flex-start;
}

.hero-text h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 56px;
  color: var(--black);
  margin-bottom: 18px;
}

.hero-text h2 .highlight {
  font-weight: 700;
}

.hero-text p {
  color: var(--text-gunmetal);
  margin-bottom: 12px;
  /* font-family: Poppins; */
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
}

.cta-button {
  background-color: #c41e3a;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #a01729;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(196, 30, 58, 0.3);
}

.cta-button::before {
  content: "⬇";
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-text h1 {
    font-size: 2.5rem;
  }

 

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-content {
    padding-top: 100px;
  }

  .phone-mockup {
    margin-top: 40px;
    max-width: 300px;
  }
}

@media (max-width: 767px) {
  .hero-text h1 {
    font-size: 2rem;
  }


  .hero-text h2 {
    font-size: 1.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .navbar-nav .nav-link {
    margin: 5px 0;
  }

  .btn-download {
    margin-top: 10px;
  }
  
  .phone-mockup {
    max-width: 250px;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 1.5rem;
  }

  .hero-text .brand-name {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .hero-text h2 {
    font-size: 1.3rem;
        margin-bottom: 4px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .hero-text .brand-name {
    height: 36px;
    margin-bottom: 10px;
  }
}

/* Laptop / Desktop */
@media (min-width: 1024px) {
  .hero-text .brand-name {
    height: 44px;
    margin-bottom: 12px;
     align-self: flex-start;
  }
}


/* HERO SECTION END */

/* ABOUT SECTION START  */
.about-section {
  margin: 60px 0;
}

.about-heading {
  font-weight: 700;
  font-size: 48px;
  line-height: 80px;
  color: var(--heading);
}

.about-subheading {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0px;
  color: var(--text-charcoal);
  margin-bottom: 48px !important;
}

.about-section-left {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
}

.about-section-left p {
  /* font-family: Poppins; */
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--text-gunmetal);
  margin-bottom: 12px;
}

aside {
  border-radius: 24px;
  padding: 18px;
  background: #f8e8e8;
  margin-top: 48px;
}
@media (max-width: 991px) {
  .about-section {
    margin: 40px 0;
  }

  .about-heading {
    font-size: 40px;
    line-height: 56px;
  }

  .about-subheading {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 32px !important;
  }

  .about-section-left {
    padding-right: 20px;
  }

  .about-section-left p {
    font-size: 16px;
    line-height: 26px;
  }

  aside {
    margin-top: 32px;
    padding: 16px;
  }

  .about-section img {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .about-section {
    margin: 32px 0;
  }

  .about-heading {
    font-size: 32px;
    line-height: 44px;
    text-align: center;
  }

  .about-subheading {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 24px !important;
  }

  /* .about-section-left {
    align-items: center;
    text-align: center;
  } */

  .about-section-left p {
    font-size: 15px;
    line-height: 24px;
  }

  aside {
    margin-top: 24px;
    padding: 14px;
    border-radius: 16px;
  }

  .about-section img {
    margin-top: 24px;
  }
}


/* ABOUT SECTION END  */

/* TARGET AUDIENCE SECTION END  */
.target-audience .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.target-audience .content-wrapper .heading {
  font-weight: 700;
  font-size: 36px;
  line-height: 80px;
  letter-spacing: 1%;
  color: var(--heading);
}

.features-box {
  display: flex;
  flex-direction: column;
}

.target-card-c {
  padding: 20px;
  border-radius: 16px;
  border-right: 10px solid transparent;
  border-image: linear-gradient(180deg, #efc5d8 0%, #ffffff 100%) 1;
  max-width: 498px;
}

.target-card-b {
  padding-right: 20px;
  border-radius: 16px;
  border-right: 10px solid transparent;
  border-image: linear-gradient(180deg, #efc5d8 0%, #ffffff 100%) 1;
}

.target-card-a {
  padding-right: 20px;
  border-radius: 16px;
  border: 10px solid transparent;
  border-image: linear-gradient(180deg, #efc5d8 0%, #ffffff 100%) 1;
}

.features-list span {
  margin-right: 10px;
}

.features-list p {
  font-weight: 400;
  font-size: 22px;
  line-height: 35px;
  letter-spacing: 0%;
  color: var(--text-charcoal);
  margin-bottom: 26px !important;
}

.action-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 376px;
}

.action-text p {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #c41e3a;
}

.action-text h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: var(--text-charcoal);
  text-align: center;
}
@media (max-width: 991px) {
  .target-audience-left{
    align-items: center;
    justify-content: center;
  }
   .target-audience .content-wrapper .heading {
    font-size: 32px;
    line-height: 48px;
    margin-bottom: 20px;
  }
  
  .features-list p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px !important;
  }
  .action-text p,
  .action-text h3 {
    font-size: 20px;
    line-height: 28px;
  }
 .image-wrapper img {
    margin-top: 32px;
  }
}
@media (max-width: 575px) {
   .target-audience .content-wrapper .heading {
    font-size: 26px;
    line-height: 38px;
    margin-bottom: 16px;
  }
  .features-list p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 16px !important;
  }
  .action-text p,
  .action-text h3 {
    font-size: 18px;
    line-height: 26px;
  }
    .image-wrapper img {
    margin-top: 24px;
  }
}
/* TARGET AUDIENCE SECTION END  */

/* HOW IT WORKS START  */
.howItWorks {
  margin: 60px 0;
  position: relative;
  padding-left: 10;
  /* overflow: hidden; */
}

.howItWorks .container {
  border-radius: 25px;
  background: linear-gradient(180deg, #b71c1c 0%, #7d0006 100%);
  padding: 120px;
  position: relative;
  z-index: 2;
}

.howItWorks::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern.svg"), url("../images/pattern.svg"),
    url("../images/pattern.svg");
  background-repeat: no-repeat;
  background-size: 230px;
  background-position: 39% 43%, 90% -22%, 10% 127%;
  pointer-events: none;
  z-index: 100;
}

.howItWorks-left h3 {
  font-weight: 600;
  font-size: 32px;
  line-height: 56px;
  color: var(--white);
}

.howItWorks-left h1 {
  font-weight: 600;
  font-size: 70px;
  line-height: 100px;
  color: var(--white);
}

.howItWorks-left p {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
}

.step-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  color: var(--white);
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 62px;
  position: relative;
}

/* The Number Circle */
.step-number {
  width: 50px;
  height: 50px;
  border: 2px dashed var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;

  z-index: 2;
}

.step-number span {
  background-color: #ffb6d44d;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
  z-index: 2;
}

/* The Connecting Dotted Line */
.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 50px;
  bottom: -62px;
  border-left: 2px dashed var(--white);
  z-index: 1;
}

/* The Arrowhead */
.step-item:not(:last-child)::before {
  content: "▼";
  position: absolute;
  left: 20px;
  bottom: -66px;
  font-size: 12px;
  color: var(--white);
  z-index: 1;
}

.step-text {
  margin-left: 25px;
  padding-top: 10px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .howItWorks .container {
    padding: 80px;
  }

  .howItWorks-left h3 {
    font-size: 28px;
    line-height: 44px;
  }

  .howItWorks-left h1 {
    font-size: 50px;
    line-height: 70px;
  }

  .howItWorks-left p {
    font-size: 15px;
    line-height: 20px;
  }

  .step-container {
    max-width: 100%;
  }

  .step-item {
    margin-bottom: 48px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .step-number span {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .step-item:not(:last-child)::after {
    left: 22px;
    bottom: -48px;
  }

  .step-item:not(:last-child)::before {
    left: 18px;
    bottom: -52px;
    font-size: 10px;
  }

  .step-text {
    margin-left: 20px;
    font-size: 1.1rem;
    line-height: 1.35;
  }
}
@media (max-width: 575px) {
  .howItWorks{
        padding: 0 12px;
  }
  .howItWorks .container {
    padding: 40px 20px;
  }

  .howItWorks-left h3 {
    font-size: 22px;
    line-height: 32px;
    
  }

  .howItWorks-left h1 {
    font-size: 36px;
    line-height: 50px;
    
  }

  .howItWorks-left p {
    font-size: 14px;
    line-height: 20px;
    
  }

  .step-container {
    max-width: 100%;
  }

  .step-item {
    flex-direction: row;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    gap: 10px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-number span {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .step-item:not(:last-child)::after,
  .step-item:not(:last-child)::before {
    display: none; /* Remove vertical dashed lines & arrows on mobile */
  }

  .step-text {
    margin-left: 0;
    padding: 0 !important;
    font-size: 1rem;
    line-height: 1.4;
  }
}


/* HOW IT WORKS END  */
/* FEATURES SECTION START  */
.features-section-heading {
  font-weight: 600;
  font-size: 32px;
  line-height: 56px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--black);
  margin-bottom: 24px !important;
}
.features-section-left{
  margin-right: -60px;
}
.features-section-right{
  margin-left: -60px;
}
.feature-points span {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 3.5%;
  color: var(--black);
}

.feature-points P {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  columns: #00000099;
}
@media (max-width: 991px) {
  .features-section-heading {
    font-size: 28px;
    line-height: 48px;
    margin-bottom: 48px !important;
  }
}
@media (max-width: 575px) {
  .features-section-heading {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 32px !important;
  }
}
/* Tablet */
@media (max-width: 991px){
  .feature-points span {
    font-size: 16px;
  }
  .features-section-left{
  margin-right: -30px;
}
.features-section-left .gap-5{
 gap: 0 !important;
}
.features-section-right{
  margin-left: -30px;
}
.features-section-right .gap-5{
 gap: 0 !important;
}
.feature-points P {
    font-size: 12px;
    line-height: 12px;
}
}

/* Mobile */
@media (max-width: 575px) {
  .feature-points span {
    font-size: 14px;
  }
  .feature-points img{
    display: none;
  }
   .features-section-left{
  margin-right: 0;
}
.features-section-right{
  margin-left: 0;
}
}
/* FEATURES SECTION END  */
/* FOUNDER SECTION START */
.founder-section {
  margin: 60px 0;
}

.founder-card {
  background: linear-gradient(0deg, #ffffff 0%, #ffeef5 100%);
  border-radius: 24px;
  /* overflow: hidden; */
  padding: 80px 40px;
  padding-bottom: 0;
}

.founder-label {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 5rem;
  color: var(--heading);
  margin-bottom: 2.5rem;
}
.founder-name {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #374151;
  margin-bottom: 10px !important;
}

.founder-story p {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: var(--text-charcoal);
}

.highlight-text {
  color: var(--heading) !important;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
}

.founder-image-wrapper {
  margin-right: 24px;
}

.founder-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 768px) {
  .content-column {
    padding-left: 40px;
  }
}


@media (max-width: 767px) {
  .founder-card {
    padding: 20px;
  }
}
/* Tablet */
@media (max-width: 991px) {
  .founder-card {
    padding: 60px 30px;
  }

  .founder-intro {
    margin-left: 0;
    margin-top: 20px;
  }

  .founder-name {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
  }

  .founder-story p,
  .highlight-text {
    font-size: 15px;
    line-height: 26px;
    text-align: justify;
  }

  .founder-image-wrapper {
    margin-bottom: 20px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .founder-card {
    padding: 40px 20px;
  }

  .founder-label {
    font-size: 1.75rem; /* 28px */
    line-height: 3.5rem; /* 56px */
    margin-bottom: 1.5rem;
  }

  .founder-intro {
    margin-top: 15px;
  }

  .founder-name {
    font-size: 20px;
    line-height: 26px;
  }

  .founder-story p,
  .highlight-text {
    font-size: 14px;
    line-height: 24px;
  }

  .founder-image-wrapper {
    margin-bottom: 0 !important;
    margin-right: 0 !important;
  }
}


/* FOUNDER SECTION END */
/* EXPERIENCE SECTION START */
.experienceSection {
  margin: 60px 0;
}

.exp-heading {
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  font-variant: small-caps;
  color: var(--black);
  margin-bottom: 30px;
}

/* .exp-cards {
  gap: 30px;
  padding-top: 30px;
} */
.exp-cards {
    display: flex;
    flex-wrap: wrap;
    
}

.exp-card {
    flex: 1 1 calc(33.333% - 20px); /* 3 columns minus gap */
    box-sizing: border-box;
}
.exp-card {
  border-radius: 24px;
  padding: 24px !important;
  background: var(--white);
  border: 1px solid var(--borders);
  box-shadow: 0px 1px 2px 0px #0000000d;
}

.exp-card-blank {
  border-radius: 24px;
  padding: 24px !important;
  background: var(--white);
  border: 1px solid var(--white);
}

.exp-card p {
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--text-charcoal);
  margin-top: 16px;
}

.exp-tag-cards {
  gap: 30px;
  padding-top: 40px;
}

.exp-tag-card {
  border-radius: 12px;
  padding: 24px !important;
  background-color: var(--card-bg);
}

.exp-tag-card span {
  padding-left: 10px;
}
@media (max-width: 991px) {
  .experienceSection {
    margin: 40px 0;
  }

  .exp-heading {
    font-size: 28px;
    line-height: 120%;
    text-align: center;
  }

  /* .exp-cards {
    gap: 20px;
    padding-top: 20px;
  } */

  .exp-card,
  .exp-card-blank {
    padding: 20px !important;
  }

  .exp-card p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 12px;
  }

  .exp-tag-cards {
    gap: 20px;
    padding-top: 30px;
  }

  .exp-tag-card {
    padding: 20px !important;
  }
  .exp-card {
    margin-bottom: 15px ;
  }
}
@media (max-width: 575px) {
  .experienceSection {
    margin: 32px 0;
  }

  .exp-heading {
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 20px;
  }

  /* .exp-cards {
    gap: 15px;
    padding-top: 15px;
  } */

  .exp-card,
  .exp-card-blank {
    padding: 16px !important;
  }

  .exp-card p {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
    text-align: center;
  }

 

  .exp-card {
    margin-bottom: 15px ;
  }
 
  .exp-tag-cards {
    gap: 15px;
            padding: 20px 10px 0px 10px;
  }

  .exp-tag-card {
    padding: 16px !important;
    text-align: center;
  }

  .exp-tag-card span {
    padding-left: 5px;
    display: block;
    margin-top: 5px;
  }
}


/* EXPERIENCE SECTION END */

/* APP SHOWCASE SECTION START */
.app-showcase-section {
  margin: 60px 0 !important;
}

.download-btn {
  padding: 0 20px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none !important;
  margin-top: 60px;
  font-weight: 500;
font-size: 16px;
line-height: 18px;
text-align: center;
text-transform: uppercase;
}
/* ===== WRAPPER ===== */
.slider-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== SLIDER ===== */
.slider {
    position: relative;
    max-width: 1320px;
    width: 100%;
    overflow: hidden;
}

/* ===== TRACK ===== */
.track {
  display: flex;
  gap: 24px;
  will-change: transform;
  transition: transform 0.6s ease;
  
}

/* ===== CARD ===== */
.card {

  flex: 0 0 240px;
  height: 520px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ff5fa2, #ff2f78);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  opacity: 0.35;
  transform: scale(0.9);
  transition: all 0.4s ease;
  width: 244px !important;
height: 528px !important;
border-radius: 25px;
overflow: hidden; 
}

.card img {
  width: 100%;       
  height: 100%;      
  object-fit: cover; 
  display: block;
}
.card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* ===== FADE ===== */
.fade {
  position: absolute;
  top: 0;
  width: 220px;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.fade-left {
  left: 0;
  background: linear-gradient(to right, #fff 35%, transparent);
}

.fade-right {
  right: 0;
  background: linear-gradient(to left, #fff 35%, transparent);
}

/* ===== INDICATORS ===== */
.indicators {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.indicators span {
  width: 32px;
  height: 6px;
  border-radius: 6px;
  background: #ffd1e2;
  transition: background 0.3s;
}

.indicators span.active {
  background: #ff2f78;
}
@media (max-width: 1023px) {
  .download-btn {
    height: 46px;
    padding: 0 18px;
    margin-top: 40px;
     font-size: 15px;
  line-height: 18px;
  }
}
@media (max-width: 767px) {
  .download-btn {
    height: 42px;
    padding: 0 16px;
    margin-top: 24px;
     font-size: 14px;
  line-height: 16px;
  }
}
/* Tablet Responsive (768px - 1023px) */
@media (max-width: 1023px) {
  .slider {
    width: 100%;
    max-width: 900px; /* Reduced from 1320px */
  }
  
  .card {
    flex: 0 0 200px; /* Reduced from 240px */
    height: 440px; /* Reduced from 520px */
    width: 200px !important; /* Reduced from 244px */
    height: 440px !important; /* Reduced from 528px */
  }
  
  .track {
    gap: 20px; /* Reduced from 24px */
  }
  
  .fade {
    width: 180px; /* Reduced from 220px */
  }
}

/* Mobile Responsive (max-width: 767px) */
@media (max-width: 767px) {
  .slider {
    width: 100%;
    max-width: 100%;
  }
  
  .card {
    flex: 0 0 160px; /* Further reduced for mobile */
    height: 350px;
    width: 160px !important;
    height: 350px !important;
    border-radius: 20px; /* Slightly smaller border radius */
  }
  
  .track {
    gap: 16px; /* Smaller gap for mobile */
  }
  
  .fade {
    width: 120px; /* Reduced fade width */
  }
  
  .indicators {
    margin-top: 20px; /* Reduced margin */
  }
  
  .indicators span {
    width: 24px; /* Smaller indicators */
    height: 4px;
  }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
  .slider-wrapper {
    padding: 0 10px; /* Add some padding */
  }
  
  .slider {
    max-width: calc(100vw - 20px); /* Account for padding */
  }
  
  .card {
    flex: 0 0 140px; /* Even smaller for very small screens */
    height: 300px;
    width: 140px !important;
    height: 300px !important;
    border-radius: 18px;
  }
  
  .track {
    gap: 12px; /* Minimal gap */
  }
  
  .fade {
    width: 80px; /* Minimal fade width */
  }
  
  .indicators span {
    width: 20px; /* Smallest indicators */
    height: 3px;
  }
}
/* 3 CARDS VISIBLE CONFIGURATION */


@media (max-width: 1023px) and (min-width: 768px) {
  .slider {
    width: 620px; /* 3 cards: 200px * 3 + 20px * 2 gaps = 620px */
  }
}

@media (max-width: 767px) {
  .slider {
    width: 512px; /* 3 cards: 160px * 3 + 16px * 2 gaps = 512px */
  }
}

@media (max-width: 575px) {
  .slider {
    width: 444px; /* 3 cards: 140px * 3 + 12px * 2 gaps = 444px */
  }
}


/* APP SHOWCASE SECTION END  */

/* DOWNLOAD SECTION START  */
.download-section {
  margin: 60px 0 !important;
}

.download-main {
  padding-bottom: 25px;
  background-image: url("../images/downloadBg-main.svg");
  border-radius: 25px;
  /* overflow: hidden; */
  background-repeat: no-repeat;
  background-size: cover;
}
.content-info h1{
font-weight: 600;
font-size: 32px;
line-height: 48px;
color: var(--white);
}
.download-list img{
  margin-right: 10px;
}
.download-button{
  padding: 0 8px;
  height: 40px !important;
  background-color: var(--white);
  outline: none; 
    box-shadow: none;
    border: none;
}
.download-button a{
  color: #B00C14;
  text-decoration: none;
font-weight: 500;
font-size: 14px;
line-height: 100%;
text-align: center;
text-transform: uppercase;
}
.download-options{
  gap: 40px;
}
.download-bottom{
  margin: 0 80px;
  margin-top: 70px;

}
.download-bottom-right .subtext{
font-weight: 400;
font-size: 18px;
line-height: 22px;
text-align: center;
color: var(--white);
margin: 0 52px;
}
.download-card{
  padding: 30px;
  background: #0000001F;
 border-radius: 25px;
 gap: 30px;
}
.download-card h2{
font-weight: 600;
font-size: 24px;
line-height: 100%;
color: var(--white);
}
.download-card p{
font-weight: 400;
font-size: 14px;
line-height: 20px;
color: var(--white);
}
.download-top {
  background-image: url("../images/downloadBG.png");
  /* overflow: hidden; */
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px;
}

.download-top {
  padding-left: 32px;
  padding-right: 0px;
  padding-bottom: 0;
  padding-top: 32px;
}
.star-img{
  width: 42px;
height: 42px;
opacity: 0.6;
}
.download-top-heading {
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  color: var(--black);
}
.download-top-heading-content{
  padding-left: 70px;
      padding-bottom: 50px;
}
.download-list p {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: var(--white);
  padding: 0 !important;
}
.social-icons {
  border: 1px solid #303030;
  background: #7A060B0F;
  display: inline-flex;            /* IMPORTANT */
  justify-content: flex-end;       /* space-between hatao */
  gap: 28px;     
  height: 72px;                  /* equal spacing */
  padding: 0 38px;
  border-radius: 50px;
  align-items: center;
}

/* .social-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;               
} */
.social-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    padding: 9px;
}
.social-icon:hover {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  padding: 6px;
  background-color: #FFFFFF4D;
  border-radius: 10px;
}


  .download-top-heading {
font-weight: 700;
font-size: 36px;
color: var(--black);
  }
.download-top-heading span {
  font-weight: 700;
  color: #7A060B;
}
.download-top-para p{
color: var(--text-charcoal);
font-weight: 500;
font-size: 16px;
line-height: 28px;
}

.download-top-img{
  position: relative;
}

@media (max-width: 1024px) {

  .download-button a {
    font-size: 13px;
    line-height: 1; 
    letter-spacing: 4%;
  }
}
@media (max-width: 991px) {
  
  .download-top .col-12.col-md-6 {
    text-align: center;
    /* margin-bottom: 20px; */
  }

  .download-top-heading {
    font-size: 36px;
    line-height: 44px;
  }
      .social-icons {
        height: 50px;
        padding: 0px 19px;
        gap: 10px;
    }
    .social-icon {
    flex-shrink: 0;
    padding: 5px;
}
    .social-icon:hover {
    flex-shrink: 0;
    padding: 6px;
    background-color: #FFFFFF4D;
    border-radius: 4px;
}

  .download-top .social-icon {
    width: 32px;
    height: 32px;
  }


  .download-bottom {
    margin: 0 40px;
    margin-top: 50px;
  }

  .content-info h1 {
    font-size: 28px;
    line-height: 40px;
  }

  .download-list p {
    font-size: 16px;
    line-height: 22px;
  }

  .download-options {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .download-card {
    padding: 24px;
  }

  .download-card h2 {
    font-size: 20px;
  }

  .download-card p {
    font-size: 13px;
  }

  .download-bottom-right .subtext {
    margin: 0 20px;
    font-size: 16px;
    line-height: 20px;
  }
   /* .download-top .row {
    padding-left: 30px !important;
    padding-right: 0px !important;
    padding-top: 30px !important;
    padding-bottom: 0 !important;
  } */
   .download-top-heading {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }

  .download-top-heading span {
    font-size: 38px;
  }

  .download-top-para {
    text-align: center;
  }

  .download-top-para p {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 28px;
  }

  .download-top-para .d-flex {
    justify-content: center !important;
    margin-bottom: 10px;
  }
 .download-top-heading-content {
    padding-left: 40px;
    padding-bottom: 0;
}
.download-top {
    padding-bottom: 20px;
}
}

@media (max-width: 575px) {
    .download-button a {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 3%;
  }
.download-top {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0;
    padding-top: 20px;
    
}
  .download-top-heading { 
    font-size: 28px;
    line-height: 36px;
  }
 
  .social-icons {
    height: 38px;
        padding: 0px 12px;
        gap: 12px;
  }

  .social-icon{
 padding: 5px;
  }
  .social-icon:hover {
    flex-shrink: 0;
    padding: 4px;
  }
 .download-top-heading-content{
  align-items: center;
    display: flex;
    flex-direction: column;
 }

  .download-top .social-icon {
    width: 28px;
    height: 28px;
  }

  .download-bottom {
    margin: 0 15px;
    margin-top: 40px;
  }

  .content-info h1 {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .download-list p {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
  }

  .download-options {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .download-card {
    padding: 20px;
    width: 100%;
  }

  .download-card h2 {
    font-size: 18px;
  }

  .download-card p {
    font-size: 12px;
  }

  .download-bottom-right .subtext {
    margin: 20px 10px 0 10px;
    font-size: 14px;
    line-height: 18px;
  }
  .download-top .row {
    padding: 0px !important;
  }
  .download-top-heading {
    font-size: 24px;
    line-height: 34px;
    text-align: center;
  }
 .star-img {
    width: 26px;
    height: 26px;
    opacity: 0.6;
}
.download-top-heading-content {
    padding: 0px !important;
}
  .download-top-heading span {
    font-size: 30px;
  }

  .download-top-para {
    text-align: center;
  }

  .download-top-para p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
  }

  .download-top-para .d-flex {
    justify-content: center !important;
    margin-bottom: 8px;
  }

  .download-top-para img {
    width: 40px;
  }
}

/* DOWNLOAD SECTION END  */

/* GET OUR NEWSLETTER START  */

.newsletter-container::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  border: 10px solid #f3c5d3;
  border-radius: 15px;

  -webkit-mask-image: linear-gradient(
    to right,
    black 0%,
    black 35%,
    transparent 40%,
    transparent 60%,
    black 65%,
    black 100%
  );
  mask-image: linear-gradient(
    to right,
    black 0%,
    black 35%,
    transparent 40%,
    transparent 60%,
    black 65%,
    black 100%
  );

  pointer-events: none;
}
.newsletter-container {
  max-width: 950px;
  width: 95%;
  padding: 15px;

  position: relative;
  background-color: #fff;
  z-index: 0;
}

/* The Badge Header */
.header-badge {
  background-color: #fce4ec;
  color: #000;
  font-family: "Playfair Display", serif;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 50px;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-top: -10px;
}

/* Text Content */
.content-text {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Form Styling */
.custom-input-group {
  border: 1px solid #999;
  display: flex;
  margin-top: 30px;
  /* overflow: hidden; */
}

.custom-input-group input {
  border: none;
  padding: 12px 20px;
  flex-grow: 1;
  font-style: italic;
  outline: none;
  font-size: 0.9rem;
}

.btn-subscribe {
  background-color: #b30c0c;
  /* Deep Red */
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background-color: #8b0808;
  color: #fff;
}

.arrow-icon {
  margin-left: 10px;
  font-size: 1.1rem;
}

/* Decorative Clover Icons (Using SVG Data URI) */
.clover-bg {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url("../images/newsletter-bg-dz.svg");
  background-repeat: no-repeat;
  z-index: 0;
}

.clover-tl {
  top: 20px;
  left: 20px;
}

.clover-br {
  bottom: 20px;
  right: 20px;
}

.inner-content {
  position: relative;
  z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .custom-input-group {
    flex-direction: column;
    border: none;
  }

  .custom-input-group input {
    border: 1px solid #999;
    margin-bottom: 10px;
  }

  .btn-subscribe {
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .height-desktop {
    height: 100%;
  }
}

/* GET OUR NEWSLETTER END  */
/*  FOOTER START  */
.custom-footer {
  width: 100%;
  height: 110px;
  background-color: var(--footer-bg);
  margin-top: 0; /* sit flush to legal links */
}

.custom-footer p {
  color: #000000;
  font-size: 14px;
}

/* Legal links just above footer */
.legal-links {
  /* border-top: 1px solid #eee; */
  margin-top: 40px; /* space from content above */
}


/* FOOTER END  */
