/* Main Styles */
:root {
    /* Colors */
    --primary-blue: #3e5fc8;
    --primary-blue-light: #5274dd;
    --primary-blue-dark: #2c4aa3;
    --accent-yellow: #d7e720;
    --accent-yellow-light: #e5f03d;
    --accent-yellow-dark: #b9c819;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-muted: #6c757d;
    --bg-light: #ffffff;
    --bg-off-white: #f8f9fa;
    --bg-gray: #f0f2f5;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
  
    /* Spacing */
    --spacing-xs: 0.8rem;
    --spacing-sm: 1.6rem;
    --spacing-md: 2.4rem;
    --spacing-lg: 3.2rem;
    --spacing-xl: 4.8rem;
    --spacing-xxl: 6.4rem;
  
    /* Border Radius */
    --border-radius-sm: 0.4rem;
    --border-radius-md: 0.8rem;
    --border-radius-lg: 1.6rem;
  
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
  }
  
  /* Container */
  .container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
  }
  
  /* Section Styles */
  .section-padding {
    padding: var(--spacing-xl) 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
  }
  
  .section-header h2 {
    font-size: 3.2rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
  }
  
  .section-divider {
    height: 0.3rem;
    width: 6rem;
    background-color: var(--accent-yellow);
    margin: 0 auto var(--spacing-md);
    border-radius: var(--border-radius-sm);
  }
  
  .section-subheading {
    font-size: 1.8rem;
    color: var(--text-muted);
    max-width: 64rem;
    margin: 0 auto;
  }
  
  /* Buttons */
  .cta-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    box-shadow: 0 0.4rem 0.8rem rgba(62, 95, 200, 0.3);
    transition: all var(--transition-normal);
  }
  
  .cta-button:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-0.2rem);
    box-shadow: 0 0.6rem 1.2rem rgba(62, 95, 200, 0.4);
  }
  
  .cta-button:active {
    transform: translateY(0);
    box-shadow: 0 0.2rem 0.4rem rgba(62, 95, 200, 0.2);
  }
  
  .submit-button {
    display: inline-block;
    width: 100%;
    background-color: var(--primary-blue);
    color: var(--text-light);
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    box-shadow: 0 0.4rem 0.8rem rgba(62, 95, 200, 0.3);
    transition: all var(--transition-normal);
  }
  
  .submit-button:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-0.2rem);
    box-shadow: 0 0.6rem 1.2rem rgba(62, 95, 200, 0.4);
  }
  
  .submit-button:active {
    transform: translateY(0);
    box-shadow: 0 0.2rem 0.4rem rgba(62, 95, 200, 0.2);
  }
  
  /* Footer */
  .footer {
    background-color: var(--primary-blue-dark);
    color: var(--text-light);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
  }
  
  .footer-logo {
    flex: 1 1 30rem;
  }
  
  .footer-logo .logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
  }
  
  .footer-logo p {
    font-size: 1.4rem;
    opacity: 0.8;
  }
  
  .footer-links {
    flex: 1 1 20rem;
  }
  
  .footer-links h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .footer-links ul li {
    margin-bottom: var(--spacing-xs);
  }
  
  .footer-links ul li a {
    opacity: 0.8;
    transition: opacity var(--transition-fast);
  }
  
  .footer-links ul li a:hover {
    opacity: 1;
  }
  
  .footer-contact {
    flex: 1 1 25rem;
  }
  
  .footer-contact h3 {
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-xs);
    opacity: 0.8;
  }
  
  .footer-contact p svg {
    margin-right: var(--spacing-xs);
  }
  
  .copyright {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
    opacity: 0.6;
  }
  .whatsapp-float {
    position: fixed;
    bottom: 20px; /* Distance from the bottom of the page */
    right: 20px; /* Distance from the right of the page */
    z-index: 1000; /* Ensures it stays on top */
    width: 60px; /* Button width */
    height: 60px; /* Button height */
    border-radius: 30%; /* Makes it circular */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    background-color: #25d366; /* WhatsApp green color */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
  }

  .whatsapp-float img {
    width: 40px; /* Adjust icon size */
    height: 40px;
  }