

/* Service Section */
.services-section {
  position: relative;
  overflow: hidden;
  height: auto;
  padding: 4rem 0; 
  padding-top: 80px;
}
  
  /* Slider Card Styling */
  .slider-card {
    margin-top: 20px;
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: all 0.3s ease;
  cursor: pointer;
  }

  .service-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
  
  /* Hover effect */
  .slider-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--zhahi-teal);
  
  }

  .slider-card:hover .slider-title {
    color: var(--zhahi-teal);
  }
  
  /* Inside the card */
  .slider-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin-bottom: 1rem;
  }
  
  .slider-description {
    color: rgb(0, 0, 0);
    margin-bottom: 1.5rem;
  }
  
  .slider-icon {
    display: flex;
    justify-content: space-between;
    font-size: 2.5rem;
    color: var(--zhahi-teal);
    margin-bottom: 1rem;
  }
  
  .service-features {
    color: black;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
  }
  
  .service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
  }
  
  .feature-icon {
    color: var(--zhahi-teal);
    margin-right: 0.5rem;
    flex-shrink: 0;
  }
  
  .mySwiper {
    padding: 1rem 0;
    height: auto;
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  
  .container .swiper-button-next,
  .container .swiper-button-prev {
    color: #00acc1;
    top: 420px;
  }    

  .container .swiper-pagination-bullet-active {
    background-color: #00acc1;
  }

.btn-container{
  color: white;
  margin-top: 15px;
  display: flex;
  
}

/* Popup Overlay with blur */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Popup Box */
.popup-content {
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: 15px;
  max-width: 90%;
  width: 90%;
  margin: 1rem;
  text-align: center;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
/* Close Button */
.close-btn {
  position: absolute;
  color: var(--zhahi-teal);
  top: 15px;
  right: 20px;
  font-size: 25px;
  cursor: pointer;
}

#popup-image {
  max-width: 100%; 
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .popup-content {
    padding: 2rem;
    max-width: 500px;
  }
  
  #popup-image {
    max-width: 30%;
  }
}


  /* Responsive margin on small devices */
  @media (max-width: 767px) {
    .container .swiper-button-prev,
    .container .swiper-button-next{
    margin: -13px;
      top: 380px;
    }
    .slider-card {
      margin: 1 rem;
      min-height: 400px;
    }
  }
  
  
  /* Process Section */
.process-section {
  margin-top: -50px;
  padding: 3rem 0;
}
  
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; 
  margin-top: 2rem; 
}
  
  .step-card {
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
  }
  
  .step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--zhahi-teal);
    opacity: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
  }

  .step-description{
    color: black;
    
  }
  
  .step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--zhahi-teal);
  }
  


  
  /* Media Queries */
  @media (min-width: 768px) {
    .process-steps {
      flex-direction: row;
      flex-wrap: wrap; 
    }
    
    .step-card {
      flex: 1 1 calc(50% - 1rem);
      min-width: 0;
    }
  }

  @media (min-width: 1024px) {
    .service-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    .process-steps {
      flex-wrap: nowrap;
    }
    
    .step-card {
      flex: 1;
    }
  }



/* Testimonal Section */

.testimonials{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
 

.outerdiv
{
	width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.innerdiv
{
	transform: scale(0.9);
	margin: 1rem;
	display: grid;
	grid-gap: 1.5rem;
	grid-template-rows: repeat(2,22rem);
	grid-template-columns: repeat(4,17rem);
}
.eachdiv
{
	padding: 1rem 2rem;
    border-radius: 0.8rem;
    box-shadow: 5px 5px 20px #6d6b6b6b;
    color: white;
}

.div1
{
	background: #6a4e97;
    grid-column: 1/3;
    grid-row: 1/2;
    background-repeat: no-repeat;
    background-position-x: 25rem;
}
.div2
{
	background:#49556B;
    grid-column: 3/4;
    grid-row: 1/2;
}
.div3
{
	background: white;
    grid-column: 4/5;
    grid-row: 1/3;
    color: black;
}
.div4
{
	background: white;
	grid-column: 1/2;
    grid-row: 2/3;
    color: black;
}
.div5
{
	background: #18202D;
	grid-column: 2/4;
    grid-row: 2/3;
}
.userdetails
{
	display: flex;
}
.imgbox
{
	margin-right: 1rem;
}
.imgbox img
{
	border-radius: 50%;
	width: 2rem;
	border: 2px solid #cec5c5;
}
.detbox
{
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.detbox p
{
	margin: 0;
}
.detbox .name
{
	color: hsl(0, 0%, 81%);
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
    font-weight: 600;
}
.detbox .name.dark
{
	color: #49505A;
}
.detbox .designation
{
	color: hsl(0, 0%, 81%);
    opacity: 50%;
    font-size: 0.8rem;
}
.detbox .designation.dark
{
	color: #49505A;
}
.review h4
{
	font-size: 1.4rem;
	color: #F3DEFF;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}
.review.dark h4{
	color:#4B5258;
}
.review p
{
	font-size: 0.95rem;
    color: #F3DEFF;
    font-weight: 500;
    opacity: 50%;
    line-height: 1.5;
}
.review.dark p{
	color: #0e0e0e;
}
.attribution
{
	font-size: 1rem;
    line-height: 1.5;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    text-align: right;
}
.attribution a
{
	text-decoration: none;
}

@media only screen and (max-width: 1000px)
{
	.innerdiv
	{
		transform: scale(0.7);
	}
}
@media only screen and (max-width: 800px)
{
	.innerdiv
	{
		transform: scale(0.6);
	}
}
@media only screen and (max-width: 600px)
{
	.div1 {
		background-position-x: 10rem;
	}
	.innerdiv
	{
		display: flex; 
		flex-direction: column;
		transform: scale(1);
		margin: 2rem;
		margin-bottom: 5rem;
	}
	.attribution
	{
		position: relative;
	}
}


/* Base mobile styles */
@media (max-width: 767px) {

  .Chatbot{
    display: none;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .slider-card {
    padding: 1.5rem;
  }
  
  .slider-title {
    font-size: 1.3rem;
  }
  
  .step-card {
    padding: 1.5rem;
  }
  
  .step-number {
    font-size: 2rem;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
  
  /* Adjust swiper navigation for mobile */
  .swiper-button-next, 
  .swiper-button-prev {
    display:none;
  }
  
  .swiper-pagination {
    position: relative;
    margin-top: 0.2rem;
  }
}

  