*{
  padding: 0;
  margin:0;
}
body{
  font-family: 'Poppins', sans-serif !important;;
}
a{
  text-decoration: none !important;
}
.stats-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(180deg, rgba(109, 101, 59, 1), rgba(235, 224, 199, 1) 96%);
  font-family: 'Poppins', sans-serif;
  color: rgb(6, 16, 87);
}

.stats-heading h2 {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 50px;
  color: rgb(6,16,102);
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background:  linear-gradient(135deg, #483527 0%, #2c1e15 100%);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            transition: var(--transition);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            box-shadow: var(--shadow-lg);
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 15px 40px rgba(72, 53, 39, 0.4);
        }
.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 1rem;
  font-weight: 400;
  text-transform: lowercase;
}

/* Vertical divider between stats */
.divider {
  width: 1px;
  background-color: rgba(6,16,102,0.3);
  height: 60px;
  align-self: center;
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
  }
  .divider {
    display: none;
  }
}


.career-split {
  width: 100%;
  padding: 50px 20px;
  background: linear-gradient(135deg, #1c1c1c, #111);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.career-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.career-content {
  position: relative;
  z-index: 2;
}

.career-badge {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 30px;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.career-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.career-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

.career-btn {
  background: #ff0e0e;
  color: #fff;
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 14, 14, 0.4);
}

.career-btn:hover {
  background: #cc0b0b;
  box-shadow: 0 8px 25px rgba(255, 14, 14, 0.5);
  transform: translateY(-2px);
}

.career-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  transition: transform 0.4s ease;
}

.career-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 992px) {
  .career-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .career-content {
    order: 2;
  }
  .career-image {
    order: 1;
  }
}
:root {
  --primary-color: #2c3e50;
  --secondary-color: #34495e;
  --accent-color: #e74c3c;
  --hover-color: #3498db;
  --text-color: #2c3e50;
  --light-text: #7f8c8d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --border-color: #e9ecef;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.faq-split {
  padding: 80px 20px;
  background: var(--light-bg);
  display: flex;
  justify-content: center;
}

.faq-container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left FAQ */
.faq-left .faq-title {
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: var(--primary-color);
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  padding: 12px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--hover-color);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.95rem;
  color: var(--light-text);
  padding-left: 5px;
}

/* Right Contact Card */
.contact-card {
  background: var(--gradient);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  color: #fff;
  text-align: center;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-time,
.contact-reply {
  font-size: 1rem;
  margin: 8px 0;
  opacity: 0.9;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #20b955;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-split {
    padding: 60px 15px;
  }
}

@media (max-width: 600px) {
  .faq-left .faq-title {
    font-size: 1.8rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-title {
    font-size: 1.3rem;
  }

  .whatsapp-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

.stats-section {
  padding: 80px 20px;
  text-align: center;
  background:linear-gradient(180deg, rgba(235, 224, 199, 1), rgb(225 247 254));
  font-family: 'Poppins', sans-serif;
  color: rgb(6, 16, 87);
}

.stats-heading h2 {
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 50px;
  color: rgb(6,16,102);
}

.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 1rem;
  font-weight: 400;
  text-transform: lowercase;
}

/* Vertical divider between stats */
.divider {
  width: 1px;
  background-color: rgba(6,16,102,0.3);
  height: 60px;
  align-self: center;
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
  }
  .divider {
    display: none;
  }
}