/* Global Styles */
:root {
  --primary-color: #6BD4E1;
  --secondary-color: #f6ad55;
  --dark-color: #2d3748;
  --light-color: #f7fafc;
  --success-color: #f6ad55;
  --warning-color: #ed8936;
  --danger-color: #f56565;
  --gray-color: #a0aec0;
  --dark-gray: #4a5568;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  padding-top: 90px; /* Space for fixed header */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--dark-color);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color, #4CAF50); /* Fallback color */
  color: white;
  border: 2px solid var(--primary-color, #4CAF50);
  border-radius: 5px;
  text-decoration: none;
  margin: 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color, #4CAF50);
}

    .btn-secondary {
      display: inline-block;
      padding: 10px 20px;
      background-color: #4CAF50;
      color: white;
      text-decoration: none;
      border-radius: 5px;
      margin: 20px;
      cursor: pointer;
    }
    
    .btn-secondary:hover {
      background-color: #45a049;
    }
    
    .query-popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }
    
    .query-form-container {
      background: white;
      padding: 30px;
      border-radius: 8px;
      max-width: 500px;
      width: 90%;
      position: relative;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
      color: #888;
    }
    
    .close-btn:hover {
      color: #333;
    }
    
    .query-form-container h2 {
      margin-top: 0;
      color: #333;
      text-align: center;
    }
    
    .form-group {
      margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 4px;
      box-sizing: border-box;
      font-size: 16px;
    }
    
    .form-group textarea {
      height: 100px;
      resize: vertical;
    }
    /* Style for the "Request a Call/Demo" button in the navigation */
.btn-request-demo {
    background-color: var(--primary-color); /* Uses your primary accent color */
    color: #ffffff !important; /* White text, overriding any default link color */
    padding: 8px 18px; /* Adjust padding for desired size */
    border-radius: 25px; /* Rounded corners */
    text-decoration: none !important; /* Remove underline */
    font-weight: 600; /* Make text bolder */
    transition: background-color 0.3s ease; /* Smooth hover effect */
    display: inline-block; /* Ensures padding and sizing work correctly */
    margin-left: 15px; /* Space from other nav items */
}

.btn-request-demo:hover {
    background-color: #0056b3; /* Darker shade on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Adjustments for mobile menu */
#sidemenu li .btn-request-demo {
    display: block; /* Make it a block element in the mobile menu */
    width: fit-content; /* Fit content width */
    margin: 20px auto 0; /* Center it with top margin */
    text-align: center;
}

@media (max-width: 768px) {
    #main-header nav ul li .btn-request-demo {
        margin: 15px auto; /* Adjust margin for smaller screens */
    }
}
    
    .btn-submit {
      width: 100%;
      padding: 12px;
      background-color: #4CAF50;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
    }
    
    .btn-submit:hover {
      background-color: #45a049;
    }
    
    .btn-submit:disabled {
      background-color: #cccccc;
      cursor: not-allowed;
    }
    
    .success-message {
      text-align: center;
      padding: 20px;
    }
    
    .success-message i {
      color: #4CAF50;
      font-size: 50px;
      margin-bottom: 15px;
    }
    
    .success-message h3 {
      color: #333;
      margin-bottom: 10px;
    }
    
    .success-message p {
      color: #666;
      margin-bottom: 20px;
    }


.btn-call {
  background-color: white;
  color: var(--primary-color);
  border-radius: 4px;
  padding: 12px 24px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-call:hover {
  background-color: #f0f4ff;
}

.section-subtitle {
  color: var(--gray-color);
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
}

.query-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.query-form-container {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.role-selection {
  display: flex;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.role-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: #e0e0e0;
  cursor: pointer;
}

.role-btn.active {
  background: #4CAF50;
  color: white;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 15px;
}

/* Rest of your existing form styles */

/* Trust Badges */
.trust-badges {
  background-color: #f0f4ff;
  padding: 15px 0;
  border-bottom: 1px solid #e2e8f0;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-color);
  font-weight: 500;
}

.badge-item i {
  color: var(--primary-color);
  font-size: 18px;
}

/* Fixed Header */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 50px;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
}

nav ul li a:hover {
  color: var(--primary-color);
  background-color: #f0f4ff;
}

.fa-bars, .fa-xmark {
  font-size: 24px;
  color: var(--dark-color);
  cursor: pointer;
  display: none;
}


/* ============================================= */
/* == NEW CSS FOR MULTI-STEP POPUP FORM == */
/* ============================================= */

/* Main popup container */
.query-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    animation: fadeIn 0.3s ease;
}

/* Form box styling */
.query-form-container {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px 40px 40px 40px;
    border: none;
    width: 90%;
    max-width: 650px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.close-btn {
    color: var(--gray-color);
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-btn:hover { color: var(--dark-color); }

/* Step Styling */
.form-step { display: none; }
.form-step.active { display: block; animation: slideUp 0.4s ease; }
.step-title { text-align: center; margin-bottom: 25px; font-weight: 600; color: var(--dark-color); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.full-width { grid-column: 1 / -1; }

/* Labels and Inputs */
#queryForm label { display: block; margin-bottom: 8px; font-weight: 500; text-align: left; color: var(--dark-gray); }
#queryForm input, #queryForm select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
#queryForm input:focus, #queryForm select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 8px rgba(107, 212, 225, 0.4); /* Use primary color for focus glow */
}

/* Progress Bar */
#progressBarContainer {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 25px;
    overflow: hidden;
}
#progressBar {
    width: 33.3%;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 5px;
    transition: width 0.4s ease-in-out;
}

/* Form Navigation Buttons */
.form-buttons { display: flex; justify-content: space-between; margin-top: 25px; }
.btn-form {
    padding: 12px 25px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-next, .btn-submit { background-color: var(--primary-color); color: white; }
.btn-prev { background-color: #e0e0e0; color: var(--dark-gray); }
.btn-next:hover, .btn-submit:hover { background-color: #5abcc7; } /* Slightly darker primary color */
.btn-prev:hover { background-color: #d1d1d1; }
.btn-submit:disabled { background-color: #cccccc; cursor: not-allowed; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(15px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* Responsive Grid for mobile */
@media (max-width: 768px) { .form-grid { grid-template-columns: 1fr; } }




/* --- HIDE MOBILE ICONS ON DESKTOP --- */

/* First, let's make sure the close icon is styled correctly inside the menu */
#sidemenu .fa-times {
    display: block; /* This makes it visible by default on small screens */
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
    font-size: 25px; /* Adjust size if needed */
}

/* This is the key part:
  When the screen is 768px or wider, hide the close icon.
*/
@media only screen and (min-width: 768px) {
    #sidemenu .fa-times {
        display: none;
    }
}
/* Hero Section */
#hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.hero-text h1 span {
  color: var(--primary-color);
}

.hero-text p {
  font-size: 18px;
  color: var(--dark-gray);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(74, 107, 255, 0.2);
}




/* Query Popup Styles */
.query-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.query-form-container {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--box-shadow);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-color);
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--dark-color);
}

.query-form-container h2 {
  margin-bottom: 20px;
  color: var(--dark-color);
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background-color: var(--primary-dark);
}

/* Success Message Styles */
.success-message {
  text-align: center;
  padding: 20px;
}

.success-message i {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

.success-message h3 {
  color: var(--dark-color);
  margin-bottom: 10px;
}

.success-message p {
  color: var(--gray-color);
}

/* Slideshow */
.slideshow-container {
  position: relative;
  margin: 20px auto;
  max-width: 1200px;
}

.mySlides {
  display: none;
}

.mySlides img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slideshow-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #cbd5e0;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary-color);
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
  background-color: #f8fafc;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.feature-icon {
  width: 70px;
  height: 70px;
  background-color: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
/* Continue from where the CSS left off */
.feature-icon i {
  color: var(--primary-color);
  font-size: 30px;
}

/* Services Section */
#services {
  padding: 80px 0;
  background-color: white;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 30px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon i {
  color: var(--primary-color);
  font-size: 24px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.service-card ul li {
  margin-bottom: 8px;
  color: var(--dark-gray);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-color);
  font-weight: 500;
}

.service-link:hover {
  color: var(--secondary-color);
}

/* How It Works Section */
.process-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.step-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.step-content p {
  color: var(--dark-gray);
}

.process-cta {
  text-align: center;
  margin-top: 50px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: white;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-content {
  margin-bottom: 20px;
}

.rating {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.testimonial-content p {
  font-style: italic;
  color: var(--dark-gray);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  margin-bottom: 5px;
}

.testimonial-author p {
  color: var(--gray-color);
  font-size: 14px;
}

/* Tutor Spotlight Section */
.tutor-spotlight {
  padding: 80px 0;
  background-color: #f8fafc;
}

.tutor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.tutor-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.tutor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tutor-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.tutor-info {
  padding: 20px;
}

.tutor-info h3 {
  margin-bottom: 5px;
}

.subject {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.tutor-stats {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--dark-gray);
}

.tutor-stats i {
  margin-right: 5px;
  color: var(--secondary-color);
}

.bio {
  color: var(--dark-gray);
  margin-bottom: 15px;
}

.spotlight-cta {
  text-align: center;
  margin-top: 40px;
}

.spotlight-cta p {
  margin-bottom: 20px;
  color: var(--dark-gray);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  text-align: left;
  background-color: #f8fafc;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: var(--dark-color);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 20px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--dark-gray);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #3a5bff 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Side Social Icons */
.icon-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 100;
}

.icon-bar a {
  display: block;
  text-align: center;
  padding: 12px;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
  width: 50px;
}

.icon-bar a:hover {
  width: 60px;
}

.facebook {
  background: #3B5998;
}

.twitter {
  background: #55ACEE;
}

.instagram {
  background: #E4405F;
}

.linkedin {
  background: #0077B5;
}

.youtube {
  background: #CD201F;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about {
  max-width: 300px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.footer-about p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--primary-color);
}

.footer-links h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-contact h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact ul li i {
  margin-top: 3px;
}

.footer-contact ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-contact ul li a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text, .hero-image {
    text-align: center;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  nav ul {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  
  .logo {
    height: 40px;
  }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding-top: 70px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  nav ul.active {
    right: 0;
  }
  
  .fa-bars, .fa-xmark {
    display: block;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .trust-badges .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .footer-about {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 28px;
  }
  
  .trust-badges .container {
    grid-template-columns: 1fr;
  }
  
  .badge-item {
    justify-content: center;
  }
  
  .icon-bar {
    display: none;
  }
}

/* Animation Classes */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.p-20 {
  padding: 20px;
}

/* Slider Animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}



/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px; /* Adjust as needed */
    right: 40px; /* Adjust as needed */
    background-color: #25d366; /* WhatsApp green */
    color: #FFF;
    border-radius: 50px; /* Makes it circular */
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100; /* Ensure it stays on top of other content */
    display: flex; /* For centering the icon */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.whatsapp-float:hover {
    background-color: #1DA851; /* Slightly darker green on hover */
}

/* Adjust for smaller screens if necessary */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}


/* Sticky CTA Bar */
.sticky-cta-bar {
    position: fixed; /* Makes it stick to the viewport */
    bottom: 0; /* Positions it at the bottom of the screen */
    left: 0; /* Aligns to the left edge */
    width: 100%; /* Spans the full width */ 
    background-color: var(--primary-color); /* A complementary green, or choose var(--primary-color) */
    color: #fff; /* White text color */
    padding: 15px 0; /* Vertical padding */
    text-align: center; /* Center align text and button */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow at the top */
    z-index: 99; /* Lower than floating WhatsApp, higher than regular content */
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    flex-wrap: wrap; /* Allow content to wrap on smaller screens */
    gap: 20px; /* Space between text and button */
}

.sticky-cta-bar .container {
    display: flex; /* Flexbox for text and button inside container */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    flex-wrap: wrap; /* Allow wrapping */
    gap: 20px; /* Space between text and button */
    width: 100%; /* Ensure container takes full width */
    max-width: 1200px; /* Match your main container width */
    padding: 0 20px; /* Horizontal padding for smaller screens */
}

.sticky-cta-bar p {
    margin: 0; /* Remove default paragraph margin */
    font-size: 1.1rem; /* Slightly larger font size */
    font-weight: 500;
}

.btn-sticky-cta {
    background-color: #f7b32b; /* A contrasting color, e.g., yellow/orange */
    color: #000; /* Dark text for contrast */
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap; /* Prevent button text from wrapping */
}

.btn-sticky-cta:hover {
    background-color: #e09f00; /* Darker on hover */
    transform: translateY(-2px);
}

/* Ensure the footer is not hidden by the sticky bar */
.footer {
    padding-bottom: 100px; /* Adjust this value based on your sticky bar's height + desired gap */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .sticky-cta-bar {
        padding: 10px 0; /* Reduce padding on mobile */
        gap: 10px;
    }

    .sticky-cta-bar p {
        font-size: 0.95rem; /* Smaller font on mobile */
    }

    .btn-sticky-cta {
        padding: 8px 18px; /* Smaller button on mobile */
        font-size: 0.9rem;
    }

    .footer {
        padding-bottom: 80px; /* Adjust footer padding for mobile */
    }
}

@media (max-width: 480px) {
    .sticky-cta-bar .container {
        flex-direction: column; /* Stack text and button vertically */
        gap: 10px;
    }
}