@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
  scroll-behavior: smooth;
  --scroll-progress: 0;
  background: white !important;
  color: #111 !important;
}

body {
  margin: 0;
  /* padding-top: 140px; Adjust based on header + announcement bar height */
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  /* Ultra-smooth scrolling optimizations */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
  scroll-behavior: smooth;
}
video {
    border-radius: 10px;
    box-shadow: 2px 2px 5px #000000;
}
.page-main-content {
  margin-top: 50px;
  padding: 100px;
}

.announcement-bar {
  background: #fff !important;
  color: #111 !important;
  text-align: center;
  padding: 10px 15px;
  font-size: 14px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  width: 100%;
  transition: transform 0.3s ease;
  transform: scale(1.1);
}

.announcement-bar a {
  color: #00b3ff;
  text-decoration: none;
  margin-left: 5px;
  font-weight: bold;
}
.headtst{
  color: black;
  font-size: 18px ;
  text-decoration: none;
  border-radius: 5px;
  padding: 10px 24px;
  font-weight: 700;
  /* border: 2px dotted black; */
 
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px 5px;
  position: fixed;
  top: 0px; /* Position below announcement bar */
  left: 0;
  right: 0;
  z-index: 1000;
  /* background: linear-gradient(90deg, #cbf4f7, #f4fafe); */
  backdrop-filter: blur(5px);
  /* box-shadow: 0 2px 20px rgba(0,0,0,0.1); */
  transition: all 0.3s ease;
}

/* Scrolled header state */
header.scrolled {
  top: 0;
  background: rgba(203, 244, 247, 0.95);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
  padding: 15px 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 70px;
}

/* Logo adjustments for scrolled state */
header.scrolled .logo img {
  width: 120px; /* Slightly smaller logo when scrolled */
  transition: width 0.3s ease;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
}

.contact-btn {
  background: #111 !important;
  color: #fff !important;
  border: none;
  border-radius: 5px;
  padding: 10px 24px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.contact-btn:hover {
  background: #333 !important;
  color: #fff !important;
}

.hero {
  text-align: center;
  padding: 150px 20px;
  /* background-image: url(/media/about/Untitled\ design.png); */
  background: linear-gradient(to bottom, rgba(103, 89, 89, 0.679) , rgba(255, 255, 255, 0.323)), 
  url(/media/about/Untitled\ design.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.hero h1 {
  font-size: 5rem;
  font-weight: 700;
  max-width: 1000px;
  margin: 0 auto 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #222;
  max-width: 600px;
  font-weight: 500;
  margin: 0 auto 35px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons button {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.demo-btn {
  background: #111 !important;
  color: #fff !important;
  padding: 10px 24px;
  border: none;
  border-radius: 5px;
  box-shadow: 1px 1px 1px #2d7fe8;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
}
.demo-btn:hover {
  background: #333 !important;
  color: #fff !important;
}

.whatsapp-btn {
  background: #25D366 !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  box-shadow: 1px 1px 1px #2de83d;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background 0.2s;
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 10px;
}


.whatsapp-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments for sticky header */
@media (max-width: 768px) {
  header {
    padding: 10px 20px;
    top: 0px;
  }
  
  header.scrolled {
    padding: 10px 20px;
    top: 0;
  }
  
  header.scrolled .logo img {
    width: 100px;
  }
  

  .hero h1 {
    font-size: 2rem;
  }

  header {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }

  .header-links {
    align-self: flex-end;
  }
  .brand-logos h2 {
    font-size: 1.8rem !important;
    margin-bottom: 40px;
    color: #000000;
    font-weight: 700;
}
.page-main-content {
  margin-top: 100px !important;
  padding: 10px ;
}

}

.brand-logos {
  padding: 60px 0;
  text-align: center;
  overflow-x: hidden;
}

.brand-logos h2 {
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: #000000;
    font-weight: 700;
}

.logos-slider {
  max-width: 1200px;
  margin: 0 auto;
}

.logos-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.logos-track img {
    max-width: 100px;
    margin: 0 auto;
  
   
    transition: all 0.3s ease;
    object-fit: contain;
    /* height: 50px; */
}

.logos-track img:hover {
 
  opacity: 1;
  transform: scale(1.1);
}

.marquee-duplicates {
  display: none;
}

@media (max-width: 768px) {
  .logos-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .logos-track {
    display: flex;
    width: calc(150px * 28); /* 14 logos * 2 sets */
    animation: scroll-logos 35s linear infinite;
    grid-template-columns: none; /* Override grid */
  }
  .logos-track .marquee-duplicates {
    display: contents;
  }
  .logos-track img {
    width: 120px;
    margin: 0 15px;
  }
  .stats-container{
    gap:10px !important;
  }
  .stats-right{
    gap: 10px !important;
  }
  .feature-image{
    padding: 0 0 50px !important;
  }
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-150px * 14)); /* Move one set of logos */
  }
}

.stats-section {
    padding: 80px 20px 40px;
   
}

.stats-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 60px;
  flex-wrap: wrap;
}

.stats-left {
  flex: 1 1 400px;
}

.stats-left h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 20px;
  font-weight: 600;
}

.stats-left p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}

.stats-right {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  align-items: center;
}

.stat h3 {
  font-size: 2.8rem;
  /* color: #00b3a7; */
  margin-bottom: 5px;
  font-weight: 700;
}

.stat p {
  font-size: 0.95rem;
  color: #333;
}

@media (max-width: 768px) {
  .stats-left h2 {
    font-size: 1.6rem;
  }

  .stat h3 {
    font-size: 1.4rem;
  }
}

.feature-image {
  padding: 60px 50px;
  background: #fff !important;
  text-align: center;
}

.feature-image img {
  width: 100%;
  height: auto;
}

.discover-section {
  background: #fff !important;
  padding: 80px 20px;
}

.discover-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.discover-text {
  flex: 1 1 400px;
}

.discover-text h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 25px;
  font-weight: 600;
}

.discover-text ul {
  list-style: none;
  padding-left: 0;
  line-height: 2.2;
  font-size: 1.05rem;
  color: #222;
}

.discover-text ul li::before {
  content: '✔';
  color: #00b875;
  font-weight: bold;
  margin-right: 8px;
}

.discover-image {
  flex: 1 1 500px;
  text-align: center;
}

.discover-image img {
  max-width: 100%;
  border-radius: 10px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); */
}

@media (max-width: 768px) {
  .discover-container {
    flex-direction: column;
    text-align: center;
  }

  .discover-text h2 {
    font-size: 1.6rem;
  }

  .discover-text ul {
    text-align: left;
    display: inline-block;
  }
}

.insights-section {
  background: #fff !important;
  padding: 80px 20px;
}

.insights-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  flex-wrap: wrap;
}

.insights-left {
  flex: 1 1 500px;
  text-align: center;
}

.insights-left img {
  max-width: 100%;
  border-radius: 10px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); */
}

.insights-right {
  flex: 1 1 400px;
}

.insights-right h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 30px;
  font-weight: 600;
}

.insights-right ul {
  list-style: none;
  padding-left: 0;
  line-height: 2.2;
  font-size: 1.05rem;
  color: #222;
}

.insights-right ul li::before {
  content: '✔';
  color: #00b875;
  font-weight: bold;
  margin-right: 8px;
}

.emoji {
  font-size: 1.5rem;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .insights-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .insights-right h2 {
    font-size: 1.6rem;
  }

  .insights-right ul {
    text-align: left;
    display: inline-block;
  }
}

.break-section {
  background: #000000 !important;
  padding: 80px 20px;
  text-align: center;
}

.break-container {
  max-width: 1000px;
  margin: auto;
}

.break-container h2 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.5;
  margin-block-start:0;
}

.break-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px 30px;
  justify-items: center;
}

.break-grid span {
  font-size: 1.1rem;
  color: #ffffff;
  text-decoration: line-through;
  text-decoration-color: #ff0000;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .break-container h2 {
    font-size: 1.8rem;
  }

  .break-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .break-grid span {
    font-size: 1rem;
  }
  .insights-section{
    padding: 0 !important;
  }
  .insights-left{
    flex: unset;
  }
  .insights-right{
    flex: unset;
  }
  .testimonial-heading h2{
    font-size: 1.8rem !important;
  }
}

@media (max-width: 480px) {
  .break-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .discover-text{
    flex: unset;
  }
  .discover-image{
    flex: unset;
  }
}

.investors-section {
  background: #fff !important;
  padding: 80px 80px;
}

.investors-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  align-items: flex-start;
  justify-content: space-between;
}

.investors-text {
  flex: 1 1 400px;
}

.investors-text h2 {
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 20px;
}

.investors-text p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.investor-logos img {
  height: 40px;
  margin-right: 20px;
  vertical-align: middle;
}

.investors-grid {
  flex: 1 1 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.investor {
  text-align: center;
}

.investor img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eee;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  margin-bottom: 8px;
}

.investor p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #222;
}

@media (max-width: 768px) {
  .investors-container {
    flex-direction: column;
    align-items: center;
  }

  .investors-text {
    text-align: center;
  }

  .investor-logos {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
  .investors-grid{
    display: grid;
    grid-template-columns: 1fr 1fr  1fr 1fr;
    gap: 5px;
    justify-items: center;
    flex: unset;
    align-items: baseline;
  }
  .investors-section{
    padding: 20px;
  }
}

.featured-slider {
  background: #fff !important;
  padding: 60px 20px;
  text-align: center;
}

.featured-slider h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: #111;
  font-weight: 700;
}

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

.slide-track {
  display: flex;
  width: calc(200px * 16); /* total logo width * logo count */
  animation: scroll-left 40s linear infinite;
}

.slide-track img {
  width: 200px;
  height: auto;
  padding: 0 20px;
  object-fit: contain;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .slide-track img {
    width: 120px;
    padding: 0 15px;
  }

  .slide-track {
    width: calc(120px * 16);
    animation-duration: 50s;
  }

  .featured-slider h2 {
    font-size: 1.8rem;
  }
  .footer-cta h2{
    font-size: 1.8rem !important;
  }
  .footer-btn{
    display: none;
  }
}

.footer {
  background: #000000 !important;
  color: #ffffff !important;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.footer-cta h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.footer-btn {
  background: #ffffff !important;
  color: #000000 !important;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 60px auto 30px;
  gap: 30px;
  text-align: left;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col .collapsible {
  background: none;
  color: #fff;
  cursor: pointer;
  padding: 10px 0;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid #444;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.collapsible-icon {
  font-size: 1.5em;
  font-weight: 300;
  transition: transform 0.3s ease-in-out;
  line-height: 1;
}

.footer-col .collapsible.active .collapsible-icon {
  transform: rotate(45deg);
}

.footer-col .content {
    padding: 0;
    display: none;
    overflow: hidden;
}

.footer-col .content a {
  display: block;
  color: #ccc;
  font-size: 0.95rem;
  margin: 5px 0;
  text-decoration: none;
}

.footer-col .content a:hover {
  color: #fff;
}

.footer-logo {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.footer-logo img {
  width: 24px;
  height: 24px;
}

.footer-logo span {
  color: #111 !important;
}

.copyright {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #aaa;
}

@media (min-width: 769px) {
  .footer-col .collapsible {
    pointer-events: none;
    cursor: default;
    border-bottom: none;
  }

  .footer-col .collapsible-icon {
    display: none;
  }

  .footer-col .content {
    display: block;
  }
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
  }

  .footer-col .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .footer-col.active .content {
    max-height: 300px; /* enough space for content */
  }
  .footer-col {
    flex: 1 1 auto;
  }
}

/* our services */
.our-services-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 110px 50px 60px;
  gap: 60px;
  flex-wrap: wrap;
  /* background-color: rgb(255, 255, 255); */
  background: #ffffff;
/* background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgb(0 0 0 / 57%) 51%, rgba(255, 255, 255, 1) 100%); */
}

.services-left {
  flex: 1 1 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-left img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.services-right {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.section-title {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.service-item.show {
  opacity: 1;
  transform: translateY(0);
}

.service-icon {
  width: 65px;
  height: 65px;
  border: 1px solid #823aff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 40px;
  height: 40px;
  /* border: 1px solid blue; */
  padding: 25px;
  border-radius: 50%;
}

.service-text h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  color: rgb(0, 0, 0);
}

.service-text p {
  font-size: 12px;
  color: #000000;
  margin-top: 5px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .our-services-section {
    flex-direction: column;
    padding: 60px 20px;
  }

  .services-left,
  .services-right {
    flex: 1 1 100%;
  }

  .service-item {
    flex-direction: row;
  }
}

/* Ultra-smooth scrolling container */
.smooth-scroll-container {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Enhanced smooth transitions for all elements */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Remove image fade up, parallax, and animation styles */
.scroll-animate,
img.scroll-animate,
img.loaded {
  transition: none !important;
  transform: none !important;
  opacity: 1 !important;
}

img {
  transition: none !important;
  transform: none !important;
  opacity: 1 !important;
}

.brand-logos .logos-grid img,
.logos-grid img {
  transition: none !important;
  transform: none !important;
}

/* Enhanced brand logos animation */
.brand-logos .logos-grid img {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  backface-visibility: hidden;
}

.brand-logos .logos-grid img:hover {
  transform: scale(1.08) translateY(-10px) translateZ(0);
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.2); */
}

/* Ultra-smooth service items */
.service-item {
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.24);
  will-change: transform;
  backface-visibility: hidden;
}

.service-item:hover {
  /* transform: translateY(-2px) translateZ(0); */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 4px;
}

/* Enhanced scroll to top button */
.scroll-to-top {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.scroll-to-top:hover {
  transform: scale(1.15) translateZ(0) !important;
  background: #1ba8aa !important;
}

/* Ultra-smooth loading states */
img {
  opacity: 0;
  transform: translateY(30px) translateZ(0);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

img.loaded {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

/* Enhanced stats section animations */
.stat {
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  backface-visibility: hidden;
}

.stat:hover {
  transform: translateY(-8px) translateZ(0);
}

/* Ultra-smooth investor grid */
.investor {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  backface-visibility: hidden;
}

.investor:hover {
  transform: translateY(-8px) scale(1.03) translateZ(0);
}

.investor img {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  backface-visibility: hidden;
}

.investor:hover img {
  transform: scale(1.08) translateZ(0);
}

/* Smooth scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #22c1c3, #2d7fe8);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  z-index: 9999;
  transition: transform 0.1s linear;
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
  .scroll-animate,
  .section-animate {
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .logos-grid img:hover,
  .service-item:hover {
    transform: scale(1.03) translateY(-3px) translateZ(0);
  }
  .policy-content{
    padding: 20px 20px 40px !important;
  
  }
   .policy-container {
    max-width: 800px;
    padding: 0 10px !important;
    margin-top: 150px !important;
}
}
/* policy css */

.policy-container {
  max-width: 800px;

  padding: 0 150px;
  margin-top: 100px;
}

.policy-container h1,
.policy-content h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #111;
}

.policy-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #111;
}

.policy-content h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #222;
}

.policy-container p,
.policy-content p,
.policy-content ul {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.policy-content ul {
  padding-left: 25px;
  list-style-type: disc;
}

.policy-content ul li {
  margin-bottom: 10px;
}

.footer-social-icons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 40px;
  height: 40px; */
  border-radius: 50%;
  /* background: #222; */
  color: #fff;
  /* transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s, color 0.3s; */
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.footer-social-icons .social-icon:hover,
.footer-social-icons .animated-icon:hover {
  /* transform: scale(1.18) translateY(-4px); */
  /* background: #22c1c3; */
  color: #fff;
}

.footer-social-icons .social-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* Inputs and textarea */
input, textarea {
  background: #fff !important;
  color: #111 !important;
  border-bottom: 1px solid #ccc;
  border-radius: 0px;
}
input:focus, textarea:focus {
  border-color: #111;
  outline: none;
  border-bottom:1px solid black;
}

/* Social icons background for contrast */
.footer-social-icons .social-icon {
  background: #111 !important;
  color: #fff !important;
}
.footer-social-icons .social-icon:hover {
  /* background: #25D366 !important; */
  color: #fff !important;
}
.ftlogo{
  width: 100px;
}
.social-icon img{
  width: 20px;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal ;
}


/* testimonilas */

.testimonial-section {
  overflow: hidden;
  padding: 60px 20px;
  position: relative;
  /* background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1470&q=80') no-repeat center center;
  background-size: cover; */
}

.testimonial-heading h2{
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
  color: #111;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  gap: 40px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.testimonial-wrapper {
  display: flex;
  width: 200%;
}

.testimonial {
  /* background: black; */
  color: #000000;
  padding: 20px;
  border-radius: 10px;
  min-width: 450px;
  max-width: 350px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: 20px;
  border: 1px solid rgb(0, 0, 0);
  /* background-color: #000000; */
  /* object-fit: cover; */
  
}

.testimonial p {
  font-size: 0.95rem;
  margin-top: 30px;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #000000;
}

@media (max-width: 768px) {
  .testimonial-track {
    animation-duration: 25s;
    gap: 20px;
  }

  .testimonial {
    min-width: 260px;
  }

  .testimonial-heading {
    font-size: 1.8rem;
  }
}

.slider-section {
  padding: 60px 0;
  text-align: center;
  /* background: #f0f4f8; */
}

.slider-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: #1a202c;
}

.swiper-container {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 220px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#videoSlider {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
}

#videoSlider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.video-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  /*box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);*/
  transition: transform 0.3s ease;
}

.swiper-slide-active .video-wrapper {
    transform: scale(1.05);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 14px;
  text-align: left;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  text-shadow: unset;
}

.video-info strong {
    font-size: 1.2rem;
}

.swiper-button-prev,
.swiper-button-next {
  color: #1a202c;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-pagination-bullet {
    background: #1a202c;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
  .logos-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .logos-track {
    display: flex;
    width: calc(150px * 28); /* 14 logos * 2 sets */
    animation: scroll-logos 35s linear infinite;
    grid-template-columns: none; /* Override grid */
  }
  .logos-track .marquee-duplicates {
    display: contents;
  }
  .logos-track img {
    width: 120px;
    margin: 0 15px;
  }
  
  .slider-heading {
    font-size: 2rem;
  }
  
  .swiper-slide {
    width: 200px;
    height: 420px;
  }
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-150px * 14)); /* Move one set of logos */
  }
}

/* Video play overlay styles */
.video-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.play-overlay:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-overlay svg {
  margin-left: 4px; /* Slight offset to center the play icon */
}

.clickable-video {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.clickable-video:hover {
  transform: scale(1.02);
}

/* Hide play overlay when video is playing */
.video-wrapper.playing .play-overlay {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .play-overlay {
    width: 30px;
    height: 30px;
  }
  
  .play-overlay svg {
    width: 20px;
    height: 20px;
  }
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
  overflow: hidden;
}

/* Thank You Page Styles */
.thank-you-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thank-you-content {
  max-width: 600px;
  text-align: center;
  background: white;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.thank-you-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #22c1c3, #fdbb2d);
}

.thank-you-icon {
  margin-bottom: 30px;
  animation: bounceIn 0.8s ease-out;
}

.thank-you-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #22c1c3;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.thank-you-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.thank-you-content p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.thank-you-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #22c1c3;
  color: white;
  border: 2px solid #22c1c3;
}

.btn-primary:hover {
  background: #1ba8aa;
  border-color: #1ba8aa;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 193, 195, 0.3);
}
.slide-track img.loaded {
    width: 100px;
}
.featured-slider .slide-track {
    gap: 40px;
}


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

    .slider-heading {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 12px;
      color: #1a202c;
    }

    .slider-subheading {
      color: #4a5568;
      font-size: 1rem;
      margin-bottom: 50px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .swiper-container {
      width: 100%;
      padding-top: 50px;
      padding-bottom: 50px;
    }

    .swiper-slide {
      background-position: center;
      background-size: cover;
      width: 220px;
      height: 480px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .video-wrapper {
      width: 100%;
      height: 100%;
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }
    
    .swiper-slide-active .video-wrapper {
        transform: scale(1.05);
    }

    .video-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .video-info {
      margin-top: 12px;
      font-size: 1.1rem;
      color: #1a202c;
      font-weight: bold;
      position: static;
      text-align: center;
      letter-spacing: 0.5px;
    }
    
    .video-info strong {
        font-size: 1.2rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
      color: #1a202c;
      font-weight: bold;
      top: 50%;
      transform: translateY(-50%);
    }

    @media (max-width: 768px) {
      .swiper-slide {
        width: 200px;
        height: 420px;
      }
      .slider-heading {
        font-size: 2rem;
      }
    }
    
    .swiper-pagination-bullet {
        background: #1a202c;
        opacity: 0.4;
    }
    
    .swiper-pagination-bullet-active {
        opacity: 1;
    }
.vid{
    padding: 0px 100px ;
}
    .video-card {
      background: none;
      border-radius: 0;
      box-shadow: none;
      padding: 0;
      min-width: 220px;
      text-align: center;
      flex-shrink: 0;
      border: none;
    }
    @media (max-width: 600px) {
      #videoSlider { padding: 10px 10px; gap: 10px !important; }
      .video-card { min-width: auto; }
      .video-card video { width: auto; height: 250px; }
      .vid{
    padding: 0px 10px ;
}
    }