/* ==========================================================================
   ABOUT US SECTION - MODERN PREMIUM REDESIGN
   Style system for modern, high-converting About section
   ========================================================================== */

:root {
  --about-primary: #ff5722;
  --about-primary-hover: #e64a19;
  --about-primary-light: rgba(255, 87, 34, 0.08);
  --about-primary-gradient: linear-gradient(135deg, #ff5722 0%, #ff7849 100%);
  --about-accent-gradient: linear-gradient(135deg, #ff7849 0%, #ff3d00 100%);
  --about-heading-color: #0f172a;
  --about-body-color: #475569;
  --about-muted-color: #64748b;
  --about-bg-light: #f8fafc;
  --about-bg-card: #ffffff;
  --about-border-color: #e2e8f0;
  --about-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --about-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --about-shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --about-shadow-glow: 0 12px 30px rgba(255, 87, 34, 0.25);
  --about-radius-sm: 8px;
  --about-radius-md: 16px;
  --about-radius-lg: 24px;
  --about-radius-full: 9999px;
  --about-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Wrapper & Section Spacing */
.about-modern-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.about-modern-section {
  padding: 90px 0;
  position: relative;
}

.about-modern-section.bg-alt {
  background-color: var(--about-bg-light);
}

/* Badge Header Pill */
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background-color: var(--about-primary-light);
  color: var(--about-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--about-radius-full);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 87, 34, 0.2);
}

.about-badge i {
  font-size: 14px;
}

/* Section Main Titles */
.about-title {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--about-heading-color);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-title .highlight-text {
  background: var(--about-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.about-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--about-body-color);
  margin-bottom: 30px;
}

.section-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

/* ==========================================================================
   1. HERO TWO-COLUMN LAYOUT
   ========================================================================== */

.about-hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
}

.about-hero-col {
  padding-left: 15px;
  padding-right: 15px;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--about-radius-lg);
  overflow: hidden;
  box-shadow: var(--about-shadow-lg);
  background-color: #000;
}

.about-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
  border-radius: var(--about-radius-lg);
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.about-experience-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 24px;
  border-radius: var(--about-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--about-shadow-md);
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  z-index: 2;
  transition: var(--about-transition);
}

.about-image-wrapper:hover .about-experience-badge {
  transform: translateY(-5px);
  background: rgba(255, 87, 34, 0.95);
  border-color: rgba(255, 255, 255, 0.3);
}

.about-experience-badge .badge-icon {
  width: 50px;
  height: 50px;
  background: var(--about-primary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  flex-shrink: 0;
}

.about-image-wrapper:hover .about-experience-badge .badge-icon {
  background: #ffffff;
  color: var(--about-primary);
}

.about-experience-badge .badge-number {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-experience-badge .badge-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Feature Check List */
.about-check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px 0 35px 0;
  padding: 0;
  list-style: none;
}

.about-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--about-heading-color);
}

.about-check-item i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--about-primary-light);
  color: var(--about-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* Modern CTA Button */
.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--about-primary-gradient);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--about-radius-full);
  box-shadow: var(--about-shadow-glow);
  transition: var(--about-transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.about-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(255, 87, 34, 0.4);
  color: #ffffff !important;
}

.about-cta-btn i {
  transition: transform 0.3s ease;
}

.about-cta-btn:hover i {
  transform: translateX(5px);
}

/* ==========================================================================
   2. ANIMATED STATISTICS SECTION
   ========================================================================== */

.stats-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card-modern {
  background: var(--about-bg-card);
  padding: 35px 25px;
  border-radius: var(--about-radius-md);
  border: 1px solid var(--about-border-color);
  box-shadow: var(--about-shadow-sm);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--about-transition);
}

.stat-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--about-primary-gradient);
  opacity: 0;
  transition: var(--about-transition);
}

.stat-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--about-shadow-lg);
  border-color: rgba(255, 87, 34, 0.3);
}

.stat-card-modern:hover::before {
  opacity: 1;
}

.stat-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px auto;
  border-radius: var(--about-radius-md);
  background: var(--about-primary-light);
  color: var(--about-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: var(--about-transition);
}

.stat-card-modern:hover .stat-icon-wrapper {
  background: var(--about-primary-gradient);
  color: #ffffff;
  transform: scale(1.1) rotate(5deg);
}

.stat-number-wrap {
  font-size: 42px;
  font-weight: 800;
  color: var(--about-heading-color);
  line-height: 1;
  margin-bottom: 10px;
  font-family: 'Roboto', 'Inter', sans-serif;
  letter-spacing: -1px;
}

.stat-number-wrap .stat-suffix {
  color: var(--about-primary);
}

.stat-label-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--about-muted-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ==========================================================================
   3. MISSION, VISION & VALUES CARDS
   ========================================================================== */

.mvv-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mvv-card {
  background: var(--about-bg-card);
  padding: 40px 30px;
  border-radius: var(--about-radius-lg);
  border: 1px solid var(--about-border-color);
  box-shadow: var(--about-shadow-sm);
  position: relative;
  transition: var(--about-transition);
  display: flex;
  flex-direction: column;
}

.mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--about-shadow-lg);
  border-color: rgba(255, 87, 34, 0.4);
}

.mvv-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.mvv-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--about-radius-md);
  background: var(--about-primary-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 16px rgba(255, 87, 34, 0.25);
  flex-shrink: 0;
  transition: var(--about-transition);
}

.mvv-card:hover .mvv-icon-box {
  transform: scale(1.1);
}

.mvv-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--about-heading-color);
  margin: 0;
}

.mvv-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--about-body-color);
  margin: 0;
}

/* ==========================================================================
   4. WHY CHOOSE US (6 FEATURE CARDS GRID)
   ========================================================================== */

.features-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card-modern {
  background: var(--about-bg-card);
  padding: 35px 28px;
  border-radius: var(--about-radius-md);
  border: 1px solid var(--about-border-color);
  box-shadow: var(--about-shadow-sm);
  transition: var(--about-transition);
  position: relative;
  overflow: hidden;
}

.feature-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--about-shadow-md);
  border-color: rgba(255, 87, 34, 0.35);
}

.feature-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--about-primary-light);
  color: var(--about-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
  transition: var(--about-transition);
}

.feature-card-modern:hover .feature-icon-badge {
  background: var(--about-primary-gradient);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}

.feature-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--about-heading-color);
  margin-bottom: 12px;
}

.feature-card-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--about-body-color);
  margin: 0;
}

/* ==========================================================================
   5. SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.about-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   6. RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1199px) {
  .about-title {
    font-size: 34px;
  }
  .stats-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-image-wrapper img {
    height: 420px;
  }
}

@media (max-width: 991px) {
  .about-modern-section {
    padding: 70px 0;
  }
  .about-hero-grid {
    flex-direction: column;
    gap: 40px;
  }
  .about-hero-col {
    width: 100%;
  }
  .about-image-wrapper img {
    height: 380px;
  }
  .mvv-grid-container,
  .features-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .about-modern-section {
    padding: 50px 0;
  }
  .about-title {
    font-size: 28px;
  }
  .about-check-list {
    grid-template-columns: 1fr;
  }
  .stats-grid-container,
  .mvv-grid-container,
  .features-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .about-experience-badge {
    padding: 14px 18px;
    bottom: 15px;
    left: 15px;
  }
  .about-experience-badge .badge-number {
    font-size: 22px;
  }
  .about-experience-badge .badge-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ==========================================================================
   7. MODERN PROFESSIONAL HERO SLIDER STYLES
   ========================================================================== */

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.65) 50%, rgba(15, 23, 42, 0.92) 100%);
  z-index: 2;
}

.hero-content-card {
  max-width: 820px;
  padding: 20px 0;
  z-index: 10;
  text-align: left;
}

.hero-content-card.center-align {
  text-align: center;
  margin: 0 auto;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 87, 34, 0.15);
  border: 1px solid rgba(255, 87, 34, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  color: #ff7849;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ff5722;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(255, 87, 34, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 87, 34, 0);
  }
}

.hero-title-modern {
  color: #ffffff !important;
  font-size: 58px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  margin-bottom: 24px !important;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  font-family: 'Roboto', 'Inter', sans-serif !important;
}

.hero-title-modern .text-highlight {
  background: linear-gradient(135deg, #ff7849 0%, #ff3d00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc-modern {
  color: #cbd5e1 !important;
  font-size: 18px !important;
  line-height: 1.75 !important;
  max-width: 720px;
  margin-bottom: 32px !important;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content-card.center-align .hero-desc-modern {
  margin-left: auto;
  margin-right: auto;
}

.hero-feature-tags {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.hero-content-card.center-align .hero-feature-tags {
  justify-content: center;
}

.hero-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f1f5f9;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-tag-item i {
  color: #22c55e;
  font-size: 14px;
}

.hero-actions-group {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-content-card.center-align .hero-actions-group {
  justify-content: center;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #ff5722 0%, #ff7849 100%);
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(255, 87, 34, 0.4);
  transition: all 0.35s ease;
  text-decoration: none;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(255, 87, 34, 0.55);
  color: #ffffff !important;
}

.hero-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #25D366;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: all 0.35s ease;
  text-decoration: none;
}

.hero-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.5);
  background: #20bd5a;
  color: #ffffff !important;
}

/* Custom Navigation Arrow Styling for Slider */
.tparrows {
  background: rgba(15, 23, 42, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  width: 54px !important;
  height: 54px !important;
  transition: all 0.3s ease !important;
}

.tparrows:hover {
  background: #ff5722 !important;
  border-color: #ff5722 !important;
  transform: scale(1.1) !important;
}

@media (max-width: 991px) {
  .hero-title-modern {
    font-size: 42px !important;
  }
  .hero-desc-modern {
    font-size: 16px !important;
  }
}

@media (max-width: 767px) {
  .hero-title-modern {
    font-size: 30px !important;
    margin-bottom: 16px !important;
  }
  .hero-desc-modern {
    font-size: 14px !important;
    margin-bottom: 24px !important;
  }
  .hero-badge-pill {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 16px;
  }
  .hero-btn-primary,
  .hero-btn-whatsapp {
    padding: 14px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   8. HELPER STYLES FOR ZERO INLINE CSS COMPLIANCE
   ========================================================================== */

.hero-tp-caption {
  z-index: 99;
  width: 100%;
}

.nav-side-content-margin {
  margin-top: 10px;
}

.about.style-2 .content p {
  font-size: 16px;
  line-height: 30px;
  color: #666;
  margin-bottom: 20px;
  text-align: justify;
}

.about.style-2 .img-box {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.about.style-2 .img-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.about.style-2 .left-column .content {
  min-height: 170px;
}

.about.style-2 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about.style-2 ul {
  margin-top: 20px;
  padding-left: 0;
}

.about.style-2 ul li {
  list-style: none;
  font-size: 16px;
  line-height: 32px;
  color: #444;
  margin-bottom: 10px;
}

.about.style-2 ul li i {
  color: #ff6b00;
  margin-right: 10px;
}

.subscribe-form .thm-btn {
  height: 60px;
  padding: 0 35px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  display: inline-block;
  width: auto;
}

@media (max-width: 767px) {
  .about.style-2 .img-box img {
    height: 220px;
  }
  .about.style-2 .left-column .content {
    min-height: auto;
  }
  .subscribe-form .thm-btn {
    width: 100%;
    display: block;
    margin-top: 15px;
    height: 55px;
    font-size: 15px;
    padding: 0 20px;
  }
}


