/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 120px 0;
  background-color: var(--background-color);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../../../uploads/web/imgs/about/features-1.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  margin-bottom: 30px;
}

.hero .hero-content .subtitle {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 25px;
}

.hero .hero-content .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: var(--accent-color);
  transform: translateY(-50%);
}

.hero .hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 32px;
  }
}

.hero .hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .hero .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.hero .hero-buttons .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-buttons .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: var(--default-color);
  transform: translateY(-3px);
}

.hero .trust-badges {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .hero .trust-badges {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hero .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .trust-badges .badge-item i {
  font-size: 32px;
  color: var(--accent-color);
}

.hero .trust-badges .badge-item .badge-text {
  display: flex;
  flex-direction: column;
}

.hero .trust-badges .badge-item .badge-text .count {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.hero .trust-badges .badge-item .badge-text .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.hero .hero-image:hover img {
  transform: scale(1.05);
}

.hero .hero-image .image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-image .image-badge span {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.hero .hero-image .image-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }

  .hero .hero-content {
    margin-bottom: 50px;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about .intro-content .section-badge i {
  font-size: 1rem;
}

.about .intro-content h2 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .about .intro-content h2 {
    font-size: 2.4rem;
  }
}

.about .intro-content .lead-text {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.about .intro-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about .founder-highlight {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 1.5rem;
  border-left: 4px solid var(--accent-color);
  margin-top: 2rem;
}

.about .founder-highlight .founder-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about .founder-highlight .founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .founder-highlight .founder-info {
  overflow: hidden;
}

.about .founder-highlight .founder-info blockquote {
  font-style: italic;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about .founder-highlight .founder-info .founder-details h5 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.about .founder-highlight .founder-info .founder-details span {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 500;
}

.about .visual-section {
  position: relative;
}

.about .visual-section .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about .visual-section .main-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .visual-section .main-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .about .visual-section .main-image img {
    height: 350px;
  }
}

.about .visual-section .experience-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--surface-color);
  padding: 1.2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--accent-color);
}

.about .visual-section .experience-badge .badge-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about .visual-section .experience-badge .badge-text {
  font-size: 0.8rem;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .visual-section .overlay-image {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 4px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .visual-section .overlay-image {
    display: none;
  }
}

.about .visual-section .overlay-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.about .achievements-grid {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 5%));
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 5rem 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.about .achievements-grid .achievement-item {
  padding: 1.5rem;
}

.about .achievements-grid .achievement-item .achievement-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.about .achievements-grid .achievement-item .achievement-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.about .achievements-grid .achievement-item .achievement-icon:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
}

.about .achievements-grid .achievement-item .achievement-icon:hover i {
  color: var(--contrast-color);
}

.about .achievements-grid .achievement-item .achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .about .achievements-grid .achievement-item .achievement-number {
    font-size: 2.5rem;
  }
}

.about .achievements-grid .achievement-item .achievement-label {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .timeline-section {
  margin: 5rem 0;
}

.about .timeline-section .section-header h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.about .timeline-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.about .timeline-section .timeline {
  position: relative;
  padding: 2rem 0;
}

.about .timeline-section .timeline .timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item {
    padding-left: 60px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.about .timeline-section .timeline .timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about .timeline-section .timeline .timeline-item:nth-child(even) .timeline-content {
  text-align: right;
  padding-right: 2rem;
  padding-left: 0;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-right: 0;
  }
}

.about .timeline-section .timeline .timeline-item .timeline-year {
  width: 120px;
  height: 120px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item .timeline-year {
    position: absolute;
    left: -40px;
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }
}

.about .timeline-section .timeline .timeline-item .timeline-content {
  flex: 1;
  padding-left: 2rem;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item .timeline-content {
    padding-left: 0;
    margin-top: 1rem;
  }
}

.about .timeline-section .timeline .timeline-item .timeline-content h4 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin-bottom: 0.8rem;
}

.about .timeline-section .timeline .timeline-item .timeline-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin: 0;
}

.about .team-preview {
  text-align: center;
  margin: 5rem 0;
}

.about .team-preview h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.4s ease-in-out;
  height: 100%;
}

.team .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.team .team-card.featured .team-header {
  display: flex;
  padding: 30px;
  gap: 25px;
  align-items: flex-start;
}

.team .team-card.featured .team-header .team-image {
  position: relative;
  flex-shrink: 0;
}

.team .team-card.featured .team-header .team-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 15px;
}

.team .team-card.featured .team-header .team-image .experience-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.team .team-card.featured .team-header .team-info {
  flex: 1;
}

.team .team-card.featured .team-header .team-info h4 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.team .team-card.featured .team-header .team-info .position {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team .team-card.featured .team-header .team-info .contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team .team-card.featured .team-header .team-info .contact-info a {
  color: var(--default-color);
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.team .team-card.featured .team-header .team-info .contact-info a i {
  color: var(--accent-color);
  font-size: 16px;
}

.team .team-card.featured .team-header .team-info .contact-info a:hover {
  color: var(--accent-color);
}

.team .team-card.featured .team-details {
  padding: 0 30px 30px 30px;
}

.team .team-card.featured .team-details p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.team .team-card.featured .team-details .credentials {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.team .team-card.featured .team-details .credentials .cred-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 8px 15px;
  border-radius: 25px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.team .team-card.featured .team-details .credentials .cred-item i {
  color: var(--accent-color);
  font-size: 14px;
}

.team .team-card.featured .team-details .credentials .cred-item span {
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 500;
}

.team .team-card.featured .team-details .social-links {
  display: flex;
  gap: 12px;
}

.team .team-card.featured .team-details .social-links a {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.team .team-card.featured .team-details .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.team .team-card.compact .member-photo {
  position: relative;
  overflow: hidden;
}

.team .team-card.compact .member-photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.team .team-card.compact .member-photo .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%) 0%, color-mix(in srgb, var(--heading-color), transparent 20%) 100%);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content {
  text-align: center;
  color: var(--contrast-color);
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content h5 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: var(--contrast-color);
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content span {
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content .quick-contact {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content .quick-contact a {
  background: var(--contrast-color);
  color: var(--accent-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.team .team-card.compact .member-photo .hover-overlay .overlay-content .quick-contact a:hover {
  transform: scale(1.1);
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
}

.team .team-card.compact .member-photo:hover .hover-overlay {
  opacity: 1;
}

.team .team-card.compact .member-photo:hover .hover-overlay .overlay-content {
  transform: translateY(0);
}

.team .team-card.compact .member-photo:hover img {
  transform: scale(1.05);
}

.team .team-card.compact .member-summary {
  padding: 20px;
  text-align: center;
}

.team .team-card.compact .member-summary h5 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.team .team-card.compact .member-summary span {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  display: block;
}

.team .team-card.compact .member-summary .skills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.team .team-card.compact .member-summary .skills .skill-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

@media (max-width: 992px) {
  .team .team-card.featured .team-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .team .team-card.featured .team-header .team-image {
    align-self: center;
  }
}

@media (max-width: 768px) {
  .team .team-card.featured .team-header {
    padding: 25px 20px;
  }

  .team .team-card.featured .team-header .team-image img {
    width: 100px;
    height: 100px;
  }

  .team .team-card.featured .team-header .team-info h4 {
    font-size: 20px;
  }

  .team .team-card.featured .team-header .team-info .contact-info a {
    font-size: 13px;
  }

  .team .team-card.featured .team-details {
    padding: 0 20px 25px 20px;
  }

  .team .team-card.featured .team-details .credentials {
    justify-content: center;
  }

  .team .team-card.featured .team-details .credentials .cred-item {
    font-size: 12px;
    padding: 6px 12px;
  }

  .team .team-card.featured .team-details .social-links {
    justify-content: center;
  }

  .team .team-card.featured .team-details .social-links a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .team .team-card.compact .member-photo img {
    height: 200px;
  }

  .team .team-card.compact .member-photo .hover-overlay .overlay-content h5 {
    font-size: 18px;
  }

  .team .team-card.compact .member-photo .hover-overlay .overlay-content .quick-contact a {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .team .team-card.compact .member-summary {
    padding: 15px;
  }

  .team .team-card.compact .member-summary h5 {
    font-size: 16px;
  }

  .team .team-card.compact .member-summary .skills .skill-tag {
    font-size: 10px;
    padding: 3px 8px;
  }
}
/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about .image-section {
  position: relative;
}

.home-about .image-section .main-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.home-about .image-section .main-image-wrapper .main-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .home-about .image-section .main-image-wrapper .main-image {
    height: 350px;
  }
}

.home-about .image-section .main-image-wrapper .floating-card {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--surface-color);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .home-about .image-section .main-image-wrapper .floating-card {
    bottom: 1rem;
    right: 1rem;
    padding: 1rem;
  }
}

.home-about .image-section .main-image-wrapper .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-about .image-section .main-image-wrapper .floating-card .card-content .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 10%));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-about .image-section .main-image-wrapper .floating-card .card-content .icon i {
  color: var(--contrast-color);
  font-size: 1.3rem;
}

.home-about .image-section .main-image-wrapper .floating-card .card-content .text .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

@media (max-width: 768px) {
  .home-about .image-section .main-image-wrapper .floating-card .card-content .text .number {
    font-size: 1.5rem;
  }
}

.home-about .image-section .main-image-wrapper .floating-card .card-content .text .label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.home-about .image-section .secondary-images {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 576px) {
  .home-about .image-section .secondary-images {
    flex-direction: column;
  }
}

.home-about .image-section .secondary-images .small-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.home-about .image-section .secondary-images .small-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-about .image-section .secondary-images .small-image img:hover {
  transform: scale(1.05);
}

.home-about .content-wrapper {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .home-about .content-wrapper {
    padding-right: 0;
    margin-top: 3rem;
  }
}

.home-about .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.home-about .content-wrapper .section-badge i {
  font-size: 1rem;
}

.home-about .content-wrapper h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .home-about .content-wrapper h2 {
    font-size: 2rem;
  }
}

.home-about .content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.home-about .content-wrapper .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .home-about .content-wrapper .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.home-about .content-wrapper .stats-grid .stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.home-about .content-wrapper .stats-grid .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.home-about .content-wrapper .stats-grid .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .home-about .content-wrapper .stats-grid .stat-item .stat-number {
    font-size: 1.7rem;
  }
}

.home-about .content-wrapper .stats-grid .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
}

.home-about .content-wrapper .features-list {
  margin-bottom: 2.5rem;
}

.home-about .content-wrapper .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--default-color);
}

.home-about .content-wrapper .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.home-about .content-wrapper .features-list .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.home-about .content-wrapper .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .home-about .content-wrapper .cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.home-about .content-wrapper .cta-wrapper .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.home-about .content-wrapper .cta-wrapper .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.home-about .content-wrapper .cta-wrapper .btn-primary:hover i {
  transform: translateX(3px);
}

.home-about .content-wrapper .cta-wrapper .btn-primary i {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick i {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text {
  display: flex;
  flex-direction: column;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.1rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text a {
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  font-size: 1rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text a:hover {
  color: var(--accent-color);
}
/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/bg/abstract-bg-3.webp") no-repeat center center;
  background-size: cover;
  opacity: 0.03;
  z-index: 0;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us .image-showcase {
  position: relative;
}

.why-us .image-showcase .main-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-us .image-showcase .main-image-wrapper .main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.why-us .image-showcase .main-image-wrapper .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content {
  text-align: center;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon:hover {
  transform: scale(1.1);
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content span {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0 0 15px 10px;
}

.why-us .image-showcase .main-image-wrapper:hover .main-image {
  transform: scale(1.05);
}

.why-us .image-showcase .floating-stats {
  position: absolute;
  top: -30px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-us .image-showcase .floating-stats .stat-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: rotate(5deg);
}

.why-us .image-showcase .floating-stats .stat-badge:nth-child(2) {
  transform: rotate(-3deg);
  background: var(--surface-color);
  color: var(--default-color);
}

.why-us .image-showcase .floating-stats .stat-badge .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-us .image-showcase .floating-stats .stat-badge .stat-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.why-us .image-showcase .experience-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 280px;
}

.why-us .image-showcase .experience-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us .image-showcase .experience-card .card-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.why-us .image-showcase .experience-card .card-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.why-us .image-showcase .experience-card .card-content p {
  font-size: 0.9rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .content-wrapper {
  padding-left: 2rem;
}

.why-us .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.why-us .content-wrapper .section-badge i {
  color: var(--accent-color);
}

.why-us .content-wrapper h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.why-us .content-wrapper .lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

.why-us .content-wrapper .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon i {
  font-size: 1.2rem;
  color: var(--contrast-color);
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .content-wrapper .achievement-highlights {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  background: var(--surface-color);
  justify-content: center;
}

.why-us .content-wrapper .achievement-highlights .highlight-item {
  text-align: center;
}

.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.why-us .content-wrapper .achievement-highlights .highlight-divider {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.why-us .content-wrapper .action-buttons {
  display: flex;
  gap: 1.5rem;
}

.why-us .content-wrapper .action-buttons .btn {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.why-us .content-wrapper .action-buttons .btn.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
  border: none;
  color: var(--contrast-color);
}

.why-us .content-wrapper .action-buttons .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.why-us .content-wrapper .action-buttons .btn.btn-outline {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}

.why-us .content-wrapper .action-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .why-us {
    padding: 80px 0;
  }

  .why-us .content-wrapper {
    padding-left: 0;
    margin-top: 3rem;
  }

  .why-us .content-wrapper h2 {
    font-size: 2.3rem;
  }

  .why-us .content-wrapper .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us .content-wrapper .achievement-highlights {
    flex-direction: column;
    gap: 1.5rem;
  }

  .why-us .content-wrapper .achievement-highlights .highlight-divider {
    width: 40px;
    height: 1px;
  }

  .why-us .content-wrapper .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .why-us .image-showcase .main-image-wrapper .main-image {
    height: 400px;
  }

  .why-us .image-showcase .floating-stats {
    position: relative;
    top: 20px;
    right: 0;
    flex-direction: row;
    justify-content: center;
  }

  .why-us .image-showcase .experience-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 2rem;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .why-us {
    padding: 60px 0;
  }

  .why-us .content-wrapper h2 {
    font-size: 2rem;
  }

  .why-us .content-wrapper .lead-text {
    font-size: 1.1rem;
  }

  .why-us .image-showcase .floating-stats {
    flex-direction: column;
    gap: 10px;
  }

  .why-us .image-showcase .floating-stats .stat-badge {
    min-width: 100px;
    padding: 15px;
  }

  .why-us .image-showcase .floating-stats .stat-badge .stat-number {
    font-size: 1.5rem;
  }
}
