/* Reset default styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior:smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: #eee;
    overflow-x: hidden;
    margin: 0;
}

.header-container{
  position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background-color: rgba(21, 24, 23, 0.5);
    opacity: 1;
    border-bottom: 1px solid #333;
}

header {
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
  align-items: center;  
    }

.logo {
display: flex;
justify-content: center;
align-items: center;
}

.logo h2{
    margin-left: 15px !important;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li:hover {
    border-bottom: 1px solid #333;
    border-top: 1px solid #333;
}

nav ul li.active {
    border-bottom: 1px solid #333;
    border-top: 1px solid #333;
    color: #e00000;
}


nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e00000;}


.hamburger {
    display: none; /* Hide by default on larger screens */
    flex-direction: column;
    cursor: pointer;
   margin-left: auto; /* Push the hamburger to the very right */
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    border-radius: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    header {
        padding: 20px;
      display: flex;
      flex-direction: row;

    }

    .hamburger {
        display: flex; /* Display on smaller screens */
    }
  
  nav{
    align-items: center;
  }

    nav ul {
        display: none;
        flex-direction: column;
        text-align: center;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: rgba(21, 24, 23, 1);
      height: 100vh;
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    nav ul.active {
        display: flex;
        opacity: 1;
        pointer-events: auto;
    }

    nav ul li {
        margin: 15px 0;
    }

    .contactme{
        display: block;
    
    }
}









section {
    padding: 60px 20px;
    text-align: center;
    
}


.contact{
    background-color: #ccc;
    color: #333;
}

.contactme{
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    justify-content: center;
    align-items: center;

}

.contactme .row50{
    width: 45%;
    display: flex;
    flex-direction: column;
}




#home {
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;  
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: 60px;
    animation: fadeIn 2s ease-in-out;
    background: url('https://images.unsplash.com/photo-1639026540100-045bb7632b0b?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center 0/cover;
  background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

#home:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
  background-color: rgba(0, 0, 0, 0.7); /* Adjust opacity as needed */

    z-index: 1; /* Ensure the overlay is above the background image */
    pointer-events: none; /* Allows clicks to go through the overlay */
    opacity: 1; /* Adjust opacity as needed */
}

#home .hero-text {
    max-width: 600px;
    text-align: center;
    position: relative; /* Ensure text is above the overlay */
    z-index: 2; /* Ensure text is above the overlay */
}

#home h1 {
    font-size: 3em;
    margin: 0;
}

#home p {
    font-size: 1.5em;
    margin: 20px 0;
}

button {
    background-color: #e00000;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #d43a63;
}








 .pricing-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}






.pricing-plan {
    background-color: #222;
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    flex: 1;
    max-width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.pricing-plan i {
    font-size: 2em;
    margin-bottom: 10px;
    color: #e00000;
}





form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    margin: 10px 0 5px;
}

form input, form textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #333;
    color: white;
}

form button {
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #d43a63;
}

footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 20px 0;
}




















#services {
    text-align: center;
    padding: 50px 20px;
    background-color: #0d0d0d;
}

#services h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #eee;
}

#services p {

    color: #eee;
    max-width: 600px;
    margin: 0 auto 10px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service {
    background: linear-gradient(45deg, #181818, #412929); /* Dark grey to dark red gradient */
    border: 1px solid #aaaaaa; /* Light grey border */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 300px;
    margin: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service h3 {
    font-size: 1.5em;
    margin: 15px 0;
    color: #ddd;
}

.service p {
    font-size: 0.8em;
    color: #666;
    padding: 0 10px 5px;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}




#gallery {
    width: 100%;
    padding: 20px 0;
    position: relative;
}

#gallery h2{
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #eee;
}
.gallery-container {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin; /* Thin scrollbar */
    -webkit-overflow-scrolling: touch;
    width: 100%;
    
}
.gallery-container::-webkit-scrollbar {
    height: 5px; /* Thin scrollbar height */
}
.gallery-container::-webkit-scrollbar-track {
    background: transparent; /* Transparent track */
}
.gallery-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3); /* Scrollbar color */
    border-radius: 10px; /* Rounded corners */
}
.gallery-item {
    flex: 0 0 auto;
    margin-right: 10px; /* Adjust spacing between items */
    width: 300px; /* Adjust card width */
}
.card {
    background: #111;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card img {
    width: 100%;
    height: 220px; /* Adjust image height */
    object-fit: cover;
}
.card-content {
    padding: 15px;
    flex: 1;
}
.card h3 {
    margin: 0 0 5px;
    color: #999;
    display: none;
}
.card p {
    margin: 0;
    color: #555;
    display: none;
}











.livestream {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
}
.video-container .fb-video,
.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}