/*--------------------------------------------------------------
# Logo And Navbar
--------------------------------------------------------------*/
#header {
    transition: top 0.3s ease-in-out;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }
  
/* Remove default margin/padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Remove background from header */

header.header {
    background-color: #c5c3c0cf !important;
    box-shadow: none !important;
    border-bottom: none !important;
  }
  
  /* Prevent scroll or default borders around image or containers */
  body,
  html {
    margin: 0;
    padding: 0;
    background-color: transparent !important;
    overflow-x: hidden;
  }
  
  /* Remove image outline */
  .logo img {
    outline: none !important;
    border: none !important;
    display: block;
  }
  /* Remove white background behind hamburger icon */
.mobile-nav-toggle {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }
  
  /* Optional: Adjust position if needed */
  .mobile-nav-toggle.bi-list {
    padding: 0;
    margin: 0;
    font-size: 2rem;
  }
  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(8, 8, 8, 0.945);
    width: 100%;
    z-index: 999;
    padding: 1rem;
  }
  
  .mobile-nav ul li a {
    display: block;
    padding: 0.75rem 0;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none;
  }
/* Reduce height of hero section */
#hero {
    height: 50vh; /* Try 60vh or 50vh if you want smaller */
    position: relative;
    overflow: hidden;
  }
  
  #hero .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
  
/*--------------------------------------------------------------
# Service Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* Contact Us Hero Banner */


.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
