/* ============================================================
   ABOUT SECTION  —  about-section.css
   All classes prefixed with  ab-  to avoid collisions
============================================================ */

/* ---------- Section Layout ---------- */
.ab-section {
  display: flex;
  align-items: center;
  gap: 90px;
  max-width: 100%;
  width: 100%;
  margin: auto;
  background: #F5F4F2;
  padding: 90px 80px;
  box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ---------- LEFT: Image Block ---------- */
.ab-img-block {
  flex: 0 0 auto;
  position: relative;
}

.ab-img-wrap {
  position: relative;
  width: 500px;
  height: 500px;
  border-radius: 12px;
  overflow: visible;
}

.ab-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Orange corner triangle */
.ab-corner {
  position: absolute;
  top: -12px;
  left: -12px;
  width: 60px;
  height: 60px;
  background: #55ABE1;
  border-radius: 8px 0 0 0;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* Experience badge */
.ab-badge {
  position: absolute;
  bottom: 28px;
  left: 20px;
  background: #ffffff;
  border-radius: 8px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  z-index: 2;
  min-width: 130px;
}

.ab-badge-num {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.ab-badge-lbl {
  font-size: 16px;
  font-weight: 500;
  color: #777;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* Play button */
.ab-play-btn {
  position: absolute;
  bottom: 28px;
  right: -20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #55ABE1;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(20,170,225,0.35);
  padding: 0;
}

.ab-play-btn:hover {
  transform: scale(1.08);
  background: #55ABE1;
}

.ab-play-btn svg {
  margin-left: 3px;
}

/* Ripple rings */
.ab-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(20,170,225,0.35);
  animation: ab-ripple 2s ease-out infinite;
  pointer-events: none;
}

.ab-ring-1 {
  width: 72px;
  height: 72px;
  animation-delay: 0s;
}

.ab-ring-2 {
  width: 92px;
  height: 92px;
  animation-delay: 0.5s;
}

@keyframes ab-ripple {
  0%   { opacity: 0.7; transform: scale(0.85); }
  100% { opacity: 0;   transform: scale(1.2);  }
}

/* ---------- RIGHT: Content Block ---------- */
.ab-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Eyebrow */
.ab-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.ab-eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: #55ABE1
}

.ab-eyebrow-txt {
  font-size: 18px;
  font-weight: 600;
  color: #55ABE1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  
  font-family: "Poppins", sans-serif;
}

.ab-eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #55ABE1;
  border-radius: 50%;
}

/* Heading */
.ab-heading {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.22;
  margin: 0 0 14px 0;
  padding: 0;
}

/* Description */
.ab-desc {
  font-size: 18px;
  color: #6b6b6b;
  line-height: 1.65;
  margin: 0 0 28px 0;
  padding: 0;
  
  font-family: "Poppins", sans-serif;
}

/* ---------- Why Choose Us ---------- */
.ab-why {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  margin-bottom: 28px;
}

.ab-why-title {
    font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  padding: 0;
}

.ab-why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ab-why-list li {
  font-size: 13.5px;
  color: #3a3a3a;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

.ab-check {
  color: #55ABE1;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.ab-why-img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

/* ---------- Phone CTA ---------- */
.ab-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.ab-phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #55ABE1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff8f4;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}

.ab-phone-icon:hover {
  border-color: #55ABE1;
  background: #e6f3ff;
}

.ab-phone-txt {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ab-phone-lbl {
  font-size: 18px;
  color: #888;
  font-weight: 400;
  
  font-family: "Poppins", sans-serif;
}

.ab-phone-num {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.ab-phone-num:hover {
  color: #55ABE1;
}

/* ---------- CTA Button ---------- */
.ab-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #55ABE1;
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(20,170,225,0.35);
  line-height: 1;
  border: none;
  cursor: pointer;
}

.ab-cta-btn:hover {
  background: #55ABE1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,0,0.34);
}

.ab-cta-btn:active {
  transform: translateY(0);
}

/* ---------- Video Modal ---------- */
.ab-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.ab-modal.ab-active {
  display: flex;
  animation: ab-fadeIn 0.2s ease;
}

@keyframes ab-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.ab-modal-box {
  background: #1a1a1a;
  border-radius: 12px;
  width: 580px;
  max-width: 92vw;
  position: relative;
  animation: ab-slideUp 0.25s ease;
  overflow: hidden;
  line-height: 0;
}

.ab-modal-box iframe {
  width: 100%;
  height: 650px;
  display: block;
  border: none;
}

@keyframes ab-slideUp {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.ab-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.85;
  transition: opacity 0.2s;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
}

.ab-modal-close:hover {
  opacity: 1;
  background: #55ABE1;
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .ab-section {
    flex-direction: column;
    padding: 40px 24px;
    gap: 40px;
  }

  .ab-img-wrap {
    width: 100%;
    height: 480px;
  }

  .ab-heading {
    font-size: 26px;
  }

  .ab-why-img {
    width: 340px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .ab-section {
    padding: 32px 16px;
  }

  .ab-why {
    flex-direction: column;
  }

  .ab-why-img {
    width: 100%;
    height: 140px;
  }

  .ab-play-btn {
    right: 12px;
  }
}