@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

body {
    background-color: #191D1D;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    padding-top: 100px; 
}













/* === Navbar Base === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 10rem;
  transition: all 0.3s ease;
  background: transparent;
  height: 100px;
}


.navbar.scrolled {
  background: rgba(0, 0, 0, 0.9); /* black with transparency */
  backdrop-filter: blur(5px);     /* adds blur effect */
}

.offcanvas{
    background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);

}

.dropdown-toggle::after {
  display: none !important;
  content: none !important;
}




.navbar .container {
  max-width: 1200px;
  padding: 0 15px;
}

.nav-logo {
  height: 80px;
  object-fit: contain;
  mix-blend-mode: screen;
  background-color: transparent;
  padding-left: 15px;
}

.navbar-brand {
  font-size: 2rem;
  font-weight: bold;
  color: #fff !important;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}
.navbar-brand small {
  font-size: 0.6rem;
  display: block;
  letter-spacing: 2px;
  margin-top: -5px;
}

/* Menu Toggle */
.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  transition: transform 0.3s ease;
  margin-right: 15px;
}
.menu-toggle:hover {
  transform: scale(1.1);
}
.menu-toggle.active {
  transform: rotate(90deg);
}


.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  z-index: 9999;
  transition: right 0.4s ease;
  padding: 100px 30px 50px 30px;
  overflow-y: auto;
}
.offcanvas-menu.active {
  right: 0;
}


.menu-item {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 300;
  /* margin: 10px 0; */
  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}



.dropdown-toggle,
.dropdown-toggle:focus,
.dropdown-toggle:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important; /* optional */
}

.m{
  margin: 10px 0;

}

.ser{
  margin:  0px !important;
}
.menu-item:hover {
  color: #ccc;
}

.dropdown-item {
  position: relative;
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 300;

  transition: color 0.3s ease;
  font-family: 'Poppins', sans-serif;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}
.dropdown-arrow {
  font-size: 1.2rem;
  margin-left: 10px;
  transition: transform 0.3s ease;
}
.dropdown-arrow.active {
  transform: rotate(180deg);
}
.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 10px;
  padding-left: 20px;
}
.dropdown-content.active {
  max-height: 500px;
}
.dropdown-item {
  display: block;
  color: #ccc;
  text-decoration: none;
  font-size: 1.4rem;
  margin: 10px 0;
  transition: color 0.3s ease;
}
.dropdown-item:hover {
  color: #fff;
}

.offcanvas-header .btn-close {
  filter: invert(1) !important;    
  width: 1.5rem !important;        
  height: 1.5rem !important;
  opacity: 1 !important;  
  float: right;         
}

.offcanvas-header .btn-close:focus {
  box-shadow: none !important;     
}




/* === Responsive === */
@media (max-width: 768px) {
  .navbar {
    height: 80px;
  padding: 1rem 1rem;

  }
  .nav-logo {
    height: 60px;
    padding-left: 10px;
  }
  .menu-item {
    font-size: 1.6rem;
  }
  .dropdown-toggle {
    font-size: 1.6rem;
  }
  .dropdown-item {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    height: 70px;
  }
  .nav-logo {
    height: 40px;
    margin-left: 15px;
  }
  .menu-item {
    font-size: 1.4rem;
  }
  .dropdown-item {
    font-size: 1rem;
  }
}










.contact-header {
    text-align: center;
    padding: 40px 0 40px 0;
}

.contact-header h1 {
    font-family: 'Libre Baskerville', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-header h1::after {
    content: "";
    display: block;
    width: 150px;
    height: 3px;  
    background: linear-gradient(90deg, #fff, transparent);
    margin: 10px auto 0 auto; 
}

.contact-section {
    padding: 60px 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper {
    width: 100%;
    max-width: none;
    margin-top: 0px;
}

.contact-info h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #ffffff;
}

.contact-details .phone {
    margin-bottom: 1.5rem;
}

.directions-link {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.directions-link i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.directions-link:hover {
    color: #cccccc;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #cccccc;
}

.form-control {
    background-color: transparent;
    border: 1px solid #999999;
    border-radius: 4px;
    color: #ffffff;
    padding: 12px 15px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.form-control:focus {
    background-color: transparent;
    border-color: #cccccc;
    box-shadow: none;
    color: #ffffff;
}

.form-control::placeholder {
    color: #999999;
    opacity: 1;
}

.form-control:focus::placeholder {
    color: #777777;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    padding: 16px 35px;
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn-submit:hover {
    background-color: #e6e6e6;
    color: #1a1a1a;
    transform: translateY(-1px);
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info {
        margin-bottom: 3rem;
    }
    
    .contact-info h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .contact-section {
        padding: 30px 0;
    }
    
    .social-links {
        justify-content: flex-start;
    }
}

footer {
  padding-top: 40px;
  background-color: #0e0f0f;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: end;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-nav li a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-nav li a:hover {
  color: #fff;
}

.footer-line {
  border-top: 1px solid #444;
  margin: 60px 0;
}

.footer-text {
  font-size: 0.9rem;
  color: #ccc;
  text-align: left;
}

.footer-icons {
  text-align: right;
}

.footer-icons a {
  display: inline-block;
  margin-left: 15px;
  color: #ccc;
  font-size: 1rem;
  border: 1px solid #555;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  transition: all 0.3s;
}

.footer-icons a:hover {
  color: white;
  border-color: white;
}

.footer-copy {
  text-align: left;
  font-size: 0.85rem;
  color: #FFFFFF;
  margin-top: 10px;
  padding-bottom: 20px;
  font-weight: 400;
}

@media (max-width: 576px) {
  .footer-text,
  .footer-icons {
    text-align: center;
  }

  .footer-icons a {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width:769px) {
    .footer-nav{
        justify-content: center;
        gap: 20px;
    }

    .footer-nav li a {
      font-size: 0.80rem;
      transition: color 0.3s;
    }

    @media (max-width: 576px) {
      .footer-copy {
        text-align: center;
      }
    }
}

















