
/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #F4F4F4;
  color: #333333;
  margin: 0; /* Remove default body margin */
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


/* Header & Navigation */


header {
  background: #0073E6; /* Sky Blue */
  color: #FFFFFF;
  padding: 20px;
  position: fixed; /* Make the navbar fixed */
  top: 0; /* Stick to the top */
  width: 100%; /* Full width */
  z-index: 1000; /* Ensure it stays above other content */
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  max-height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1em;
}

/* Toggle button styles */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: #FFFFFF;
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  width: 25px;
  height: 3px;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}


/* Responsive styles */
@media (max-width: 991px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    display: block; /* Use block instead of flex */
    width: 100%;
    background: #0073E6;
    /* padding: 20px 0; */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
  }

  .nav.active {
    max-height: 500px;
    opacity: 1;
    padding-top: 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav.active ul {
    transform: translateY(0);
    opacity: 1;
  }

  .nav ul li:last-child {
    margin-top: 20px;
  }
}
/* Hamburger animation */
.nav-toggle.active .hamburger {
  transform: rotate(45deg);
}

.nav-toggle.active .hamburger::before {
  transform: rotate(90deg);
  top: 0;
}

.nav-toggle.active .hamburger::after {
  transform: rotate(90deg);
  top: 0;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav ul li:last-child {
    margin-bottom: 20px; /* Adjust this value as needed */
  }
}


.cta {
  background: #FFCC00;
  color: #333333;
  padding: 12px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
}


/* Hero section start */

.hero {
  position: relative;
  margin-top: 100px;

}

.container {
  max-width: 1200px;
  margin: 0 auto;

}

.hero-content {
  display: flex;
  align-items: center; /* Vertically center all items */
  justify-content: space-between; /* Space out text and image */
  gap: 40px; /* Space between text and image */
  flex-wrap: wrap; /* Wrap on smaller screens */
  padding-top: 100px;
}

.hero-text {
  flex: 1; /* Take up equal space */
  max-width: 600px; /* Limit text width */
}

.hero-text h1 {
  font-size: 5em;
  font-weight: 900;
  margin-bottom: 10px;
  color: #0073E6;
}

.hero-text p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #555;
}

.nav .cta {
  background: #FFCC00; /* Bright Yellow */
  color: #333333;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.hero-image {
  flex: 1; /* Take up equal space */
  max-width: 700px; /* Limit image width */
  display: flex;
  align-items: center; /* Vertically center the image */
  justify-content: center; /* Horizontally center the image */
}

.hero-image img {
  max-width: 100%; /* Ensure the image doesn't overflow */
  height: auto; /* Maintain aspect ratio */
}

.home-graphic {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px; /* Optional: Add rounded corners */
  animation: move-up-down 5s infinite ease-in-out; /* Corrected animation syntax */
}

/* Define the @keyframes for the animation */
@keyframes move-up-down {
  0%, 100% {
    transform: translateY(0); /* Start and end at the original position */
  }
  50% {
    transform: translateY(-20px); /* Move up by 20px */
  }
}


/* Responsive Design */
@media (min-width: 769px) and (max-width: 991px) {

  .hero-text {
      max-width: 100%; /* Full width on smaller screens */
  }

  .hero-text h1 {
      font-size: 2em; /* Smaller font size for mobile */
  }

  .hero-text p {
      font-size: 1em; /* Smaller font size for mobile */
  }

  .hero-image {
      max-width: 100%; /* Full width on smaller screens */
  }
}


@media (max-width: 768px) {
  .hero-content {
      flex-direction: column; /* Stack text and image on smaller screens */
      text-align: center;
  }

  .hero-text {
      max-width: 100%; /* Full width on smaller screens */
  }

  .hero-text h1 {
      font-size: 2.5em; /* Smaller font size for mobile */
  }

  .hero-text p {
      font-size: 1em; /* Smaller font size for mobile */
  }

  .hero-image {
      max-width: 100%; /* Full width on smaller screens */
  }
}



/* ABOUT SECTION */
#about {
  text-align: center;
  padding-top: 100px;
}
#about .address {
  text-align: left;
  background: #F9F9F9;
  padding: 20px;
  border-radius: 8px;
  /* max-width: 600px; */
  margin: 20px auto;
  font-family: monospace;
}

/* About Section Styles */
.about .container {
  max-width: 1200px;
  margin: 0 auto;

}

.about h2 {

  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  color: #0073E6;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px; /* Space between image and text */
}

.about-image {
  flex: 1; /* Takes up 50% of the space */
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Rounded corners */
}

.about-text {
  flex: 1; /* Takes up 50% of the space */
}

.about-text p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
  text-align: left;
}

.address {
  background-color: #f9f9f9; /* Light background for address section */
  padding: 15px;
  border-radius: 10px; /* Rounded corners */
  font-size: 1em;
  line-height: 1.6;
  color: #333;
}

.address p {
  margin: 0 0 10px 0; /* Spacing between address lines */
}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column; /* Stack image and text vertically */
    gap: 20px; /* Reduce gap for smaller screens */
  }

  .about-image,
  .about-text {
    flex: none; /* Reset flex to default */
    width: 100%; /* Full width on small screens */
  }
}

.logo_text {
  display: inline-block;
}

/* logo height and line fix */
.logo {
  display: flex;
  align-items: center; /* This aligns items vertically in the middle */
}

.logo img {
  height: 50px; /* Adjust the height of the logo as needed */
  margin-right: 10px; /* Adds some space between the logo and the text */
}

.logo_text {
  margin: 0; /* Removes default margin from h3 */
}


/* RATES SECTION */
#rates {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  background-color: #F4F4F4; /* Light background */

}

#rates .container {
  background: #FFFFFF; /* White background for the container */
  padding: 40px;
  border-radius: 10px;


}

#rates h2 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #0073E6; /* Theme color */
}

#rates p {
  text-align: center;
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 40px;
}

/* RATES TABLE */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.rates-table th,
.rates-table td {
  padding: 15px;
  border: 1px solid #DDD;
  text-align: center;
}

.rates-table th {
  background: #0073E6;
  color: #FFFFFF;
  font-size: 1.1em;
}

.rates-table td {
  background: #FFFFFF;
  color: #333333;
  font-size: 1em;
}

.rates-table tr:hover td {
  background: #F0F8FF; /* Light blue hover effect */
  transition: background 0.3s ease;
}




 /* HOW IT WORKS SECTION */
 .how-works {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 10px; /* Top and bottom: 100px, Left and right: 10px (smaller gap) */
  background-color: #F4F4F4; /* Light background */
}

.how_it_work {
  background: #FFFFFF; /* White background for the container */
  padding: 40px; /* Padding inside the container */
  border-radius: 15px; /* Rounded corners */
  text-align: center; /* Centers text inside the h2 */
}

.how_it_work h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5em;
  color: #0073E6; /* Theme color */
}

.how_it_work img {
  max-width: 100%; /* Ensures the image is responsive and doesn't overflow */
  height: auto; /* Maintains the aspect ratio of the image */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  #rates {
    padding-top: 70px;
  }
  .how-works {
    padding: 80px 0px; /* Top and bottom: 80px, Left and right: 10px */
  }

  .how_it_work {
    padding: 30px; /* Reduced padding inside the container */
  }

  .how_it_work h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  #rates {
    padding-top: 50px;
  }
  .how-works {
    padding: 60px 0px; /* Top and bottom: 60px, Left and right: 10px */
  }

  .how_it_work {
    padding: 20px; /* Further reduced padding inside the container */
  }

  .how_it_work h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  #rates {
    padding-top: 30px;
  }
  .how-works {
    padding: 40px 0px; /* Top and bottom: 40px, Left and right: 10px */
  }

  .how_it_work {
    padding: 15px; /* Minimal padding inside the container */
    border-radius: 10px; /* Slightly smaller border radius for smaller screens */
  }

  .how_it_work h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
  }
}




/* FAQ SECTION */
.faq-item {
  margin-bottom: 20px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item h3 {
  color: #0073E6;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .hero {

    margin-top: 100px;
    margin-bottom: 0;
  }
  #about {

    padding-top: 50px;
}
  }





/* Contact Section Styles */
.contact .container {
  max-width: 1200px;
  margin: 0 auto;

}

.contact h2 {


  text-align: center;
  margin-bottom: 10px;
  font-size: 2.5em;
  color: #0073E6;
}
.contact h3 {


  text-align: left;
  margin-bottom: 40px;
  font-size: 1.5em;
  color: #0073E6;
}
.contact-content {
  display: flex;
  align-items: center;
  gap: 40px; /* Space between image and form */
  padding-bottom: 100px;
}

.contact-image {
  flex: 1; /* Takes up 50% of the space */
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Optional: Adds rounded corners */
  background: #ffffff;
}

.contact-form {
  flex: 1; /* Takes up 50% of the space */
}

.contact-form p {
  margin-bottom: 20px;
  font-size: 1.1em;
  text-align: left;
}

.contact-form input {
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
}

.contact-form textarea {
  resize: vertical; /* Allows vertical resizing of the textarea */
  min-height: 150px;
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  font-family: Arial, sans-serif;
}

.contact-form button {
  background-color: #FFCC00;
  color: black;
  padding: 15px 20px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
}

.contact-form button:hover {
  background-color: #FFCC00;
}
#contact p {  text-align: center;
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 60px;}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column; /* Stacks image and form vertically */
    gap: 20px; /* Reduces gap for smaller screens */
  }

  .contact-image,
  .contact-form {
    flex: none; /* Resets flex to default */
    width: 100%; /* Ensures full width on small screens */
  }

  .contact-image img {
    max-width: 100%; /* Ensures image doesn't overflow */
  }

  .contact-form p {
    text-align: center; /* Centers the text on small screens */
  }
  .contact h3 {


    margin-top: 20px;
    margin-bottom: 15px !important;

}
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 2px solid #0073E6; /* Blue border */
  outline: none; /* Remove default browser outline (optional) */
}

.footer {
  width: 100%; /* Full width */
  background-color: #0073E6; /* Example background color (you can change this) */
  color: #FFFFFF; /* Text color */
  text-align: center;
  padding: 20px 0; /* Adjust padding as needed */
  border-radius: 0; /* Remove border-radius for full-width effect */
}




.nav-link {
  color: rgb(255, 255, 255); /* This will override your rule */
}

.nav-link.active {
 color: #FFCC00;

}
























