/* ================================================== ROOT SECTION CSS START ================================================== */
:root {
  --primary: #01796f;
  --secondary: #6c757d;
  --dark: #212529;
  --light: #f8f9fa;
}

html {
  font-size: 15px;
}
body {
  font-family: "Poppins", sans-serif;
  color: #333;
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

/* ================================================== ROOT SECTION CSS END ==================================================== */

/* ================================================== PRELOADER STYLES START ================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.preloader-content {
  text-align: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(1, 121, 111, 0.1);
  border-top: 5px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ================================================== PRELOADER STYLES END ==================================================== */

/* ================================================== NAVBAR SECTION CSS START ================================================ */
.navbar {
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
  transition: all 0.3s ease;
  z-index: 1030;
  position: fixed;
  top: 0;
  width: 100%;
}

.logo-img {
  max-width: 200px;
  height: auto;
  transition: all 0.3s ease;
}

/* Navbar Links */
.nav-link {
  font-weight: 500;
  transition: color 0.3s, background-color 0.3s;
  padding: 8px 15px !important;
  margin: 10px 5px;
  position: relative;
  border-radius: 6px;
  color: var(--primary);
}

/* Hover + Active State */
.nav-link:hover,
.nav-link.active {
  background-color: var(--primary);
  color: white !important;
}

/* Mega Menu specific */
.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  border-radius: 0 0 12px 12px;
  padding: 20px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Headings */
.mega-menu h6 {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.1rem;
}

/* Items */
.mega-menu-item {
  display: block;
  padding: 8px 0;
  color: var(--dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.5s;
}

.mega-menu-item:hover {
  color: var(--primary);
  padding-left: 5px;
  transition: 0.5s;
}

/* Divider */
.mega-menu-divider {
  height: 1px;
  background: #eaeaea;
  margin: 15px 0;
}

/* Call-to-action */
.mega-menu-cta {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}

.mega-menu-cta h6 {
  margin-bottom: 10px;
}

.mega-menu-cta p {
  font-size: 14px;
  margin-bottom: 12px;
}

/* Improved dropdown for large screens */
@media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 0;
  }

  .mega-menu .row {
    padding: 10px 0;
  }

  /* Ensure proper column spacing */
  .mega-menu .col-md-3 {
    padding: 0 15px;
    border-right: 1px solid #f0f0f0;
  }

  .mega-menu .col-md-3:last-child {
    border-right: none;
  }
}

/* Mobile specific styles */
@media (max-width: 991.98px) {
  .navbar-collapse {
    max-height: 80vh;
    overflow-y: auto;
    padding: 15px 0;
    background: white;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-item {
    margin: 5px 0;
  }

  .nav-link {
    margin: 5px 0 !important;
    padding: 10px 15px !important;
  }

  .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .mega-menu {
    position: static;
    width: 100%;
    padding: 15px;
  }

  .mega-menu .row {
    margin: 0;
  }

  .mega-menu .col-md-3 {
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .navbar-nav .btn {
    margin: 10px 0;
    display: block;
    text-align: center;
  }
}

/* Demo content to test scrolling */
.content-section {
  height: 100vh;
  padding: 50px 20px;
  border-bottom: 1px solid #eee;
}

/* Improve icons alignment */
.mega-menu-item i,
.mega-menu h6 i {
  width: 20px;
  margin-right: 8px;
  text-align: center;
}
/* ================= MAIN BUTTON ================= */
.btn-primary {
  background: var(--primary);
  border: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(1, 121, 111, 0.3);
}

.btn-primary:hover {
  background: #015a53;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(1, 121, 111, 0.45);
}
/* ================================================== NAVBAR SECTION CSS END ================================================== */

/* =========================================== WHAT MAKES US THE BEST SECTION CSS START ======================================== */
.why-choose-section {
  background: linear-gradient(135deg, #f9fafc, #f1f5f9);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.why-choose-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: rgba(1, 121, 111, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}

/* ========================= CARD STYLING ========================= */
.why-choose-section .card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease-in-out;
  background: #fff;
  transform: translateY(0);
  overflow: hidden;
  position: relative;
}

.why-choose-section .card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(1, 121, 111, 0.1), transparent 70%);
  transform: scale(0);
  transition: transform 0.5s ease-in-out;
  border-radius: 50%;
  z-index: 0;
}

.why-choose-section .card:hover::before {
  transform: scale(1);
}

.why-choose-section .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.why-choose-section .card-body {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

/* ========================= ICON STYLING ========================= */
.why-choose-section .icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: rgba(1, 121, 111, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  box-shadow: 0 6px 15px rgba(1, 121, 111, 0.2);
  transition: all 0.4s ease-in-out;
}

.why-choose-section .card:hover .icon-wrap {
  background: var(--primary);
  color: #fff;
  transform: rotate(10deg) scale(1.1);
}

/* ========================= TEXT ========================= */
.why-choose-section .card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark);
  transition: color 0.3s ease-in-out;
}

.why-choose-section .card:hover .card-title {
  color: var(--primary);
}

.why-choose-section .card-text {
  font-size: 0.95rem;
  color: var(--secondary);
  line-height: 1.6;
  transition: all 0.3s ease-in-out;
}

.why-choose-section .card:hover .card-text {
  color: var(--dark);
}

/* =========================================== WHAT MAKES US THE BEST SECTION CSS END ========================================== */

/* ================================================== OUR SIMPLE SECTION START ================================================== */

/* ===== Section Title ===== */
.process-steps .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  position: relative;
  display: block;
  text-align: center;
}

.process-steps .section-title::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #015a53);
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  border-radius: 2px;
}

/* ===== Card Styling ===== */
.process-steps .card {
  border-radius: 16px;
  border: none;
  padding: 20px;
  transition: all 0.4s ease-in-out;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease both;
}

.process-steps .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* ===== Step Circle ===== */
.process-steps .step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #015a53);
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(1, 121, 111, 0.3);
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.process-steps .card:hover .step-circle {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 6px 18px rgba(1, 121, 111, 0.5);
}

/* Pulse Glow Animation */
.process-steps .step-circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(1, 121, 111, 0.3);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* ===== Card Titles ===== */
.process-steps .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.process-steps .card:hover .card-title {
  color: var(--primary);
  text-shadow: 1px 1px 6px rgba(1, 121, 111, 0.2);
}

/* ===== Card Text ===== */
.process-steps .card-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.process-steps .card:hover .card-text {
  color: #333;
}

/* ===== Fade-in Animation ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================================== OUR SIMPLE SECTION START ==================================================== */

/* ================================================== SUBJECT AREAS SECTION CSS START ========================================== */
.subject-areas {
  padding: 6rem 0;
  background: var(--light);
  position: relative;
  text-align: center;
}

.subject-areas:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2301796F' fill-opacity='0.03' d='M0,128L48,138.7C96,149,192,171,288,170.7C384,171,480,149,576,138.7C672,128,768,128,864,144C960,160,1056,192,1152,192C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.subject-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.subject-item {
  background: white;
  border-radius: 12px;
  padding: 1.8rem 1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(1, 121, 111, 0.1);
  position: relative;
  overflow: hidden;
}

.subject-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(1, 121, 111, 0.1), transparent);
  transition: height 0.6s ease;
  z-index: 0;
}

.subject-item:hover::before {
  height: 100%;
}

.subject-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(1, 121, 111, 0.3);
}

.subject-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.subject-item:hover .subject-icon {
  transform: scale(1.2) rotate(5deg);
  color: #015a53;
}

.subject-name {
  font-weight: 500;
  color: var(--dark);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.subject-item:hover .subject-name {
  color: var(--primary);
}

/* ================================================== SUBJECT AREAS SECTION CSS END ============================================ */

/* ================================================== COUNTER SECTION CSS START ================================================= */
.COUNTER {
  background: linear-gradient(110deg, var(--primary) 40%, #015a53 100%);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.COUNTER:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,128L48,138.7C96,149,192,171,288,170.7C384,171,480,149,576,138.7C672,128,768,128,864,144C960,160,1056,192,1152,192C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ================================================== COUNTER SECTION CSS END =================================================== */

/* ================================================== TESTIMONIALS CSS START ================================================== */
.testimonial-card {
  border: none;
  border-radius: 16px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.avatar-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.avatar-img:hover {
  transform: scale(1.05);
}

.stars i {
  font-size: 1.1rem;
  margin: 0 1px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
}

.section-title {
  font-weight: 700;
  font-size: 2rem;
}

.section-subtitle {
  color: #555;
  font-size: 1rem;
}
/* ================================================== TESTIMONIALS CSS END ==================================================== */

/* ================================================== PAYMENT SECTION CSS START ================================================ */
.payment-section {
  margin-top: 4rem;
  padding: 3rem 0;
  border-radius: 12px;
}

.security-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.security-card {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  padding: 1.5rem;
  border-radius: 10px;
  background: white;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.security-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.security-card h4 {
  color: var(--primary);
  margin-bottom: 0.75rem;
}

/* ====== Payment Methods ====== */
.payment-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.payment-method {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.5rem;
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.payment-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.payment-method i {
  color: var(--primary);
  transition: all 0.3s ease;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.payment-method:hover i {
  transform: scale(1.1);
}

/* Specific colors for payment icons */
.payment-method .fa-cc-visa {
  color: #1a1f71;
}

.payment-method .fa-cc-mastercard {
  color: #eb001b;
}

.payment-method .fa-cc-paypal {
  color: #00457c;
}

.payment-method .fa-cc-apple-pay {
  color: #000;
}

.payment-method .fa-cc-stripe {
  color: #6772e5;
}

.payment-method .fab.fa-google-pay {
  color: #4285f4;
}

.payment-method .fa-university {
  color: var(--primary);
}

.trust-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-top: 1rem;
  font-weight: 600;
}

/* ================================================== PAYMENT SECTION CSS END ================================================== */
/* ================================================== FINAL CTA SECTION START ==================================================*/
.final-cta-section {
  background-color: #015a53;
}
/* Hero Title */
.final-cta-section .hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.35);
  color: white;
}

/* Hero Subtitle */
.final-cta-section .hero-subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  opacity: 0.95;
}

/* Button */
.btn-cta {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.btn-cta:hover {
  background: linear-gradient(135deg, #015a53, var(--primary));
  color: #fff;
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

@keyframes rise {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(-1200px) scale(1.2);
    opacity: 0;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================================================== FINAL CTA SECTION START ==================================================*/

/* ================================================== FAQ SECTION START ========================================================*/
/* FAQ Section */
.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 15px 20px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.faq-item.active {
  border-color: var(--primary, #01796f);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
  transition: color 0.3s ease-in-out;
}

.faq-item.active .faq-question {
  color: var(--primary, #01796f);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary, #01796f);
}

/* Answer hidden by default */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 600px; /* large enough for content */
  opacity: 1;
  margin-top: 10px;
}

/* ================================================== FAQ SECTION START ========================================================*/

/* ================================================== FOOTER SECTION CSS START ================================================= */
.footer {
  background: var(--dark);
  color: white;
  padding: 5rem 0 0;
  position: relative;
}

.footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%2301796F' fill-opacity='0.05' d='M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,213.3C1248,235,1344,213,1392,202.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
  display: inline-block;
}

.footer-links a:before {
  content: "→";
  position: absolute;
  left: -15px;
  opacity: 0;
  color: var(--primary);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 15px;
  transform: translateX(5px);
}

.footer-links a:hover:before {
  opacity: 1;
  left: 0;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--primary);
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 5px 15px rgba(1, 121, 111, 0.3);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 0;
  margin-top: 4rem;
  position: relative;
}

/* ================================================== FOOTER SECTION CSS END =================================================== */

/* ================================================== WHATSAPP BUTTON CSS START ================================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 40px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* ================================================== WHATSAPP BUTTON CSS END ================================================== */

/* ================================================== SCROLL TO TOP BUTTON CSS START =========================================== */
#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  width: 50px;
  height: 50px;
  border: none;
  outline: none;
  background-color: var(--primary);
  color: white;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  display: none;
  align-items: center;
  justify-content: center;
}

#scrollToTopBtn:hover {
  background-color: #015a53;
  transform: translateY(-3px) scale(1.05) rotate(5deg);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* ================================================== SCROLL TO TOP BUTTON CSS END ============================================= */

/* ================================================== RESPONSIVE ADJUSTMENTS CSS START ========================================= */
/* ================================================== RESPONSIVE ADJUSTMENTS CSS END =========================================== */
