* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Roboto', sans-serif !important; */
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
}

.banner {
  background: url("/slide02.jpg") no-repeat center center / cover;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.8); */
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  display: flex;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  color: white;
}

.left {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.left h1 {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
}

.left h2 {
  font-size: 2rem;
  color: gold;
  margin: 0.5rem 0;
}

.left .subtext {
  font-size: 0.95rem;
  color: #ddd;
  margin: 1rem 0;
}

.left .points {
  list-style: none;
  font-size: 1rem;
  color: #ffe66d;
  margin-top: 1rem;
}

.person-image {
  width: 180px;
  margin-bottom: 1.5rem;
}

.right {
  background: white;
  color: black;
  border-radius: 10px;
  padding: 2rem;
  max-width: 400px;
  flex: 1;
  min-width: 300px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.form h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.75rem;
  margin: 0.5rem 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.95rem;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}

.recaptcha-placeholder {
  background: #f1f1f1;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

button {
  width: 100%;
  background: #e53935;
  color: white;
  border: none;
  padding: 0.9rem;
  font-size: 1rem;
  /* border-radius: 5px; */
  cursor: pointer;
  /* margin-top: 1rem; */
}

button:hover {
  background: #ffe66d;
}

/* Responsive */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .left,
  .right {
    max-width: 90%;
  }

  .left h1,
  .left h2 {
    text-align: center;
  }

  .person-image {
    margin: 0 auto 1rem;
  }
}

/* ------ Navbar Section ------ */
/* Navbar base styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background-color: #222;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mobile {
  display: none;
}

.logo-icon {
  width: 30px;
  height: auto;
}

.logo-text {
  text-align: left;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  background: none;
  border: none;
  margin-left: 20px;
}

.nav-group {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
  align-items: center;
  transition: max-height 0.3s ease;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #fcb900;
}

.yellow {
  color: #fcb900;
  font-size: 30px;
  font-weight: 600;
}

/* Responsive styles for Navbar */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: 1100;
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: row;
    padding: 15px 20px;
  }

  .nav-group {
    gap: 20px;
    display: none;
  }

  .nav-group.show {
    display: flex;
  }

  .logo-mobile {
    display: flex;
  }

  .logo-icon {
    width: 25px;
    height: auto;
  }

  .logo {
    display: none !important;
  }

  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: 1100;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    padding: 10px 10px;
  }

  .logo-text {
    font-size: 18px;
    padding-left: 15px;
  }

  .yellow {
    color: #fcb900;
    font-size: 16px;
  }

  .nav-group {
    gap: 10px;
  }

  .logo {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 1200;
  }
}

/* Mobile styles */
@media (max-width: 600px) {
  .navbar {
    flex-direction: row;
    padding: 10px 5vw;
    position: relative;
    justify-content: space-between;
  }

  .logo-mobile {
    display: flex;
    font-size: 14px;
  }

  .logo {
    display: none !important;
    align-items: center;
  }

  .logo-icon {
    width: 22px;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 18px;
    z-index: 1100;
  }

  .nav-group {
    flex-direction: column;
    align-items: flex-start;
    background: #222;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100vw;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: max-height 0.3s ease;
    z-index: 1001;
  }

  .nav-group.show {
    max-height: 400px;
    padding: 10px 0;
    transition: max-height 0.4s cubic-bezier(0.4, 2, 0.6, 1);
  }

  .nav-group li {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border-bottom: 1px solid #333;
    font-size: 16px;
  }
}
.content-wrapper {
  position: relative;
  width: 100%;
  height: 100vh; /* or set your desired height */
  /* background-image: url("Images/Truck/image22.jpg"); */
  background-size: cover; /* Ensures full coverage */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat;
  z-index: 0;
  overflow: hidden;
}

.content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* black overlay */
  z-index: 1;
}

.content-wrapper > * {
  position: relative;
  z-index: 2; /* Makes sure your text or form appears above the overlay */
}
/* ------ Banner Section ------ */
.main-banner {
  background: linear-gradient(
      to bottom right,
      rgba(0, 0, 0, 0.8),
      rgba(28, 28, 28, 0.8)
    ),
    url("Images/Truck/image2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.left-content {
  flex: 1 1 400px;
  width: 700px;
  max-width: fit-content;
  padding: 20px;
  box-sizing: border-box;
  text-align: start;
}

.heading1 {
  font-size: 3.2rem;
  font-weight: 300;
}

.heading2 {
  font-size: 2.8rem;
  color: #fcb900;
  font-weight: 600;
}

.right-form {
  background: #fff;
  color: #222;
  border-radius: 12px;
  padding: 32px 24px;
  box-sizing: border-box;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.right-form h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 20px;
  color: #222;
}

.right-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.right-form input,
.right-form select,
.right-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  background: #fafafa;
  color: #222;
  transition: border 0.2s;
}

.right-form input:focus,
.right-form select:focus,
.right-form textarea:focus {
  border: 1.5px solid #e63946;
  outline: none;
}

.captcha-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 14px;
}

.captcha-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.captcha-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
}

.right-form button[type="submit"] {
  background: #e63946;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.right-form button[type="submit"]:hover {
  background: #b71c2b;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .right-form {
    padding: 18px 6vw;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .right-form h3 {
    font-size: 16px;
  }

  .right-form form {
    gap: 10px;
  }

  .right-form input,
  .right-form select,
  .right-form textarea {
    font-size: 15px;
    padding: 10px;
  }

  .right-form button[type="submit"] {
    font-size: 15px;
    padding: 10px;
  }
}

/* ------ Banner Section End ------ */

/* banner */
.less {
  background-color: #ffc107;
  height: 90px;
  padding: 20px;
}

.less-left {
  margin-left: 120px;
  font-size: 22px;
  color: rgb(0, 0, 0);
  display: inline;
  margin-top: 10px;
}

.ban {
  padding: 36px;
  display: inline;

  text-align: center;
  background-color: black;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);

  text-align: center;
}

.click-path {
  display: inline;
  padding: 100px;
  color: #fcb900;
}

.less-right {
  margin-left: 5%;
  font-size: 22px;
  color: rgb(0, 0, 0);
  display: inline;
  margin-top: 10px;
}

/* ... truck ... */
.offer-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 50px;
  background-color: white;
  font-family: Arial, sans-serif;
}

.line {
  background-color: #fcb900;
  height: 1px;
  box-shadow: none;
}

.offer-left img {
  margin-right: 50px;
}

.offer-right {
  max-width: 600px;
}

.head {
  margin-bottom: -10px;
  padding-inline: 33px;
}

.What {
  font-weight: 10;
  font-size: larger;
}

.we {
  font-size: larger;
  font-weight: 700;
}

.offer-right .head {
  color: black;
  font-size: 2rem;
}

.highlight1 {
  font-size: clamp(2.5rem, 10vw, 7rem);
  /* Keeps font size responsive */
  color: #9690902a;
  /* Faint gray for background effect */
  position: absolute;
  left: 10%;
  /* Moved closer to the left for better alignment with section */
  top: 10%;
  /* Positioned near the top of the section */
  transform: translateY(-10%);
  /* Slight adjustment for centering */
  z-index: -1;
  /* Ensures it stays behind all content */
  pointer-events: none;
  /* Prevents interaction with the number */
  opacity: 0.8;
  /* Slightly more visible but still faint */
}

h4 {
  color: #777;
  font-weight: 200;
  font-size: 14px;
  line-height: 30px;
  padding-inline: 38px;
}

.offer-right {
  color: #777;
  font-weight: normal;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  margin-right: 40px;
}

.description {
  color: #555;
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-inline: 33px;
  font-size: 14px;
}

.features {
  list-style: none;
}

.features li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #333;
  padding-inline: 26px;
  margin-top: 7px;
}

.checkmark {
  color: orange;
  margin-right: 10px;
  font-weight: bold;
}

.services-section {
  padding: 60px 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.services-header {
  font-size: 2rem;
  position: relative;
}

.highlight-number {
  font-size: 120px;
  color: #413d3d2a;
  position: absolute;
  margin-left: -60px;
  z-index: -1;
}

.our {
  font-weight: 200;

  color: black;
}

/* ...existing code... */

/* Tablet aur chhoti screens ke liye */
@media screen and (max-width: 900px) {
  .less {
    padding: 10px;
    height: auto;
    text-align: center;
  }

  .less-left,
  .less-right {
    margin-left: 0;
    font-size: 18px;
    display: block;
    margin-top: 5px;
    text-align: center;
  }

  .ban {
    margin-left: 0;
    padding: 18px;

    display: block;
    clip-path: none;
    border-radius: 8px;
    font-size: 18px;
  }

  .click-path {
    padding: 10px 0;
    font-size: 14px;
    display: block;
    text-align: center;
  }

  .offer-section {
    flex-direction: column;
    padding: 20px 10px;
    gap: 20px;
    align-items: stretch;
  }

  .offer-left img {
    margin: 0 auto 20px auto;
    display: block;
    max-width: 100%;
    height: auto;
  }

  .offer-right {
    max-width: 100%;
  }
}

/* Mobile screens ke liye */
@media screen and (max-width: 600px) {
  .less {
    padding: 5px;
    font-size: 16px;
  }

  .less-left,
  .less-right {
    font-size: 15px;
    margin-top: 2px;
  }

  .ban {
    padding: 8px;
    font-size: 14px;
  }

  .click-path {
    font-size: 12px;
    padding: 6px 0;
  }

  .offer-section {
    padding: 10px 2px;
    gap: 10px;
  }

  .offer-left img {
    max-width: 100%;
    height: auto;
  }
}

/* ...existing code... */
/* Service  */
.Service {
  font-weight: bold;
  color: black;
}

.road {
  font-weight: normal;
  color: #777;
  margin-top: -6px;
  line-height: 10px;
}

.services-header {
  font-weight: normal;
  color: #777;
  margin-top: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 50px;
}

.service-box {
  padding: 20px;
}

.service-box img {
  height: 60px;
  margin-bottom: 20px;
}

.service-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.service-box p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.hook {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  background: #f7b900;
  /* left section bg */
  color: #222;
  font-family: "Arial", sans-serif;
}

.left,
.right {
  width: 50%;
  padding: 50px;
  box-sizing: border-box;
}

.left {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.right {
  background-color: #fff;
  color: #1e1e1e;
}

.hook-image {
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  height: 100px;
  z-index: 10;
}

.left h2,
.right h2 {
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.left h2 span,
.right h2 span {
  color: #000;
  /* Yellow background assumes dark text */
}

.right h2 span {
  color: #f7b900;
}

.subtitle {
  font-size: 0.9rem;
  margin-bottom: 10px;
  margin-left: 210px;
}

.subtitle1 {
  font-size: 0.9rem;
  margin-bottom: 10px;
  margin-left: 260px;
}

.divider {
  width: 30px;
  height: 4px;
  background-color: #000000;
  margin-bottom: 20px;
  margin-left: 47%;
}

.divider1 {
  width: 30px;
  height: 4px;
  background-color: #f9e800;
  margin-bottom: 20px;
  margin-left: 47%;
}

.left .description {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 30px;
  margin-left: 11%;
  margin-right: 5%;
}

.center {
  margin-left: 210px;
}

.center1 {
  margin-left: 218px;
}

.apply-btn,
.submit-btn {
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: bold;
}

.apply-btn {
  background-color: #000;
  color: #f7b900;
  margin-left: 260px;
}

.submit-btn {
  width: 140px;
  margin-left: 260px;
  background-color: #f7b900;
  color: aliceblue;
}

form {
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

input,
select {
  flex: 1;
  padding: 12px;
  /* background-color: #2c2c2c; */
  color: #000;
  border: 1px solid #444;
  outline: none;
}

input::placeholder {
  color: #ccc;
}

input[type="date"] {
  color-scheme: dark;
}

.none {
  font-size: 110px;
  margin-top: -52px;
  color: #413d3d2a;
  position: absolute;
  margin-left: -70px;
  z-index: 1;
}

.blog-section {
  padding: 60px 20px;
  padding-top: 100px;
  text-align: center;
  background-color: #fff;
}

.section-header span {
  font-size: 2rem;
  line-height: 0.5;
}

.blog {
  color: #000;
  font-weight: bold;
}

.section-header p {
  color: #777;
  margin-bottom: 2px;
}

/* ...existing code... */

@media (max-width: 480px) {
  .portfolio-img {
    width: 48%; /* 2 per row with gap on small mobiles */
  }
}

@media (min-width: 481px) and (max-width: 1024px) {
  .portfolio-img {
    width: 48%; /* Tablets: 2 per row */
  }
}

@media (min-width: 1025px) {
  .portfolio-img {
    width: 31.5%; /* Desktops: 3 per row */
  }
}

@media screen and (max-width: 900px) {
  .hook {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .left,
  .right {
    width: 100%;
    padding: 30px 10px;
  }

  .hook-image {
    position: static;
    transform: none;
    margin: 0 auto 20px auto;
    display: block;
  }

  .subtitle,
  .subtitle1,
  .center,
  .center1 {
    margin-left: 0;
    text-align: center;
  }

  .divider,
  .divider1 {
    margin-left: auto;
    margin-right: auto;
  }

  .apply-btn,
  .submit-btn {
    margin-left: 0;
    display: block;
    margin: 20px auto 0 auto;
  }

  .hook-image {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .left,
  .right {
    padding: 15px 5px;
  }

  .left h2,
  .right h2 {
    font-size: 1.2rem;
  }

  .left .description {
    font-size: 0.85rem;
    margin-left: 0;
    margin-right: 0;
    padding: 33px;
  }

  .apply-btn,
  .submit-btn {
    width: 33%;
    font-size: 1rem;
    padding: 10px 0;
  }

  .hook-image {
    display: none;
  }

  .row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 12px;
    width: 84%;
    height: 110px;
    margin: auto;
  }

  form {
    gap: 20px;
  }
}

/* ...existing code... */
.divider3 {
  width: 30px;
  height: 3px;

  margin: 10px auto 30px;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.blog-card {
  width: 1200px;
  border: 1px solid #eee;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  text-align: left;
  transition: transform 0.3s;
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-card .content {
  border-top: 5px solid #f7b900;
  padding: 20px;
}

.blog-card h3 {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 10px;
}

.blog-card .excerpt {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.blog-card .meta {
  font-size: 0.8rem;
  color: #444;
}

.blog-card .author {
  color: #f7b900;
}

.blog-card {
  width: 300px;
  border: 1px solid #eee;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);

  opacity: 0;
  transition: opacity 0.3s;
}

.blog-card:hover .image-wrapper::after {
  opacity: 1;
}

/* ----- Map section ----- */
.faq-map-section {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  gap: 2rem;
  background: #fff;
  color: #333;
  padding: 100px;
}

.map-container {
  flex: 1;
  position: relative;
  min-width: 400px;
}

.world-map {
  width: 100%;
  max-width: 600px;
}

.map-container {
  padding: 1rem;
}

.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* margin-left: 18px; */
  margin-top: 10px;
  height: 0;
  overflow: hidden;
  border-radius: 8px;

  box-shadow: 0 0 10px;
}

.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  margin-left: 0px;
}

.map-point {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #ccc;
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
}

.map-note {
  margin-top: 1rem;
  font-weight: bold;
}

.faq-container {
  font-weight: normal;
  color: #888;
  /* margin-left: 200px; */
  /* changed */
  flex: 1;
  min-width: 400px;
  font-size: 28px;
  margin-bottom: 10px;
}

.highlight2 {
  font-size: 110px;
  margin-top: -28px;
  color: #413d3d12;
  /* changes */
  position: absolute;
  margin-left: -23px;
  z-index: 1;
}

.headd {
  color: #000;
  padding-top: 10px;
  font-size: 35px;
}

.faq-s {
  color: #000;
  font-weight: 600;
}

.b {
  font-size: 14px;
  color: #888;
  margin-bottom: 1rem;
  margin-bottom: 50px;
  font-weight: 200;
}

.faq {
  border: 1px solid #ffc42e;
  margin-bottom: 10px;
  transition: 0.3s ease;
  width: 70%;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 16px;
  padding: 15px;
  color: #333;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq.active .faq-question {
  background-color: #ffc42e;
  color: #fff;
}

.faq-answer {
  display: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 100;
  color: #555;
}

.faq.active .faq-answer {
  display: block;
}

.map-container img {
  width: 100%;
  /* changed */
}
/* ...existing code... */

@media screen and (max-width: 900px) and (max-width: 1440px) {
  .faq-map-section {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .map-container,
  .faq-container {
    min-width: 0;
    width: 100%;
    margin-left: 0;
  }

  .faq-container {
    font-size: 22px;
    margin-left: 0;
  }

  .faq {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .faq-map-section {
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .b {
    padding-bottom: 10px;
  }

  .faq-container {
    font-size: 18px;
  }

  .faq-question,
  .faq-answer {
    font-size: 14px;
    padding: 10px;
  }

  .map-note {
    font-size: 14px;
  }

  .world-map {
    max-width: 100%;
  }
  .click-path1 span {
    font-size: 20px;
  }
}

/* ...existing code... */

.footer {
  background-color: #1d1d1d;
  color: #ccc;
}

.For {
  font-size: 25px;
  font-weight: 100;
}

.footer-top {
  background-color: #ffc107;
  padding: 20px;
}

.footer-left {
  /* margin-left: 40px; */
  font-size: 24px;
  color: rgb(0, 0, 0);
  display: inline;
  margin-top: 10px;
  color: black;
}

.ban1 {
  /* padding: 36px; */
  display: inline;
  padding: 34px 90px;

  text-align: center;
  background-color: black;
  /* clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%); */
  clip-path: polygon(10% 0%, 100% 0%, 75% 205%, 0% 100%);

  text-align: center;
  margin-left: 1%;
}

.click-path1 {
  display: inline;
  font-weight: 100;
  /* font-size: 20px; */
  padding: 65px;

  color: #fcb900;
}

.email {
  display: inline;
  font-weight: 600;
  margin-top: 10px;

  color: #fcb900;
}

.email a {
  margin-left: 30px;
  background: #fcb900;
  border-radius: 30px;
  /* padding: 10px 20px; */
  padding: 1px 10px;
  text-decoration: none;
}

.footer-right {
  margin-left: 1%;
  font-size: 24px;
  color: rgb(0, 0, 0);
  display: inline;
  margin-top: 10px;
}

#black-date::-webkit-calendar-picker-indicator {
  filter: invert(1); /* makes white icon look black */
  cursor: pointer;
}
/* ...existing code... */

@media screen and (max-width: 768px) {
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 5px;
    height: auto;
    gap: 10px;
  }

  .footer-left,
  .footer-right {
    font-size: 18px;
    text-align: center;
    display: block;
    margin: 5px 0;
    margin-left: 0;
  }

  .ban1 {
    clip-path: none;
    /* border-radius: 8px; */
    border-radius: 0px;
    padding: 12px;
    /* width: 95.7%; */
    width: 100%;
    margin: 10px 0;
    display: block;
  }

  .click-path1 {
    font-size: 13px;
    padding: 10px 0;
    display: block;
    text-align: center;
  }

  .email {
    display: block;
    margin: 5px auto 0;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .footer-left,
  .footer-right {
    font-size: 16px;
    padding: 0 2px;
  }

  .ban1 {
    padding: 8px;
    font-size: 14px;
  }

  .click-path1 {
    font-size: 14px;
    padding: 6px 0;
  }

  .email {
    display: block;
    margin-top: 5px;
    font-size: 14px;
  }
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 150px;
  background-color: black;
  color: #ccc;
  font-family: Arial, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-main.animate-in {
  animation: fadeUp 1s ease forwards;
  opacity: 1;
}

.footer-section {
  flex: 1 1 250px;
  margin: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffc107;
  font-size: 20px;
}

.logo img.icon {
  width: 40px;
}

.logo small {
  color: #ccc;
  /* font-size: 12px; */
}

.footer-section p {
  margin: 15px 0;
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}

.highlight {
  color: #fff;
  border-bottom: 3px dashed #ffc107;
  padding-bottom: 3px;
  margin-left: -40px;
}

.link-columns {
  display: flex;
  gap: 150px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  color: #aaa;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section ul li a {
  color: inherit;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #ffc107;
}

.social-icons {
  margin-top: 20px;
}

.social-icons i {
  margin-right: 15px;
  font-size: 18px;
  color: #ccc;
  transition: color 0.3s ease;
  vertical-align: middle;
}

.social-icons i:hover {
  color: #ffc107;
}

.icon-yellow {
  /* color: #ffc107; */
  color: white;
  font-size: 20px;
  /* margin-right: 8px; */
  /* font-size: 16px; */
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background-color: #111;
  color: #aaa;
  font-size: 14px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */

@media (max-width: 1200px) {
  .offer-section,
  .faq-map-section {
    flex-direction: column;
    padding: 30px;
  }
  .map-container,
  .faq-container {
    min-width: 0;
    width: 100%;
    margin-left: 0;
  }
  .services-grid {
    gap: 20px;
  }
}

@media (max-width: 900px) {
  .navbar {
    flex-direction: column;
    padding: 15px 10px;
    align-items: flex-start;
  }
  .nav-group {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
    margin-top: 10px;
  }
  .logo {
    margin-bottom: 10px;
  }
  .banner-container {
    font-size: 32px;
  }
  .textbanner {
    font-size: 36px;
    left: 5%;
    line-height: 40px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 10px;
  }
  .footer-section {
    margin: 10px 0;
  }
  .email a {
    padding: 12px 10px;
  }
  .map-container img {
    width: 100%;
    /* changed */
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-direction: row;
    padding: 10px 5px;
  }
  .nav-group {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    background: #222;
    flex-direction: column;
    gap: 0;
    z-index: 1001;
  }
  .nav-group.active {
    display: flex;
  }
  .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1100;
  }
  .logo {
    font-size: 16px;
    gap: 5px;
  }
  .logo-icon {
    width: 22px;
  }
  .banner-container {
    max-height: 300px;
  }
  .banner {
    height: 150px;
    object-fit: cover;
  }
  .textbanner {
    font-size: 22px;
    left: 5%;
    top: 40%;
    line-height: 28px;
  }
  .offer-section {
    flex-direction: column;
    padding: 15px 5px;
  }
  .offer-left img {
    width: 100%;
    margin: 0 0 20px 0;
    max-width: 300px;
  }
  .offer-right {
    max-width: 100%;
    margin-right: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 20px;
  }
  .service-box {
    padding: 10px;
  }
  .blog-grid {
    flex-direction: column;
    gap: 15px;
  }
  .blog-card {
    width: 100%;
    min-width: 0;
  }
  .faq-map-section {
    flex-direction: column;
    padding: 10px 0;
    gap: 10px;
  }
  .faq-container {
    margin-left: 0;
    min-width: 0;
    font-size: 18px;
  }
  .map-container {
    min-width: 0;
    padding: 0;
  }
  .footer-main {
    flex-direction: column;
    padding: 10px 15px;
  }
  .footer-section {
    margin: 5px 0;
  }
  .footer-top,
  .footer-bottom {
    font-size: 12px;
    /* padding: 10px 5px; */
    padding: 10px 0px;
  }
  .footer-left,
  .footer-right {
    font-size: 16px;
    margin-left: 0;
  }
  .ban,
  .ban1 {
    padding: 10px;
    font-size: 12px;
  }
  .click-path,
  .click-path1 {
    padding: 10px;
    /* font-size: 12px; */
    font-size: 20px;
  }
  .email {
    /* font-size: 12px; */
    font-size: 24px;
  }
  .highlight1,
  .highlight2,
  .none {
    font-size: 40px;
    margin-left: 0;
    margin-top: 0;
    position: static;
  }
  .subtitle,
  .subtitle1,
  .center,
  .center1,
  .apply-btn,
  .submit-btn {
    margin-left: 0;
  }
  .apply-btn,
  .submit-btn {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 14px;
  }
  .row {
    flex-direction: column;
    gap: 10px;
  }
  input,
  select {
    font-size: 14px;
    padding: 8px;
  }
  .email a {
    padding: 5px 10px;
  }
}

/* Hamburger menu JS (for reference, not CSS):
   Add a click event to .hamburger to toggle .nav-group.active on mobile. */
