/* Hero Section */


svg {

  shape-rendering: geometricPrecision;

}


#hero1 {
  overflow: hidden;
  background: url("..//img/appdetailshero1bg.png") top center;
  height: auto;
  width: 100%;
  display: block;
  justify-content: center;
  position: relative;

}

/* Left Content */
.appd1 {
  flex: 1;
}

.appd1 h1 {

  font-size: 40px;
  font-weight: 700;
  color: white;
  text-align: start;
  line-height: 56px;
  padding: 4px 0;
  margin: 12px 10px;
}

.appd1 p {
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: white;
  overflow: hidden;
  margin: 0 10px;
}


/* Right Content (Mobile Screen) */
.appd2 {
  width: 100%;
  display: block;
  justify-content: center;
  align-items: center;
}

.appd2 .hero1appp2img {
  width: 381px;
  height: 800px;
  object-fit: contain;
  justify-content: center;
  align-self: center;
  position: relative;
}




.community-section {
  align-items: start;
  width: 100%;
  display: block;
  justify-content: left;
  background: white;
  text-align: left;
}

.community-header {
  padding: 0 0 0 10px;
  margin-bottom: 20px;
  text-align: left;
}

.community-title {
  text-align: left;
  align-items: left;
  justify-content: left;
  font-size: 32px;
  font-weight: 700;
  color: #434343;
  margin-bottom: 10px;
}

.community-subtext {
  display: flex;
  text-align: left;
  align-items: start;
  justify-content: start;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #666;
  line-height: 24px;

}

.stats-grid {
  padding: 0 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.stat-card {
  background: white;
  border-radius: 12px;
  width: 100%;
  padding: 2px 3px;
  gap: 5px;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: left;
  border: 1px solid #E0E0E0;
}

.stat-header {
  height: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 159px;
  justify-content: flex-start;
}

.stat-icon {
  width: 32px;
  height: 32px;
}

.stat-number {
  font-size: 20px;
  font-weight: 700;
  color: #01406D;
  line-height: 28px;
}

.stat-label {
  position: relative;
  font-size: 14px;
  color: #757575;
  text-align: left;
  margin: 0 auto auto auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.card-container {
  object-fit: fill;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: center;
  /* Centers content */
  width: 93%;
  background: url("..//img/app-detailsimgs//Frame1.svg");
  max-width: 4000px;
}

.c-card-dup {
  cursor: pointer;
  align-items: start;
  text-align: left;
  justify-content: left;
  display: block;
  user-select: none;
  width: 100%;
  overflow: hidden;
}

.c-card {
  cursor: pointer;
  border: 0.5px solid rgb(190, 181, 181);
  align-items: center;
  justify-content: center;
  display: block;
  user-select: none;
  width: 90%;
  margin: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.c-card-dup .para-dup {
  color: #0d264b;
  /* Dark blue */
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}

/* Highlighted text */
.highlight-red {
  color: #d92041;
  /* Red color for emphasis */
  font-weight: bold;
  font-size: 24px;
}

.highlight-para {
  padding: 10px 0;
  justify-content: center;
  color: #6E6E6E;
  /* Dark blue */
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}

.c-card:hover {
  transform: translateY(-5px);
}

.c-img-container {
  overflow: hidden;
  object-fit: fill;
  position: relative;
  width: 100%;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

/* Background images */

.c-img {
  width: 115%;
  display: block;
  justify-content: center;
  object-position: center;
  object-fit: cover;
}

.c-text {
  position: relative;
  top: 10px;
  padding: 1px 10px;
}

.c-text h2 {
  font-size: 22px;
  color: #434343;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 32px;
}

.c-text p {
  font-size: 16px;
  font-weight: 500;
  color: #6E6E6E;
  line-height: 24px;
}




/* Sticky Section Styling */
.sticky-section1 {
  width: 100%;
  padding: 0 20px;
  background: none;
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 12px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

/* Show Sticky Section When Active */
.sticky-section1.show {
  opacity: 1;
  background: none;

  visibility: visible;
}

.testimonial-body {
  display: flex;
  overflow-x: scroll;
  /* Enables horizontal scrolling */
  gap: 16px;
  /* Space between cards */
  padding: 20px;
  scroll-snap-type: x mandatory;
  /* Ensures smooth snapping */
  width: 100%;
  white-space: nowrap;
}

.testimonial-head {
  padding-left: 10px;
  font-weight: 700;
  font-size: 32px;
  color: #434343;
  line-height: 40px;
}

.testimonial-header {
  padding-top: 35px;
  background: white;
}



.testimonial-card {
  background-size: cover;
  /* Ensure full coverage */
  color: #ffffff;
  border-radius: 16px;
  padding: 13px;
  width: 283px;
  height: 372px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.tc-bg1 {
  background: url("../img//app-detailsimgs/doubleqot1.svg") no-repeat center;
}

.tc-bg2 {
  background: url("../img//app-detailsimgs/doubleqot2.svg") no-repeat center;

}

/* Testimonial text */
.testimonial-text {
  position: relative;
  top: 54px;
  left: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: left;
  color: #ffffff;
  display: block;
  white-space: initial;
}

/* User info section */
.user-info {
  width: 100%;
  justify-content: start;
  display: flex;
  gap: 10px;
  position: relative;
  align-items: start;
  justify-content: start;
}

/* User profile image */
.user-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* User details */
.user-details {
  top: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.user-name {
  display: flex;
  justify-content: start;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.user-subtext {
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #C6C6C6;
  opacity: 0.8;
}

.fanoz-download-section {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: url('./..//img/app-detailsimgs//bluebg.svg') no-repeat center center/cover;
  text-align: center;
  padding: 10px 10px;

  color: #FFFFFF;
}

.fanoz-heading {
  padding-top: 23px;
  text-align: left;
  justify-content: left;
  line-height: 40px;
  font-size: 32px;
  font-weight: 700;
}

.fanoz-subheading {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.fanoz-phone-images {
  position: relative;
  width: 100%;
  object-fit: cover;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.fanoz-phone-image {

  position: relative;
  top: 14px;
  left: 13px;
  width: 100%;
  height: auto;
  object-fit: cover;
}



.fanoz-registration-text {
  width: 350px;
  height: auto;
  margin-bottom: 4px;
}

.fanoz-card-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.fanoz-card-button {
  background: #ff6600;
  color: white;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

.dawnload-nowtext {
  padding-top: 29px;
  display: flex;
  justify-content: center;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}

.fanoz-download-buttons {
  z-index: 10;
  padding: 38px 10px 67px 10px;
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  gap: 15px;
  height: 49px;
  justify-content: center;
}


.fanoz-store-button {
  overflow: hidden;
  /* width: 105%; */
  height: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  width: 100%;
  object-fit: contain;
}










/* Footer Styling */
/* Footer Styling */
.fanoz-footer {
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  width: 100%;
  overflow: hidden;
}

.fanoz-container {
  width: 100%;
  padding: 10px;
  gap: 30px;

}

/* Top Section: Left (Logo + Address + Contact) & Right (Company Details) */
.fanoz-footer-top {
  gap: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left Section */
.fanoz-footer-left {
  justify-content: center;
  display: block;
  width: 183px;
}


.fanoz-logo img {
  width: 83px;
  height: 26px;
}

/* Address Section - Ensuring Text Starts from Left */
.fanoz-address {
  display: block;
  text-align: left;
  margin-top: 10px;
}

.fanoz-address p {
  font-size: 12px;
  color: #434343;
  font-weight: 500;
  line-height: 16px;
  margin: 0;
}

/* Contact Section */
.fanoz-contact {
  margin-top: 15px;
}

.fanoz-contact-item {
  display: flex;
  font-weight: 500;
  align-items: center;
  color: #e60023;
  margin-bottom: 10px;
}

.fanoz-contact-item img {
  width: 20px;
  height: 20px;
}

.fanoz-contact-item a {
  padding-left: 10px;
  font-weight: 500;
  font-size: 15px;

  line-height: 16px;
  text-decoration: none;
  color: #e60023;

}

/* Right Section */
.fanoz-footer-right {
  justify-content: center;
  display: block;
  width: 190px;
  position: relative;
  top: 30px;
}

.fanoz-footer-heading {
  font-size: 16px;
  font-weight: 600;
  font-weight: bold;
  line-height: 16px;
  margin-bottom: 10px;
}

.fanoz-footer-links {

  list-style: none;
  padding: 0;
  margin: 0;
}

.fanoz-footer-links li {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 16px;
  padding: 4px 0;

}

.fanoz-footer-links a {
  text-decoration: none;
  color: #e60023;
  font-size: 13px;
  line-height: 16px;


}

/* Social Media Icons */
.fanoz-social-icons {
  text-align: center;
  margin-top: 20px;
}

.fanoz-social-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0;
  list-style: none;
}

.fanoz-social-list li {
  display: inline-block;
}

.fanoz-social-list img {
  width: 32px;
  height: 32px;
}

/* Copyright */
.fanoz-footer-copy {
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  color: #666;
  margin-top: 15px;
}




/* slider css */
.sliding-sec {
  background: url('../img//app-detailsimgs//bluebg.svg') no-repeat center center/cover;
  width: 100%;
  overflow: hidden;
}

.heading-section {
  padding: 0 12px;
  text-align: start;
  color: white;
  margin-bottom: -32px;
}

.heading-section h1 {
  font-size: 32px;
  color: white;
  font-weight: 700;
  line-height: 40px;
}

.heading-section p {
  font-size: 16px;
  color: white;
  line-height: 24px;
  font-weight: 500;
}

.watch-demo {
  text-align: start;
  object-fit: cover;
  right: 6px;
  background: none;

  justify-content: left;
  color: white;
  display: flex;
  align-items: center;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  position: relative;
  text-decoration: none;
}

.watch-demo img {
  width: 190px;
  height: auto;
  object-fit: cover;
  background: none;
}

.slider-container {
  overflow-x: scroll;
  width: 100%;
  position: relative;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 0px;
}

.slide {
  flex: 0 0 80%;
  z-index: 10;
  transition: transform 0.5s ease-in-out;
  display: flex;
  justify-content: left;
  align-items: start;
  position: relative;
}


.slide img {
  object-fit: fill;
  width: 283px;
  display: block;
}

.controls {
  position: relative;
  bottom: 3px;
  justify-content: end;
  display: flex;
}

.prev,
.next {
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}






.arimg{
  display: flex
  ;
      top: -131px;
      width: 86%;
      padding: 0;
      justify-content: center;
      align-items: center;
      position: absolute;
    }

/*  Mobile */

@media screen and (min-width: 1px) and (max-width: 767px) {
  .btnsection2{
    display: block;
    position: absolute;
    justify-content: center;
    bottom: 0px;
    padding: 6px;
  }
  .fanoz-registration-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }

        
  
  
  .ar-bluecoverimg{
    position: absolute;
    display: flex
  ;
    width: 150%;
    opacity: 99%;
    bottom: 0;
    object-fit: cover;
  
  }

  .btnsection2{
    width: 100%;
    display: block;
    justify-content: center;
    padding: 10px 15px;
  }
  .btnssectionpara{
    padding: 2px;
    top: 4px;
    font-weight: 600;
    position: relative;
    z-index: 999;
    color: #FFFFFF;
    opacity: 100%;
    font-size: 16px;
  }


  .fanoz-download-buttons .btnsubpara {
    font-size: 7px;
    width: 100%;
    display: flex;
    text-align: left !important;
    justify-content: flex-start;
    position: absolute;
    left: 3% !important;
    top: 0px;
    z-index: 999;
    color: #FFFFFF;
    opacity: 1;
}


  .sliding-sec {
    padding: 20px 13px;
  }

  .heading-section {
    text-align: center;
  }

  .heading-section h1 {
    font-size: 42px;
  }

  .heading-section p {
    font-size: 20px;
    line-height: 28px;
  }

  .slider-container {
    width: 100%;
    margin: 0 auto;
  }


  /* Hero Section */
  svg {
    shape-rendering: geometricPrecision;
  }

  #hero1 {
    overflow: hidden;
    background: url("..//img/appdetailshero1bg.png") top center;
    height: auto;
    width: 100%;
    display: block;
    justify-content: center;
    position: relative;
  }

  /* Left Content */
  .appd1 {
    flex: 1;
    padding: 0px 0px 96px 0;
  }

  .appd1 h1 {
    font-size: 40px;
    font-weight: 700;
    color: white;
    text-align: start;
    line-height: 56px;
    padding: 4px 0;
    margin: 12px 10px;
  }

  .appd1 p {
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: white;
    overflow: hidden;
    margin: 0 10px;
  }

  /* Right Content (Mobile Screen) */
  .appd2 {

    width: 100%;
    display: block;
    justify-content: center;
    align-items: center;
  }

  .appd2 .hero1appp2img {
    width: 381px;
    object-fit: contain;
    justify-content: center;
    align-self: center;
    position: relative;
  }

  .community-section {
    align-items: start;
    width: 100%;
    display: block;
    justify-content: left;
    background: white;
    text-align: left;
  }

  .community-header {
    padding: 0 0 0 10px;
    margin-bottom: 20px;
    text-align: left;
  }

  .community-title {
    text-align: left;
    align-items: left;
    justify-content: left;
    font-size: 32px;
    font-weight: 700;
    color: #434343;
    margin-bottom: 10px;
  }

  .community-subtext {
    display: flex;
    text-align: left;
    align-items: start;
    justify-content: start;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: #666;
    line-height: 24px;
  }

  .stats-grid {
    overflow: hidden;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card {
    padding: 0 0 6px 10px;
    background: white;
    border-radius: 12px;
    width: 100%;
    display: block;
    align-items: center;
    justify-content: center;
    text-align: left;
    border: 1px solid #E0E0E0;
  }

  .stat-header {
    height: 60px;
    display: flex;
    align-items: center;
    gap: 2%;
    width: 100%;
    justify-content: flex-start;
  }

  .stat-icon {
    width: 32px;
    height: 32px;
  }

  .stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #01406D;
    line-height: 28px;
  }

  .stat-label {
    position: relative;
    font-size: 14px;
    color: #757575;
    text-align: left;
    margin: 0 auto auto auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
  }

  .card-container {
    object-fit: fill;
    position: relative;
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    /* Ensures 2x2 on small screens */
    gap: 35px;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: center;
    width: 93%;
    background: url("..//img/app-detailsimgs//Frame1.svg");
    max-width: 4000px;
  }

  .c-card-dup {
    cursor: pointer;
    align-items: start;
    text-align: left;
    justify-content: left;
    display: block;
    user-select: none;
    width: 100%;
    overflow: hidden;
  }

  .c-card {
    cursor: pointer;
    border: 0.5px solid rgb(190, 181, 181);
    align-items: center;
    justify-content: center;
    display: block;
    user-select: none;
    width: 90%;
    padding: 5px 3px 35px 3px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3sease-in-out;
  }

  .c-card-dup .para-dup {
    color: #0d264b;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
  }

  /* Highlighted text */
  .highlight-red {
    color: #d92041;
    font-weight: bold;
    font-size: 24px;
  }

  .highlight-para {
    padding: 10px 0;
    justify-content: center;
    color: #6E6E6E;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
  }

  .c-card:hover {
    transform: translateY(-5px);
  }

  .c-img-container {
    overflow: hidden;
    object-fit: scale-down;
    position: relative;
    width: auto;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    overflow: hidden;
  }

  /* Background images */
  /* .c-img1 { display: flex; object-fit: cover;  background: url('..//img/app-detailsimgs/card1png.png') no-repeat center center/cover; }
    .c-img2 { display: flex; object-fit: cover;  background: url('..//img/app-detailsimgs/card2png.png') no-repeat center center/cover; }
    .c-img3 { display: flex; object-fit: cover;  background: url('..//img/app-detailsimgs/card3png.png') no-repeat center center/cover; }
    .c-img4 { display: flex; object-fit: cover;  background: url('..//img/app-detailsimgs/card4png.png') no-repeat center center/cover; }
    .c-img5 { display: flex; object-fit: cover;  background: url('..//img/app-detailsimgs/card5png.png') no-repeat center center/cover; }
    .c-img6 { display: flex; object-fit: cover;  background: url('..//img/app-detailsimgs/card6png.png') no-repeat center center/cover; } */
  .c-text {
    position: relative;
    top: 10px;
    padding: 1px 10px;
  }

  .c-text h2 {
    font-size: 22px;
    color: #434343;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 32px;
  }

  .c-text p {
    font-size: 16px;
    font-weight: 500;
    color: #6E6E6E;
    line-height: 24px;
  }

  /* Sticky Section Styling */
  .sticky-section1 {
    background: none;
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  /* Show Sticky Section When Active */
  .sticky-section1.show {
    opacity: 1;
    background: none;
    visibility: visible;
  }

  .testimonial-body {
    display: flex;
    overflow-x: scroll;
    gap: 16px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    width: 100%;
    white-space: nowrap;
  }

  .testimonial-head {
    padding-left: 10px;
    font-weight: 700;
    font-size: 32px;
    color: #434343;
    line-height: 40px;
  }

  .testimonial-header {
    padding-top: 35px;
    background: white;
  }

  .testimonial-card {
    background-size: cover;
    color: #ffffff;
    border-radius: 16px;
    padding: 13px;
    width: 283px;
    height: 372px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .tc-bg1 {
    background: url("../img//app-detailsimgs/doubleqot1.svg") no-repeat center;
  }

  .tc-bg2 {
    background: url("../img//app-detailsimgs/doubleqot2.svg") no-repeat center;
  }

  /* Testimonial text */
  .testimonial-text {
    position: relative;
    top: 54px;
    left: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: left;
    color: #ffffff;
    display: block;
    white-space: initial;
  }

  /* User info section */
  .user-info {
    width: 100%;
    justify-content: start;
    display: flex;
    gap: 10px;
    position: relative;
    align-items: start;
    justify-content: start;
  }

  /* User profile image */
  .user-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
  }

  /* User details */
  .user-details {
    top: 2px;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  .user-name {
    display: flex;
    justify-content: start;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
  }

  .user-subtext {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #C6C6C6;
    opacity: 0.8;
  }

  .fanoz-download-section {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: url('./..//img/app-detailsimgs//bluebg.svg') no-repeat center center/cover;
    text-align: center;
    padding: 2px;
    color: #FFFFFF;
  }

  .fanoz-heading {
 padding: 21px 0px 0px 12px;
    text-align: left;
    justify-content: left;
    line-height: 40px;
    font-size: 32px;
    font-weight: 700;
  }

  .fanoz-subheading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .fanoz-phone-images {
    position: relative;
    width: 100%;
    object-fit: cover;
    display: flex;
    justify-content: center;
    margin-bottom: -25%;
  }

  .fanoz-phone-image {
    position: relative;
    top: 0px;
    left: 13px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .fanoz-registration-container {
    padding: 0 10px;
    display: flex
;
    flex-direction: column;
    align-items: center;
    bottom: 58px;
    position: relative;
    z-index: 1;
  }

  .fanoz-registration-text {
    width: 90%;
    height: auto;
    margin-bottom: 20%;
}

  .fanoz-card-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .fanoz-card-button {
    background: #ff6600;
    color: white;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
  }

  .dawnload-nowtext {
    padding-top: 29px;
    display: flex;
    justify-content: center;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
  }

  .fanoz-download-buttons {
    z-index: 10;

    /* padding: 40px 2px 50px 2px; */
    width: 100%;
    display: flex;
    position: relative;
    align-items: center;
    gap: 15px;
    height: 49px;
    justify-content: center;
  }

  .fanoz-store-button {
    overflow: hidden;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    object-fit: contain;
  }

  /* Footer Styling */
  .fanoz-footer {
    background-color: #ffffff;
    font-family: Arial, sans-serif;
    width: 100%;
    overflow: hidden;
  }

  .fanoz-container {
    width: 100%;
    padding: 10px;
    gap: 30px;
  }

  /* Top Section: Left (Logo + Address + Contact) & Right (Company Details) */
  .fanoz-footer-top {
    gap: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Left Section */
  .fanoz-footer-left {
    justify-content: center;
    display: block;
    width: 183px;
  }

  .fanoz-logo img {
    width: 83px;
    height: 26px;
  }

  /* Address Section - Ensuring Text Starts from Left */
  .fanoz-address {
    display: block;
    text-align: left;
    margin-top: 10px;
  }

  .fanoz-address p {
    font-size: 12px;
    color: #434343;
    font-weight: 500;
    line-height: 16px;
    margin: 0;
  }

  /* Contact Section */
  .fanoz-contact {
    margin-top: 15px;
  }

  .fanoz-contact-item {
    display: flex;
    font-weight: 500;
    align-items: center;
    color: #e60023;
    margin-bottom: 10px;
  }

  .fanoz-contact-item img {
    width: 20px;
    height: 20px;
  }

  .fanoz-contact-item a {
    padding-left: 10px;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    text-decoration: none;
    color: #e60023;
  }

  /* Right Section */
  .fanoz-footer-right {
    justify-content: center;
    display: block;
    width: 190px;
    position: relative;
    top: 30px;
  }

  .fanoz-footer-heading {
    font-size: 16px;
    font-weight: 600;
    font-weight: bold;
    line-height: 16px;
    margin-bottom: 10px;
  }

  .fanoz-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .fanoz-footer-links li {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 16px;
    padding: 4px 0;
  }

  .fanoz-footer-links a {
    text-decoration: none;
    color: #e60023;
    font-size: 13px;
    line-height: 16px;
  }

  /* Social Media Icons */
  .fanoz-social-icons {
    text-align: center;
    margin-top: 20px;
  }

  .fanoz-social-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
    list-style: none;
  }

  .fanoz-social-list li {
    display: inline-block;
  }

  .fanoz-social-list img {
    width: 32px;
    height: 32px;
  }

  /* Copyright */
  .fanoz-footer-copy {
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: #666;
    margin-top: 15px;
  }

  /* slider css */
  .sliding-sec {
    background: url('../img//app-detailsimgs//bluebg.svg') no-repeat center center/cover;
    width: 100%;
    overflow: hidden;
  }

  .heading-section {
    padding: 0 12px;
    text-align: start;
    color: white;
    margin-bottom: -32px;
  }

  .heading-section h1 {
    font-size: 32px;
    color: white;
    font-weight: 700;
    line-height: 40px;
  }

  .heading-section p {
    font-size: 16px;
    color: white;
    line-height: 24px;
    font-weight: 500;
  }

  .watch-demo {
    text-align: start;
    object-fit: cover;
    right: 6px;
    background: none;
    justify-content: left;
    color: white;
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    position: relative;
    text-decoration: none;
  }

  .watch-demo img {
    width: 190px;
    height: auto;
    object-fit: cover;
    background: none;
  }

  .slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0px;
  }

  .slide {
    flex: 0 0 80%;
    z-index: 10;
    transition: transform 0.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }




  .slide img {
    position: relative;
    object-fit: cover;
    width: 283px;
    display: block;
  }

  .controls {
    position: relative;
    justify-content: end;
    display: flex;
    gap: 4px;
    right: 1%;
    top: 10px;
  }

  .prev,
  .next {
    border: none;
    height: 40px;
    width: 40px;
    background-color: transparent;
    cursor: pointer;
  }

  .dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
  }

  .active {
    background-color: #a19dbb;
  }

}



/* Responsive Design */
@media (max-width: 768px) {
  #hero1 {
    background: url("..//img/appdetailshero1bg.png") top center no-repeat;
    background-size: cover;
    padding-top: 65px;
    overflow: hidden;
    flex-direction: column;
    text-align: center;
    height: auto;
    z-index: 1;
    /* Keep section above the shadow */
    position: relative;

  }

  .appd2 {
    padding: 0 14px;
    position: relative;
    height: 499px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .appd3 {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;

    object-fit: cover;
    height: 191px;
  }


  .appd2 .hero1appp2img {
    object-fit: contain;
  padding: 58% 0px 0 0;
  max-width: 100%;
  width: 381px;
  }

  .store-buttons {

    width: 100%;
    display: flex;
    justify-content: center;
    /* Center buttons */
    gap: 15px;
    margin-top: 20px;
  }

  .store-logo {
    height: 50px;
    width: auto;
  }
}







/* **Larger Tablets & Small Desktops (1024px - 1439px) - 3 Columns** */


/* **Monitors & Large Screens (1440px and up) - 4 Columns** */
@media (min-width: 1440px) {

  .card-container {
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
    gap: 25px;
  }

  .c-card .c-card-dup {
    width: 100%;
  }

  .c-card-dup .para-dup {
    font-size: 18px;
    color: #0d264b;
    /* Dark blue */
    font-weight: 500;
    line-height: 1.6;
  }

  /* Highlighted text */
  .highlight-red {
    color: #d92041;
    /* Red color for emphasis */
    font-weight: bold;
    font-size: 38px;

  }
}





@media (min-width: 768px) and (max-width: 1024px) {

  .fanoz-footer-top {
    flex-direction: row;
    align-items: center;
    text-align: center;
    padding: 0 23px;
  }

  .fanoz-footer-right {
    justify-content: center;
    display: block;
    width: 261px;
    position: relative;
    top: 25px;
    justify-content: start;
    text-align: left;
  }

  .fanoz-logo img {
    width: 130px;
  }

  .fanoz-footer-links {
    padding-top: 10px;
  }

  .fanoz-download-section {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: url(./..//img/app-detailsimgs//bluebg.svg) no-repeat center center / cover;
    text-align: center;
    padding: 2px;
    color: #FFFFFF;
}

  .fanoz-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
  }

  .fanoz-heading {
    font-size: 42px;
    line-height: 50px;
  }

  .fanoz-phone-images {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .fanoz-phone-image {
    width: 350px;
    height: auto;
  }

  .fanoz-download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .fanoz-store-button {
    width: 180px;
    height: auto;
  }

  .slide {
    position: relative;
    flex: 0 0 39%;
    transition: transform 0.5sease-in-out;
    display: flex;
    justify-content: center;
  }

  .heading-section {
    padding: 0 49px;
    text-align: start;
    color: white;
    margin-bottom: -11px;
  }

  .heading-section h1 {
    display: flex;
    font-size: 54px;
    color: white;
    font-weight: 800;
    line-height: 69px;
  }

  .heading-section p {
    font-size: 25px;
    color: white;
    line-height: 39px;
    font-weight: 500;
  }

  .card-container {
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }

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

  .c-text h2 {
    font-size: 24px;
  }

  .c-text p {
    font-size: 18px;
  }

  .sliding-sec {
    padding: 60px 60px;
  }

  .heading-section h1 {
    font-size: 48px;
  }

  .heading-section p {
    font-size: 24px;
    line-height: 32px;
  }

  .slider-container {
    width: 100%;
    margin: 0 auto;
  }

  .prev,
  .next {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  #hero1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 70px 0px 0px 0px;
  }

  .appd1 {
    width: 100%;
    text-align: center;
    padding: 30px;
  }

  .appd1 h1 {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 15px;
  }

  .appd1 p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .fanoz-download-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .fanoz-store-button {
    width: 200px;
    height: auto;
  }

  .appd2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .appd2 .hero1appp2img {
    width: 350px;
    height: auto;
  }

  .appd3 {
    display: none;
  }

  .community-section {
    padding: 50px 40px;
  }

  .stat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 259px;
    justify-content: flex-start;
  }

  .community-header {
    padding: 0 20px;
    text-align: center;
  }

  .community-title {
    font-size: 42px;
  }

  .community-subtext {
    font-size: 22px;
    line-height: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    gap: 30px;
    justify-content: center;
  }

  .stat-card {
    padding: 30px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 20px;
  }

}


@media (min-width: 1025px) and (max-width: 6000px) {
.ar-bluecoverimg{
  display: none;
}
  .arimg {
    z-index: 1;
    opacity: 100%;
  }

  .fanoz-download-buttons .btnsubpara{
    font-size: 8px;
    display: flex;
    padding: 0 0 0 3px;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 1px;
    z-index: 999;
    color: #FFFFFF;
    opacity: 100%;
  }



  .fanoz-content-wrapper {
    width: 100%;
    margin: 0 auto;
  }

  .fanoz-heading {
    font-size: 80px;
    line-height: 98px;

  }

  .fanoz-phone-image {
    display: flex;
    width: 50%;
    height: auto;
    object-fit: cover;
  }

  .fanoz-phone-images {
    position: absolute;
    top: 0;
    right: 1px;
    height: auto;
    width: 60%;
    object-fit: cover;
    display: flex;
    justify-content: right;
    gap: 20px;
    margin-bottom: 20px;
  }

  .dawnload-nowtext {
    padding-top: 29px;
    display: flex;
    justify-content: center;
    width: 100%;
    font-weight: 600;
    font-size: 39px;
    line-height: 45px;
  }

  .stat-header {
    height: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 259px;
    justify-content: flex-start;
  }

  .fanoz-registration-container {
    padding: 0px 1px 5% 10px;
  }

  .fanoz-registration-text {
    width: 613px;
    height: auto;
    margin-bottom: 4px;
  }

  .fanoz-download-buttons {
    gap: 30px;
  }

  .fanoz-store-button {
    width: 316px;
    height: auto;

  }

  .slide {
    flex: 0 0 50%;
    transition: transform 0.5sease -in-out;
    justify-content: space-around;
  }

  .heading-section {
    padding: 0 49px;
    text-align: start;
    color: white;
    margin-bottom: -11px;
  }

  .heading-section h1 {
    display: flex;
    font-size: 54px;
    color: white;
    font-weight: 800;
    line-height: 69px;
  }

  .heading-section p {
    font-size: 25px;
    color: white;
    line-height: 39px;
    font-weight: 500;
  }


  .slide img {
    cursor: pointer;
    object-fit: cover;
    width: 300px;
    display: block;
  }

  .community-section {
    padding: 60px 60px;
    text-align: center;
  }

  .community-header {
    max-width: 1100px;
    text-align: center;
  }

  .community-title {
    font-size: 48px;
  }

  .community-subtext {
    font-size: 26px;
    line-height: 34px;
  }

  .stats-grid {
    /* grid-template-columns: repeat(4, 1fr); */
    /* max-width: 100%; */
    /* gap: 40px; */
  }

  .prev,
  .next {
    display: flow;
    align-items: flex-start;
  }

  .controls {
    position: relative;
    bottom: 3px;
    justify-content: end;
    display: flex;
    gap: 54px;
    padding: 6px 37px;
  }


  .prev,
  .next {
    color: black;
    border: none;
    height: 86px;
    width: 86px;
    cursor: pointer;
    border-radius: 25%;
    font-size: 59px;
  }

  .stat-card {
    padding: 35px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stat-label {
    font-size: 22px;
  }


  .sticky-section1 {
    width: 80%;
    height: 100px;
  }

  .sticky-section1.show {
    height: 100px;
  }

  .sticky-section1 img {
    height: 80px;
    width: 100%;

    object-fit: cover;

  }

  /* Hero Section */
  #hero1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 130px 7px 0px 24px;
    height: auto;
    position: relative;
    gap: 0px;
  }

  /* Left Content */
  .appd1 {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .appd1 h1 {
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 20px;
  }

  .appd1 p {
    font-size: 24px;
    margin-bottom: 25px;
  }

  /* Download Buttons */
  .fanoz-download-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
  }

  /* Right Content (App Image) */
  .appd2 {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align image to the bottom */
    height: 100%;
    position: relative;
  }

  .appd2 .hero1appp2img {
    width: 298px;
    height: auto;
  }

  /* Hide additional image */
  .appd3 {
    display: none;
  }

  /* Card Container */
  .card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
    gap: 30px;
    padding: 30px;
    width: 90%;
    margin: 0 auto;
  }

  .c-card {
    width: 100%;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }

  .c-card:hover {
    transform: translateY(-8px);
  }

  .c-card-dup {
    width: 100%;
  }

  .c-card-dup .para-dup {
    font-size: 20px;
    color: #0d264b;
    /* Dark blue */
    font-weight: 600;
    line-height: 1.6;
  }

  /* Highlighted text */
  .highlight-red {
    color: #d92041;
    /* Red color for emphasis */
    font-weight: bold;
    font-size: 26px;
  }
}


/* **Monitors & Large Screens (1440px and up) - 4 Columns** */
@media (min-width: 1440px) {

  
  .card-container {
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
    gap: 25px;
  }

  .c-card .c-card-dup {
    width: 100%;
  }

  .c-card-dup .para-dup {
    font-size: 18px;
    color: #0d264b;
    /* Dark blue */
    font-weight: 500;
    line-height: 1.6;
  }

  /* Highlighted text */
  .highlight-red {
    color: #d92041;
    /* Red color for emphasis */
    font-weight: bold;
    font-size: 38px;

  }
}





@media (min-width: 768px) and (max-width: 1024px) {

  .fanoz-footer-top {
    flex-direction: row;
    align-items: center;
    text-align: center;
    padding: 0 23px;
  }

  .fanoz-footer-right {
    justify-content: center;
    display: block;
    width: 261px;
    position: relative;
    top: 25px;
    justify-content: start;
    text-align: left;
  }

  .fanoz-logo img {
    width: 130px;
  }

  .fanoz-footer-links {
    padding-top: 10px;
  }

  .fanoz-download-section {
    text-align: center;
    padding: 50px 40px;
  }

  .fanoz-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
  }

  .fanoz-heading {
    font-size: 42px;
    line-height: 50px;
  }

  .fanoz-phone-images {
            display: flex;
            width: 66%;
            height: auto;
            object-fit: cover;
  }

  .fanoz-phone-image {
    width: 350px;
    height: auto;
  }

  .fanoz-download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .fanoz-store-button {
    width: 180px;
    height: auto;
  }

  .slide {
    position: relative;
    flex: 0 0 39%;
    transition: transform 0.5sease-in-out;
    display: flex;
    justify-content: center;
  }

  .heading-section {
    padding: 0 49px;
    text-align: start;
    color: white;
    margin-bottom: -11px;
  }

  .heading-section h1 {
    display: flex;
    font-size: 54px;
    color: white;
    font-weight: 800;
    line-height: 69px;
  }

  .heading-section p {
    font-size: 25px;
    color: white;
    line-height: 39px;
    font-weight: 500;
  }

  .card-container {
    padding: 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
  }

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

  .c-text h2 {
    font-size: 24px;
  }

  .c-text p {
    font-size: 18px;
  }

  .sliding-sec {
    padding: 60px 60px;
  }

  .heading-section h1 {
    font-size: 48px;
  }

  .heading-section p {
    font-size: 24px;
    line-height: 32px;
  }

  #hero1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 70px 0px 0px 0px;
  }

  .appd1 {
    width: 100%;
    text-align: center;
    padding: 30px;
  }

  .appd1 h1 {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 15px;
  }

  .appd1 p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .fanoz-download-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .fanoz-store-button {
    width: 200px;
    height: auto;
  }

  .appd2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .appd2 .hero1appp2img {
    width: 350px;
    height: auto;
  }

  .appd3 {
    display: flex;
    width: 110%;
    object-fit: cover;
    z-index: 2;
    position: relative;
    bottom: 0;
}


  .community-section {
    padding: 50px 40px;
  }

  .stat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 259px;
    justify-content: flex-start;
  }

  .community-header {
    padding: 0 20px;
    text-align: center;
  }

  .community-title {
    font-size: 42px;
  }

  .community-subtext {
    font-size: 22px;
    line-height: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    gap: 30px;
    justify-content: center;
  }

  .stat-card {
    padding: 30px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 20px;
  }

}


@media (min-width: 1025px) and (max-width: 4000px) {
  .fanoz-download-section {
    overflow: hidden;
    width: 100%;
    position: relative;
    background: url(./..//img/app-detailsimgs//bluebg.svg) no-repeat center center / cover;
    text-align: left;
    padding: 10px 40px;
    color: #FFFFFF;
  }
  .btnssectionpara {
    text-align: left;
    padding: 3px 0 0 11%;
    top: 12x;
    font-weight: 400;
    position: relative;
    z-index: 998;
    color: #FFFFFF;
    opacity: 100%;
    font-size: 26px;
}
  .fanoz-download-buttons .btnsubpara {
    font-size: 15px;
    display: flex;
    padding: 0 0 0 3px;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -24%;
    z-index: 999;
    color: #FFFFFF;
    opacity: 100%;
}

 

  .fanoz-content-wrapper {
    width: 100%;
    margin: 0 auto;
  }

  .fanoz-heading {
    font-size: 80px;
    line-height: 98px;

  }

  .fanoz-phone-image {
    display: flex;
    width: 80%;
    height: auto;
    object-fit: cover;
  }

  .fanoz-phone-images {
    position: absolute;
    top: 0;
    right: 1px;
    height: auto;
    width: 60%;
    object-fit: cover;
    display: flex;
    justify-content: right;
    gap: 20px;
    margin-bottom: 20px;
  }

  .dawnload-nowtext {
    padding-top: 29px;
    display: flex;
    justify-content: center;
    width: 100%;
    font-weight: 600;
    font-size: 39px;
    line-height: 45px;
  }

  .stat-header {
    height: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 259px;
    justify-content: flex-start;
  }

  .fanoz-registration-container {
    padding-top: 40px;
  }

  .fanoz-registration-text {
    width: 613px;
    height: auto;
    margin-bottom: 4px;
  }

  .fanoz-download-buttons {
    gap: 30px;
  }

  .fanoz-store-button {
    width: 316px;
    height: auto;

  }

  .slide {
    flex: 0 0 50%;
    transition: transform 0.5sease -in-out;
    justify-content: space-around;
  }

  .heading-section {
    padding: 0 49px;
    text-align: start;
    color: white;
    margin-bottom: -11px;
  }

  .heading-section h1 {
    display: flex;
    font-size: 54px;
    color: white;
    font-weight: 800;
    line-height: 69px;
  }

  .heading-section p {
    font-size: 25px;
    color: white;
    line-height: 39px;
    font-weight: 500;
  }


  .slide img {
    cursor: pointer;
    object-fit: cover;
    width: 300px;
    display: block;
  }

  .community-section {
    padding: 60px 60px;
    text-align: center;
  }

  .community-header {
    max-width: 1100px;
    text-align: center;
  }

  .community-title {
    font-size: 48px;
  }

  .community-subtext {
    font-size: 26px;
    line-height: 34px;
  }

  .stats-grid {
    /* grid-template-columns: repeat(4, 1fr); */
    /* max-width: 100%; */
    /* gap: 40px; */
  }

  .prev,
  .next {
    display: flow;
    align-items: flex-start;
  }

  .controls {
    position: relative;
    bottom: 3px;
    justify-content: end;
    display: flex;
    gap: 54px;
    padding: 6px 37px;
  }


  .prev,
  .next {
    color: black;
    border: none;
    height: 86px;
    width: 86px;
    cursor: pointer;
    border-radius: 25%;
    font-size: 59px;
  }

  .stat-card {
    padding: 35px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stat-label {
    font-size: 22px;
  }


  .sticky-section1 {
    width: 80%;
    height: 100px;
  }

  .sticky-section1.show {
    height: 100px;
  }

  .sticky-section1 img {
    height: 80px;
    width: 100%;

    object-fit: cover;

  }

  /* Hero Section */
  #hero1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 130px 7px 0px 24px;
    height: auto;
    position: relative;
    gap: 0px;
  }

  /* Left Content */
  .appd1 {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .appd1 h1 {
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 20px;
  }

  .appd1 p {
    padding: 14px 0px 30px 2px;
    font-size: 24px;
  }

  .androidtoptext {
    display: flex;
    position: relative;
    top: 31px;
    padding: 0 0px 0 1%;

    font-size: 14px;
  }

  .downloadapptext2 {
    font-size: 23px;
  }

  .androidtoptext2 {
    display: flex;
    position: relative;
    font-size: 14px;
    padding: 39px 0px 2px 24%;
  }

  /* Download Buttons */
  .fanoz-download-buttons {
    flex-direction: row;
    justify-content: left;
    gap: 40px;
    margin-top: 48px;
}
  .btnssectionpara2{
    font-size: 32px;
   padding: 0 0 0 10%;
  
  }

  /* Right Content (App Image) */
  .appd2 {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align image to the bottom */
    height: 100%;
    position: relative;
  }

  .appd2 .hero1appp2img {
    width: 298px;
    height: auto;
  }

  /* Hide additional image */
  .appd3 {
    display: none;
  }

  /* Card Container */
  .card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
    gap: 30px;
    padding: 30px;
    width: 90%;
    margin: 0 auto;
  }

  .c-card {
    width: 100%;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }

  .c-card:hover {
    transform: translateY(-8px);
  }

  .c-card-dup {
    width: 100%;
  }

  .c-card-dup .para-dup {
    font-size: 20px;
    color: #0d264b;
    /* Dark blue */
    font-weight: 600;
    line-height: 1.6;
  }

  /* Highlighted text */
  .highlight-red {
    color: #d92041;
    /* Red color for emphasis */
    font-weight: bold;
    font-size: 26px;
  }
}


.sliding-sec {
  text-align: center;
  color: white;
  padding: 20px 10px;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Swiper settings for partial slide preview */
.swiper-container {
  width: 100%;
  padding-left: 0;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex-shrink: 0;
  padding: 15px 10% 0 0;
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  overflow: hidden;
}
.swiper-slide2{
  flex-shrink: 0;
  padding: 15px 10% 0 0;
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
  overflow: hidden;

}

/* Ensure images have proper height and width */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Controls */
.controls {
  display: flex;
  padding: 0px 3% 0 0;
  justify-content: right;
  margin-top: -10px;
}

.controls button {
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 2px;
}

.controls img {
  width: 40px;
  height: 40px;
}












.game-demo-btn {
  display: flex;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  align-items: center;
  border-radius: 7px;
  padding: 8px 10px;
  background-color: red;
  color: white;
}

.game-demo-btn i {
  padding: 2.5px 0 0 10px;
}




/* Desktop and Laptop (Above 1024px) */
@media (min-width: 1025px) {
  .heading-section h1 {
    font-size: 48px;
  }

  .slider-container {
    width: 90%;
    padding: 20px 40px;
    display: flex;
  }

  .swiper-slide {
    display: contents;
  }
  .swiper-slide2 {
    display: contents;
  }

  .heading-section p {
    font-size: 20px;
  }
  

  .watch-demo img {
    width: 28%;
    padding: 29px 0px 1px 2px;
}


  .swiper-slide img {
    width: 26%;
    height: 100%;
    object-fit: cover;
  }
  .swiper-slide2 img {
    width: 26%;
    height: 100%;
    object-fit: cover;
  }

  .controls img {
    display: none;
  }

  .controls {
    display: none;
  }
}

/* Tablet (768px to 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {

  .btnsection2 {
    display: block;
    position: absolute;
    justify-content: center;
    bottom: 0;
    padding: 6px;
    width: 100%;
  }

  .fanoz-registration-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
    bottom: 58px;
    position: relative;
    z-index: 1;
  }

  .ar-bluecoverimg {
    position: absolute;
    display: flex;
    margin: 0 -42px;
    width: 108%;
    opacity: 99%;
    bottom: -44px;
}
.fanoz-registration-container{
  width: 100%;
  display: flex;
justify-content: center;
}
.fanoz-registration-text {
  width: 350px;
  height: auto;
  margin-bottom: 37px;
}

.fanoz-download-buttons{
  width: 100%;
  justify-content: center;
  display: flex;
}
  .btnssectionpara {
    padding: 2px;
    top: 4px;
    font-weight: 600;
    position: relative;
    z-index: 999;
    color: #FFFFFF;
    opacity: 100%;
    font-size: 18px;
  }

  .fanoz-download-buttons .btnsubpara {
    font-size: 10px;
    display: flex;
    padding: 0 0 0 3px;
    text-align: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -5px;
    z-index: 999;
    color: #FFFFFF;
    opacity: 100%;
  }

  .sliding-sec {
    padding: 20px 13px;
  }

  .heading-section {
    text-align: center;
  }

  .heading-section h1 {
    font-size: 48px;
  }

  .heading-section p {
    font-size: 24px;
    line-height: 32px;
  }

  .slider-container {
    width: 100%;
    margin: 0 auto;
  }

  #hero1 {
    overflow: hidden;
    background: url("..//img/appdetailshero1bg.png") top center;
    height: auto;
    width: 100%;
    display: block;
    justify-content: center;
    position: relative;
  }

  .appd1 {
    flex: 1;
    padding: 0px 0px 96px 0;
  }

  .appd1 h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-align: start;
    line-height: 60px;
    padding: 4px 0;
    margin: 12px 10px;
  }

  .appd1 p {
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    color: white;
    overflow: hidden;
    margin: 0 10px;
  }

  .appd2 {
    width: 100%;
    display: block;
    justify-content: center;
    align-items: center;
  }

  .appd2 .hero1appp2img {
    width: 284px;
    object-fit: contain;
    justify-content: center;
    left: 10px;
    bottom: -350px;
    align-self: center;
    position: relative;
    display: flex
;
}

  .arimg {
    display: flex
    ;
        top: 108px;
        width: 137%;
        padding: 0;
        justify-content: center;
        align-items: center;
        position: absolute;
  }
  .community-title {
    font-size: 36px;
  }

  .community-subtext {
    font-size: 20px;
    line-height: 28px;
  }

  .stat-number {
    font-size: 24px;
  }

  .highlight-para {
    font-size: 18px;
  }

  .testimonial-card {
    width: 320px;
    height: 400px;
  }

  .user-name {
    font-size: 14px;
  }

  .user-subtext {
    font-size: 14px;
  }

  .fanoz-phone-images {
    display: table-cell;
    width: 100%;
  }

  .fanoz-heading {
    font-size: 36px;
    line-height: 44px;
  }

  .dawnload-nowtext {
    font-size: 20px;
  }

  .fanoz-store-button {
    font-size: 18px;
    height: 52px;
  }

  .fanoz-footer-heading {
    font-size: 18px;
  }

  .fanoz-footer-links li {
    font-size: 15px;
  }

  .fanoz-footer-links a {
    font-size: 14px;
  }

  .testimonial-head {
    font-size: 36px;
  }

  .testimonial-text {
    font-size: 18px;
    padding: 0 20px;

  }

  .user-info {
    width: 100%;
    justify-content: start;
    display: flex;
    gap: 10px;
    padding: 0 0 6px 18px;
    position: relative;
    align-items: start;
    justify-content: start;
}


  .heading-section h1 {
    font-size: 40px;
  }

  .heading-section p {
    font-size: 18px;
  }

  .watch-demo img {
    width: 110px;
  }


  .swiper-slide img {
    width: 35%;
    height: 100%;
    object-fit: cover;
  }
.swiper-slide2 img {
    width: 35%;
    height: 100%;
    object-fit: cover;
  }
  .slider-container {
    width: 90%;
    padding: 20px 40px;
    display: flex;
  }
.swiper-slide2{
  display: contents
}
  .swiper-slide {
    display: contents;
  }

  .controls img {
    width: 32px;
    height: 32px;
  }
}


.btnsection{
  width: 100%;
  display: block;
  padding: 0 4px;
position: absolute;
justify-content: center;
bottom: -13px;
padding: 0 12px;
}

/* .btnsection p{
  top: 1px;
  position: relative;
  z-index: 999;
  color: #FFFFFF;
  opacity: 100%;
  font-size: 17px;
} */






.slider-container{
  cursor: pointer;
}