/* ===== ABOUT US PAGE - UNIFORM STYLING ===== */
/* Using Personal Loan Page Design System */

/* Variables */
:root {
  --primary-dark: #0d214f;
  --primary-blue: #0067da;
  --light-blue: #29b9ed;
  --text-dark: #0f172a;
  --text-gray: #475569;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #0d214f 0%, #0067da 100%);
}

/* Global Styles */
/** {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  box-sizing: border-box;*/
/*}*/

/*body {*/
/*  font-family: 'Poppins', Arial, sans-serif;*/
/*  color: var(--text-dark);*/
/*  line-height: 1.6;*/
/*}*/

/*.container {*/
/*  max-width: 1200px;*/
/*  margin: 0 auto;*/
/*  padding: 0 20px;*/
/*}*/

/* ===== HERO SECTION ===== */
.about-hero {
  position: relative;
  background: var(--gradient-primary);
   padding: 150px 0 100px;
  overflow: hidden;
  min-height: 500px;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 background: url('../assets/images/comapany/ABOUT US.png') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
}

.about-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: 5%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 25px;
  font-family: 'Poppins', Arial, sans-serif;
}

.about-hero-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== COMPANY OVERVIEW ===== */
.company-overview {
  padding: 80px 0;
  background: var(--white);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.overview-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(13, 33, 79, 0.15);
}

.overview-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: 'Poppins', Arial, sans-serif;
}

.overview-text p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ===== OUR VALUES ===== */
.our-values {
  padding: 80px 0;
  background: var(--bg-light);
}

.text-center {
  text-align: center;
  margin-bottom: 60px;
}

.text-center h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 15px;
  font-family: 'Poppins', Arial, sans-serif;
}

.text-center p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.15);
  border-color: var(--primary-blue);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: var(--white);
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 15px;
  font-family: 'Poppins', Arial, sans-serif;
}

.value-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===== MISSION & VISION ===== */
.mission-vision {
  padding: 80px 0;
  background: #041250;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.mv-item {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
  padding: 40px 35px;
  border-radius: 20px;
  border-left: 4px solid var(--primary-blue);
  transition: all 0.3s ease;
}

.mv-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.12);
}

.mv-item h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Poppins', Arial, sans-serif;
}

.mv-item h3 i {
  color: var(--primary-blue);
  font-size: 32px;
}

.mv-item p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ===== SERVICES HIGHLIGHT ===== */
.services-highlight {
  padding: 80px 0;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card-mini {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-blue);
  text-align: center;
}

.service-card-mini:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 103, 218, 0.12);
}

.service-card-mini i {
  font-size: 48px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.service-card-mini h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-family: 'Poppins', Arial, sans-serif;
}

.service-card-mini p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

.service-card-mini a {
  color: var(--primary-blue);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-card-mini a:hover {
  color: var(--primary-dark);
  transform: translateX(5px);
}

/* ===== WHY CHOOSE US ===== */
.why-choose-us {
  padding: 80px 0;
  background: var(--white);
}

.wcu-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wcu-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: 'Poppins', Arial, sans-serif;
}

.wcu-content>p {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.wcu-list {
  list-style: none;
  padding: 0;
}

.wcu-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 12px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.wcu-list li:hover {
  background: var(--white);
  box-shadow: 0 8px 25px rgba(0, 103, 218, 0.1);
  transform: translateX(5px);
}

.wcu-list li i {
  color: var(--primary-blue);
  font-size: 24px;
  flex-shrink: 0;
}

.wcu-list li strong {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  margin-bottom: 5px;
  font-family: 'Poppins', Arial, sans-serif;
}

.wcu-list li p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0;
}

.wcu-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(13, 33, 79, 0.15);
}

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: 80px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><circle cx="600" cy="100" r="300" fill="rgba(255,255,255,0.05)"/><circle cx="700" cy="400" r="200" fill="rgba(255,255,255,0.03)"/></svg>') no-repeat center;
  background-size: cover;
}

.contact-cta h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-family: 'Poppins', Arial, sans-serif;
}

.contact-cta p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.btn-cta {
  display: inline-block;
  background: var(--white);
  color: var(--primary-dark);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  font-family: 'Poppins', Arial, sans-serif;
}

.btn-cta:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .about-hero-content h1 {
    font-size: 42px;
  }

  .about-hero-content p {
    font-size: 18px;
  }

  .overview-grid,
  .wcu-container,
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .overview-text {
    order: 1;
    text-align: center;
  }

  .overview-description {
    text-align: left;
  }

  .overview-img {
    order: 2;
  }

  .wcu-content {
    order: 1;
    text-align: center;
  }

  .wcu-list {
    text-align: left;
    display: inline-block;
  }

  .wcu-image {
    order: 2;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 100px 0 60px;
  }

  .about-hero-content {
    text-align: center;
  }

  .about-hero-content h1 {
    font-size: 32px;
    text-align: center;
  }

  .about-hero-content p {
    font-size: 16px;
    text-align: center;
    margin: 0 auto;
  }

  .text-center h2,
  .wcu-content h2,
  .overview-text h2 {
    font-size: 32px;
  }

  .values-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta h2 {
    font-size: 32px;
  }

  .overview-img img {

    height: 400px;
  }

  .wcu-image img {

    height: 400px;
  }
}