/* =========================================
   1. Imports & Setup
   ========================================= */
/* Global styles are loaded via ../../styles/styles.css in HTML */
/* =========================================
   2. Global Adjustments for this page
   ========================================= */
body {
  font-family: var(--font-work);
  color: #444;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.bg-light {
  background-color: #f9f9f9;
}

/* =========================================
   3. About Hero Section
   ========================================= */
/* =========================================
   4. About Intro Section (Composition)
   ========================================= */
.about-intro {
  background: #fff;
  padding-top: 100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-images-refined {
  position: relative;
  padding-right: 50px;
  padding-bottom: 50px;
}
.about-images-refined .main-img {
  width: 85%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.about-images-refined .main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-images-refined .sub-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.about-images-refined .sub-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-images-refined .exp-badge-refined {
  position: absolute;
  top: 40px;
  left: -30px;
  background: var(--primary-color);
  color: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(253, 116, 80, 0.3);
  animation: float 3s ease-in-out infinite;
}
.about-images-refined .exp-badge-refined h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
  font-family: var(--font-outfit);
}
.about-images-refined .exp-badge-refined p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.about-content-refined .section-header-left {
  margin-bottom: 25px;
}
.about-content-refined .section-header-left h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-top: 10px;
  font-family: var(--font-playfair);
}
.about-content-refined .intro-p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}
.about-content-refined .intro-p:last-child {
  margin-bottom: 30px;
}
.about-content-refined .about-check-list {
  list-style: none;
  margin-bottom: 40px;
}
.about-content-refined .about-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 15px;
}
.about-content-refined .about-check-list li i {
  color: var(--primary-color);
  font-size: 20px;
}
.about-content-refined .about-bottom-info {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 600px) {
  .about-content-refined .about-bottom-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}
.about-content-refined .about-bottom-info .support-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}
.about-content-refined .about-bottom-info .support-contact .icon {
  width: 55px;
  height: 55px;
  background: #f6f4fa;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.about-content-refined .about-bottom-info .support-contact .text {
  display: flex;
  flex-direction: column;
}
.about-content-refined .about-bottom-info .support-contact .text span {
  font-size: 13px;
  color: #777;
  font-weight: 500;
}
.about-content-refined .about-bottom-info .support-contact .text strong {
  font-size: 18px;
  color: var(--dark);
  font-family: var(--font-outfit);
}

/* =========================================
   5. Features Section (What We Do)
   ========================================= */
.about-features {
  background-color: #f6f4fa;
}
.about-features .badge-sub {
  background-color: #fff;
}
.about-features .section-center-header {
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  background: #fff;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
}
.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--secondary-color);
  transition: all 0.4s ease;
  z-index: 0;
}
.feature-item:hover {
  transform: translateY(-10px);
}
.feature-item:hover::before {
  height: 100%;
}
.feature-item:hover .feature-content {
  color: #fff;
}
.feature-item:hover .feature-content h3,
.feature-item:hover .feature-content p,
.feature-item:hover .feature-content .feature-link {
  color: #fff !important;
}
.feature-item:hover .feature-content .feature-number {
  color: rgba(255, 255, 255, 0.1) !important;
}
.feature-item:hover .feature-content .feature-icon {
  background: #fff;
  color: var(--secondary-color);
}
.feature-item .feature-content {
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
.feature-item .feature-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.feature-item .feature-icon {
  width: 70px;
  height: 70px;
  background: #f6f4fa;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all 0.4s ease;
}
.feature-item .feature-number {
  font-size: 48px;
  font-weight: 800;
  color: #f0f0f0;
  font-family: var(--font-outfit);
  transition: all 0.4s ease;
  line-height: 1;
}
.feature-item h3 {
  margin-bottom: 15px;
  font-family: var(--font-outfit);
  color: #000;
  transition: 0.3s;
  font-size: var(--section-heading);
}
.feature-item p {
  margin-bottom: 25px;
  line-height: 1.7;
  transition: 0.3s;
  color: #666;
}
.feature-item .feature-link {
  font-weight: 700;
  font-family: var(--font-outfit);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}
.feature-item .feature-link i {
  transition: transform 0.3s ease;
}
.feature-item .feature-link:hover i {
  transform: translateX(5px);
}

/* =========================================
   6. Our Team Section
   ========================================= */
.about-team {
  background: #fff;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  transition: 0.3s;
}
.team-card:hover .team-thumb img {
  transform: scale(1.05);
}
.team-card:hover .team-thumb .team-social {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
.team-card .team-thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  margin-bottom: 20px;
}
.team-card .team-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.team-card .team-thumb .team-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}
.team-card .team-thumb .team-social a {
  width: 40px;
  height: 40px;
  background: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
}
.team-card .team-thumb .team-social a:hover {
  background: var(--primary-color);
  color: #fff;
}
.team-card .team-info h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-family: var(--font-outfit);
}
.team-card .team-info span {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 991px) {
  .section {
    padding: 80px 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-images-refined {
    padding-right: 0;
    padding-bottom: 0;
  }
  .about-images-refined .main-img {
    width: 100%;
    height: 400px;
  }
  .about-images-refined .sub-img {
    display: none;
  }
  .about-images-refined .exp-badge-refined {
    left: 20px;
    top: 20px;
    padding: 20px;
  }
  .about-images-refined .exp-badge-refined h3 {
    font-size: 1.8rem;
  }
  .about-content-refined h2 {
    font-size: 2.2rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .about-content-refined h2 {
    font-size: 1.8rem;
  }
  .about-bottom-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}/*# sourceMappingURL=styles.css.map */