/* ===== Global Variables ===== */
:root {
  --brand: #009ec3;
  --brand-dark: #007c9b;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 8px var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  z-index: 1000;
  box-sizing: border-box;
  flex-wrap: nowrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 180px;
  height: 50px;
}

/* Marquee */
.header-marquee {
  flex-grow: 1;
  margin: 0 20px;
  overflow: hidden;
  white-space: nowrap;
}

.header-marquee p {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
  font-weight: 500;
  color: red;
  font-size: 16px;
  transition: all 0.3s ease;
}

.header-marquee:hover p {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-link {
  text-decoration: none;
  color: var(--brand);
  font-weight: 600;
  padding: 8px 14px;
  border: 2px solid var(--brand);
  border-radius: 25px;
  background-color: transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.nav-link i {
  margin-right: 6px;
  font-size: 1rem;
}

.nav-link:hover {
background: linear-gradient(135deg, #0ca1ca, #59d9fe);
  color: var(--white);
  box-shadow: 0 4px 8px rgb(36, 152, 179);
  transform: translateY(4px);
}

.nav-link.active {
  background-color: var(--brand);
  color: var(--white);
}

/* Responsive */
@media (max-width: 950px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .header-marquee {
    display: none; /* hide on mobile only */
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
  }

  .nav-link {
    width: 100%;
    justify-content: center;
    padding: 8px 0;
    font-size: 14px;
  }
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 158, 195, 0.59);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 35px;
  color: #e6fc0e;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-btn {
  padding: 12px 28px;
  border: 2px solid #fff;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #009ec3;
  color:#ffffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* ===== Problems & Solutions Section ===== */
.problems-section {
  padding: 100px 40px;
  background-color: #f5f7f8;
}

.problems-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.problems-text {
  flex: 1 1 500px;
}

.problems-text h2 {
  font-size: 36px;
  color: var(--brand);
  margin-bottom: 30px;
  font-weight: 700;
}

.problems-text p.problem {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

.problems-text p.solution {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  font-weight: 600;
}

/* Right Side Image */
.problems-image {
  flex: 1 1 500px;
  text-align: center;
}

.problems-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 950px) {
  .problems-section {
    padding: 60px 20px;
  }

  .problems-section .container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }

  .problems-text h2 {
    font-size: 28px;
    text-align: center;
  }

  .problems-text p {
    font-size: 15px;
    text-align: center;
  }
}

/* ===== Icons ===== */
.icon-text {
  color: #e74c3c; /* red for problem */
  margin-right: 10px;
}

.icon-text1 {
  color: #27ae60; /* green for solution */
  margin-right: 10px;
}

/* Scroll fade/slide effect (reusable) */
.scroll-element {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out var(--delay, 0s),
              transform 0.6s ease-out var(--delay, 0s);
  will-change: opacity, transform;
}

/* Visible state */
.scroll-element.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Features Section ===== */
.features-section {
  padding: 80px 40px;
  background: #f9f9f9;
  text-align: center;
}

.features-section .section-title {
  font-size: 2rem;
  color: var(--brand);
  margin-bottom: 50px;
  font-weight: 700;
}

/* Grid layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

/* Box style */
.feature-box {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px) scale(1.5);
 background-color: rgba(31, 222, 222, 0.08); 
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

/* Icon */
.feature-icon {
  font-size: 2.5rem;
  color: var(--brand);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}
.feature-box:hover i{
  font-size: 4.2rem;
  transform: translateY(-8px);
}

.feature-box:hover .feature-icon {
  color: var(--brand-dark);
}

.feature-box h3 {
  color: var(--brand);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.feature-box p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .features-section {
    padding: 60px 20px;
  }

  .feature-box {
    padding: 25px 15px;
  }
}

/* ===== Hamburger Menu ===== */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #009ec3;
  transition: color 0.3s ease;
    z-index: 1100;
}

.hamburger:hover {
  color: #007a9a;
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-right: 15px;
  }

    .nav-menu.active ul li:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu.active ul li:nth-child(2) { animation-delay: 0.2s; }
  .nav-menu.active ul li:nth-child(3) { animation-delay: 0.3s; }
  .nav-menu.active ul li:nth-child(4) { animation-delay: 0.4s; }

  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .header-marquee {
    display: none;
  }

  .main-header {
    justify-content: space-between;
    padding: 10px 15px;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    box-shadow: -3px 0 10px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .nav-menu ul li {
    margin: 20px 0;
  }

  .nav-menu ul li a {
    font-size: 18px;
    color: #009ec3;
  }

  /* Hero Section */
  .hero-section {
    height: 80vh;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero-content h2 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* Problems Section */
  .problems-section .container {
    flex-direction: column;
    text-align: center;
  }

  .problems-image {
    margin-top: 20px;
  }

  .problems-image img {
    width: 90%;
    max-width: 350px;
  }

  /* Features Section */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-box {
    margin: 0 auto;
    width: 90%;
  }
}

/* ===== Debt Recovery Process Section ===== */
.debt-process-section {
  padding: 100px 40px;
  background: #ffffff;
}

.debt-process-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.debt-image {
  flex: 1 1 45%;
  text-align: center;
}

.debt-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.debt-content {
  flex: 1 1 50%;
}

.debt-content h2 {
  font-size: 34px;
  color: var(--brand);
  margin-bottom: 20px;
  font-weight: 700;
}

.debt-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.process-btn {
  display: inline-block;
  padding: 12px 26px;
  background-color: var(--brand);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.process-btn:hover {
  background-color: var(--brand-dark);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 950px) {
  .debt-process-section {
    padding: 60px 20px;
    text-align: center;
  }

  .debt-process-section .container {
    flex-direction: column;
  }

  .debt-image {
    order: 1;
  }

  .debt-content {
    order: 2;
  }

  .debt-content h2 {
    font-size: 26px;
  }

  .debt-content p {
    font-size: 15px;
  }

  .process-btn {
    margin-top: 10px;
  }
}

.service-section {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
  position: relative;
}

.service-section h1 {
  color: #009ec3;
  font-size: 28px;
  margin: 0 auto 20px;
  display: block;
  text-align: center;
}
.bpo-container {
   text-align: center;
  margin: 0 auto;
  padding: 0;
}

.service-section p {
  color: #8d8c8bff;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.bpo-features {
  list-style-type: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.bpo-features li {
  padding: 10px 0;
  border-bottom: 1px solid #8e8a8a;
  font-size: 15px;
}
.bpo-features :hover {
  font-size: 1.0rem;
  color: #009ec3;
}
/* ✅ Responsive Mobile View */
@media (max-width: 768px) {
  .service-section {
    padding: 40px 15px;
  }

  .service-section h2 {
    font-size: 22px;
  }

  .service-section p {
    font-size: 14px;
    padding: 0 10px;
  }

  .bpo-features li {
    font-size: 14px;
    padding: 8px 0;
  }
}

.footer {
  background: linear-gradient(135deg, #0091c3, #009ec3);
  color: #fff;
  padding: 40px 20px 11px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-form,
.footer-address {
  flex: 1 1 300px;
}

.footer-address {
  text-align: right;
}

.footer-form h3,
.footer-address h3 {
  margin-bottom: 10px;
  color: #000000;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 8px;
  margin: 6px 0;
  border: none;
  border-radius: 4px;
}

.footer-form button {
  background-color: #30c0ea;
  color: white;
  padding: 8px 16px;
  border: none;
  margin-top: 5px;
  cursor: pointer;
  border-radius: 4px;
}

.footer-form button:hover {
  background-color: #000000;
}

/* Social icons - centered at bottom */
.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.footer-socials a {
  color: #fff;
  font-size: 20px;
  background: #00c6ff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

.footer-socials a:hover {
  background: #333;
  transform: rotate(360deg) scale(1.5);
}


.footer-bottom {
  text-align: center;
  margin-top: 15px;
  color: #fffefe;
  font-size: 13px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-address {
    text-align: center;
    margin-top: 20px;
  }
}

/* ===== Scroll to Top Button ===== */
#scrollTopBtn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

#scrollTopBtn i {
  position: absolute;
  font-size: 20px;
  color: #009ec3;
  pointer-events: none;
}
#scrollTopBtn:hover{
  background-color: rgb(173, 229, 242);
}

#scrollTopBtn.show {
  opacity: 1;
  transform: translateY(0);
}

/* Progress Ring */
.progress-ring {
  transform: rotate(-90deg);
}

.progress-ring__circle {
  stroke-dasharray: 163; /* 2πr = 2 * π * 26 ≈ 163 */
  stroke-dashoffset: 163;
  transition: stroke-dashoffset 0.2s linear;
}


/* Mobile adjustments */
@media (max-width: 600px) {
  #scrollTopBtn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  #scrollTopBtn i {
    font-size: 16px;
  }

  .progress-ring__circle {
    stroke-width: 3;
  }
}


/* ===== Article Section ===== */
.article-section {
  background: #f8f9fa;
  padding: 80px 10%;
  position: relative;
}

.article-container {
  max-width: 1200px;
  margin: auto;
}

.article-section h2 {
  text-align: center;
  color: #009ec3;
  font-size: 2rem;
  margin-bottom: 20px;
}

.article-section .intro {
  text-align: center;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 50px;
}

.article-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.article-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.article-text {
  flex: 1;
  min-width: 300px;
}

.article-text h3 {
  color: #009ec3;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.article-text ul {
  list-style: none;
  padding: 0;
}

.article-text li {
  margin-bottom: 10px;
  color: #333;
  position: relative;
}

.article-text li::before {
  content: "✔";
  color: #009ec3;
  font-weight: bold;
  margin-right: 10px;
}

/* Read More Button */
.read-more-container {
  margin-top: 20px;
}

.read-more-btn {
  background: #009ec3;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #007a9b;
  transform: translateY(-3px);
}

.read-more-btn .arrow {
  transition: transform 0.3s ease;
}

.read-more-btn:hover .arrow {
  transform: translateX(5px);
}

/* ===== About Section ===== */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 20px;
  box-sizing: border-box;
}

/* Background Image Layer */
.about-bg {
  position: absolute;
  inset: 0;
  background: url("../images/about.png") center/cover no-repeat;
  z-index: 0;
  filter: brightness(0.7); /* slightly darken image for text readability */
}

/* Overlay for effect */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Text Layer */
.about-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 850px;
  animation: fadeInUp 1s ease-in-out;
}

.about-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-content h1 span {
  color: var(--brand);
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Scroll animation */
.scroll-element {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.scroll-element.show {
  opacity: 1;
  transform: translateY(0);
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about-content h1 {
    font-size: 2.2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}

/* ===== How We Started Section ===== */
.how-we-started {
  position: relative;
  background: #ffffff;
  padding: 100px 40px;
  overflow: hidden;
}

.how-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.how-left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.section-heading {
  font-size: 2.8rem;
  color: var(--brand);
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.how-right {
  flex: 2;
}

.story-content {
  text-align: left;
  color: #333;
}

.story-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.icon-green {
  color: #27ae60;
  font-size: 1.2rem;
  margin-top: 4px;
}

/* Scroll fade animation */
.scroll-element {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.scroll-element.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .how-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .how-left {
    justify-content: center;
    margin-bottom: 20px;
  }

  .section-heading {
    font-size: 2rem;
    text-align: center;
  }

  .story-content p {
    justify-content: center;
    text-align: left;
    font-size: 1rem;
  }
}

/* ===== Our Core Values Section ===== */
.core-values {
  background: #f8f9fa;
  padding: 100px 40px;
}

.values-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.values-left {
  flex: 0 0 25%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.values-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #009ec3;
  line-height: 1.2;
}

.values-right {
  flex: 0 0 75%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 25px;
}

.value-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 40px 25px;
  text-align: center;
  flex: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  background-color: rgba(31, 222, 222, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.value-card i {
  font-size: 3.2rem;
  margin-bottom: 15px;
  color: #009ec3;
}
.value-card:hover i{
  font-size: 4.2rem;
  transform: translateY(-8px);
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Scroll fade animation */
.scroll-element {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.scroll-element.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .values-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .values-left {
    justify-content: center;
    margin-bottom: 30px;
  }

  .values-heading {
    font-size: 2rem;
  }

  .values-right {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
  }

  .value-card {
    width: 90%;
    max-width: 350px;
  }
}

/* ===== Why Choose Allcreds Section ===== */
.why-choose {
  background: #ffffff;
  padding: 100px 20px;
}

.choose-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.choose-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #009ec3;
  margin-bottom: 60px;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.choose-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
}

.choose-card:hover {
  transform: translateY(-10px);
 background-color: rgba(31, 222, 222, 0.08); 
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.choose-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #009ec3;
}
.choose-card:hover i{
  font-size: 4.2rem;
  transform: translateY(-8px);
}
.choose-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #002b4f;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }

  .choose-heading {
    font-size: 2rem;
  }
}

/* ===== Leadership Section ===== */
.leadership {
  background: #fff;
  padding: 100px 20px;
  text-align: center;
}

.leader-container {
  max-width: 1300px;
  margin: 0 auto;
}

.leader-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #009ec3;
  margin-bottom: 60px;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  justify-items: center;
}

.leader-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 40px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 350px;
  transition: all 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-10px);
  background-color: rgba(63, 206, 219, 0.23);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.23);
}

.leader-img {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.leader-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #002b4f;
  margin-bottom: 8px;
}

.leader-card p {
  color: #666;
  font-size: 1rem;
}

.leader-card:hover h3{ 
  font-size: 2.3rem;
  font-weight: 700;
  color: #009ec3;
  margin-bottom: 8px;
}

.leader-card:hover p{ 
  font-size: 1.3rem;
  font-weight: 700;
  color: #009ec3;
  margin-bottom: 8px;
}

/* Join Button Section */
.join-team {
  margin-top: 60px;
}

.join-team p {
  font-size: 1.1rem;
  color: #002b4f;
  margin-bottom: 15px;
}

.btn-join {
  display: inline-block;
  background: #00b4d8;
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-join:hover {
  background: #008cb8;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .leader-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .leader-grid {
    grid-template-columns: 1fr;
  }

  .leader-heading {
    font-size: 2rem;
  }
}

.services-section {
  background-color: rgb(255, 255, 255);
  color: #fff;
  padding: 80px 20px;
    text-align: center;
}

.tagline-wrapper {
  margin-bottom: 50px;
}

.tagline-wrapper h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #009ec3;
  margin-bottom: 10px;
}

.tagline-wrapper .tagline {
  font-size: 1.2rem;
  color: #009ec3;
}

.overview {
  max-width: 900px;
  margin: 20px auto 40px auto;
  font-size: 1.05rem;
  color: #000000;
  line-height: 1.7;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.highlight-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid #009ec3;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
  transition: transform 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-6px);
  background-color: rgba(169, 231, 249, 0.45);
}

.highlight-box:hover i{
  font-size: 4.2rem;
  transform: translateY(-8px);
}

.highlight-box i {
  font-size: 2rem;
  color: #009ec3;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.highlight-box h3 {
  font-size: 1.2rem;
  color: #009ec3;
  margin-bottom: 10px;
}


.highlight-box p {
  font-size: 0.95rem;
  color: #030000;
}

/* Responsive */
@media (max-width: 768px) {
  .highlight-box {
    width: 100%;
  }
}

.why-choose-us {
  padding: 80px 20px;
  color: white;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #009ec3;
    text-align: center;
} 

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -2;
}

.why-choose-us::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* dark mask */
  z-index: -1;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 260px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.service-box i {
  font-size: 2.5rem;
  color: #009ec3;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.service-box h3 {
  margin-bottom: 10px;
  color: #003366;
}

.service-box p {
  font-size: 1rem;
  color: #555;
}
.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  background: rgba(184, 233, 247, 0.43);
}

.service-box:hover i{
  font-size: 4.5rem;
  color: #009ec3;
   margin-bottom: 15px;
}

@media (max-width: 768px) {
  .about-text {
    padding: 30px;
  }
}
input[type="file"] {
  margin-top: 10px;
  padding: 5px;
}

/* ===== WhatsApp Floating Button (Partial Peek + Slide) ===== */
.whatsapp-hover-area {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  z-index: 1000;
}

/* Button style */
.whatsapp-float {
  position: absolute;
  top: 50%;
  right: -40px; /* half hidden */
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  transition: right 0.4s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* When hovered or cursor nearby */
.whatsapp-hover-area.active .whatsapp-float,
.whatsapp-hover-area:hover .whatsapp-float {
  right: 20px; /* fully visible */
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* Hover color */
.whatsapp-float:hover {
  background-color: #20ba5a;
}

/* Mobile view — always visible */
@media (max-width: 768px) {
  .whatsapp-float {
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 26px;
  }
}

/* ===== Results Section ===== */

  .results-section {
    background: #f7f9fc;
    padding: 70px 20px;
    border-radius: 12px;
    margin: 50px 0;
  }

  .results-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .results-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
  }

  .results-header p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
  }

  .results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
  }

  .result-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 4px 12px rgba(0, 158, 195, 0.43);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .result-box:hover {
    transform: translateY(-8px);
  }

  .result-box::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(rgba(8, 151, 196, 0.13), transparent);
    transform: scale(0);
    transition: transform 0.6s ease-out;
  }

  .result-box:hover::after {
    transform: scale(1);
  }

  .result-number {
    font-size: 38px;
    font-weight: 700;
    color: #009ec3;
  }

  .results-graphic {
    display: flex;
    justify-content: center;
  }
  /* ===== Responsive ===== */

  @media (max-width: 768px) {
    .results-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .result-number {
      font-size: 28px;
    }
  }

  @media (max-width: 480px) {
    .results-grid {
      grid-template-columns: repeat(1, 1fr);
    }
  }

/* ===== About Us Tabs Section ===== */

.about-tabs-section {
  text-align: center;
  padding: 60px 20px;
}

.about-tabs-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1a1a1a;
}
.about-tabs-title {
  color: #009ec3;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  background: #e6e9f2;
  color: #333;
  transition: 0.3s ease;
}

.tab-button.active {
  background: #009ec3;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}
  

.tab-content {
  display: none;
  max-width: 750px;
  margin: 0 auto;
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 4px 12px rgba(0, 158, 195, 0.34);
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

/* Fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 600px) {
  .tabs {
    gap: 10px;
  }

  .tab-button {
    padding: 10px 18px;
    font-size: 15px;
  }
}
