
/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
    top: 0px;
  }
  
  .bg-decoration {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
  }
  
  .tech-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .tech-dots::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--zhahi-teal);
    top: 20%;
    left: 10%;
  }
  
  .tech-dots::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--zhahi-teal);
    top: 60%;
    left: 80%;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .about-story {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .about-story h3 {
    font-size: 2rem;
    color: var(--zhahi-teal);
  }
  
  .about-story p {
    color: rgb(255, 255, 255);
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .stats-card {
    color: black;
    margin-top: 50px;
    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);
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .stat-box {
    text-align: center;
    padding: 1rem;
    background-color: rgba(123, 126, 131, 0.5);
    border-radius: 0.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--zhahi-teal);
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    color: rgb(0, 0, 0);
  }
  
  .values-box {
    margin-top: 2rem;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
  }
  
  .values-list {
    color: rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .values-list li {
    display: flex;
    align-items: center;
  }
  
  .checkmark {
    color: #00acc1; 
    margin-right: 0.5rem;
  }
  
  /* Media Queries */
  @media (min-width: 1024px) {
    .about-grid {
      grid-template-columns: 3fr 2fr;
    }
    
    .cta-buttons {
      flex-direction: row;
    }
  }
  

/* Responsive adjustments */
@media (max-width: 768px) {
  .key-offerings {
    margin: 1rem 0;
  }
  
  .offering-item {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
  }
}



  /* Our Works */
/* *,
*:before,
*:after {
	box-sizing: border-box;
	outline: none;
}

.our-works {
  padding: 100px 0;
}

.swiper {
  padding-bottom: 50px;
}

.swiper-wrapper {
  margin-left: 100px;
  margin-left: 100px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.swiper-button-next,
.swiper-button-prev {
  color: #00acc1;
}    

.swiper-pagination-bullet-active {
  background-color: #00acc1;
}

.swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
}


figure {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
  width: 100%;
	max-width: 400px;
	height: 500px;
	border-radius: 10px;
	box-shadow: 
		0 1px 3px rgba(0,0,0,0.12), 
		0 1px 2px rgba(0,0,0,0.24);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	overflow: hidden;
	&:hover {
		box-shadow: 
			0 14px 28px rgba(0,0,0,0.25), 
			0 10px 10px rgba(0,0,0,0.22);
		h1 {
			opacity: 0;
			transform: scale(0.7);
		}
		iframe {
			transform: scale(1);
		}
		figcaption {
			bottom: 0;
		}
	}
	h1 {
		position: absolute;
		top: 50px;
		left: 20px;
		margin: 0;
		padding: 0;
		color: rgb(96, 92, 92);
		font-size: 60px;
		font-weight: 100px;
		line-height: 1;
		opacity: 1;
		transform: scale(1);
		transition: 0.25s ease;
		z-index: 999;
	}
	iframe {
		height: 100%;
        width: 100%;
		transition: 0.25s;
        
	}
	figcaption {
		position: absolute;
		bottom: -34%;
		left: 0;
		width: 100%;
		margin: 0;
		padding: 5px;
        border-radius: 8px;
		background-color: var(--zhahi-navy);
        backdrop-filter: blur(35px);
		color: white;
		line-height: 1;
		transition: 0.25s;
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
		h3 {
            display: flex;
			margin: 0 0 20px;
            color: var(--zhahi-teal);
			padding: 0;
            justify-content: center;
		}
        i{
            color: #000000;
        }
		p {
			font-size: 14px;
			line-height: 1.75;
		}
		button {
			position: relative;
			display: flex;
			align-items: center;
			justify-content: center;
			margin: 10px 0 0;
			padding: 10px 30px;
			background-color: #1abc9c;
			border: none;
			border-radius: 5px;
			color: white;
			font-size: 14px;
			cursor: pointer;
		}
	}
} */


