
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit: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&family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body{
 
    background-repeat: no-repeat;
    background-size: cover;
   
  }
  

  header {
    font-family: "Oswald", sans-serif;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    height: 10vh;
  }
  #menu-toggle-btn{
display: none;
  }

.nav-logo{
    display: flex;
    margin-left: 2%;
}
  
  .logo-nav {
    margin: 5%;
    height: 65px;
  }
  
  .navbar {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin-left: auto;
  }
  
  .navbar li {
    position: relative;
  }
  
  .navbar a {
    color: #444141;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
    transition: 0.7s linear;
  }
  
  .navbar a:hover {
    text-decoration: underline;

  }
  
  .dropdown {
    position: relative;
  }
  
  .dropbtn {
    background-color: transparent;
    color: black;
    padding: 14px 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
  
  .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;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropbtn i {
    margin-left: 8px;
    font-size: 12px;
    vertical-align: middle;
  }

  .form{

    height: 100%;
  }

  .title{
    font-family: "oswald", sans-serif;
    text-align: center;
    font-weight: 600;
    color: rgb(255, 255, 255);
    -webkit-text-stroke: 2px black;
    font-size: 65px;
  }

  #bg{
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info {
    width: 40%;
}

.contact-info h2 {
    font-family: "Oswald", sans-serif; /* Title font */
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-family: "Roboto", sans-serif; /* Paragraph font */
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Info Item */
.info-item {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    color: #fff;
}

.info-item img {
    width: 24px;
    margin-right: 15px;
}

.info-item p {
    font-family: "Roboto", sans-serif; /* Paragraph font */
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    width: 50%;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    color: #333;
}

.form-section h3 {
    font-family: "Oswald", sans-serif; /* Title font for form section */
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.form-section input, .form-section textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: "Roboto", sans-serif; /* Input text font */
}

.form-section button {
    width: 100%;
    padding: 15px;
    background-color: #00BFFF;
    border: none;
    color: #fff;
    font-family: "Roboto", sans-serif; /* Button text font */
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
}

.form-section button:hover {
    background-color: #0088CC;
}

a {
    color: #00BFFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


footer{
    background-color: #000000;
    /* opacity: 0.5; */
    color: white;
    height: 20vh;
  display: flex;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1);
  
    align-items: center;
    margin-top: 10%;
    bottom: 0;
  }
  .loo{
  
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .ll2{
    margin: 1%;
    height: 100px;
  }
  
  .footer-info{
    width: 120%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  
  .footer-title{
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 22px;
  }
  
  .footer-details{
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: italic;
  }
  
  .copyright{
    font-size: 16px;
    font-weight: 300;
    /* letter-spacing: 5px; */
    margin-top: 2%;
  }

  @media screen and (max-width: 768px) {
    /* Header */
    header {
        padding: 10px;
        height: 8vh;
    }

    /* Menu Button */
    #menu-toggle-btn {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background: white;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding-top: 60px;
        transition: right 0.5s ease-in-out;
    }

    .navbar ul {
        list-style: none;
        width: 100%;
        padding: 0;
        text-align: right;
    }

    .navbar ul li {
        padding: 15px 20px;
        font-size: 18px;
    }

    .navbar ul li a {
        color: black;
        text-decoration: none;
        display: block;
        transition: color 0.3s ease;
    }

    .navbar ul li a:hover {
        color: #007bff;
    }

    /* Form Section (Contact) */
    .contact-container {
        flex-direction: column-reverse;
        padding: 20px;
    }

    .contact-info,
    .form-section {
        width: 100%;
    }

    /* Footer */
    footer {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 20px;
    }

    .footer-info {
        width: 100%;
    }
}
