/* Swiper Container */
.custom-swiper-container {
    width: 80%;
    overflow: hidden;
}

.hero-wrapper{
    width: 100%;
}

.custom-swiper-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.service_card_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.custom-swiper-slide {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    opacity: 1; /* Default state */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Apply fade and transform transitions */

}


/* Service Card Styles */
.service_card {
    display: flex;
    flex-direction: column;
    gap: 10px;

    min-height: fit-content;
    border-radius: 20px;
    overflow: hidden;
    align-items: center;
    min-width: 32%;
    padding-bottom: 10px;
}

.service_card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.card_contents {
    height: 50%;
    width: 95%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.card_contents p {
    text-align: left;
    font-size: small;
    line-height: 1.7;
}

.card_contents h1 {
    font-size: x-large;
    text-align: left;
}

/* Navigation Buttons */
.custom-swiper-prev, .custom-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    border-radius: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 10px;
    font-size: xx-large;
    background-color: #182777;
    transition: all 0.3s ease; /* Apply transition effect */
}

 .custom-swiper-next:hover {
    background-color: rgba(24, 38, 119, 0.854); /* Equivalent to #182677 with 56% opacity */
    transform: translateY(-50%) scale(1.1); /* Scale up when hovered */
}
 .custom-swiper-prev:hover {
    background-color: rgba(24, 38, 119, 0.854); /* Equivalent to #182677 with 56% opacity */
    transform: translateY(-50%) scale(1.1); /* Scale up when hovered */
  
}


.custom-swiper-prev {
    left: 50px;
}

.custom-swiper-next {
    right: 50px;
}
.footer-container {
    background: linear-gradient(to left, #0D0F2F, #0e1264);
    border-radius: 50px 50px 0px 0px;
    margin-top: 50px;
}

.blue-gradient-bg {
    background: #0e1264;
}
.footer {

    text-align: center; 
    justify-content: center;
    display: flex;
    width: 100%;
    
    
}

.footer-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 85%;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    padding: 40px 0px ;
    color: white;

}

.logo-social-media{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.fa {
    text-align: center;
    text-decoration: none;
  }
  
  /* Add a hover effect if you want */
  .fa:hover {
    opacity: 0.7;
  }

  .contact{
    margin-top: 20px;
    margin-bottom: 20px;
  }
  

.gold-text{
    background: linear-gradient(90deg, #b38528, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.expert-card h2 {
    background: linear-gradient(to left, #0D0F2F, #0e1264);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}
.expert-card  {
    background-color: white;
    border-radius: 20px;
    
}
.expert-card p {
    font-weight: 200;
    font-size: 1.2rem;
    color: #000000ac;
}

.experties-wrapper{


	
}

.cta {
    background: linear-gradient(to left, #0D0F2F, #0e1264);
    color: #fff;
  
   
}


.footer-contact{
    width: 40%;
}
.footer-service{
    width: 20%;
}


.styled-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px; /* Adjust spacing */
    font-size: 1rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

 
/* Responsive Design */
@media (min-width: 1024px) {
    .custom-swiper-slide {
        flex: 0 0 25%; /* 4 items per row on PC */
    }
}

@media (max-width: 1024px) {
    .custom-swiper-slide {
        flex: 0 0 50%; /* 2 items per row on medium screens */
    }

    .swiper-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .custom-swiper-slide {
        flex: 0 0 100%; /* 1 item per row on mobile */
    }

    .service_card_wrapper{
        padding: 0 10px;
    }

    /* Adjust swiper container padding for mobile */
    .swiper-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .custom-swiper-container {
        width: 100%;
    }


    .footer-contents{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer-contact{
        width: 100%;
    }

    .footer-service{
        width: 100%;
    }

    
}
