      /* Global Reset */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
  
      body {
        font-family: Arial, Helvetica, sans-serif;
        background: #0C0A1E;
        color: #FFFFFF;
        line-height: 1.5;
        background: url("../assets/images/Aarmax-World.webp") no-repeat calc(100% + 150px) -50px;
        background-size: 150vh; /* Ensures the full image fits within the screen */
        background-color: #0C0A1E; /* Matches the dark theme */
      }
      
       /* For WebKit browsers (Chrome, Edge, Safari) */
    ::-webkit-scrollbar {
    width: 8px; /* Adjust width as needed */
    }

    ::-webkit-scrollbar-thumb {
    background-color: #5C44FC;
    border-radius: 4px;
    }

    ::-webkit-scrollbar-track {
    background-color: #0C0A1E; /* Adjust track color if needed */
    }

    /* For Firefox */
    html {
    scrollbar-color: #5C44FC #0C0A1E;
    }
  
      a {
        text-decoration: none;
        color: inherit;
      }
  
      /* Navbar */
      header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 5%;
        background: #0C0A1E;
      
      }
  
      .logo img {
          width: 60px; /* Optimized size */
          height: auto;
          display: block;
          transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
      }
      
      /* Logo Hover Effect */
      .logo img:hover {
          transform: scale(1.1); /* Slightly enlarges */
          filter: drop-shadow(0 0 10px rgba(92, 68, 252, 0.6)); /* Soft glow effect */
      }
  
      .logo {
      display: flex;
      align-items: center; /* Aligns logo and text on the same line */
      gap: 10px; /* Adds space between the logo and text */
      flex-wrap: wrap; /* Ensures text does not break awkwardly */
      }
  
  /* Subtle spotlight effect on company name */
  .company-name {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: bold;
    color: #FFFFFF;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.2), 
                 0 0 6px rgba(255, 255, 255, 0.15);
  }
  
  /* Softer radial light effect */
  .company-name::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 10%, rgba(0, 0, 0, 0) 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
  }
  
      nav a {
          margin-left: 30px;
          font-weight: 500;
          word-spacing: 5px; /* Adjusts spacing between words */
          position: relative;
          padding-bottom: 5px;
          transition: color 0.3s ease-in-out;
      }
  
      /* Hover Color Change */
      nav a:hover {
          color: #5C44FC; /* Changes to a primary accent color */
      }
  
      /* Underline Animation */
      nav a::after {
          content: "";
          position: absolute;
          left: 50%;
          bottom: 0;
          width: 0;
          height: 2px;
          background-color: #5C44FC;
          transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
      }
  
      nav a:hover::after {
          width: 100%;
          left: 0;
      }
  
  /* Contact Us Button - Unique Style */
.contact-btn {
    background-color: #5C44FC;
    color: #FFFFFF !important;
    padding: 10px 18px; /* Slightly larger padding for better touch accessibility */
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    font-size: 1rem; /* Default text size */
    font-weight: 600;
    white-space: nowrap; /* Prevents text from breaking */
}

/* Unique hover effect */
.contact-btn:hover {
    background-color: #9380FA;
    color: #FFFFFF !important;
}

/* Prevent default underline hover effect */
.contact-btn::after {
    display: none !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-btn {
        padding: 8px 14px; /* Reduce padding on smaller screens */
        font-size: 0.9rem; /* Adjust text size for better fit */
    }
}

@media (max-width: 480px) {
    .contact-btn {
        padding: 7px 12px; /* More compact padding */
        font-size: 0.85rem; /* Smaller font for compact layout */
    }
}
  
  /* Footer Enhancements */
  footer {
    padding: 50px 5%;
    color: #CCCCCC;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
  }
  .footer-description {
  font-size: 0.95rem;
  color: #CCCCCC;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 20px;
}
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
  
  .footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .footer-social img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s;
  }
  
  .footer-social img:hover {
    opacity: 0.7;
  }
  
  .footer-links h3,
  .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 8px;
  }
  
  /* Apply same hover effect from nav links to footer links */
  .footer-links a {
    color: #CCCCCC;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease-in-out;
  }
  
  /* Hover color change */
  .footer-links a:hover {
    color: #5C44FC; /* Same hover color as nav */
  }
  
  /* Underline animation */
  .footer-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #5C44FC;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
  }
  
  .footer-links a:hover::after {
    width: 100%;
    left: 0;
  }
  
  .footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 5px;
  }
  
  /* Apply hover effect to phone and email links */
  .footer-contact a {
    color: #CCCCCC;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease-in-out;
  }
  
  /* Hover color change */
  .footer-contact a:hover {
    color: #5C44FC; /* Same hover color as nav */
  }
  
  /* Underline animation */
  .footer-contact a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #5C44FC;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
  }
  
  .footer-contact a:hover::after {
    width: 100%;
    left: 0;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #666666;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 0.8fr 1fr 1.2fr; /* First column is twice the size, 3rd & 4th are slightly narrower */
    gap: 20px;
  }
  
  .whatsapp-chat {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1000;
  }
  
  .whatsapp-chat img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease-in-out;
  }
  
  .whatsapp-chat img:hover {
      transform: scale(1.1);
  }  
      /* Responsive */
      @media (max-width: 768px), (max-width: 480px) {
        
        .navbar-links {
          display: none;
        }
        .hero h1 {
          font-size: 2rem;
        }
        .logo img {
          width: 50px; /* Smaller logo for mobile */
        }
        
          .company-name {
          font-size: 1rem; /* Slightly smaller text for mobile */
          }
  
          .menu-container {
    position: relative;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 30px;
    cursor: pointer;
    z-index: 10001;
    background: transparent;
    border: none;
    padding: 5px;
  }
  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 3px;
    transition: transform 0.25s ease, background 0.25s ease;
  }
  
  .mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 42px;
    right: 0;
    min-width: 160px;
    background: #0d0b1f;
    z-index: 9999;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }
  .mobile-nav.active {
    display: flex;
  }
  .mobile-nav a {
    color: #fff;
    padding: 12px 18px;
    text-align: left;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.25s ease, padding-left 0.2s;
  }

 .mobile-nav a:last-child {
  border-bottom: none;
  margin: 10px 10px 0 auto;
}

  .mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.07);
    padding-left: 24px;
  }
  
          .footer-grid {
            grid-template-columns: 1fr 1fr; /* Two columns on tablets */
          }
          
  
        .footer-grid {
        grid-template-columns: 1fr;
        }
  
  }
  
  .hero {
    text-align: left;
    padding: 100px 8% 80px; /* Increased left padding to push content right */
    background-size: contain;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Use flex-start for correct alignment */
  }
  
  .hero h1,
.hero p {
  margin-left: 0; /* Remove fixed margin */
  max-width: 1000px; /* Limit text width for better readability */
}
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1rem;
    color: #CCCCCC;
    margin-bottom: 30px;
    max-width: 650px; /* Prevents text from stretching too wide */
  }
  
  .hero p:first-of-type {
    margin-bottom: 10px;
  }
  
/* CTA Section */
.cta {
  background: #F4F5F7;
  text-align: left;
  padding: 100px 350px; /* Increased right and left padding */
  color: #0C0A1E;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px; /* Retain gap for better separation */
  box-sizing: border-box;
  margin: 40px 0; /* Removed left and right margin for full width */
  width: 100%; /* Set width to 100% to span the full width */
  margin-bottom: 0;
  box-shadow: 
    0 -4px 10px rgba(100, 100, 255, 0.5),  /* Soft blue glow at the top */
    0 -8px 20px rgba(150, 0, 255, 0.3);     /* Subtle purple glow for depth */
}

/* CTA Section Headings */
.cta h2 {
  font-size: 2.5rem; /* Larger font for emphasis */
  font-weight: bold;
  margin-bottom: 25px; /* Increased spacing */
  color: #2d42ad;
  line-height: 1.3; /* Improved line height for readability */
}

.cta h3 {
  font-size: 1.4rem; /* Slightly larger */
  letter-spacing: 1px;
  color: #0C0A1E;
  margin-bottom: 50px; /* Increased spacing */
  font-weight: 500; /* Medium weight for better readability */
}

/* CTA Steps Container */
.cta-steps {
  display: flex;
  align-items: flex-start;
  gap: 30px; /* Increased gap for better spacing */
  min-width: 400px;
}

/* Ordered List (Step Indicators) */
.cta-steps ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  position: relative;
}

/* Step Bullet Styling */
.cta-steps ol li {
  width: 40px; /* Slightly larger */
  height: 40px;
  background-color: #2d42ad;
  color: #fff;
  font-weight: bold;
  font-size: 20px; /* Slightly larger */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  margin-bottom: 70px; /* Increased spacing */
  counter-increment: step;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

/* Auto-Numbering for Steps */
.cta-steps ol li::before {
  content: counter(step);
}

/* Connecting Line Between Steps */
.cta-steps ol li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100px; /* Increased height */
  background-color: #2d42ad;
  left: 50%;
  top: 80%;
  transform: translateX(-50%);
}

/* CTA Text Box */
.cta-text {
  max-width: 250px; /* Slightly wider for better readability */
}

.cta-text p {
  font-size: 1.1rem; /* Slightly larger */
  color: #0C0A1E;
  margin: 0 0 25px; /* Consistent spacing */
  line-height: 1.6; /* Improved line height for readability */
}

/* Form Container (Right Side) */
.form-container {
  width: 100%;
  background: #ffffff;
  padding: 50px; /* Increased padding */
  border-radius: 15px; /* Rounded corners for a modern look */
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  box-sizing: border-box;
}

/* Proposal Container */
.proposal-container {
  display: flex;
  align-items: center;
  gap: 15px; /* Increased spacing between icon and text */
  margin-bottom: 40px; /* Increased spacing */
}

.proposal-icon {
  width: 60px; /* Larger icon */
  height: auto;
}

.proposal-container h3 {
  font-size: 1.3rem; /* Slightly larger */
  color: #1b1742;
  font-weight: 500; /* Medium weight for better readability */
  margin: 0;
  line-height: 1.5; /* Improved line height */
}

/* Form Styling */
.form {
  display: flex;
  flex-direction: column;
  gap: 30px; /* Increased spacing for a bigger feel */
  width: 100%;
  box-sizing: border-box;
}

/* Form Groups */
.form-group {
  display: flex;
  gap: 25px; /* Increased spacing */
  width: 100%;
  box-sizing: border-box;
}

.form-group input {
  flex: 1;
  padding: 18px; /* Increased padding */
  border: 1px solid #e0e0e0; /* Added border for better definition */
  background-color: #f5f5f5;
  border-radius: 8px; /* Rounded corners */
  font-size: 1.1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease-in-out; /* Smooth transition */
}

.form-group input:focus {
  border-color: #2d42ad; /* Highlight focus state */
  outline: none;
}

/* Textarea */
textarea {
  width: 100%;
  height: 200px; /* Increased height */
  padding: 18px; /* Increased padding */
  border: 1px solid #e0e0e0; /* Added border for better definition */
  background-color: #f5f5f5;
  border-radius: 8px; /* Rounded corners */
  resize: vertical;
  font-size: 1.1rem;
  box-sizing: border-box;
  transition: border-color 0.3s ease-in-out; /* Smooth transition */
}

textarea:focus {
  border-color: #2d42ad; /* Highlight focus state */
  outline: none;
}

/* Send Button */
button {
  background: #2d42ad;
  color: white;
  padding: 18px; /* Increased padding */
  border: none;
  border-radius: 8px; /* Rounded corners */
  cursor: pointer;
  font-size: 1.1rem;
  width: 100%;
  transition: background 0.3s ease-in-out;
  box-sizing: border-box;
  margin-bottom: 20px; /* Added gap below the button */
}

button:hover {
  background: #5C44FC;
}

iframe {
  width: 100%;
  height: 50vh;
}

@media (max-width: 1440px) { /* Large laptops */
  .cta {
    gap: 40px; /* Reduce spacing */
    padding: 80px 5%;
  }

  .form-container {
    width: 100%; /* Prevent full-width stretching */
    max-width: 750px; /* Limit size */
    padding: 40px;
  }

  input, textarea {
    width: 100%;
    max-width: 100%;
  }

}

@media (max-width: 1024px) { /* Adjust for tablets & landscape mode */
  .cta {
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items */
    padding: 40px 5%;
    gap: 30px; /* Reduce spacing */
  }

  .form-container {
    width: 100%; /* Keep it inside the parent */   
    padding: 30px; /* Reduce padding */
    box-sizing: border-box;
    overflow: hidden; /* Prevents content from spilling */
  }


  input, textarea {
    width: 100%;
    max-width: 100%;
  }
}


/* Responsive Fixes */
@media (max-width: 768px) {
  .hero {
    padding: 80px 5% 60px; /* Reduced padding for mobile */
  }

  .cta {
    flex-direction: column;
    padding: 60px 0; /* Adjusted for mobile, removed horizontal padding */
    margin: 0;
    width: 100%;
    border-radius: 0; /* Full-width, no border radius */
  }

  .cta-steps {
    text-align: left;
    gap: 20px;
    padding: 5%;
  }

  .cta-steps ol li {
    margin-bottom: 80px;
  }

  .cta-steps ol li:not(:last-child)::after {
    height: 100px;
  }

  .cta-content,
  .form-container {
    width: 100%;
    padding: 30px;
  }

 
  .form-group {
    flex-direction: column;
    gap: 20px;
  }

  textarea {
    height: 150px;
  }

  .proposal-container h3 {
    font-size: 1rem;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  nav a {
    margin-left: 18px; /* reduced from 30px */
    font-size: 0.95rem;
  }

  .contact-btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .company-name {
    font-size: 1rem;
  }

  header {
    flex-wrap: wrap;
    row-gap: 8px;
  }
}


.logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0; /* Remove extra space */
  line-height: 1.1;
}

.company-slogan {
  font-size: 0.72rem;
  font-weight: 400;
  color: #CCCCCC;
  text-transform: none;
  letter-spacing: 0.2px;
  margin-top: 1px; /* minimal spacing */
  white-space: nowrap;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .company-slogan {
    font-size: 0.65rem;
  }
}

@media (max-width: 767px) {
  .company-slogan {
    font-size: 0.6rem;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .logo img {
    width: 48px;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }

  nav a {
    margin-left: 16px; /* smaller gap */
    font-size: 0.82rem;
  }

  .contact-btn {
    padding: 6px 12px;
    font-size: 0.82rem;
  }

  .logo img {
    width: 45px; /* smaller logo */
  }

  .company-name {
    font-size: 0.85rem;
  }

  .company-slogan {
    font-size: 0.58rem;
  }

  .logo-text {
    max-width: 110px;
  }
}
