/* Hero Section */
#hero-about {
  background: linear-gradient(-40deg, #00000000, #00000066),
    linear-gradient(-30deg, #00000000, #00000099),
    url("/wp-content/uploads/2025/10/about-bg-pic-scaled.jpg") no-repeat center / cover;
  min-height: 600px;
  position: relative;
  padding: 140px 0;
}

#hero-about .hero-subtitle {
  color: white;
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 600;
}

#hero-about .hero-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  max-width: 670px;
  color: #ffffff;
}

#hero-about .button {
  margin-top: 16px;
}

#hero-about .stats-container {
  position: absolute;
  bottom: 40px;
  right: 5%;
  display: flex;
  gap: 15px;
}

#hero-about .stat-box {
  background: var(--clr-primary);
  color: white;
  padding: 6px 20px;
  border-radius: var(--rounded-12);
  text-align: center;
  min-width: 120px;
}

#hero-about .stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
  font-family: "Manrope", "sens-serif";
}

#hero-about .stat-label {
  font-size: 0.85rem;
  opacity: 0.95;
}

@media (max-width: 991px) {
  #hero-about {
	background: linear-gradient(-40deg, #00000000, #00000066),
		linear-gradient(-30deg, #00000000, #00000099),
		url("/wp-content/uploads/2025/10/mobile-about-pic.png") no-repeat center / cover;   
    min-height: 500px;
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  #hero-about .stats-container {
    position: relative;
    right: 0;
    bottom: 0;
    margin-top: 40px;
  }
}

@media (max-width: 479px) {
  #hero-about .stats-container {
    flex-direction: row;
  }

  #hero-about .stat-box {
    padding: 15px 20px;
    min-width: auto;
    flex: 1;
  }

  #hero-about .stat-number {
    font-size: 1.5rem;
  }

  #hero-about .stat-label {
    font-size: 0.75rem;
  }
}

/* Story Section */
#story-section .content {
  gap: 60px;
}

#story-section .left-side .desc {
  display: grid;
  gap: 20px;
}

#story-section .right-side figure {
  position: relative;
  height: 570px;
  border-radius: var(--rounded-24);
  overflow: hidden;	
}

#story-section .right-side figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: #00000080;
  color: #ffffff;
  font-size: 14px;
  padding: 10px;
}

@media (max-width: 991px) {
  #story-section .right-side figure {
    height: 370px;
  }
}

/* What Makes Us Special Section */
.special-section {
  background: #f8f9fa;
}

.cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1040px;
  margin: 0 auto;
}

.feature-card {
  width: 31%;
  border-radius: var(--rounded-20);
  padding: 30px 20px;
  position: relative;
  transition: all 0.3s ease;
  background-color: #c4d8f9;
  box-shadow: 0 0 1px 1px #091e4221, 0 1px 1px 0 #00000040;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(65, 105, 225, 0.2);
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--clr-primary);
  border-radius: var(--rounded-12);
  color: white;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: var(--clr-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .feature-card {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .feature-card {
    width: 100%;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* sheet section */
#sheet-section .figure {
  height: 600px;
  border-radius: var(--rounded-24);
}

.tech-grid.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 100%;
  margin-top: 50px;
}

.tech-grid.cards-grid .feature-card {
  width: 100%;
}

/* Team Section */
.team-section .section-heading {
  margin-bottom: 50px;		
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 100%;
  height: 405px;
  position: relative;
}

.team-info {
  padding: 25px;
  background: white;
}

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.team-role {
  font-size: 16px;
  color: #00000066;
}

.linkedin-icon {
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid #adb1b8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  cursor: pointer;
  transition: all 0.3s;
}

.linkedin-icon:hover {
  background: #4169e1;
  color: white;
}

.team-description {
  color: #00000066;
  font-size: 1rem;
}

/* Our Office Section */
.office-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.office-details {
  background: #f0f0f0;
  padding: 40px;
  border-radius: 15px;
}

.office-address {
  margin-bottom: 30px;
}

.office-address p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 5px;
}

.office-section .button {
  margin-top: 20px;
}

.contact-btn:hover {
  background: #3658c7;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(65, 105, 225, 0.4);
}

.office-map {
  background: #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
  height: 400px;
  position: relative;
}

@media (max-width: 991px) {
  .office-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .office-details {
    padding: 30px;
  }
}

