/* Global Styles */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Ubuntu, sans-serif;
    background-color: #f5f0e9;
    scroll-behavior: smooth;
}

a {
    color: #005578;
    text-decoration: none;
}

.custom-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 20px;
    background: linear-gradient(45deg, #005578, black);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.navbar-logo img {
    height: 25px;
    cursor: pointer;
    opacity: 1;
}

.navbar-envelope img {
    height: 15px;
    cursor: pointer;
    opacity: 1;
}

/* Ensure navbar stays styled properly */
.navbar {
    padding-left: 0;
    padding-right: 0;
}

/* Hide navbar logo by default */
.navbar-logo img {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Hide navbar logo by default */
.navbar-envelope img {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Show navbar logo when scrolling */
.custom-navbar.scrolled .navbar-logo img {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

/* Show navbar logo when scrolling */
.custom-navbar.scrolled .navbar-envelope img {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

/* Sections */

#team-section {
    height: auto;
    padding: 0px;
    text-align: center;
    background-color: #00000;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-margin-top: 80px; 

}
.bio-section {
  padding: 2rem;
}

.heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.container {
  max-width: 800px !important;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  box-sizing: border-box;
}


.bio-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
}

.bio-photo {
  width: 260px;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
}

.bio-text {
  flex: 1;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
}

/* Sections */
#services-section {
    height: auto;
    padding: 0px;
    text-align: center;
    background-color: #00000;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    scroll-margin-top: 80px; 
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bgvid {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.video-title {
    font-family: Verdana, Geneva, sans-serif;
    position: relative;
    text-align: center;
    font-size: 12px;
}

/* Buttons */
.button-container {
    display: flex;
    justify-content: center;
    margin: 0px 0;
    gap: 10px;
    padding: 0px 10px 10px;
    letter-spacing: 2px;
    font-size: 12.5px;
}
    
.gradient-button {
    display: inline-block;
    text-decoration: none;
    background-color: #00000;
    color: black;
    padding: 10px 10px;
    border: 2px solid transparent;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border-color: #00aeef;
    text-align: center;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.gradient-button:hover {
    background-color: white;
    color: black;
    text-decoration: none;

}

/* Boxes */
.gradient-box {
    border: 2px solid transparent;
    border-radius: 0px;
    border-color: #00aeef;
    width: 800px;
    max-width: 90%;
    text-align: center;
    margin: 100px;
    background-color: #00000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.gradient-box2 {
    border: 2px solid transparent;
    border-radius: 0px;
    border-color: #00aeef;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    max-width: 90%;
    width: 800px;
}

/* Typography */
.heading {
    text-align: center;
    font-size: 2em;
    margin-bottom: 50px;
    letter-spacing: 10px;
    padding: 20px 40px 40px;

}

.title {
    font-size: 2em;
    margin: 10px 0;
    letter-spacing: 10px;
    color: black;
}

.text {
    font-size: 1em;
    color: #333;
    padding: 20px 40px 40px;
    margin: 10px 0;
}

.title-3 {
    font-size: 1.5em;
    margin: 10px 0;
    padding: 0px 40px 40px;
    color: black;
}

.text-3 {
    font-size: 1em;
    color: #333;
    padding: 10px 40px 40px;
    margin: 10px 0;
}

/* Captions */
.caption {
    position: absolute;
    top: 45%;
    width: 100%;

}

.caption2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    color: black;
}

.caption3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    color: black;
}

.stylename {
        font-size: 1rem;
        padding: 1rem;
        max-width: 500px;
        list-style-type: none; 

}

.quote {
        font-size: 1rem;
        padding: 1rem;
        max-width: 500px;
        list-style-type: none;
        color: white;

}

.owner-name {
        font-size: 1rem;
        padding: 1rem;
        max-width: 500px;

}

/* Gaps */
.gap {
    height: 500px;
}

.gap-1 {
    height: 100px;
}

.gap-2 {
    height: 50px;
}

.gap-3 {
    height: 200px;
}

/* Dropdowns */
.dropdown-wrapper {
    min-height: auto;
}

.center-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  padding: 10px 20px;
  box-sizing: border-box;
  flex-direction: column;
}

/* Flex container for dropdown alignment */
.dropdown-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
}

/* Dropdown container styles */
.dropdown {
  width: 100%;
  max-width: 60%;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
}

/* Header styles */
.dropdown-header {
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dropdown-header:hover {
  background-color: white;
}

/* Image in header */
.dropdown-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* Heading styles */
.dropdown-header strong {
  font-size: 20px;
  color: #000;
  display: block;
  letter-spacing: 5px;
  font-weight: normal;
}

/* Dropdown content styles */
.dropdown-content {
  display: none;
  padding: 20px;
  border-top: 1px solid #ddd;
  color: #333;
}

/* Content image styles */
.dropdown-content img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Paragraph inside dropdown content */
.dropdown-content p {
  margin: 0;
  color: #333;
}

/* Dropdown visibility toggle */
.dropdown-content {
  display: none;
}

.dropdown-content.show {
  display: block;
}


/* Images */
.logo-img {
    width: 80%;
    max-width: 800px;
    height: auto;
    filter: invert(10%);
    mix-blend-mode: difference;
    -webkit-filter: invert(10%); 
    -webkit-mix-blend-mode: difference; 
}


/* Carousel */
.carousel {
    padding-bottom: 5rem;
    background-color: black;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    padding: 20px;
    width: 50%;
    max-width: 600px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 2px solid #00aeef;
    background-color: #ffffff;
}

.modal-content textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 8px;
}

.modal-content label {
    display: block;
    margin-top: 10px;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}

.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}


#successMessage {
    display: none;
    color: #00aeef;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    font-family: Ubuntu, sans-serif; /* Matches your global font */
    font-size: 1.2em; /* Adjust as needed */
}

/* Footer */
.carousel-inner img {
    width: 100%;
}

.footer {
    position: absolute;
    bottom: 1;
    width: 100%;
    letter-spacing: 2px;
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-nav li {
    display: inline;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.footer-nav a:hover {
    text-decoration: none;
    color: #00aeef;
}

.footer-copyright {
    margin-top: 100px;
    margin-bottom: 50px;
    font-size: 14px;
    color: #aaa;
}

.footer-nav li a {
    cursor: pointer; /* Ensures it looks like a clickable link */
    color: white; /* Default color */
    transition: color 0.3s ease;
}

.footer-nav li a:hover {
    color: #00aeef; /* Change to blue on hover */
}


/* Images */
.responsive-image {
    width: 100%; 
    max-width: 320px; 
    height: auto; 
    display: block;
    margin: 0 auto 20px;
}

/* Contacts */
.contact-info {
    color: #00aeef;
    text-decoration: black;
    font-size: 20px;
    font-family: Verdana, Geneva, sans-serif;


}



/* Responsive Breakpoints */
/* Extra small (xs) devices */
@media (max-width: 575.98px) {

.gap {
    height: 400px;
}

.gap-2 {
    height: 100px;
}

.dropdown-wrapper {
    min-height: auto;
}

.center-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: auto;
  padding: 10px 10px;
  box-sizing: border-box;
  flex-direction: column;
}

.dropdown {
  width: 100%;
  max-width: 80%;
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
}

  .bio-content {
    flex-direction: column;
    align-items: center;
}

  .bio-text {
    width: 80%;
    text-align: center;
}

  .bio-photo {
  width: 360px;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
  max-width: 90%;

}


@media (max-width: 768px) {
  .bio-content {
    flex-direction: column;
    align-items: center;
}

  .bio-text {
    width: 80%;
    text-align: center;
}

  .bio-photo {
  width: 360px;
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
  max-width: 90%;


}


/* Small (sm) devices */
@media (min-width: 576px) {


/* Medium (md) devices */
@media (min-width: 768px) {}

/* Large (lg) devices */
@media (min-width: 992px) {}

/* Extra large (xl) devices */
@media (min-width: 1200px) {}
=============*/