/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
    line-height: 1.6;
    background-image: url(assets/bg.png); /* Add your background image URL here */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Ensures the background stays fixed while scrolling */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(49, 49, 49, 0.8); /* Semi-transparent white overlay */
    z-index: -1; /* Places the overlay behind the content */
}


/* Navbar Styles */
.navbar {
    background-color: #484949;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.logo {
    height: 40px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu li {
    display: flex;
    align-items: center;
}

.nav-link, .dropdown-button {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover, .dropdown-button:hover {
    color: #000000;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: none;
    width: 150px;
    z-index: 1000;
}

.dropdown-menu .dropdown-item {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    transition: background 0.3s;
    text-align: left;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #ffffff;
    color: rgb(107, 107, 107);
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.active {
    display: block;
}

/* Mobile Menu */
.menu-button {
    display: none;
    background: none;
    border: none;
    color: rgb(253, 253, 253);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #1f1f1f;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 15px;
}

.mobile-menu.active {
    display: flex;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu {
        display: none;
    }
    .menu-button {
        display: block;
    }
}
/*
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

/* About Us Section */
.about-us {
    padding: 60px 20px;
    text-align: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-us h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 40px;
}

.about-us p {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.7;
    max-width: 1200px;
}

/* Cards Section */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
    padding: 50px;
    justify-content: center;
    max-width: 1500px;
    margin: 0 auto;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: #3b3b3b;
    text-align: center;
    width: 100%;
    max-width: 500px;
    margin: auto;
    box-shadow: #1f1f1f 0px 0px 20px;
    transition: transform 0.3s ease-in-out;
}

.card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.card h3 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-size: 1.5rem;
    background: rgba(47, 47, 47, 0.6);
    padding: 10px;
    border-radius: 5px;
}

.card:hover {
    transform: scale(1.02);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .menu {
        display: none;
    }
    .menu-button {
        display: block;
    }
    .landing h1 {
        font-size: 2rem;
    }
    .landing p {
        font-size: 1rem;
    }
    .cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

/* Additional Info Section */
.additional-info {
    text-align: center;
    padding: 50px 20px;
}

.additional-info h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.additional-info p {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 1200px;
    margin: auto;
    line-height: 30px;
}

@media (max-width: 768px) {
  .about-us {
    padding: 40px 15px;
  }

  .about-us h2 {
    font-size: 2rem;
    margin-bottom: 25px;
  }

  .about-us p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 10px;
  }

  .cards {
    padding: 20px 15px;
    gap: 20px;
  }

  .card {
    max-width: 100%;
    margin: 0 auto;
  }

  .card h3 {
    font-size: 1.2rem;
    padding: 8px;
    bottom: 8px;
    left: 8px;
  }

  .additional-info {
    padding: 30px 15px;
  }

  .additional-info h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .additional-info p {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
  }

  
  .footer {
    padding: 15px !important;
    font-size: 0.1rem !important;
    line-height: 1.1 rem !important;
}
  .footer a {
    font-size: 20px !important;
    margin: 0 8px !important;
  }
}
