* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-color: #4CAF50;
  --secondart-color: #8B5E3C;
  --backgroud-color: #F5F5DC;
  --text-color: #333333;
  --accent-color: #5DADE2;
  --footer-backgroud: #2E7D32;
  --nav-background: : #5DADE2;
}

/* common classes */
.container{
  width: 90%;
}
.section-heading{
  font-size: 2.5rem;
  color: var(--primary-color);
  /* display: inline-block; */
  margin: auto;
  margin-bottom: 10px;
  font-family:  "Cormorant", serif;
  font-weight: 700;
}



#navbar {
  display: flex;
  width: 100%;
  height: 90px;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  background-color: white;
  transition: background-color 0.3s;
  z-index: 20;

}

#navbar .logo {
  background-size: cover;
  border: none;
  height: 80px;
  width: 20%;
  overflow: hidden;
}

.logo img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  padding-left: 10px;
}

.nav-links {

  /* width: 70%; */
  text-decoration: none;

  display: flex;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;


}

.nav-links li {
  list-style: none;
  /* margin-right: 20px; */




}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1.2rem;
}
.nav-links li a:hover{
  border-bottom: 2px solid var(--primary-color);
}

.call-button {

  padding: 10px 10px;
  font-family: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  border-radius: 1.5em;
  cursor: pointer;
  border: none;
  background: var(--primary-color);
  color: ghostwhite;
  overflow: hidden;
}


/* hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  border: none;
  background-color: white;
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 20px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: black;
}

.hamburger:hover .bar {
  background-color: green;
}
nav a.active-link {
  color: white; 
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 5px;

}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    /* Hide links by default */
    flex-direction: column;
    background-color: white;
    width: 100%;
    position: absolute;
    top: 90px;
    /* Adjust based on your navbar height */
    left: 0;
  }

  .nav-links.show {
    display: flex;
    /* Show links when toggled */
    padding-bottom: 15px;
  }

  .hamburger {
    display: block;
  }
}

/*header========================================*/
#header {
  width: 100%;
  
  margin-top: 90px;
  aspect-ratio: 5/2;

}

#header img {
  width: 100%;
  height: 100%;
  background-size: cover;
  overflow: hidden;
}

/*content======================================*/
#content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--backgroud-color);
  padding: 50px 0;
  
 
}

/* #content h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
} */

#content p {
  text-align: left;

  font-size: 1rem;
}

.taxi-change {
  width: 100%;
  /* text-align: center; */
  /* padding: 0 20px; */
  /* background-color: var(--backgroud-color); */

}
/* 
.taxi-change h1 {
  display: inline-block;
  margin: auto;
  font-size: 2.5rem;
  
  color: var(--primary-color);

} */

.taxi-change p {
  text-align: left;
  margin-bottom: 20px;
  font-size: 1rem;
}

.ride-with-taxi {
  /* background-color: var(--backgroud-color); */
  /* color: var(--primary-color); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

.heading {
  margin-top: 30px;
  text-align: center;
  margin-bottom: 0px;
  font-size: 25px;
}

.container1 {
  display: flex;
  align-items: center;
  height: fit-content;
  flex-wrap: wrap;
  width: 90%;
}

.container-card {
  width: 100%;

  display: flex;


  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 0 0 calc(33.33% - 14px);

  /* background: linear-gradient(135deg, #A5D6A7, #BC8F72, #AED6F1); */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);

  /* height: 250px; */
  text-align: center;
}

.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.title {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: black;
  font-family: "Gilda Display", serif;
}

.description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: black;
}
@media (max-width:768px) {
  .card{
    flex: 0 0 100%;
  }
  
}
/*taxi-serve========================*/

#taxi-serve {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: var(--backgroud-color);

}

/* #taxi-serve h1 {
  color: var(--primary-color);
  font-size: 2.5rem;


  text-align: center;
} */

#taxi-serve ul {
  padding: 0 10px 0 10px;

}

#taxi-serve li {
  font-size: 1rem;
  margin: 5px;
  justify-content: flex-start;
  color: #333333;

  text-align: start;

}

#taxi-serve li h3 {
  font-size: 18px;

  color: #000;
}

#para {
  background-color: var(--primary-color);
  font-size: 18px;
 
  color: white;
  padding: 50px 10px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;

}

#para h3 {
  text-align: center;
  font-size: 2rem;
  font-family: "Gilda Display", serif;
}

#para a {

  margin-bottom: 20px;
}

#para p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.cal-button {

  padding: 10px 10px;
  font-family: inherit;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.05em;
  border-radius: 1.5em;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #A5D6A7, #BC8F72, #AED6F1);
  color: #fff;
  overflow: hidden;
}

/* footer*/

footer {
  background: linear-gradient(135deg, #d1dbd1, #292a2b);
  display: flex;
  color: #fff;
  /* justify-content: center; */
  flex-direction: column;
  align-items: center;
}

.footer-bottom {
  text-align: center;
  width: 90%;
  padding-bottom: 50px;
}

.footer-container {
  width: 90%;
  display: flex;
  gap: 20px;
  padding: 50px 0;
}


.footer-col {
  flex: 1 1 calc(25% - 20px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-col img {
  /* background-size: cover; */
  /* border: none; */
  height: 100%;
  width: 100%;
  overflow: hidden;
  mix-blend-mode: color-burn;


}



.footer-col a {
  text-decoration: none;
  color: white;
}

.footer-col i {
  /* background-color: #333; Background color of the circle */
  color: white;
  /* Color of the icon */
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
  width: 36px;
  height: 36px;
  text-align: center;
  transition: background-color 0.3s ease;

}
.footer-col .fa-facebook-f{
  background-color:#0861F2;
}
.footer-col .fa-instagram{
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-col div {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.whatsapp-button i {
  color: white;
  vertical-align: middle;
}
.float-icon-container{
  display: flex;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: 50%;
  border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.fb-icon{
  background-color: blue;
  padding: 12px;
  color: white;

}
.ig-icon{
  padding: 12px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}
@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 0 0 100%;
  }

  .footer-img-wrapper {
    display: none;
  }
}


#terms{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}
.terms-wrapper ul li{
  font-size: 1rem;
  margin: 5px;

}
.terms-wrapper ul{
  padding: 0 10px;
}


.container2 {
  width: 100%;
  padding: 0 20px 50px;


  background-color: #fff;

}

.container2 ul {
  list-style: disc;
  margin-left: 2rem;
  padding-left: 0;
  font-size: 18px;
  margin: 10px;
}

.container2 li {
  margin-bottom: 0.5rem;

}

.gallery {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  margin: 10px;
}

.gallery img {
  width: 250px;
  height: auto;
  border-radius: 5px;
}

@media (max-width: 1024px) {
 

  

  .ride-with-taxi {
    width: 100%;
    height: fit-content;
  }

 

  .container-card {
    width: 100%;
    height: fit-content;
    /* padding-left: 10px; */
  }

  .card {
    width: 100%;

  }

  .gallery {
    display: block;


  }

  .gallery img {
    width: 100%;
    display: block;
    margin-top: 10px;
    
  }

  #para {
    height: fit-content;
  }

  
}
/* form-section */

#form-section {
  display: flex;
  justify-content: center;
  background: url(images/alkis-ischnopoulos-W8I4NWZT_lA-unsplash-2.jpg);
  background-size: cover;
  background-repeat: no-repeat;


  background-color: rgba(0, 0, 0, 0.6);
  /* Semi-transparent background */

}

.form-container {
  width: 90%;
  padding: 50px 0;
  display: flex;
  gap: 20px;


}

.form-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 calc(70% - 10px);

}

.form-text-wrapper h2 {
  font-size: 2rem;
  font-family: "Gilda Display", serif;
}

.form-wrapper {
  flex: 0 0 calc(30% - 10px);
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 2px solid #ffffff;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
  color: #777;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  /* color: #ffffff; */
}

.checkbox-wrapper input[type="checkbox"] {
  margin-right: 10px;
  margin-top: 3px;
}

.checkbox-wrapper label {
  font-size: 15px;
  line-height: 1.4;
}

.checkbox-wrapper a {
  /* color: #4bb3fd;  */

  color: blue;
  text-decoration: none;
}

.checkbox-wrapper a:hover {
  text-decoration: underline;
}

.form-button{
  /* width: 100%; */
  padding: 10px 20px;
  background-color: #e30512;
  /* Red background for submit button */
  color: #ffffff;
  border: none;
  /* border-radius: 5px; */
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 1.5em;
}

@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
  }

  .form-text-wrapper {
    flex: none;
  }

  .form-wrapper {
    flex: none;
  }

}
