/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #fff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 50px; /* Adjust as needed */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

/* Navbar Links */
.nav-links li a {
    text-decoration: none;
    color: rgba(3, 3, 3, 0.719);
    font-size: 1.1rem;
    font-weight: bold;
    position: relative;  /* Needed for pseudo-element underline */
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Cool underline animation effect */
.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* space below text */
    width: 0%;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.nav-links li a:hover {
    color: #007bff;
    transform: scale(1.05); /* Slight zoom effect */
}

.nav-links li a:hover::after {
    width: 100%; /* Expands underline on hover */
}

/* Styles for the current page (active link) - Blue color and blue underline */
.nav-links li a.active,
.nav-links li a[active] {
    color: #007bff;
    transform: scale(1.05);
}

.nav-links li a.active::after,
.nav-links li a[active]::after {
    width: 100%;
}

.cta-button {
    background-color: rgba(48, 37, 199, 0.836); /* Use a color from the image */
    color: #fff;
    padding: 13px 45px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-radius: 30px;
}

.cta-button:hover {
    background-color: #0d2745; /* Darker shade on hover */
}

main-wrapper {
  display: block;
  width: 100%;
  height: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* Ensures image behaves like a background */
  z-index: -1;
}

.overlay {
  /* background: rgba(0, 0, 0, 0.5); */
  padding: 40px;
  max-width: 600px;
  margin-left: 50px;
  border-radius: 10px;
}

.hero-text h1 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 15px;
  border-bottom: 2px solid #fff ;
  border-bottom-style: dashed;
}


.hero-text p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  background: #fff;
  padding: 0px 20px;
  border-radius: 15px;
  box-shadow: 0px -4px 15px rgba(0,0,0,0.1);
  width: fit-content;
  margin: -50px auto 30px;
}

.stat-box {
  text-align: center;
}

.stat-box h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #000;
  margin-left: -60px;
}

.stat-box p {
  font-size: 0.9rem;
  color: #555;
}

.stat-box.highlight {
  background: rgba(48, 37, 199, 0.836);
  padding: 35px 25px;
  border-radius: 10px;
  color: #fff;
}

.stat-box.highlight h2,
.stat-box.highlight p {
  color: #fff;
}

page-container {
  display: block;
  width: 100%;
  padding: 40px 20px;
  background: #fff;
}

/* Why Choose Section */
.why-choose {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.05); */
}

/* Left Content */
.why-text {
  flex: 1;
}

.decorated-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: bold;
  color: #1c52a1;
  text-transform: uppercase;
  /* letter-spacing: 1px; */
  margin-top: -50px;
}

.decorated-heading::before,
.decorated-heading::after {
  content: "";
  flex: 1;
  border-bottom: 2px dashed #ccc;
  /* font-size: 10px; */
  margin: 0 18px;
  
}


.main-heading {
  font-size: 34px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.description {
  font-size: 15px;
  color: rgb(97, 97, 97);
  line-height: 1.6;
  margin-bottom: 20px;
}

.features {
  list-style: none;
  margin-bottom: 25px;
}

.features li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #222;
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  gap: 7px;
  margin-left:-20px ;
}

.features i {
  color: #0d6efd;
  font-size: 16px;
  margin-top: 3px;

  
}

/* Button */
.cta-btn {
  background: rgba(48, 37, 199, 0.836);
  color: #fff;
  padding: 5px 50px;
  border: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #0b5ed7;
}

/* Right Image */
.why-img {
  flex: 1;
  display: flex;
  justify-content: center;
}

.why-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  object-fit: cover;
}

architect-container {
  display: block;
  background: #eaf2fb; /* Light blue */
  padding: 40px 20px;
}

.product-section {
  max-width: 1500px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 34px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #475569;
  font-size: 18px;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.product-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  width: 340px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: left;
}

.card-content h3 {
  font-size: 16px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 13px;
  color: #475569;
  margin-bottom: 12px;
}

.details-link {
  font-size: 14px;
  color: rgba(48, 37, 199, 0.836);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 20px;
}

.details-link:hover {
  color: #1d4ed8;
}

engineer-container {
  display: block;
  background: #fff;
  padding: 40px 20px;
}

.features-section-unique {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-left: 120px;
}

.features-content-unique {
  flex: 1;
  min-width: 320px;
}

.features-title-unique {
  font-size: 28px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 20px;
}

.features-list-unique {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.features-list-unique li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.features-list-unique .icon {
  font-size: 22px;
  flex-shrink: 0;
  color: #1e40af;
}

.features-list-unique h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #111827;
}

.features-list-unique p {
  font-size: 14px;
  color: rgb(75, 75, 75);
  line-height: 1.4;
}

.features-image-unique {
  flex: 1;
  text-align: center;
  min-width: 280px;
}

.features-image-unique img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

consultant-container {
  display: block;
  background: #eaf2fb; /* Light blue background */
  padding: 40px 20px;
}

.trusted-section-unique {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.trusted-title-unique {
  font-size: 18px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 30px;
}

.trusted-logos-unique {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trusted-logo {
  max-height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.trusted-logo:hover {
  transform: scale(1.1);
}

builder-container {
  display: block;
  background: #ffffff;
  padding: 50px 20px;
}

.about-section-unique {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text-unique {
  flex: 1;
  min-width: 320px;
  margin-left: 120px;
  margin-top: 50px;
}

.about-title-unique {
  font-size: 30px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 13px;
}

.about-description-unique {
  font-size: 16.5px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 16px;
}

.about-btn-unique {
  padding: 13px 24px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  background:#153081;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-btn-unique:hover {
  background: #1e40af;
}

.about-images-unique {
  flex: 1;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
  min-width: 320px;
  margin-right: 80px;
  
}

.about-img-unique {
  flex: 1;
  max-width: 180px;
  border-radius: 10px;
  object-fit: cover;
  height: 400px;
}

.about-img-unique1 {
  flex: 1;
  max-width: 380px;
  border-radius: 10px;
  object-fit: cover;
  height: 350px;
  margin-top: 50px;
}

gallery-container {
  display: block;
  background: #fff;
  padding: 40px 0px;
}

.gallery-section-unique {
  max-width: 1000px; /* slightly reduced overall container width */
  margin: auto;
}

.gallery-title-unique {
  font-size: 22px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 20px;
}

.gallery-grid-unique {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
  gap: 20px; /* gap unchanged */
}

.gallery-item-unique {
  width: 90%;
  height: 290px; /* reduced fixed height */
  overflow: hidden;
  border-radius: 25px;
}

.gallery-item-unique img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item-unique img:hover {
  transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .gallery-grid-unique {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid-unique {
    grid-template-columns: 1fr;
  }
}

/* General Styling for the Container */
.certification-strip {
    display: flex;
    justify-content: center; /* Changed from space-around */
    align-items: center;
    padding: 5px 0;
    background-color: #fff;
    /* border-top: 1px solid #eee; */
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 15px;
}

/* Styling for Individual Certification Items */
.certification-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    /* Optional: Add a subtle border or shadow if desired */
    /* border: 1px solid #ddd; */
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.05); */
    border-radius: 5px;
}

/* Styling for the Logos */
.certification-logo {
    max-height: 60px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Removes extra space below image */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .certification-strip {
        justify-content: center; /* Center items when they wrap */
    }

    .certification-logo {
        max-height: 50px; /* Slightly smaller on mobile */
    }
}

@media (max-width: 480px) {
    .certification-strip {
        padding: 15px;
    }

    .certification-item {
        flex-basis: 45%; /* Two items per row on very small screens */
    }
}

testimonial-wrapper {
  display: block;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.testimonial-background-unique img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.testimonial-section-unique {
  background: #fff;
  max-width: 500px;
  margin: 60px auto;
  padding: 60px 50px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
  min-height: 580px;
  margin-top: 30px;
}

.testimonial-line{
    flex-grow: 1; /* Allows the lines to take up available space */
    height: 1px;
    background-color: #ccc; /* Color of the lines */
    margin: 0 10px; /* Space between line and text */
    max-width: 150px; /* Max length for each line */

}

.testimonial-subtitle-unique {
  font-size: 14px;
  font-weight: bold;
  color: #3b82f6;
  margin-bottom: 10px; 
}


.testimonial-title-unique {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #111827;
}

.testimonial-desc-unique {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
}

.testimonial-slider-unique {
  position: relative;
}

.testimonial-card-unique {
  display: none;
  animation: fadeIn 0.6s ease-in-out;
}

.testimonial-card-unique.active {
  display: block;
}

.testimonial-text-unique {
  font-size: 15px;
  color: #374151;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author-unique {
  font-weight: bold;
  color: #2563eb;
}

.testimonial-location-unique {
  font-size: 13px;
  color: #6b7280;
  display: block;
}

/* Navigation Arrows */
.testimonial-prev-unique,
.testimonial-next-unique {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color:blue;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.testimonial-prev-unique {
  left: -25px;
}

.testimonial-next-unique {
  right: -25px;
}

/* Dots */
.testimonial-dots-unique {
  margin-top: 15px;
}

.testimonial-dots-unique .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background: #d1d5db;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.testimonial-dots-unique .dot.active {
  background: #2563eb;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Styling for the overall section wrapper */
.cta-wrapper {
    background-color: #FFF; /* Light background as seen in the image */
    padding: 80px 20px; /* Vertical padding and some horizontal for smaller screens */
    text-align: center; /* Center all inline content */
    font-family: Arial, sans-serif; /* Example font, adjust as needed */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items horizontally in the flex column */
}

/* Styling for the "BRING YOUR VISION TO LIFE." line container */
.cta-line-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Ensures lines and text are centered */
    margin-bottom: 20px;
    width: 100%; /* Allow lines to stretch */
    max-width: 500px; /* Optional: control max width of the line/text block */
}

/* Styling for the decorative lines */
.cta-line {
    flex-grow: 1; /* Allows the lines to take up available space */
    height: 1px;
    background-color: #ccc; /* Color of the lines */
    margin: 0 10px; /* Space between line and text */
    max-width: 150px; /* Max length for each line */
}

/* Styling for the subheading text */
.cta-subheading {
    font-size: 14px;
    color: #666; /* Lighter color for subheading */
    letter-spacing: 1px;
    font-weight: bold;
    margin: 0; /* Remove default paragraph margin */
    white-space: nowrap; /* Prevent text from wrapping */
}

/* Styling for the main heading */
.cta-main-heading {
    font-size: 42px; /* Large font size for impact */
    color: #333; /* Darker color for main heading */
    font-weight: 800; /* Bold font weight */
    line-height: 1.2;
    margin-bottom: 40px; /* Space below heading */
    max-width: 700px; /* Limit width for readability */
}

/* Styling for the button */
.cta-button1 {
    display: inline-flex; /* Use flex to align icon and text */
    align-items: center; /* Vertically center icon and text */
    background-color: #254F91;  /* Blue button background */
    color: #fff; /* White text color */
    padding: 15px 30px;
    border-radius: 5px; /* Slightly rounded corners */
    text-decoration: none; /* Remove underline from link */
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    gap: 10px; /* Space between icon and text */
}

.cta-button1:hover {
    background-color:  #2F64B2;/* Darker blue on hover */
}

/* Styling for the button icon */
.cta-button-icon {
    width: 18px; /* Size of the icon */
    height: 18px;
    vertical-align: middle; /* Align icon vertically with text */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-wrapper {
        padding: 60px 15px;
    }

    .cta-main-heading {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .cta-subheading {
        font-size: 12px;
    }

    .cta-line {
        max-width: 80px; /* Shorter lines on smaller screens */
    }
}

@media (max-width: 480px) {
    .cta-wrapper {
        padding: 40px 10px;
    }

    .cta-main-heading {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .cta-line-container {
        flex-wrap: wrap; /* Allow lines and text to wrap if needed */
        justify-content: center;
    }

    .cta-line {
        margin: 0 5px;
        max-width: 50px;
    }
}

/* General Footer Styling */
.site-footer-wrapper {
    background-color: #1A2430; /* Dark background color from image */
    color: #E0E0E0; /* Light grey text color */
    padding: 30px 10px; /* Top/bottom padding, left/right for responsiveness */
    font-family: Arial, sans-serif; /* Example font */
    box-sizing: border-box; /* Include padding in element's total width/height */
}

.site-footer-content-container {
    max-width: 1200px; /* Limit width of content */
    margin: 0 auto; /* Center the content container */
    display: flex;
    flex-wrap: wrap; /* Allow columns to wrap on smaller screens */
    justify-content: space-between; /* Distribute columns */
    gap: 15px; /* Space between columns */
}

/* Footer Column Styling */
.footer-column {
    flex: 1; /* Each column takes equal available space */
    min-width: 250px; /* Minimum width before wrapping */
    margin-bottom: 10px; /* Space between columns when stacked */
    margin-top: 20px;

}

/* About Column */
.footer-about {
    max-width: 350px; /* Give more space to the about column */
}

.footer-logo-link {
    display: inline-block; /* Allows margins to be set */
    margin-bottom: 20px;
}

.footer-company-logo {
    max-width: 180px; /* Adjust logo size */
    height: auto;
    display: block; /* Remove extra space below image */
  
}


.footer-tagline {
    font-size: 15px;
    line-height: 1.6;
    margin-top: -20px;
    margin-bottom: 25px;
    color: #b0b0b0; /* Slightly lighter text for tagline */
}

.footer-social-links {
    display: flex;
    gap: 15px; /* Space between social icons */
    margin-top: -10px;
}

.social-icon-link {
    color: #E0E0E0;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icon-link:hover {
    color: #4A90E2; /* Hover color for social icons */
}

/* Headings in Footer */
.footer-heading {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff; /* White color for headings */
    margin-top: 0;
    margin-bottom: 25px;
}

/* Footer List Styling (Quick Links, Products, Contact Info) */
.footer-list {
    list-style: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px; /* Space between list items */
}

.footer-link,
.footer-contact-link {
    color: #E0E0E0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: inline-block; /* Needed for padding/margin on hover */
}

.footer-link:hover,
.footer-contact-link:hover {
    color: #4A90E2; /* Hover color for links */
}

/* Contact Info Specific Styling */
.footer-contact-list li {
    display: flex; /* Use flex for icon and text alignment */
    align-items: flex-start; /* Align text to the top if it wraps */
    margin-bottom: 8px;
}

.footer-contact-icon {
    font-size: 16px;
    margin-right: 2px;
    color: #999; /* Slightly subdued icon color */
    position: relative;
    top: 9px; /* Adjust vertical alignment of icon */
}

.footer-contact-text {
    color: #E0E0E0;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .site-footer-content-container {
        justify-content: flex-start; /* Stack columns more naturally */
        gap: 40px;
    }

    .footer-column {
        min-width: 200px; /* Allow columns to be slightly smaller */
        flex: 1 1 45%; /* Two columns per row */
    }

    .footer-about {
        flex: 1 1 100%; /* About column takes full width on smaller screens */
        max-width: none;
    }
}

@media (max-width: 768px) {
    .site-footer-wrapper {
        padding: 40px 15px;
    }

    .footer-column {
        flex: 1 1 100%; /* Stack all columns on very small screens */
        min-width: unset;
        text-align: center; /* Center content when stacked */
    }

    .footer-logo-link {
        margin: 0 auto 20px auto; /* Center logo */
    }

    .footer-social-links {
        justify-content: center; /* Center social icons */
    }

    .footer-contact-list li {
        justify-content: center; /* Center contact items when stacked */
        text-align: left; /* Keep text left-aligned within its own block */
    }

    .footer-contact-text {
        text-align: left; /* Ensure address text aligns left */
        max-width: 250px; /* Optional: limit address width */
    }
}

/* ======================================== */
/* MARQUEE STYLES                         */
/* ======================================== */
.marquee-container {
    background-color: #1A2430; /* Dark blue from footer */
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 25s linear infinite;
}

.marquee-content span {
    font-size: 0.9rem;
    font-weight: 700; /* Bolder text */
    padding: 0 2rem;
    letter-spacing: 0.5px;
    color: #FFFFFF; /* Perfect white text */
}

@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* ======================================== */
/* MOBILE APP-LIKE STYLES & RESPONSIVENESS  */
/* ======================================== */

.nav-controls { display: flex; align-items: center; gap: 1rem; }
.hamburger { display: none; } /* Hidden on desktop */
.cta-button-mobile { display: none; } /* Hidden on desktop and by default */
.nav-header, .mobile-logo, .close-btn { display: none; }

@media (max-width: 1024px) {
    .navbar { padding: 1rem; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 300px;
        max-width: 80%;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.15);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 60px 2rem 2rem;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0; /* Slide in */
    }

    .cta-button-mobile {
        display: block;
        position: absolute;
        bottom: 2rem;
        left: 2rem;
        width: calc(100% - 4rem);
        text-align: center;
        background-color: rgba(48, 37, 199, 0.836);
        color: #fff;
        padding: 15px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 8px;
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-links li a {
        font-size: 1.2rem;
        padding: 10px 0;
        width: 100%;
    }

    .nav-links li a::after { bottom: 0; }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 30px;
        height: 25px;
        cursor: pointer;
        background: none;
        border: none;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background-color: #1A2430;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        padding: 1rem 2rem;
        border-bottom: 1px solid #eee;
    }

    .mobile-logo { display: block; height: 40px; }

    .close-btn {
        display: block;
        background: none;
        border: none;
        font-size: 2.5rem;
        color: #555;
        cursor: pointer;
    }

    /* Hide the original CTA button on mobile */
    .nav-controls .cta-button { display: none; }

    /* Adjustments for smaller mobile screens */
    .hero { height: 70vh; }
    .overlay { margin-left: 20px; padding: 20px; }
    .hero-text h1 { font-size: 2rem; }
    .stats { flex-wrap: wrap; padding: 10px; margin: -40px auto 20px; }
    .stat-box { flex-basis: 45%; }
    .stat-box h2 { margin-left: 0; }
    .why-choose { flex-direction: column; padding: 20px; }
    .features li { margin-left: 0; }
    .features-section-unique { flex-direction: column; margin-left: 0; padding: 20px; }
    .features-content-unique { min-width: 100%; }
    .about-section-unique { flex-direction: column; }
    .about-text-unique { margin-left: 0; margin-top: 0; min-width: 100%; }
    .about-images-unique { margin-right: 0; justify-content: center; }
    .about-img-unique1 { margin-top: 20px; height: auto; max-width: 100%; }
    .testimonial-section-unique { margin: 30px 15px; padding: 40px 20px; min-height: auto; }
    .testimonial-prev-unique { left: -15px; }
    .testimonial-next-unique { right: -15px; }
    .cta-main-heading { font-size: 32px; }
    .card-container { gap: 20px; }
}