@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
    font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
}

body {
    /* background-color: #4a2a82;  */
    overflow-x: hidden;

} 


header {
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    padding: 10px;
     width: 100% ; 
    background-color: transparent;
     color: black; 
     height: 80px; 
     position: fixed;
     top: 0;
     z-index: 1000;
     transition: background-color 0.3s ease, color 0.3s ease;
    
}
  .scrolled {
  background-color: #aa76e6;
  color: black;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.navbar{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 97%;
  margin-top: 5px;
  color: black;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
}


.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    margin-left: 16rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: black;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .nav-links {
        margin-left: 2rem;
    
    }
    
    .nav-menu {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 100;
    }
    
    .navbar{
      justify-content: space-between;
      align-items: center;
      text-align: center;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 90vh;
        width: 75%;
        flex-direction: column;
        background: #9b53ed;
        color: #0000;
        padding-top: 50px;
        padding-bottom: 20px;
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        margin-left: 0;
        z-index: 100;
    }
    .nav-menu li a{
      color: white;
    }
    
     .nav-links.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 20px;
    }
    
    /* .cta-container {
        margin-top: 2rem;
    } */
    
    .nav-menu li {
        margin: 10px 0;
        justify-content: center;

    }
    
    /* Hamburger animation */
    .hamburger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .line2 {
        opacity: 0;
    }
    
    .hamburger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        margin-top: 0.5rem;
        background-color: #5d3a9e;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
}
/* End header */

.hero {
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    
    height: 120%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -10%;
}
  @keyframes scrollBackground{
    from{
      transform: translateY(0);
    }
    to{
      transform: translateY(-250px);
    }
  }
  .background-img{
     width: 100%; 
    height: 150%;
    position: absolute;
    background-image: url(bgimg1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    animation: scrollBackground 40s linear infinite;

  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.text-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
   margin-top: 20%; 

}
  
  .hero h3 {
    font-weight: 700;
    font-size: 35px;
    letter-spacing: 2px;
    color: white;
    font-style: italic;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 20px 0;
    text-transform: uppercase;
    color: white;
  }
  
  /* .hero h1 span.highlight {
    background: linear-gradient(to right, #df62b9, #951571);
    color: white;
    padding: 0 10px;
    border-radius: 4px;
  } */
  
  .hero p {
    max-width: 600px;
    margin: 20px auto;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
  }
  
  .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .btn {
    position: relative;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: 2px solid #ffff;
    border-radius: 40px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
  }
  
  .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2),  rgba(255, 255, 255, 0.4));
    transition: left 0.4s ease;
    z-index: -1;
  }
  
  .btn:hover::before {
    left: 0;
  }
  
  .btn.primary {
    background-color: #c9a752;
    color: white;
  }
  
  .btn.secondary {
    background-color: #c9a752;
    border: 2px solid #fff;
  }
  
  .features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 60px;
    margin-top: 60px;
    background: rgba(50, 48, 48, 0.5);
    padding: 20px 30px;
    border-radius: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;

  }
  
  .feature {
    text-align: left;
    flex-wrap: wrap;
  }
  
  .feature .rating {
    color: #ff00a6;
    font-size: 20px;
     margin-bottom: 10px; 
  }
  
  .feature h2 {
    font-size: 1.8rem;
    margin: 5px 0;
    color: white;
  }
  
  .feature p {
    color: #fff;
    font-size: 0.95rem;
    margin-top: 2px;
  }
  @media(max-width:500px){
    .features{
      flex-wrap: wrap;
      gap: 20px;
    }
  }
/* END FIRST SECTION */

/* START ABOUT SECTION */

.about-section {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  padding-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  background: white;

}

.about-left {
  max-width: 50%;
}

.about-left h2 {
  color: #9b53ed;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 10px;
}

.about-left h1 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  color: black;
}

.about-left h1 span.highlight {
  background: #9b53ed;
  color: white;
  padding: 0 10px;
  border-radius: 5px;
}

.about-left p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 90%;
  margin-bottom: 20px;
  color: black;
}

.properties {
  margin-bottom: 30px;
}

.properties li {
  list-style: none;
  margin-bottom: 12px;
  font-size: 1rem;
  position: relative;
  padding-left: 30px;
  color: black;
}

.properties li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: black;
  font-size: 1.2rem;
}

.cta-button{
  position: relative;
    padding: 14px ;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: 2px solid #ffff;
    background-color: #9b53ed;
    border-radius: 40px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}
.cta-button::before{
  content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2),  rgba(255, 255, 255, 0.4));
    transition: left 0.4s ease;
    z-index: -1;
}
.cta-button:hover::before{
  left: 0;
}



.cta-button svg {
  width: 16px;
  height: 16px;
}

.about-right {
  position: relative;
  max-width: 45%;
}

.video-box {
  position: relative;
  border: 6px solid #9b53ed;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;

 
  /* margin-left: 40px; */
}
.video-box img {
  width: 100%;
  display: block;
  
}

.play-button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.5s infinite ease-in-out;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(161, 85, 249, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(161, 85, 249, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(161, 85, 249, 0);
  }
}
.play-button:hover{
  background-color: #edc1e3;
}

.play-button::before {
  content: '▶';
  color: #a155f9;
  font-size: 20px;
  padding-left: 3px;
}

@media (max-width: 991px) {
  .about-section {
    flex-direction: column;
  }
  .about-left, .about-right {
    max-width: 100%;
  }
  .about-left {
    margin-bottom: 40px;
  }
}
/* END SECTION */

/* COUNTER SECTION */

.container1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1500px;
  margin:  auto;
  align-items: center;
  padding-top: 50px;
  position: relative;
  padding: 20px;
}

.left {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.left .img1{
  margin-left: -80px;
}
.left .img2{
  margin-left: 180px;
}

.left img {
  width: 350px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin: 10px 0;
}

 .connector {
  width: 2px;
  height: 25px;
  border-left: 2px dashed #ccc;
  position: absolute;
  bottom: 270px;
  left: 60%;
  transform: translateX(-50%);
  z-index: 0;
} 

.play-button {
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}


.right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.stat-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.6);
}

.stat-box i {
  font-size: 32px;
  color: white;
  margin-bottom: 10px;
  display: block;
}

.stat-number {
  font-size: 28px;
  font-weight: bold;
  color: white;
}

.stat-label {
  font-size: 14px;
  color: black;
}

@media (max-width: 768px) {
  .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .right {
    grid-template-columns: 1fr 1fr;
  }

  .connector {
    display: none;
  }
  /* .left  {
    width: 30%;
  }  */
}
@media (max-width: 480px) {
  .right {
    grid-template-columns: 1fr;
  }
  .left img{
    width: 280px;
    height: 160px;
  }
  .left .img1{
    margin-left: 0;
  }
  .left .img2{
    margin-left: 0;
  }
}
/* END COUNTER SECTION */

/* SERVICE-SECTION */
.ser{
  background-color: white;
  height: 150px;
}
.services-section {
  /* max-width: 1500px; */
  /* margin: auto; */
  padding: 30px 20px;
  background: white;
}

.services-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.services-header-left h2{
  color: #9b53ed;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 10px;
}
.services-header-left h1 {
  font-size: 2.8rem;
  margin: 0;
  font-weight: 600;
  color: black;
}

.highlight {
  background: #9b53ed;
  padding: 5px 15px;
  border-radius: 5px;
  color: white;
}

.services-header-right {
  max-width: 500px;
  font-size: 16px;
  line-height: 1.7;
  color: black;
  text-align: end;
}

 .explore-btn {
  margin-top: 15px;
  display: inline-flex;
  text-decoration: none;
  position: relative;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: 2px solid #ffff;
   background-color: #9b53ed;
    border-radius: 40px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
 
}
.explore-btn::before{
  content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.2),  rgba(255, 255, 255, 0.4));
    transition: left 0.4s ease;
    z-index: -1;
}
.explore-btn:hover::before{
  left: 0;
}

.explore-btn i {
  margin-left: 10px;
  margin-top: 5px;
} 

.service-card {
  display: flex;
  margin-top: 60px;
  border: 1px solid #bcd2f0;
  background:#9b53ed ;
  border-radius: 15px;
  /* overflow: hidden; */
  flex-wrap: wrap;
  position: sticky;
  top: 50px;
   z-index: 10;
  transition: transform 0.3s ease-out;
}

.card-left, .card-right {
  flex: 1; 
  min-width: 300px;
   padding: 10px; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.icon-bubble {
  background-color:#c9a853;
  color:  #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: pulse1 1.5s infinite ease-in-out;
}
.icon-bubble:hover{
  background-color: white;
  color: #a155f9;
  border: 1px solid #9b53ed;
}
@keyframes pulse1 {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 249, 252, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(161, 85, 249, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(161, 85, 249, 0);
  }
}

.card-left h3 {
  font-size: 30px;
  margin-bottom: 15px;
  color: white;
}

.card-left p {
  font-size: 16px;
  line-height: 1.6;
  color: #f5eded;
}

.feature-badges {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.feature-badges span {
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  color: white;
  display: inline-block;
}
.feature-badges span:hover{
  background-color: #9b53ed;
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(102, 57, 201, 0.4);
}

.card-right {
  position: relative;
  padding: 10px;
}
.card-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.overlay-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #c9a853;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.overlay-icon:hover {
  background-color: white;
  color: #a64eff;
}

@media (max-width: 768px) {
  .services-header-left h2 {
    font-size: 32px;
  }
  
  .service-card{
     position: relative; 
    margin-top: 20px;
    
  }
  .services-header-right{
    text-align: start;
  }
}
/* END SERVICE SECTION */

/* EXPERT TEAM SECTION */

.expert{
  background-color: white;
  height: 70px;
}
.team-section {
  /* max-width: 1500px; */
  /* margin: auto ; */
  padding: 40px 20px;
  padding-top: 50px;
}

.header {
  text-align: left;
  margin-bottom: 50px;
  /* display: flex; */
}

.header h2 {
  font-size: 2rem;
  color: #9b53ed;
  font-weight: 500;
}

.header h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 10px;
  color: black;
}

.gradient-text {
  background-color: #9b53ed;
    padding: 5px 15px;
    border-radius: 5px;
    color: white;
}

.intro {
  font-size: 16px;
  max-width: 600px;
  margin: 20px 0;
  line-height: 1.6;
  color: black;
}



.team-grid {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.card {
  
  background-color: #9b53ed;
  border: 4px solid white;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
  max-width: 450px;
  animation: pulse1 1.5s infinite ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  border: 4px solid #8e3ffd;
  
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.info {
  padding: 20px;
}

.info h3 {
  margin: 10px 0 5px;
  font-size: 22px;
  color: white;
}

.info p {
  color: #ccc;
  margin-bottom: 10px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  color: white;
  background: #2b0b80;
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.socials a:hover {
  background: #4d2cff;
}
/* END SECTION */



/* WHY CHOOSE SECTION */

.container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  /* max-width: 1500px; */
  margin: auto;
  align-items: center;
  padding: 100px 20px;
  background-color: #9b53ed;
  gap: 40px;
}

.images {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.images img {
  width: 600px;
  height: 500px;
  object-fit: cover;
  border-radius: 100px;
}



.content {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content h3{
  font-size: 2rem;
  font-weight: 500;
  color: black;
}
.content h2 {
  font-size: 2.8rem;
  margin: 0;
  font-weight: 600;
  color: white;
  line-height: 1.54cm;
}

.gradient-text1 {
 background-color: #fff;
  color: #9b53ed;
  padding: 0 10px;
  border-radius: 4px;
  margin-top: 10px ;
}

.sub-heading {
  font-size: 1rem;
  color: white;
  margin-bottom: 30px;
}

.features1 {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature1 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.icon {
  font-size: 1.5rem;
  color: white;
}

.feature1-text {
  text-align: left;
  gap: 10px;
}

.feature1-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: black;
}

.feature1-text p {
  color: white;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 300px;
    height: 300px;
    border-radius: 30px;
  }
}
/* END SECTION */

/* CASE STUDIES */

.case-studies {
   /* max-width: 1500px;   */
  /* width: 100%; */
  /* margin: auto; */
  
  display: flex;
  gap: 40px;
  /* flex-wrap: wrap; */
  align-items: center;
  padding: 60px 20px;
}

.left-section {
   flex: 1; 
   max-width: 500px; 
  margin-top: -30px;
}

.left-section h3 {
  font-size: 2rem;
  color: #9b53ed;
  font-weight: 500;
  margin-bottom: 10px;
}

.left-section h1 {
  font-size: 50px;
  font-weight: 600;
  color: black;
  line-height: 1.2;
  margin: 10px 0;
}

.highlight-box {
  display: inline-block;
  background-color: #9b53ed;
  border-radius: 5px;
  padding: 4px 16px;
  color: white;
}

.left-section p {
  margin: 20px 0;
  color: black;
  font-size: 16px;
  line-height: 1.6;
}

.sticky{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  /* max-width: 50%; */
  gap: 20px;
}
.right-card {
  /* flex: 1; */
  max-width: 700px;
  max-height: 180vh;
  display: flex;
  border-radius: 16px;
  background: linear-gradient(to right, #ae80e3, #9a53eb);
  border: 3px solid white;
  /* overflow: hidden; */
  position: sticky;
  top: -30px; 
  z-index: 10;
  transition: transform 0.3s ease-out;
}

.card-image {
  width: 100%;
  padding: 20px;
   

}
.card-image img{
  width: 100%;
  height: 300px; 
  border: 1 px solid white;
  border-radius: 20px;
}

.card-content {
  padding: 15px;
}

.card-content h2 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 12px; 
  color: white;
}

.card-content p {
  font-size: 16px;
  color: white;
  margin-bottom: 18px;
}

.card-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.card-content ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: white;
  position: relative;
  padding-left: 24px;
}

.card-content ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #ffff;
  position: absolute;
  left: 0;
  top: 0;
}


@media(max-width:500px) {
  .card-image img {
    height: 200px;
}
  
}
@media(max-width: 768px) {
  .case-studies {
    flex-direction: column;
    gap: 30px;
  }
  

  .left-section h1 {
    font-size: 36px;
  }
  .right-card{
    flex-wrap: wrap;
    position: relative;
    margin-top: 20px;
  }
  .card-content h2 {
    font-size: 20px;
  }
}


/* TESTIMONIAL SECTION */
.testing{
  background-color: white;
  height: 80px;
}
.testimonial-carousel{
  display: flex;
   /* max-width: 1500px;  */
  /* width: 100%; */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
 

}
.business h2{
  font-size: 2rem;
  font-weight: 500;
  color: #9b53ed;
}
.business h1 span .highlight{
  background-color: #9b53ed;
  color: white;
  padding: 0 10px;
  border-radius: 4px;

}
.business h1{
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 20px 0;
  color: black;
}
.business p{
  color: black;
  font-size: 1rem;
  font-weight: 500;
}
.carousel-wrapper {
  overflow: hidden;
  width: 90%;
  max-width: 1100px;
  margin: 50px auto;
  border-radius: 12px;
  background: #fff;
  background: linear-gradient(to right,  #c4a2eb,  #9b53ed);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: calc(300px * 12); /* Double the 6 cards for infinite looping */
  animation: scroll 10s linear infinite;
}

.carousel-item {
  flex: 0 0 300px;
  box-sizing: border-box;
  padding: 40px 20px;
  height: 300px;
  text-align: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.carousel-item img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffff;
}

.carousel-item .stars {
  color: yellow;
  margin: 10px 0;
}

.carousel-item p {
  font-size: 0.95rem;
  color: #ffff;
  margin: 10px 0;
}

.carousel-item .author {
  font-weight: bold;
  color: white;
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-900px); } /* 300px * 3 = 3 items slide */
}

/* Responsive tweaks */
@media (max-width: 950px) {
  .carousel-track { animation-duration: 15s; }
}

@media (max-width: 600px) {
  .carousel-track { animation-duration: 20s; }
  .carousel-item { flex: 0 0 300px; }
}

 

/* FAQ SECTION */

.faq-section {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  gap: 20px;
 
  flex-wrap: wrap;
  padding-top: 50px;
}

 .faq-left {
  position: relative;
  margin-top: -30px;
} 

.faq-left img {
  width: 500px;
  height: 600px;
  background-size: cover;
  border-radius: 10px;
}

.call-box {
   position: absolute; 
  bottom: 20px;
  left: 20px;
  background-color: rgba(159, 156, 156, 0.8);
  padding: 10px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 15px;
  backdrop-filter: blur(5px);
}

  /* .call-icon {
 color: white;
  padding: 10px;
  border-radius: 8px;
}   */

/* .call-icon::before {
  content: '📞';
  font-size: 18px;
  color: white;
} */



.call-box p {
  margin: 0;
  font-weight: bold;
}

 .call-box span {
  color: white;
  font-size: 0.95rem;
} 

.faq-right {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  align-items: start;
  padding: 30px;
  text-align: start;
  /* margin-top: 40px; */
}
.faq-right h1{
  font-size: 2rem;
  font-weight: 500;
  color: #9b53ed;
}
.faq-right h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: black;
}

.faq-right h2 span {
  background-color: #9b53ed ;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
}

.faq-right p {
  color: black;
   margin-bottom: 20px; 
}

.accordion {
  border-radius: 30px;
  /* overflow: hidden; */
}

.accordion-item {
  background-color: #9b53ed;
  border: 1px solid white;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden; 
}

.accordion-header {
  padding: 20px;
  font-weight: bold;
  cursor: pointer;
   position: relative; 
   color: white;
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  color: white;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding: 10px 20px 20px;
}



@media screen and (max-width: 960px) {
  .faq-section {
    flex-direction: column;
    text-align: center;
  }

  .faq-left img {
    width: 80vw;
    height: 400px;
  }

  .faq-right h2 {
    font-size: 2rem;
  }
}




/* NEWS LETTER */
.background{
  
  padding-top: 60px;
  padding-bottom: 50px;
  width: 100%;
}
.newsletter-section {
  background: linear-gradient(to right, #caa8f1, #ab71ed);
  border-radius: 15px;
  max-width: 1000px;
  min-width: 300px;
  margin: auto  ; 
  padding: 50px 30px;
  text-align: center;
}

.newsletter-section img.News-logo {
  width: 150px;
  margin-bottom: 20px;
}

.newsletter-section h1 {
  font-size: 35px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.newsletter-section p {
  font-size: 20px;
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: auto;
  position: relative;
}

.newsletter-form input[type="email"] {
  padding: 20px 25px;
  border: none;
  outline: none;
  width: 100%;
  border-radius: 50px;
  font-size: 18px;
  color: #8000ff;
}

.newsletter-form input::placeholder {
  color: #8000ff;
  font-weight: 500;
}

.newsletter-form button {
  background-color: #a64eff;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 5px;
  /* top: 5px; */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #8b3fff;
}

.newsletter-form button i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .newsletter-section h1 {
    font-size: 32px;
  }
  .newsletter-form input[type="email"] {
    padding: 16px 20px;
    font-size: 16px;
  }
}

/* FOOTER */
.footer {
  background-color: #9a52ec;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-box {
  /* flex: 1 1 220px; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 5px;
  /* text-align: center; */
  /* flex-wrap: wrap; */
}

.footer-box h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: bold;
  color: black;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
  text-align: start;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin: 12px 0;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: white;
}
.footer-box ul li:hover{
  color: black;
}

.footer-box ul li i {
  color: white;
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(239, 235, 235, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p{
  color: white;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

.footer-links a:hover {
  color: black;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }
   .footer-box {
    width: 100%;
    text-align: start;
  } 
  .footer-bottom{
    text-align: center;
  }
 
}

@media (max-width:320px){
  .newsletter-section{
    min-width: 200px;
    padding: 20px;
  }
  .images img {
    width: 200px;
    margin-left: -30px;
  }
  .images {
    flex: auto;
  }
  .container{
    display: flex;
    justify-content: start;
  }
  .content{
    min-width: 200px;
  }
  .card-left{
    max-width: 180px;
  
  }
  .service-card{
    margin-left: -3px;
    min-width: 200px;
  }
  .card-right {
    width: 60%;
    /* position: absolute; */

  }
  .card-right img{
    width: 80%;
  }
  
}
