* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
   
}

body,
html {
    height: 100%;
    scroll-behavior: smooth;
    /* background-color: rgba(245, 245, 245, 0.741); */
    /* overflow-x: hidden; */
    
}


/* navigation */
.navbar {
    border-bottom: 1px solid #ddd;
    background-color: #fff;
    padding: 10px 20px;
    transition: all 0.3s;
    /* position: sticky;
    top: 0;
    z-index: 1000; */
}

.navbar-brand {
    font-size: 28px;
    font-weight: bold;
    color: #c79a63 !important;
}

.nav-link {
    color: #000 !important;
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    transition: color 0.3s;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #c79a63;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    visibility: visible;
    width: 100%;
}

.nav-link:hover {
    color: #c79a63 !important;
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.nav-icon-link {
    text-decoration: none;
    color: #000;
    font-size: 20px;
    margin-left: 20px;
    transition: color 0.3s, transform 0.3s;
}

.nav-icon-link:hover {
    color: #c79a63;
}

.nav-icons {
    display: flex;
    align-items: center;
    margin-left: auto;
}





/* banner */
.video-banner {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust the height as needed */
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 80%;
    overflow: hidden;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(110, 110, 110, 0.71); 
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 950px; 
   
    height: auto;
}

/* Media Queries */
@media (max-width: 768px) {
    .logo {
        max-width: 1000px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 80px;
    }
}




/* contact */
.contactcon {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: -10%;
    
}
.contact-title {
    text-align: center;
    
    margin-bottom: 20px;
    color: #c79a63;
    font-size: 50px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

}
.contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.contact-form, .contact-details {
    flex: 1;
    min-width: 300px;
    
}
.contact-form {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
}
.contact-form h2 {
    margin-bottom: 10px;
    color: #c79a63;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #c79a63;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.contact-details {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.contact-details h2 {
    margin-bottom: 10px;
    color: #c79a63;
}
.contact-details p {
    margin: 10px 0;
    color: #2d2010;
}
.contact-details .social-icons a {
    margin-right: 10px;
    text-decoration: none;
    color: #c79a63;
}
@media (max-width: 768px) {
    .contact-row {
        flex-direction: column;
    }
}






/* footer */
.footer {
    background-color: #f3f3f3;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .footer .column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
  }
  .footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
  }
  .footer ul {
    list-style: none;
    padding: 0;
  }
  .footer ul li {
    margin-bottom: 10px;
  }
  .footer ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
  }
  .footer .social {
    display: flex;
    align-items: center;
  }
  .footer .social a {
    margin-right: 10px;
    font-size: 22px;
    color: #000;
  }
  .footer .contact-info {
    font-size: 12px;
  }
  .footer .contact-info a {
    text-decoration: none;
    color: #000;
  }
  .footer .contact-info .timing {
    margin-top: 10px;
  }
  .footer .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #999;
    width: 100%;
  }