:root {
    --primary-color: #148501;
    --primetext-color: #9AE6B4;
    --secondary-color: #FF5722;
    --grey: #6E6E6E;
    --back: #F5F5F0;
  
    --fontraj: 'Rajdhani', sans-serif;
    --fontmon: 'Montserrat', sans-serif;
    --fontpop: 'Poppins', sans-serif;

    --font-size-base: 16px;
  }




  .navbar {
    background: var(--back);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 6rem;
    position: fixed;
  
    width: 100%;
    transition: .4s linear;
    z-index: 9;
    height: 5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);  
  }
  
  .navbar-brand img {
    height: 120px;
    width: auto;
  }
  
  .navbar.sticky {
    background: var(--back);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 6rem;
  }
  
  .nav-item {
  
    font-family: var(--fontpop);
    font-weight: 500;
    font-size: var(--font-size-base);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: var(--secondary-color);
  }
  
  
 
  
  
  /* On hover */
  .nav-link:hover {
    color: var(--secondary-color);
  }
  
  
  .nav-item a:is(:link, :active, :visited).active{
    color: var(--secondary-color);
    
  }
 
  
  .btn-download{
    background-color: var(--secondary-color);
    padding: 0.6rem 1rem;
    border-radius: 0.6rem;
    font-family: var(--fontpop);
    font-weight: 500;
    color: var(--back);
    font-size: 16px;
    font-weight: 500;
    transition: box-shadow 0.3s ease;
  }
  
  .btn-download:hover {
    background-color: var(--secondary-color);
    padding: 0.6rem 1rem;
    border-radius: 0.6rem;
    font-family: var(--fontpop);
    font-weight: 500;
    color: var(--back);
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* subtle soft shadow */
  }


@media (max-width: 480px) {
    .navbar {
      padding: 0rem 1rem;
    }
  
   
  
    .navbar.sticky {
      padding: 0rem 1rem;
    }
  
    .navbar-brand img {
      height: 70px;
    }
  
    .navbar-toggler-icon {
      height: 20px;
      width: 20px;
    }
    .navbar-collapse {
      background-color: var(--back);
      padding: 2rem;
      border-radius: 1rem;
      border: 1px solid var(--grey);
    }

    /* Custom max-width for the modal */


    
  
  
  

 
  }
  
  @media (min-width: 481px) and (max-width: 768px) {
 
  
    .navbar {
      padding: 0rem 2rem;
    }
  
    
  
    .navbar.sticky {
      padding: 0rem 2rem;
    }
  
    .navbar-brand img {
      height: 70px;
    }
  
    .navbar-toggler-icon {
      height: 20px;
      width: 20px;
    }
    .navbar-collapse {
      background-color: var(--back);
      padding: 2rem;
      border-radius: 1rem;
      border: 1px solid var(--grey);
    }
  

  
 
  
  
  }
  
  @media (min-width: 769px) and (max-width: 1000px) {

  
    .navbar {
      padding: 0rem 4rem;
    }
   
  
    .navbar.sticky {
      padding: 0rem 4rem;
    }
  
    .navbar-brand img {
      height: 100px;
    }
  
    .navbar-toggler-icon {
      height: 24px;
      width: 24px;
    }
    .navbar-collapse {
      background-color: var(--back);
      padding: 2rem;
      border-radius: 1rem;
      border: 1px solid var(--grey);
    }
  
  }
  @media (min-width: 1000px) and (max-width: 1400px){
    .navbar {
      padding: 0rem 4rem;
    }
   

  }




  

 



  /* container fluid  */
@media (min-width: 1300px) {
    .container-fluid {
      max-width: 1300px !important;
    }
  
  }
  
  @media (max-width: 480px) {
    .container-fluid {
      max-width: 360px !important;
    }
  
  }
  
  @media (min-width: 481px) and (max-width: 615px) {
    .container-fluid {
      max-width: 481px !important;
    }
  }
  
  @media (min-width: 616px) and (max-width: 768px) {
    .container-fluid {
      max-width: 500px !important;
    }
  }
  
  @media (min-width: 769px) and (max-width: 900px) {
    .container-fluid {
      max-width: 769px !important;
    }
  
  }
  
  @media (min-width: 901px) and (max-width: 1000px) {
    .container-fluid {
      max-width: 900px !important;
    }
  
  }
  
  @media (min-width: 1001px) and (max-width: 1199px) {
    .container-fluid {
      max-width: 1001px !important;
    }
  
  }
  
  @media (min-width: 1200px) and (max-width: 1299px) {
    .container-fluid {
      max-width: 1200px !important;
    }
  
  }
  


  /* hero section  */

  .hero-section {
    position: relative;
    height: 50rem;
    overflow: hidden;

  }

  .hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding-left: 6rem;
    padding-right: 6rem;
    width: 100%;
  }

  .hero-content h1 {
    font-family: var(--fontraj);
    font-size: 60px;
    color: var(--back);
    font-weight: 700;
  }
  .hero-content p {
    font-family: var(--fontpop);
    font-size: 16px;
    color: var(--back);
    font-weight: 500;
  }
  .hero-content ul li {
    font-family: var(--fontraj);
    font-size: 30px;
    color: var(--back);
    font-weight: 600;
  }
  .hero-left{
    opacity: 0;
    transform: translateX(100px);
    animation: slideInLeft 1s ease-out forwards;
    animation-delay: 0.3s;
  }
  @keyframes slideInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @media (max-width: 480px){
    .hero-content {
      
      padding-left: 1rem;
      padding-right: 1rem;
      
    }
    .hero-sectionother{
      padding: 1rem 1rem;
    }
    .hero-content h1 {
     font-size: 30px;
     font-weight: 700;
    }
    .hero-content p {
      font-size: 12px;
     font-weight: 500;
    }
    .hero-content ul li {
      font-size: 20px;
      font-weight: 600;
    }
    
    .hero-section {
      
      height: 32rem;
     
  }
  .hero-right{
    display: none !important;
  }
  /* .hero-right spline-viewer{
    height: 20rem !important;
    width: 20rem !important;
  }
  .hero-right{
    position: absolute;
    left: 40% !important;
  top: 78% !important;
  transform: translateX(-50%);
  } */
    
  }
  @media (min-width: 481px) and (max-width: 768px){
    .hero-content {
      
      padding-left: 2rem;
      padding-right: 2rem;
      
    }
    .hero-sectionother{
      padding: 2rem 2rem;
    }
    .hero-content h1 {
     font-size: 32px;
     font-weight: 700;
    }
    .hero-content p {
      font-size: 14px;
     font-weight: 500;
    }
    .hero-content ul li {
      font-size: 20px;
      font-weight: 600;
    }
   
    .hero-section {
      
      height: 32rem;
     
  }
  .hero-right{
    display: none !important;
  }
  }

  @media (min-width: 769px) and (max-width: 1000px){
    .hero-content {
      
      padding-left: 4rem;
      padding-right: 4rem;
      
    }
    .hero-sectionother{
      padding: 4rem 4rem;
    }
    .hero-content h1 {
     font-size: 32px;
     font-weight: 700;
    }
    .hero-content p {
      font-size: 14px;
     font-weight: 500;
    }
    .hero-content ul li {
      font-size: 20px;
      font-weight: 600;
    }
    
    .hero-section {
      
      height: 32rem;
     
  }
  .hero-right iframe{
    height: 36rem !important;
    width: 36rem !important;
  }
  .hero-right{
    position: absolute;
    left: 58% !important;
    top: -42% !important;
  transform: translateX(-50%);
  }

  }

  @media (min-width: 1000px) and (max-width: 1400px){
    .hero-section {
      
      height: 35rem;
     
  }
  .hero-content {
      
    padding-left: 4rem;
    padding-right: 4rem;
    
  }
  .hero-content h1 {
   font-size: 38px;
   font-weight: 700;
  }
  .hero-content p {
    font-size: 16px;
   font-weight: 500;
  }
  .hero-content ul li {
    font-size: 24px;
    font-weight: 600;
  }


    .hero-right iframe{
      height: 40rem !important;
      width: 40rem !important;
    }
    .hero-right{
      position: absolute;
      left: 64% !important;
      top: -44% !important;
    transform: translateX(-50%);
    }

  }
  @media (min-width: 1100px) and (max-width: 1200px){

    .hero-right iframe{
      height: 40rem !important;
      width: 40rem !important;
    }
    .hero-right{
      position: absolute;
      left: 68% !important;
        top: -54% !important;
    transform: translateX(-50%);
    }

  }

  @media (min-width: 1201px) and (max-width: 1300px){

    .hero-right iframe{
      height: 40rem !important;
      width: 40rem !important;
    }
    .hero-right{
      position: absolute;
      left: 72% !important;
        top: -54% !important;
    transform: translateX(-50%);
    }

  }
  
  @media (min-width: 1301px) and (max-width: 1400px){

    .hero-right iframe{
      height: 40rem !important;
      width: 40rem !important;
    }
    .hero-right{
      position: absolute;
      left: 76% !important;
        top: -54% !important;
    transform: translateX(-50%);
    }

  }
  @media (min-width: 1401px) and (max-width: 1500px){
    .hero-right iframe{
      height: 54rem !important;
      width: 40rem !important;
    }

    .hero-right{
      position: absolute;
      left: 76% !important;
        top: -54% !important;
    transform: translateX(-50%);
    }

  }






  /* mobile image  */
  .mobile-img {
    position: relative;
    height: 100%;
  }
  .mobile-img {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1s ease-out forwards;
    animation-delay: 0.3s;
  }
  .hero-right{
    position: absolute;
    left: 45%;
    top:-80%;
  }
  
  @keyframes slideInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .mobile-home {
    position: absolute;
    top: 0;
    left: 0;
    
    z-index: 2;
    height: 700px;
    
  }

  .mobile-icon{
    position: absolute;
    top: 130px;
    left: 40%;
    height: 250px;
    z-index: 5;
    
  }



  /* trusted mechanics  */


  .trustedby{
    padding: 3rem 6rem;
    background-color:   var(--back);
    text-align: center;
  }

  .section-title{
    font-family: var(--fontraj);
    font-size: 40px;
    color: black;
    font-weight: 600;
  }

  .trusticon h2{
    font-family: var(--fontraj);
    font-size: 40px;
    color: var(--secondary-color);
    font-weight: 600;

  }
  .trusticon p{
    font-family: var(--fontraj);
    font-size: 24px;
    color: black;
    font-weight: 600;

  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
  }

  .delay-200 {
    animation-delay: 0.2s;
  }

  .delay-400 {
    animation-delay: 0.4s;
  }

  .icon-bounce {
    animation: bounce 1.5s infinite;
  }

  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }

  @media (max-width: 480px){
    .trustedby{
      padding: 2rem 1rem;
      text-align: center;
    }
    .section-title{
      font-size: 30px;
    }
    .trusticon h2{
      font-size: 30px;
    }
    .trusticon p{
      font-size: 16px;
    }
    
  }

  @media (min-width: 481px) and (max-width: 768px){
    .trustedby{
      padding: 2rem 2rem;
      text-align: center;
    }
    .section-title{
      font-size: 32px;
    }
    .trusticon h2{
      font-size: 30px;
    }
    .trusticon p{
      font-size: 16px;
    }
  }
  @media (min-width: 769px) and (max-width: 1000px){
    .trustedby{
      padding: 3rem 4rem;
      text-align: center;
    }
    .section-title{
      font-size: 32px;
    }
    .trusticon h2{
      font-size: 30px;
    }
    .trusticon p{
      font-size: 20px;
    }
  }

  @media (min-width: 1000px) and (max-width: 1400px){
    .trustedby{
      padding: 3rem 4rem;
      text-align: center;
    }
  }




  /* services section  */

  .services-section {
    padding: 5rem 6rem;
    background-color: var(--back);
    position: relative;

  }
  .green-bg{
    position: absolute;
    background-color: var(--primary-color);
    height: 30rem;
    right: 0;
    bottom: -10%;
    width: 90%;
    z-index: 1;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
   
    


  }

  .swiper-inside{
    padding-bottom: 4rem;
  }

.services-section p {
    font-family: var(--fontraj);
    font-size: 20px;
    color: var(--grey);
    font-weight: 600;
    
  }
  

  .services-wrapper{
    background-color:transparent;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 0px;
    position: relative;
    
  }

  .services-slide {
    background-color: white;
    border-radius: 12px;
   
    border: 1px solid #C7C7C7;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }
  .services-slide a{
    text-decoration: none;
    color: var(--secondary-color);
    font-family: var(--fontpop);
    font-size: 14px;
    font-weight: 500;

  }
  .services-slide a:hover{
    text-decoration: underline;
    cursor: pointer;

  }
  .truncate-3-lines {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 2; 
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  

  .services-slide img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }

  .services-slide h6 {
    font-family: var(--fontraj);
    font-size: 24px;
    font-weight: 600;
    color: black;
  }

  .services-slide p {
    font-family: var(--fontraj);
    font-size: 16px;
    font-weight: 600;
    color: var(--grey);
  }


  

  
  .butt-prev,
.butt-next {
  position: static !important; 
}


  .butt {
    position: absolute;
    bottom: 0px;
    left: 15%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 10;
  }
  
  .butt-next,
  .butt-prev {
    background-color: white;
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--primary-color);
    font-weight: bold;
    border: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  
  .butt-prev::after,
  .butt-next::after {
    font-size: 16px;
    font-weight: bold;
  }

  @media (max-width: 480px){
    .services-section{
      padding: 2rem 1rem;
      text-align: center;
    }
    .green-bg {
      height: 23rem;
        right: 0;
        bottom: -2%;
        width: 89%;
        z-index: 1;
      
  }
  .services-slide h6 {
   
    font-size: 20px;
   
}
.services-slide p {
  
  font-size: 14px;
  
}
}

@media (min-width: 481px) and (max-width: 768px){
  .services-section{
    padding: 2rem 2rem;
    text-align: center;
  }
  .green-bg {
    height: 23rem;
      right: 0;
      bottom: -2%;
      width: 89%;
      z-index: 1;
    
}
.services-slide h6 {
 
  font-size: 20px;
 
}
.services-slide p {

font-size: 14px;

}
}
@media (min-width: 550px) and (max-width: 768px){
  .green-bg {
    height: 25rem;
      right: 0;
      bottom: -2%;
      width: 89%;
      z-index: 1;
    
}

}
@media (min-width: 769px) and (max-width: 1000px){
  .services-section{
    padding: 3rem 4rem;
    text-align: center;
  }
}
@media (min-width: 1000px) and (max-width: 1400px){
  .services-section{
    padding: 3rem 4rem;
    text-align: center;
  }
}



  /* about us section  */

  .aboutus-section {
    padding: 3rem 6rem;
    background-color: var(--primary-color);
    position: relative;
    padding-bottom: 0rem !important;
  }

  .aboutus-section small {
    font-family: var(--fontraj);
    font-size: 32px;
    color: var(--primetext-color);
    font-weight: 600;
  }

  .aboutus-section h2{
    font-family: var(--fontpop);
    font-size: 64px;
    color: var(--back);
    font-weight: 600;
  }
  .aboutus-section p {
    font-family: var(--fontraj);
    font-size: 20px;
    color: var(--primetext-color);
    font-weight: 500;
  }

  .white-btn{
    background-color: var(--back);
    padding: 0.6rem 1rem;
    border-radius: 0.6rem;
    font-family: var(--fontpop);
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;

  }

  .white-btn svg {
    transition: transform 0.3s ease;
  }
  
  .white-btn:hover svg {
    transform: translateX(8px) scale(1.2); 
  }
  .aboutmob{
    max-width: 500px;
    margin-left: 1.5rem;

  }
  @media (max-width: 480px){
    .aboutus-section{
      padding: 2rem 1rem;
      text-align: center;
    }
    .aboutus-section small {
     
      font-size: 20px;
    }
    .aboutus-section h2 {
    
      font-size: 34px;
    }
    .aboutus-section p {
     
      font-size: 16px;
    }
    .aboutmob {
      
      margin-left: 1rem;
  }
    .aboutmob{
      max-width: 300px;

    }
    
    
   
  
   .wave-shape{
    display: none !important;
   }
  }
  @media (min-width: 481px) and (max-width: 768px){
    .aboutus-section{
      padding: 2rem 2rem;
      text-align: center;
    }
    .aboutus-section small {
     
      font-size: 20px;
    }
    .aboutus-section h2 {
    
      font-size: 34px;
    }
    .aboutus-section p {
     
      font-size: 16px;
    }
    .aboutmob {
      
      margin-left: 1rem;
  }
    .aboutmob{
      max-width: 300px;

    }
   .wave-shape{
    display: none !important;
  }

  }
  @media (min-width: 769px) and (max-width: 1000px){
    .aboutus-section{
      padding: 3rem 4rem;
      text-align: center;
    }
    .aboutus-section small {
     
      font-size: 24px;
    }
    .aboutus-section h2 {
    
      font-size: 38px;
    }
    .aboutus-section p {
     
      font-size: 20px;
    }
    .aboutmob {
      
      margin-left: 1rem;
  }
    .aboutmob{
      max-width: 300px;

    }
    .wave-shape{
      display: none !important;
    }
  }
  @media (min-width: 1000px) and (max-width: 1400px){
    .aboutus-section{
      padding: 3rem 4rem;
      text-align: center;
    }
    .aboutus-section small {
     
      font-size: 24px;
    }
    .aboutus-section h2 {
    
      font-size: 38px;
    }
    .aboutus-section p {
     
      font-size: 20px;
    }
  }
  /* how it works  */

  .how-section{
    padding: 3rem 6rem;
    background-color: var(--back);
    position: relative;
    padding-bottom: 5rem !important;
    overflow: hidden;
  }
  .step-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 1px 10px 15px -3px rgba(0, 0, 0, 0.4);

    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
    height: 100%;
  }

  .step-box img {
    width: 120px;
    margin-bottom: 15px;
    border-radius: 50px;
  }

  .step-number {
    font-family: var(--fontraj);
    font-size: 40px;
    color: var(--secondary-color);
    font-weight: bold;
    margin: 10px 0;
    border-radius: 60rem;
    border: 2px solid var(--secondary-color);
    width: 60px;
  }

  .step-title {
    font-family: var(--fontraj);
    font-size: 24px;
    color:black;
    font-weight: 600;
  }

  .line-dot {
    position: absolute;
    bottom: -37%; /* adjust depending on spacing */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 0;
  }
  
  .dot {
    width: 10px;
    height: 10px;
    background-color:#9A9696;
    border-radius: 50%;
    margin-bottom: 0px;
  }
  
  .line {
    width: 2px;
    height: 100px; /* adjust length as needed */
    background-color:#9A9696;
  }
  

    @media (max-width: 480px){
      .how-section {
        padding: 2rem 1rem;
      }
      .step-title {
        font-family: var(--fontraj);
        font-size: 20px;
      }
      .step-number {
        font-family: var(--fontraj);
        font-size: 30px;
        width: 50px;
      }
      
      .line-dot {
        position: absolute;
        bottom: -39%;
      }
    }
    @media (min-width: 481px) and (max-width: 768px){
      .how-section {
        padding: 2rem 2rem;
      }
      .step-title {
        font-family: var(--fontraj);
        font-size: 20px;
      }
      .step-number {
        font-family: var(--fontraj);
        font-size: 30px;
        width: 50px;
      }
      
      .line-dot {
        position: absolute;
        bottom: -39%;
      }
    }
    @media (min-width: 769px) and (max-width: 1000px) {
      .how-section {
        padding: 3rem 4rem;
      }
      .how-section .col-md-3 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
      }
    }
    @media (min-width: 1000px) and (max-width: 1400px){
      .how-section {
        padding: 3rem 4rem;
      }
    }
  
  

  /* download section  */
  .download-section {
    padding: 3rem 6rem;
    background-color: white;
    position: relative;
   
  }
  .green-installbg{
    position: absolute;
    background-color: var(--primary-color);
    height: 10rem;
    right: -20px;
    bottom: 0.3%;
    width: 25rem;
    z-index: 1;
    border-radius: 20px;
    z-index: 0;
    
    

  }
  .green-installbg {
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  }
  

  .install-img img{
    position: relative;
    z-index: 2;
    top: 3%;

  }

  .qr-section p {
    font-family: var(--fontraj);
    font-size: 20px;
    color: black;
    font-weight: 600;

  }
  @media (max-width: 480px){
    .download-section {
      padding: 2rem 1rem;
    }
  }
  @media (min-width: 481px) and (max-width: 768px){
    .download-section {
      padding: 2rem 2rem;
    }
    .install-img{
      display: none !important;
    }
  }
  @media (min-width: 769px) and (max-width: 1000px){
    .download-section {
      padding: 3rem 4rem;
    }
    .green-installbg {
      position: absolute;
      background-color: var(--primary-color);
      height: 10rem;
      right: 0px;
      bottom: 0.3%;
      width: 20rem;
      z-index: 1;
      border-radius: 20px;
      z-index: 0;
    }
    .install-img img {
      position: relative;
      z-index: 2;
      top: 3%;
      right: 3%;
      width: 300px !important;
  }

  }
  @media (min-width: 1000px) and (max-width: 1400px){
    .download-section {
      padding: 3rem 4rem;
    }
    /* .green-installbg {
      position: absolute;
      background-color: var(--primary-color);
      height: 10rem;
      right: 0px;
      bottom: 0.3%;
      width: 20rem;
      z-index: 1;
      border-radius: 20px;
      z-index: 0;
    }
    .install-img img {
      position: relative;
      z-index: 2;
      top: 3%;
      right: 3%;
      width: 300px !important;
  } */
  }
  
  /* testimonial  */

  .testimonial-section {
    padding: 3rem 6rem;
    background-color: white;
    position: relative;
    
  }
.quote-icon img{
  height: 3rem;
  width: auto;
}
 
  .testimonial-card {
    border: 1px solid #2ecc71;
    border-radius: 12px;
    padding: 30px;
    background-color: #f8f9f5;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .testimonial-section .swiper-slide-active .testimonial-card {
    position: relative;
    transform: scale(1) !important;
    border: 2px solid #27ae60;
    background-color: #ffffff;
    opacity: 1 !important;
    
  }
  .testimonial-section .swiper-slide .testimonial-card {
    position: relative;
    transform: scale(0.8);
    opacity: 0.8;
  }
  .testimonial-section .swiper-slide{
    width: 85%;
  }

  .testimonial-section .swiper-slide-active{
    z-index: 5;
  }
  
  .testimonial-section .swiper-slide-prev,
  .testimonial-section .swiper-slide-next {
    z-index: 0;
  }
  .quote-icon {
    font-size: 28px;
    color: #ff5722;
    margin-bottom: 10px;
  }

  .testimonial-text {
    font-size: 16px;
    font-family: var(--fontraj);
    color: #6B7280;
    font-weight: 600;
  }

  .testimonial-author  {
    display: flex;
    align-items: center;
    margin-top: 20px;
    
  }
  .testimonial-author p{
    font-family: var(--fontraj);
    font-size: 24px;
    color:#313131;
    font-weight: 600;
    margin-top: 20px;

  }

  .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
  }

  /* Custom Arrow Buttons */
  .test-next,
  .test-prev {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: background-color 0.3s ease;
   
  }

  .test-next:hover,
  .test-prev:hover {
    background-color: #219150;
  }

  .test-next::after,
  .test-prev::after {
    font-size: 20px;
    font-weight: bold;
  }

  .test-next::after {
    content: '›';
  }

  .test-prev::after {
    content: '‹';
  }


  @media (max-width: 480px){
    .testimonial-section {
      padding: 2rem 1rem;
    }
    .testimonial-card {
      padding: 20px;
     
    }
    .testimonial-text {
      font-size: 14px;
    }
    .testimonial-author p{
      font-size: 16px;
    }
    .testimonial-author img {
      width: 40px;
      height: 40px;
    }
    .test-next{
      position: relative;
      left: 84%;
      bottom: 3rem;
  }
  .test-prev{
    position: relative;
    left: 70%;
    bottom: 1.8rem;
}
      
    
    
  }

  @media (min-width: 481px) and (max-width: 768px){
    .testimonial-section {
      padding: 2rem 2rem;
    }
    .testimonial-card {
      padding: 20px;
     
    }
    .testimonial-text {
      font-size: 14px;
    }
    .testimonial-author p{
      font-size: 16px;
    }
    .testimonial-author img {
      width: 40px;
      height: 40px;
    }
    .test-next{
      position: relative;
      left: 84%;
      bottom: 4rem;
  }
  .test-prev{
    position: relative;
    left: 70%;
    bottom: 2.8rem;
}
      
  }
  @media (min-width: 769px) and (max-width: 1000px){
    .testimonial-section {
      padding: 3rem 4rem;
    }
  }
  @media (min-width: 1000px) and (max-width: 1400px){
    .testimonial-section {
      padding: 3rem 4rem;
    }
  }



  /* contact section  */

  .contact-section {
    background-color: transparent;
    color: white;
    position: relative;
    overflow: hidden;
   
  }

  .wave-shape {
    position: absolute;
    width: 100%;
    z-index: -3;
    
    
  }

  .contact-content {
    position: relative;
    z-index: 2;
    padding: 3rem 6rem;
  }

  .form-card {
    background: var(--back);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 30rem;
    border: 1px solid var(--grey);
  }

  .form-card label {
    font-weight: 500;
    background-color: var(--back);
    color: black;
  }
  .form-control{
    background-color: var(--back);
    border: 1px solid var(--grey);
  }

  
  .dark-btn{
    background-color: var(--secondary-color);
    padding: 0.6rem 1rem;
    border-radius: 0.6rem;
    font-family: var(--fontpop);
    font-weight: 500;
    color: var(--back);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;

  }

  .dark-btn svg{
    transition: transform 0.3s ease;
}
.dark-btn:hover{
    background-color: var(--secondary-color);
    color: var(--back);
  }

  .dark-btn:hover svg {
    transform: translateX(8px) scale(1.2); 
  }
  .contact-info{
    position: relative;
    z-index: 2;
    color: var(--back);
  }

  .contact-info i {
    margin-right: 10px;
    color:var(--back);
  }

  .contact-info p {
    font-family: var(--fontraj);
    margin-bottom: 10px;
    font-size: 24px;
    color: var(--back);
  }
  .contact-info  svg{
    margin-right: 1rem;
  }

  @media (max-width: 480px){
    .contact-section{
      background-color: var(--primary-color);
    }
    .contact-content {
      
      padding: 2rem 1rem;
    }
    .contact-section .section-title{
      
      color: var(--back);
    }
    .form-card{
      width: 100% !important;
    }
    .contact-info{
      padding-top: 2rem;
    }
    .contact-info p {
     
      margin-bottom: 10px;
      font-size: 20px;
      color: var(--back);
  
  }
}
@media (min-width: 481px) and (max-width: 768px){
  .contact-section{
    background-color: var(--primary-color);
  }
  .contact-content {
    
    padding: 2rem 2rem;
  }
  .contact-section .section-title{
    
    color: var(--back);
  }
  .form-card{
    width: 100% !important;
  }
  .contact-info{
    padding-top: 2rem;
    align-items: self-start !important;
  }
  .contact-info p {
   
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--back);

}
}
@media (min-width: 769px) and (max-width: 1000px){
  .contact-content {
    
    padding: 3rem 4rem;
  }
  .contact-section{
    background-color: var(--primary-color);
  }
  .contact-section .section-title{
    
    color: var(--back);
  }
  .contact-info{
    padding-top: 2rem;
    align-items: self-start !important;
  }
}

  @media (max-width: 767px) {
    .contact-content {
      padding-top: 60px;
    }
  }
  @media (min-width: 1000px) and (max-width: 1100px){
    .wave-shape {
      position: absolute;
      width: 100%;
      z-index: -3;
      top: 25% ;
      
      
    }
    .form-card {
      
      width: 25rem;
     
    }
  

  }
  @media (min-width: 1101px) and (max-width: 1200px){
    .wave-shape {
      position: absolute;
      width: 100%;
      z-index: -3;
      top: 25% ;
      
      
    }
    .form-card {
      
      width: 25rem;
     
    }

  }
  @media (min-width: 1201px) and (max-width: 1300px){
    .wave-shape {
      position: absolute;
      width: 100%;
      z-index: -3;
      top: 10% ;
      
      
    }
    .form-card {
      
      width: 25rem;
     
    }

  }
  @media (min-width: 1000px) and (max-width: 1400px){
    .contact-content {
    
      padding: 3rem 4rem;
    }
    .form-card {
      
      width: 25rem;
     
    }
    
  }


  /* footer  */
  .footer-section {
    background-color: var(--back);
    padding: 3rem 6rem;
    position: relative;
  }
  .spline-watermark{
    display: none !important;
  }
  

  @media (max-width: 480px){
    .green-installbg{
      display: none !important;
    }
    .install-img img{
      display: none !important;
    }
    .footer-section{
      padding: 2rem 1rem;
    }
  }
  @media (max-width: 480px) {
   
    .footer-section .nav {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section .nav-link {
      padding: 5px 0;
      text-align: center;
    }
  
    .footer-section .text-md-start,
    .footer-section .text-md-end {
      text-align: center !important;
    }
  
    .footer-section .me-3 {
      margin-right: 1rem !important;
    }
  
    .footer-section .btn-download {
      margin-top: 10px;
      width: 100%;
      max-width: 250px;
    }
  
    .footer-section .row.align-items-center {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-section .col-md-6,
    .footer-section .col-md-9,
    .footer-section .col-md-3 {
      width: 100%;
      margin-bottom: 1rem;
    }
  
    .footer-section .text-center.text-md-start.my-2.mb-md-0 {
      text-align: center !important;
      font-size: 0.9rem;
    }
  }
  @media (min-width: 481px) and (max-width: 768px){
    .footer-section{
      padding: 2rem 2rem;
    }
    .footer-section .nav {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section .nav-link {
      padding: 5px 0;
      text-align: center;
    }
  
    .footer-section .text-md-start,
    .footer-section .text-md-end {
      text-align: center !important;
    }
  
    .footer-section .me-3 {
      margin-right: 1rem !important;
    }
  
    .footer-section .btn-download {
      margin-top: 10px;
      width: 100%;
      max-width: 250px;
    }
  
    .footer-section .row.align-items-center {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-section .col-md-6,
    .footer-section .col-md-9,
    .footer-section .col-md-3 {
      width: 100%;
      margin-bottom: 1rem;
    }
  
    .footer-section .text-center.text-md-start.my-2.mb-md-0 {
      text-align: center !important;
      font-size: 0.9rem;
    }
  }

  @media (min-width: 769px) and (max-width: 1000px){
    .footer-section{
      padding: 3rem 4rem;
    }
    .footer-section .nav {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-section .nav-link {
      padding: 5px 0;
      text-align: center;
    }
  
    .footer-section .text-md-start,
    .footer-section .text-md-end {
      text-align: center !important;
    }
  
    .footer-section .me-3 {
      margin-right: 1rem !important;
    }
  
    .footer-section .btn-download {
      margin-top: 10px;
      width: 100%;
      max-width: 250px;
    }
  
    .footer-section .row.align-items-center {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-section .col-md-6,
    .footer-section .col-md-9,
    .footer-section .col-md-3 {
      width: 100%;
      margin-bottom: 1rem;
    }
  
    .footer-section .text-center.text-md-start.my-2.mb-md-0 {
      text-align: center !important;
      font-size: 0.9rem;
    }
  }
  
  @media (min-width: 1001px) and (max-width: 1400px) {
    .footer-section{
      padding: 3rem 4rem;
    }
  }


  /* about us page  */

  .hero-sectionother{
    padding: 3rem 6rem;
    background-color: transparent;
    position: relative;
    padding-bottom: 0rem !important;
    height: 20rem;
  }


  /* our story  */

  .our-story{
    padding: 3rem 6rem;
    background-color: var(--back);
    color: var(--grey);
    font-family: var(--fontpop);
    font-size: 16px;
    font-weight: 500 ;
   
  }
  

  .story-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    font-family: var(--fontraj);
    font-weight: 600;
   
  }
  .grid-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 20px;
    max-width: 1000px;
  }

  .left-img img,
  .right-top img,
  .right-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
  }

  .left-img {
    grid-row: span 2;
  }

  .right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
  }

  .experience-badge {
    height: 100%;
    width: 100%;
    background: white;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    font-family: var(--fontpop);
    z-index: 2;
  }

  .experience-badge strong {
    color: var(--secondary-color);
    font-size: 50px;
    font-family: var(--fontraj);
  }


  /* ceo letter  */

  .ceo-section {
    position: relative;
   padding: 3rem 6rem;
    overflow: hidden;
  }

  .ceo-section img.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: 0;
  }

  .ceo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* for readability */
    z-index: 1;
  }

  .ceo-content {
    position: relative;
    z-index: 2;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .ceo-letter {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-family: var(--fontpop);
  }
  
  .ceo-signature {
    margin-top: 40px;
    font-size: 16px;
    font-style: italic;
    text-align: left;
    font-family: var(--fontpop);
  }
  @media (max-width: 768px) {
    .ceo-content {
      text-align: center;
      justify-content: center;
    }
  }


  .commitment-section {
    padding: 1rem 6rem;
    background-color: var(--primary-color);
    position: relative;
    color: var(--back);
  }
  .commitment-section p{
    font-family: var(--fontpop);
    font-size: 16px;
    color: var(--back);
    font-weight: 400;
  }
  @media (max-width: 480px) {
    .our-story {
      padding: 1rem 1rem;
      font-size: 14px;
    }
  
    .story-title {
      font-size: 2rem;
    }
  
   
  
    .ceo-section {
      padding: 1rem 1rem;
    }
  
    .commitment-section {
      padding: 1rem 1rem;
     
    }
  
    .commitment-section p {
      font-size: 14px;
    }
    .ceo-letter {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 20px;
      font-family: var(--fontpop);
      text-align: left; /* Left alignment */
    }
    
    .ceo-signature {
      margin-top: 40px;
      font-size: 16px;
      font-style: italic;
      text-align: left; /* Left alignment */
      font-family: var(--fontpop);
    }
    
  }
  @media (min-width: 481px) and (max-width: 768px){
    .our-story {
      padding: 2rem 2rem;
      
    }
    .ceo-section {
      padding: 2rem 2rem;
    }
  
    .commitment-section {
      padding: 2rem 2rem;
     
    }
  }
  @media (min-width: 769px) and (max-width: 1000px){
    .our-story {
      padding: 3rem 4rem;
      
    }
    .ceo-section {
      padding: 3rem 4rem;
    }
  
    .commitment-section {
      padding: 3rem 4rem;
     
    }

  }
  @media (min-width: 1001px) and (max-width: 1400px){
    .our-story {
      padding: 3rem 4rem;
      
    }
    .ceo-section {
      padding: 3rem 4rem;
    }
  
    .commitment-section {
      padding: 3rem 4rem;
     
    }

  }
  


  /* contact page  */

  .contact-page {
    background-color: var(--back);
   padding: 3rem 6rem;
   position: relative;
   overflow: hidden;
    
  }
   .contact-sec{
    padding: 2rem 2rem;
   
    border-radius: 20px;
    
   }
  .contact-info a {
    text-decoration: none;
    color: #834CFF;
  }
  .contact-info i {
    margin-right: 10px;
    color: #444;
  }
  .form-control, .btn {
    border-radius: 10px;
  }
  .btn-primary {
    background-color: #834CFF;
    border: none;
  }
  .btn-primary:hover {
    background-color: #6d39d6;
  }
  .contact-bg {
    position: relative;
    overflow: hidden;
    min-height: 400px; /* You can adjust this as per need */
  }
  
  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
   
    opacity: 0.5; /* Optional: makes text readable by dimming background */
  }
  .contact-bg{
    border: 1px solid var(--grey); 
    padding: 2rem;
    border-bottom-left-radius: 1rem;
    border-top-left-radius: 1rem;
  }
  .contact-formi{
    border: 1px solid var(--grey); 
    padding: 2rem;
    border-bottom-right-radius: 1rem;
    border-top-right-radius: 1rem;
  }
  .contact-formi h3{
    font-family: var(--fontraj);
    font-size: 24px;
    font-weight: 600;
  }
  .contact-formi p{
    font-family: var(--fontraj);
    color: var(--grey);
    font-size: 16px;
    font-weight: 500;
  }
  .cont-name{
    font-family: var(--fontpop);
    color: black;
    font-size: 16px;
    font-weight: 500;
  }
  .contact-bg .content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: black; /* Change text color for contrast */
    font-family: var(--fontraj);
    font-size: 20px;
    font-weight: 600;
  }
  .contact-bg .content h3 {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .contact-info {
    text-decoration: none;
    color: var(--grey);
    font-family: var(--fontpop);
    font-size: 16px;
    font-weight: 500;
  }
  .contact-info a{
    text-decoration: none;
    color: var(--grey);
    font-family: var(--fontpop);
    font-size: 16px;
    font-weight: 500;
  }

  .mapp{
    background-color: var(--back);
    padding: 3rem 6rem;
  }
  @media (max-width: 480px){
    .contact-page {
     padding: 1rem 1rem;
    
    }
    .contact-sec{
      padding: 0rem 0rem;
     
      border-radius: 20px;
      
     }
     .contact-bg {
      border-radius: 1rem 1rem 0 0;
      padding: 1.5rem;
      min-height: 300px;
    }
    .contact-formi {
      border-radius: 0 0 1rem 1rem;
      padding: 1.5rem;
    }
    .contact-bg .content h3 {
      font-size: 28px;
      font-weight: 600;
    }
    .contact-bg .content {
      font-size: 18px;
      padding: 1.5rem;
    }
    .mapp {
      padding: 2rem;
    }
    .content p{
      font-size: 20px !important;
      padding-top: 0rem !important;
    }
  }
  @media (min-width: 481px) and (max-width: 768px){
    .contact-page {
      padding: 2rem 2rem;
     
     }
     .contact-bg {
      border-radius: 1rem 1rem 0 0;
      padding: 1.5rem;
      min-height: 300px;
    }
    .contact-formi {
      border-radius: 0 0 1rem 1rem;
      padding: 1.5rem;
    }
    .content p{
      font-size: 20px !important;
      padding-top: 0rem !important;
    }
    
  }
  @media (min-width: 769px) and (max-width: 1000px){
    .contact-page {
      padding: 3rem 4rem;
     
     }
     .contact-bg {
      border-radius: 1rem 1rem 0 0;
      padding: 1.5rem;
      min-height: 300px;
    }
    .contact-formi {
      border-radius: 0 0 1rem 1rem;
      padding: 1.5rem;
    }
    .content p{
      font-size: 20px !important;
      padding-top: 0rem !important;
    }

  }
  @media (min-width: 1001px) and (max-width: 1400px){
    .contact-page {
      padding: 3rem 4rem;
     
     }

  }


  /* faq section  */

  .faq {
    padding: 3rem 6rem;
    background-color: var(--back);
    padding-top: 1rem;
  }
  
  .faq .accordion-item {
    background-color: transparent;
    border: none;
  }
  
  .faq p {
    font-family: var(--fontpop);
    font-size: 16px;
    color: var(--grey);
  }
  
  .faq .accordion-header {
    border: none;
  }
  
  .faq .accordion-button {
    background-color: transparent;
    border: none;
    box-shadow: none;
    color: #000;
    font-family: var(--fontpop);
    font-weight: 600;
    font-size: 20px;
  }
  
  .faq .accordion-button:focus {
    box-shadow: none;
  }
  
  .faq .accordion-button:not(.collapsed) {
    color: #000;
  }
  
  .faq .accordion-collapse {
    border: none;
  }
  
  .accordion-body {
    font-family: var(--fontpop);
    font-size: 16px;
    color: var(--grey);
  }
  
  .faq .accordion-item+.accordion-item {
    border-top: 2px solid var(--primary-color);
  }
  
  @media (max-width: 480px) {
    .faq {
      padding: 2rem 1rem;
    }
  
    .faq p {
      font-size: 14px;
    }
  
    .faq .col-md-5 {
      text-align: center;
    }
  
    .faq .accordion-button {
      font-size: 16px;
    }
  
    .accordion-body {
      font-size: 14px;
    }
  
    .faq .accordion-item+.accordion-item {
      border-top: 1px solid var(--primary-color);
    }
  }
  
  @media (min-width: 481px) and (max-width: 768px) {
    .faq {
      padding: 2rem 2rem;
    }
  
    .faq .col-md-5 {
      text-align: center;
    }
  }



   /* privacy policies  */

   .policies{
    padding: 3rem 4rem;
    background-color: #F5F5F5;
  }
  .privacy-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.privacy-title {
    font-weight: bold;
    color: var(--secondary-color);
    text-align: center;
}
.privacy-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}
.privacy-link {
    color: var(--secondary-color);
    text-decoration: none;
}
.privacy-link:hover {
    text-decoration: underline;
}

  

@media (max-width: 480px){
    .policies{
        padding: 2rem 1rem;
    }
   
}
@media (min-width: 481px) and (max-width: 768px){
    .policies{
      padding: 2rem 2rem;
     
    }
   
  }
  @media (min-width: 769px) and (max-width: 1000px){
    .policies{
      padding: 2rem 4rem;
     
    }
  }


    @media (max-width: 480px){
        .policies{
            padding: 2rem 1rem;
        }
       
    }
    @media (min-width: 481px) and (max-width: 768px){
        .policies{
          padding: 2rem 2rem;
         
        }
       
      }
      @media (min-width: 769px) and (max-width: 1000px){
        .policies{
          padding: 2rem 4rem;
         
        }
      }
    



      /* services  */

      .services{
        padding: 3rem 6rem;
        background-color: var(--back);


      }

      .tab-title{
        width: 100%;
      }


      .approach-tabs .nav-link {
        text-align: center;
        padding: 15px 10px;
        border: none;
        color: #bbb;
        font-weight: 500;
      }
  
      .approach-tabs .nav-link.active {
        background-color: #fff;
        color: #000;
       
        font-weight: 600;
      }
  
      .approach-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 5px;
        display: block;
      }
  
      .tab-content {
       
        padding: 2rem;
        background-color: #fff;
      }
  
      .approach-box {
       background-color: var(--back);
      }

      

      .service-card {
        width: auto;
        height: 24rem; /* fixed height */
        position: relative;
        cursor: pointer;
        border: none;
        background-color: transparent;
        overflow: visible;
        
      }
      .service-card:hover .bottom p{
        font-size: 16px;
        font-family: var(--fontpop);
        color: var(--grey);
        font-weight: 400;
    }
      
      .top {
        height: 12rem;
        background: #3BAA2B;
        border-radius: 20px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        transition: 1s;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        z-index: 1;
      }
      
      .bottom {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        background: white;
        border-radius: 0 0 20px 20px;
        padding: 1rem;
        text-align: justify;
        opacity: 0;
        transform: translateY(-50%);  
        transform-origin: top;
        transition: 0.5s ease;
        z-index: 2;
      }
      
      .service-card:hover .bottom {
        opacity: 1;
        transform: translateY(0);
      }
      
      .service-card:hover .top {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        transform: translateY(-100%); 
      }
      
      .top img {
        height: 10rem;
        width: 10rem;
      }
      
      .top h1 {
        font-size: 24px;
        color: var(--back);
        margin-bottom: 1rem;
        font-weight: 600;
        text-align: center;
      }
      
@media (max-width: 480px){
  .services{
    padding: 1rem 1rem;
  
  }
 
}
@media (min-width: 481px) and (max-width: 768px){
  .services{
    padding: 2rem 2rem;
  
  }
 
}
@media (min-width: 769px) and (max-width: 1000px){
  .services{
    padding: 3rem 4rem;
  
  }
}
@media (min-width: 1001px) and (max-width: 1400px){
  .services{
    padding: 3rem 4rem;
  
  }
}
