/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-image: url("../assets/images/heroSectionBg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity (0.5 = 50% dark) */
  z-index: 1;
}

/* Ensure content stays above the overlay */
.hero-section > * {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 24px;
  color: #cbd5e1;
  margin-bottom: 40px;
  font-weight: 300;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #0891b2 0%, #0284c7 100%);
  color: white;
  padding: 16px 40px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(8, 145, 178, 0.4);
}

/* Welcome Section */
.welcome-section {
  padding: 120px 0;
  background: #f8fafc;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #0891b2 0%, #0284c7 100%);
  border-radius: 2px;
}

.welcome-text {
  font-size: 18px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 30px;
}

.handshake-img {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0 20px 60px rgba(8, 145, 178, 0.3); */
  position: relative;
  overflow: hidden;
}

.handshake-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Podcast Section */
.podcast-section {
  padding: 120px 0;
  background: white;
}

.podcast-card {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.podcast-icon {
  font-size: 80px;
  margin-bottom: 20px;
  opacity: 0.7;
}

/* Blog Section */
.blog-section {
  padding: 120px 0;
  background: #f8fafc;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.blog-img {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This ensures the image covers the container */
}

.blog-content {
  padding: 30px;
}

.blog-date {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.blog-excerpt {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: #0891b2;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 10px;
}

/* Quote Section */
.quote-section {
  padding: 120px 0;
  background-image: url("../assets/images/quoteBg.jpg");
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity (0.5 = 50% dark) */
  z-index: 1;
}

.quote-text {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.quote-author {
  font-size: 24px;
  font-weight: 300;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

/* About Section */
.about-section {
  padding: 120px 0;
  background: white;
}

.about-card {
  text-align: center;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
}

.about-icon {
  width: 100%;
  height: 250px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: white;
  margin-bottom: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-title {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.about-text {
  color: #64748b;
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 120px 0;
  background: #f8fafc;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #475569;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #0891b2 0%, #0284c7 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .quote-text {
    font-size: 28px;
  }

  .handshake-img {
    height: 300px;
    font-size: 80px;
  }

  .about-icon {
    height: 200px;
    font-size: 60px;
  }
}

/* what we do section */
/* What We Do Section Styles */
.what-we-do-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.background-globe {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.globe-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, #f8f9fa 50%, #e9ecef 100%);
  z-index: 2;
}

.globe-img {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  max-width: 90%;
  height: auto;
  opacity: 0.7;
  z-index: 1;
}

.what-we-do-section .container {
  z-index: 3;
}

.what-we-do-section .section-title {
  color: #2c3e50;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 15px;
}

.what-we-do-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #3498db;
  border-radius: 2px;
}

.what-we-do-text {
  color: #5a6c7d;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Stat Boxes */
.stat-box {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  border: 1px solid rgba(52, 152, 219, 0.1);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(52, 152, 219, 0.3);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #2c3e50;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.stat-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3498db;
  margin-bottom: 0.75rem;
}

.stat-desc {
  color: #7b8a8b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .background-globe {
    width: 40%;
    opacity: 0.5;
  }

  .globe-img {
    right: -20%;
  }

  .what-we-do-section .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .background-globe {
    display: none;
  }

  .what-we-do-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-box {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .what-we-do-section .section-title {
    font-size: 1.75rem;
  }

  .what-we-do-text {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .stat-number {
    font-size: 2rem;
  }
}
