@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
    max-width: 100vw;
}

.header {
    background-color: #ffffff;
    padding: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);

}

/* Style the nav and its list */
nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

nav ul li {
    position: relative;
    margin-right: 40px;
}

nav ul li a {
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 1.1rem;
    color: #000;
    padding: 0.4rem 0;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
    /* Smooth text color transition */
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    background: #ffbf00;
    /* Underline color */
    left: 0;
    bottom: -4px;
    transition: width 0.3s ease;
    /* Smooth underline transition */
}

nav ul li a:hover::after {
    width: 100%;
    /* Full underline on hover */
}

nav ul li a.active::after {
    width: 100%;
    /* Keep underline for the active page */
}

nav ul li a.active {
    color: #000;
    /* Active text color */
    font-weight: bold;
    /* Optional: make active item bold */
}

nav ul li a:hover {
    color: #000;
    /* Change text color on hover */
}


.image-fit {
  width: 100vw;
  max-width: 100%;
  height: auto;
  overflow: hidden;
}

.image-fit img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; 
}

.empty-card {
    width: 100%;
    height: 70px;
    /* Adjust as needed to fit the container height */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(37, 37, 37);
}

.empty-card p {

    font-size: 30px;
    /* Adjust font size as needed */
    text-align: center;
}

.empty-card h2 {
  font-size: 2.5rem;
  color: #ffffff;
  text-align: center; 
  margin: 0 auto;      
}

/* 👇 Medium screens */
@media (max-width: 768px) {
  .empty-card h2 {
    font-size: 2rem;
  }
}

/* 👇 Smaller screens */
@media (max-width: 480px) {
  .empty-card h2 {
    font-size: 1.7rem;
  }
}

.empty-card h2 span {
    color: #f4b400;
}

.main-content {
    background-color: #f4b400;
    /* height: 747px; */
    height: 830px;
}

/* .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background-color: #e0e0e0;
    border-radius: 50px;
    width: 94vw;
    margin: 0 auto;
    position: relative;
}
@media (max-width: 480px) {
  .container {
    width: 94vw;
  }
}



input[type="text"] {
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    border: 2px solid #ccc;
    margin: 1%;
}

.custom-select {
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    border: 1px solid #ccc;
 
}




.startpoint, .endpoint {
    flex: 1;
    padding: 5px;
}

 .endpoint 
    input[type="text"] {
        width: 97%;
        border: 2px solid #ccc;
     
    }
.startpoint input {
    width: 97%;
}    



.dropdown {
    display: inline-block;
}
svg {
    position: absolute;
    left: 3%;
    bottom: 25%;
}
.svg2 svg {
    position: absolute;
    left: 57%;
    bottom: 24%;
}



.point + .startpoint,
.point + .endpoint {
    margin-left: 4%;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #e9f5ff;
}

.arrow {
    width: 50px;
    height: 20px;
    position: relative;
}


.arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: -2px;
    height: 2px;
    background-color: #999;
}

.arrow::before {
    content: '→';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
} */

.container {
  display: flex;
  align-items: center;
  /* gap: 0px;  */
  background-color: #e0e0e0;
  border-radius: 50px;
  width: 90vw;
  margin: 0 auto;
  position: relative;
  flex-wrap: nowrap; 
  padding: 10px;
}




.point.dropdown {
  position: relative;
  flex-shrink: 0; 
}


.svg2 {
  position: relative; 
  bottom: -2px;
  /* left:10px */
}

.svg1 {
  position: relative; 
  bottom: -2px;
  /* left: 10px; */
}

.startpoint,
.endpoint {
  flex: 1; 
  min-width: 10px; 
}

.startpoint input,
.endpoint input {
  width: 94%;
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #ccc;
  font-size: 1rem;
  box-sizing: border-box;
}


.arrow {
  width: 50px;
  height: 20px;
  position: relative;
  flex-shrink: 0; 
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 
.arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: -2px;
  height: 2px;
  background-color: #999;
  transform: translateY(-50%);
} */

/* .arrow::before {
  content: '→';
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-weight: bold;
  font-size: 30px;
} */

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
}

.dropdown:hover .dropdown-content {
  display: block;
}






/* main-content */
.content {
    width: 40vw;
    border: 1px solid red;
    margin: 0 auto;
}

/* Container styles */
.form-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 84%;
    margin: 20px auto;
}

/* Individual section styles */
.form-section {
    display: flex;
    flex-direction: column;
    width: 45%;
}

/* Names container styles */
.names {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/* Alignment for input fields */
.left-align {
    text-align: left;
}

.left-align h4 {
    margin: 0;
    padding-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 500;
}

.left-align input,
.left-align input[type="text"],
.left-align input[type="email"],
.left-align textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.custom-select {
    padding: 8px;
    border-radius: 5px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

textarea {
    resize: none;
}


.button-style {
    display: flex;
    justify-content: center;  
    gap: 20px;                
    margin-top: 20px;
}

/* Button styles */
.btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #000;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.cancel {
    background-color: #fff;
    color: #000;
    font-weight: 600;
}

.btn.submit {
    background-color: #001B43;
    color: #fff;
    font-weight: 600;
}




/* footer */
.footer {
    background-color: #002244;
    color: #ffffff;
    padding: 20px 0;
    display: flex;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.footer-section {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-color: rgb(255, 208, 0);
    text-decoration-thickness: 2px;
    margin-top: 10px;
}

.footer-section p {
    font-size: 10px;
    line-height: 1.5;
}

.footer-section a {
    color: #ffd700;
    /* Gold color */
    text-decoration: none;
    font-size: 14px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-icon {
    width: 50px;
    margin-bottom: -15px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-line {
    width: 1px;
    height: 100%;
    background-color: #ffffff;
    /* White line */
    margin: 0 15px;
}
