@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

body {
  font-family: 'Cairo', sans-serif;
  background: url('/assets/background.png') no-repeat center top fixed;
  background-size: cover;
  color: #fff;
  overflow-x: hidden;
}

/* Header */
.navbar .container{
  background: #1c1e26;
  padding: 1rem 2rem;
  border-radius: 50px;
}
.navbar-brand {
  font-weight: 700;
  color: #6C63FF !important;
}
.nav-link {
  color: #fff !important;
  margin: 0 0.5rem;
}
.nav-link:hover {
  color: #6C63FF !important;
}
.left-nav li{
    border: 1px solid white;
    border-radius: 60px;
    background-color: transparent;
    color: #fff;
    margin-left: 10px;
    margin-right: 10px;
    
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 220px 15px 80px;
}
.hero h1 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 3rem;
}
.hero p {
  color: white;
  margin-bottom: 25px;
}
.hero .btn-primary {
     background: linear-gradient(228deg, #6815A3, #405FF2);
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: 600;
}

/* Brands Section */
.slider-container {
  background: rgba(255,255,255,0.05);
  padding: 20px 0;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px auto;
  max-width: 1200px;
  box-shadow: 0 0 30px rgba(64, 95, 242, 0.3), 0 0 60px rgba(64, 95, 242, 0.15);
  position: relative;
}

.slider-container-wrapper::before {
  content: '';
  position: absolute;
  background: #6240f21a;
  z-index: -1;
  filter: blur(20px);
  width: 82%;
  height: 50%;
  top: 45%;
  left: 8%;
  border-radius: 50% / 34%;
}

.logo-slider {
  position: relative;
  overflow: hidden;
  direction: ltr;
}

.slide-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  will-change: transform;
  gap: 30px;
  direction: ltr;
  justify-content: flex-start;
}

.slide {
  flex: 0 0 auto;
}

.slide img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  background: #0B0C1D;
  border-radius: 10px;
  padding: 10px;
  transition: transform 0.3s ease;
}

.slide img:hover {
  transform: scale(1.1);
  cursor: pointer;
}

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

.logo-slider:hover .slide-track {
  animation-play-state: paused;
}


/* Cards Section */
.section-title {
  text-align: center;
  font-weight: 700;
  margin: 80px 0 40px;
}
.product-card {
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
}
.product-card img {
  width: 100%;
  border-radius: 10px;
}
.product-card h5 {
  margin: 15px 0 10px;
  font-size: 1.1rem;
}

/* Supported Platforms */
.platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 80px 0;
  opacity: 0.9;
}
.platforms img {
  height: 35px;
}

/* Full-width Platforms Slider */
.supported-platforms {
  margin: 80px 0;
}
.platforms-slider {
  width: 100vw;
  overflow: hidden;
  direction: ltr;
  margin: 0 auto;
}
.platforms-track {
  display: flex;
  width: max-content;
  gap: 40px;
  align-items: center;
  will-change: transform;
  animation: scroll-platforms 35s linear infinite;
}
.platforms-track img {
  height: 35px;
  opacity: 0.9;
}
@keyframes scroll-platforms {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* App Section */
.app-section {
  text-align: center;
  padding: 80px 15px;
}



/* Features Section */
.features {
  padding: 80px 15px;
  text-align: center;
}
.feature-box {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.3s;
  height: 100%;
}
.feature-box:hover {
  background: rgba(255,255,255,0.1);
}
.feature-box img {
  /* width: 60px; */
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
  padding: 60px 15px;
  border-radius: 20px;

}
.testimonial {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
align-items: center;
background-color: #10122B;
border-radius: 20px;
border-left: 4px solid #121212b8;
border-top: 4px solid #121212b8;

}
.testimonial img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}
.testimonial p {
  font-size: 0.95rem;
  color: #ccc;
}

.testimonial-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 20px;
}
.testimonial-name img{
  width: 20px;
  height: 20px;
}
.testimonial-name h6{
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: right;
} 
/* FAQ */
.faq {
  padding: 80px 15px;
}
.accordion-button {
  background-color: #181A31 !important;
  color: #fff !important;
}
.accordion-body {
  /* background-color: #181A31;
  border-top: 1px white solid;
  border-radius: 20px;
margin-bottom: 20px;
margin-top: -14px; */
margin-bottom: 20px;
margin-top: -15px;


}

/* Footer */
footer {
  background: radial-gradient(circle, #405ff252 0%, #25378c26 100%);
  padding: 0px 15px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-top-right-radius: 110px;
  border-top-left-radius: 110px;
}
footer a {
  color: #6C63FF;
  text-decoration: none;
}
footer .main-footer{
  margin-block: 40px;
}
/**

/* Offer Card */
.offer-card {
  align-items: baseline;
}
.offer-card h4 a{
  text-decoration: none;
  color: #fff;
}
.offer-card h4 a img{
  width: 40px;
height: 40px;
background-color: white;
}
.buy-now-btn{
  background: #405FF2;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: 600;
}
.app-image{
  display: flex;
flex-direction: row-reverse;
justify-content: space-around;
align-items: center;
}
.mockup-text{
  display: flex;
  flex-direction: column;
}
.mockup-text h2{
  font-size: 48px
}
.mockup-text p{
  font-size: 24px;
}
.app-content{
  display: flex;
  flex-direction: column;
}
.accordion-item{
  width: 50%;
}
.accordion
{
  align-items: center;
  display: flex;
flex-direction: column;
}
.accordion-button::after {
filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(180deg) brightness(200%) contrast(100%);
margin-right: 10px;
}
.accordion-button
{
border-top-right-radius: 20px !important;
border-top-left-radius: 20px !important;

margin-bottom: 15px;
height: 80px;
}
.right-in-footer 
{
display: flex;
align-items: center;
justify-content: space-around;
flex-wrap: wrap;
}
.right-in-footer img{
max-width: 70%;
height: auto;
width: 100%;
}
.center-in-footer {
display: flex;
flex-direction: column;
text-align: center;
flex-wrap: wrap;
justify-content: flex-end;
align-content: space-around;
align-items: flex-start;
}

.center-in-footer ul {
list-style: none;
display: flex;
flex-direction: column;
gap: 1em;
max-width: 65%;
padding: 0;
margin: 0;
align-items: flex-start; 
}

.center-in-footer ul li {
text-align: right; 
width: 100%; 
}
.left-in-footer {
display: flex;
flex-direction: column;
gap: 1em;
}

.left-in-footer h2 {
margin-bottom: 1em;
text-align: right; 
}

.contact-item {
display: flex;
align-items: center;
gap: 10px;
justify-content: flex-start; 
}

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

.contact-item a {
color: white; 
text-decoration: none;
font-size: 16px;
}
.footer-divider {
height: 1px; 
width: 100%;
background-color: rgba(255, 255, 255, 0.15); 

}

.sub-footer {
background-color: transparent;
text-align: center;
padding: 10px 0;
font-size: 14px;
color: #ccc;
}
.sub-footer p{
text-align: right;
}
.sub-footer .container{
display: flex
;
justify-content: space-around;
}
