/* .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f0f0f0;
} */
/* .navbar{
    width: 100%;
    background-color: #333;
    color: white;
    padding: 0.15rem;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
} */
/* .nav-list{
    list-style: none;
    display: flex;
    justify-content: end;
    gap: 5rem;
    margin-right: 3rem;
    color: white;
}*/
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap");

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

html {
    color: #444;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

#login {
    color: inherit;
}

#logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    width: fit-content;
}

#logo > span {
    white-space: nowrap;
}

#logo > svg {
    height: 4rem;
    aspect-ratio: 1;
}
@media (max-width: 500px) {
    #logo > svg {
      height: 3rem;
    }
  }

.container {
    margin: 0 auto;
    width: 83.33%;
    display: flex;
    align-items: center;
}

header {
    height: 100vh;
    position: relative;
    font-family: "Rubik", sans-serif;

    background-image: linear-gradient(#11111199, #11111199),
        url("images/pngtree-summer-vacation-and-online-booking-image_15888178.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
}

#nav {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    padding-top: 2.5rem;
}

.header-container {
    margin: 0 auto;
    max-width: 1280px;
    width: 100%;
    height: 100%;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    align-items: center;
    color: #ffffff;
}
@media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
  }

.header-container-inner {
    transform: translateY(-20%);
    width: 50%;
}
@media (max-width: 1024px) {
    .header-container-inner {
        width: 70%;
        transform: translateY(-10%);
    }
}@media (max-width: 768px) {
    .header-container-inner {
        width: 100%;
        text-align: center;
        transform: translateY(0%);
    }
}
h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2rem;
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        /* line-height: 0.5rem; */
    }
    h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        line-height: 1rem;
    }
}

p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.btn:link,
.btn:visited {
    font-size: 1.4rem;
    font-weight: 600;
    background-color: #06aeb9;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 0.7rem 1.2rem;
    border-radius: 0.8rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 6rem;
}

section {
    padding: 7rem 0;
    background-color: #f7f7f7;
    font-family: "Rubik", sans-serif;
}
.form-container {
    margin-bottom: 5%;
    margin-left: 5%;
    margin-right: 5%;
    font-family: "Rubik", sans-serif;
}

/* Keep your existing styles above this point */

:root {
    --accent: #1d53ab; /* Keep your existing accent color */
}

#form-header {
    margin-top: 5%;
    text-align: center;
}

#form-header h1 {
    color: #333;
    margin-bottom: 1rem;
}

#form-tagline {
    background: var(--accent);
    /* Keep your existing background image */
    background-image: linear-gradient(
            rgba(17, 17, 17, 0.6),
            rgba(17, 17, 17, 0.6)
        ),
        url("https://img.freepik.com/premium-vector/grossglockner-mountain-range-from-grossglockner-high-alpine-road-colorful-sunrise_674398-5555.jpg");
    background-size: cover;
    background-position: center;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    color: #ffffff;
    margin-top: 5%;
    padding: 4%;
    text-align: left;
}

@media (max-width: 768px) {
    #form-tagline {
        border-radius: 0.5rem;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

#form-tagline .fa {
    margin-bottom: 15%;
    font-size: 5rem; /* Ensure icon size is consistent */
    color: #fff;
}

#form-tagline h2 {
    margin-bottom: 10%;
    font-size: 2rem;
}

#form-tagline p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

#form-content {
    background: #f4f4f4;
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    margin-top: 5%;
    padding: 3%;
}

@media (max-width: 768px) {
    #form-content {
        margin-top: 0;
        border-radius: 0.5rem;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }
}

.form-group {
    margin-top: 5%;
}

.control-label {
    font-size: 1.3rem;
    font-weight: 400;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.input-group-text {
    background-color: var(--accent);
    color: white;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    border: 1px solid var(--accent);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.2rem rgba(29, 83, 171, 0.25); /* Match accent color */
}

div .submit-button {
    margin-top: 3%;
    text-align: right;
}

button#submit {
    white-space: normal;
    background: var(--accent);
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    width: auto;
}

button#submit:hover {
    background: #154285; /* Slightly darker on hover */
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    button#submit {
        width: 100%;
        margin-top: 2rem;
    }
}

#group_type {
    height: 100%;
}

/* Update for copyright section */
footer {
    background-color: #f8f9fa;
    color: #444;
    padding: 4rem 0 0; /* No bottom padding */
    font-family: "Rubik", sans-serif;
    border-top: 1px solid #e5e5e5;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem; /* Space before copyright */
}

/* Copyright section - completely separate from grid */
.copyright {
    text-align: center;
    padding: 1.5rem 0;
    background-color: #f2f2f2; /* Slightly darker background to distinguish */
    border-top: 1px solid #e5e5e5;
    width: 100%; /* Full width */
    margin-top: 0; /* No top margin needed */
}

.copyright p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: #777;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    display: inline-block; /* Not block level */
    margin: 0; /* Reset margin */
    padding: 0; /* Reset padding */
}

.footer-links a:hover {
    color: var(--accent);
    transform: none; /* No transform on hover for these links */
}

@media screen and (max-width: 768px) {
    footer {
        padding: 3rem 0 0;
    }

    .footer-container {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .copyright {
        padding: 1.2rem 0;
    }

    .footer-links {
        gap: 1rem;
        padding: 0 1rem;
    }
}

.footer-section {
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #333; /* Darker heading color */
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    color: #555; /* Gray text */
}

.footer-section a {
    display: block;
    color: #555; /* Gray links */
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 0;
}

.footer-section a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-section a i {
    margin-right: 8px;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.2rem;
}

.social-links a {
    background-color: #eaeaea; /* Light gray background */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.social-links a i {
    color: #555; /* Gray icon color */
    font-size: 1rem;
    margin: 0;
}

.social-links a:hover i {
    color: #fff; /* White icon on hover */
}

.copyright {
    text-align: center;
    padding: 1.5rem 0;
    background-color: #f2f2f2; /* Slightly darker background to distinguish */
    border-top: 1px solid #e5e5e5;
    width: 100%; /* Full width */
    margin-top: 0; /* No top margin needed */
}

.copyright p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: #777;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    display: inline-block; /* Not block level */
    margin: 0; /* Reset margin */
    padding: 0; /* Reset padding */
}

.footer-links a:hover {
    color: var(--accent);
    transform: none; /* No transform on hover for these links */
}

@media screen and (max-width: 768px) {
    footer {
        padding: 3rem 0 0;
    }

    .footer-container {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 2rem;
    }

    .copyright {
        padding: 1.2rem 0;
    }

    .footer-links {
        gap: 1rem;
        padding: 0 1rem;
    }
}

.input-group-prepend {
    width: 10%;
}

#how-it-works{
    flex-direction: column;
    text-align: center;
}
#how-it-works-title {
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

@media screen and (max-width: 500px) {
    #logo > span {
        display: none;
    }
    .para{
        font-size: 1.2rem;
        line-height: 1.4rem;
    }
    #header-title{
        font-size: 2.1rem;
        line-height: 2rem;
        margin-bottom: 1rem;
    }
    #action-button{
        font-size: 1.5rem;
        padding: 0.5rem 1.2rem;
    }
    #nav{
        padding-top: 0;
        margin-bottom: 1rem;
    }
}
#toast-message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #06aeb9 60%, #f9666c 100%);
    color: #fffbe7;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(6, 174, 185, 0.18), 0 2px 8px rgba(249, 102, 108, 0.12);
    display: none;
    max-width: 90vw;
    word-break: break-word;
    font-family: "Rubik", sans-serif;
    letter-spacing: 0.5px;
    border: 2px solid #fffbe7;
    text-align: center;
    font-weight: 500;
    opacity: 0.97;
}/* Toggle Button Styling */
#menu-toggle {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
  }
  
  /* Updated Nav Styling */
  .nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  @media screen and (max-width: 768px) {
    #menu-toggle {
      display: block;
      padding: 1rem;
    }
  
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 10px;
      background-color: #111;
      width: 200px;
      border-radius: 8px;
      z-index: 999;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    }
  
    .nav-list li {
      margin: 1rem 0;
      text-align: right;
    }
  
    .nav-list.active {
      display: flex;
    }
  }
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .header-container-inner {
    animation: fadeUp 1s ease-out;
  }
  
  