/* style.css */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background-color: #f7f7f7;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, p {
    margin-bottom: 1rem;
}

h1, h2 {
    color: #333;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h3 {
    font-weight: 600;
    font-size: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
}

strong {
    font-weight: 700;
}



/* Button Enhancements */
.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff9800;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.cta-btn:hover {
    transform: scale(1.05);
    background-color: #e68900;
}

/* Testimonials Section Fix */
.testimonials-section {
    padding: 2rem 1rem;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.testimonials-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonial-item {
    max-width: 600px; /* Adjust width for narrower look */
    margin: 1.5rem auto; /* Centers the item horizontally */
    padding: 1.5rem;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item p {
    font-style: italic;
    color: #555;
}

.testimonial-item h3 {
    font-weight: bold;
    color: #333;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustment for Smaller Screens */
@media (max-width: 768px) {
    .testimonial-item {
        max-width: 90%; /* Use more width on smaller screens */
        padding: 1rem;
    }
}


/* FAQ Section Fix */
.faq-section {
    padding: 2rem 1rem;
    margin-top: 1rem;
    background-color: #f9f9f9;
}

.faq-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq-items {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-item h3 {
    font-weight: bold;
    color: #333;
}

.faq-item p {
    color: #555;
}

/* Responsive Fix */
@media (max-width: 768px) {

    .navbar .logo a {
        font-size: 1.5rem;
    }

    .testimonial-item {
        margin: 1rem auto;
    }
}
/* Team Section Fix */
.team-section {
    padding: 2rem 1rem;
    background-color: #f9f9f9;
    text-align: center;
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(33% - 2rem);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    text-align: center;
    max-width: 300px;
}

.team-member img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Blog Section Fix */
.blog-section {
    padding: 2rem 1rem;
    background-color: #fafafa;
    text-align: center;
}

.blog-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.blog-posts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.blog-post {
    flex: 1 1 calc(33% - 2rem);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    max-width: 300px;
    text-align: center;
}

.blog-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.blog-post h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.blog-post p {
    font-size: 0.95rem;
    color: #555;
}
/* Contact Section Fix */
.contact-section {
    padding: 2rem 1rem;
    text-align: center;
    background-color: white;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-section p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #555;
}

.contact-section form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-section input,
.contact-section textarea {
    flex: 1 1 calc(50% - 1rem);
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-section textarea {
    flex: 1 1 100%;
    resize: vertical;
    min-height: 120px;
}

.contact-section button {
    flex: 1 1 100%;
    padding: 0.75rem;
    background-color: #ff9800;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.contact-section button:hover {
    background-color: #e68900;
}

/* Hero Section with Booking Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

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

.video-container video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.video-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    height: 100%;
    padding: 2rem;
}

.video-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.video-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Booking Section Overlay */
.booking-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
}

.booking-section h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #333;
    text-align: center;
}

.booking-section form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-section input,
.booking-section textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    width: 100%;
}

.booking-section textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-section button {
    padding: 0.75rem;
    background-color: #ff9800;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-section button:hover {
    background-color: #e68900;
}


/* Updated Our Services Section */
.services-section {
    background-color: transparent; /* Removes the gray overlay */
    padding: 2rem;
    text-align: center;
}

.services-section .services-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
}

.service-item {
    background-color: #f9f9f9; /* Light background for the tiles */
    border: 1px solid #ddd;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 200px; /* Uniform width for all tiles */
}

.service-item:hover {
    transform: translateY(-5px); /* Adds a lift effect on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 700;
}

/* Capture Every Moment Section */
.image-section {
    position: relative;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #f7f7f7, #ffffff);
    text-align: center;
}

.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



.text-content h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.text-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff9800;
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #e68900;
    transform: scale(1.05);
}

/* Find Us Section with Google Map */
.location-section {
    padding: 2rem 1rem;
    text-align: center;
    background-color: #f9f9f9;
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

#map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    max-width: 1200px;
}




.map-link:hover {
    background-color: #e68900;
}


.navbar .logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9800;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar .logo a:hover {
    color: #fff;
}

.nav-links a:hover {
    color: #ff9800;
}


/* Modern Hover Underline Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    /*background-color: #ff9800;*/
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
     .nav-links a {
        font-size: 1.2rem; /* Slightly larger font for better touch */
    }

    .nav-links


}
.nav-links a:hover {
    color: #008cff;
}

.right-buttons {
    /*background-color: #008cff;*/
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 1.5rem;
        color: #fff;
    }

    .navbar .logo a {
        font-size: 1.5rem;
    }
}

/* Responsive Design for Sections */
@media (max-width: 768px) {
    .services-grid, .team-grid, .blog-posts, .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-item, .team-member, .blog-post {
        margin: 1rem auto;
        max-width: 90%;
    }

    .image-content {
        flex-direction: column;
        text-align: center;
    }

    .booking-section, .location-section #map {
        max-width: 100%;
        padding: 1rem;
    }

    h1, h2 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .navbar {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

    .video-overlay h1 {
        font-size: 1.5rem;
    }

    .video-overlay p, .cta-btn {
        font-size: 0.9rem;
    }
}
/* Services Section with Video Background */
.services-section {
    position: relative;
    height: 100vh; /* Full screen height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: white;
    padding: 2rem 1rem;
}

.services-section .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.services-section video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.services-section .overlay {
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    padding: 2rem;
    border-radius: 10px;
    max-width: 1200px;
    width: 100%;
}

.services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background-color: rgba(255, 255, 255, 0.9); /* Light background for readability */
    color: #333;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.service-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ff9800;
}

.service-item p {
    font-size: 1rem;
    font-weight: 600;
}
.services-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.video-container video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.navbar .logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff9800;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar .logo a:hover {
    color: #fff;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
}
.nav-links a:hover {
    color: #ff9800;
}


.btn-store:hover {
    background-color: #006bbf;
}

/* Hamburger Menu and Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links li {
        margin: 0.5rem 0;
    }
}
@media (max-width: 768px) {
    /* Adjust content to appear lower */
    .video-overlay, 

    /* Optional: Adjust the spacing for specific headings or sections */
    .video-overlay h1,
    .video-overlay p,
    .cta-btn {
        margin-top: 1.5rem; /* Fine-tuning individual elements */
    }

    /* Ensure other sections have spacing consistency */
    .services-section,
    .booking-section {
        padding-top: 2rem; /* Adds spacing above these sections */
    }
}


.navbar .logo a {
    font-size: 1.5rem; /* Smaller logo */
}

/* Hamburger Menu - Mobile View */
.menu-toggle {
    font-size: 1.2rem; /* Reduce hamburger menu size */
    padding: 0.5rem;
    background-color: rgba(0, 0, 0, 0.7); /* Add slight opacity */
    border-radius: 5px;
}

/* Mobile Nav Links with Opacity */
@media (max-width: 768px) {
    .nav-links {
        /*background-color: rgba(26, 26, 26, 0.9); /* Add semi-transparent background */
        padding: 1rem 0;
        border-radius: 0 0 10px 10px;
        display: block;
    }
    .chaptersnav {
        display: block;
        margin-top: 10px; /* Add space under the nav bar */
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    /* Ensure content moves down slightly */
    .video-overlay, 
}

/* Booking Section Styles */
.booking-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.booking-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.booking-section form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-section input,
.booking-section textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

.booking-section button {
    padding: 0.75rem;
    background-color: #008cff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-section button:hover {
    background-color: #006bbf;
}

#formMessage {
    font-size: 1rem;
    margin-top: 1rem;
}

.nav-links a:hover {
    color: #ff9800;
}

/* Fix for the Logo Alignment */
.navbar .logo {
    margin-right: auto; /* Push logo to the far left */
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column; /* Stack content vertically on small screens */
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem; /* Adjust gaps for mobile */
    }
}


.chaptersnav-items li {
    flex: 1; /* Equal spacing for all items */
    max-width: 250px; /* Restrict the width */
    transition: transform 0.3s ease; /* Smooth hover scaling */
}

.chaptersnav-items a {
    text-decoration: none;
    color: #333;
    display: block;
    transition: color 0.3s ease;
}

.chaptersnav-items img {
    width: 100%; /* Responsive image */
    height: auto;
    border-radius: 10px; /* Smooth rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chaptersnav-items p {
    margin-top: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
}

/* Hover Effect */
.chaptersnav-items li:hover {
    transform: translateY(-10px); /* Lift item */
}

.chaptersnav-items img:hover {
    transform: scale(1.05); /* Slightly enlarge the image */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Deeper shadow */
}

.chaptersnav-items a:hover p {
    color: #ff9800; /* Highlight text on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .chaptersnav-items {
        flex-direction: column; /* Stack vertically on smaller screens */
        gap: 2rem;
    }
}


.chaptersnav-items li {
    flex: 1; /* Equal spacing for all items */
    max-width: 250px; /* Restrict the width */
    transition: transform 0.3s ease; /* Smooth hover scaling */
}

.chaptersnav-items a {
    text-decoration: none;
    color: #333;
    display: block;
    transition: color 0.3s ease;
}

.chaptersnav-items img {
    width: 100%; /* Make image responsive */
    height: 150px; /* Fixed height for all images */
    object-fit: cover; /* Ensure all images are cropped uniformly */
    border-radius: 0; /* Remove rounded corners */
    transition: transform 0.3s ease;
}

.chaptersnav-items p {
    margin-top: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
}

/* Hover Effect */
.chaptersnav-items li:hover {
    transform: translateY(-10px); /* Lift item */
}

.chaptersnav-items img:hover {
    transform: scale(1.05); /* Slightly enlarge the image */
}

.chaptersnav-items a:hover p {
    color: #ff9800; /* Highlight text on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .navbar {
        height: 20px; /* Further reduce height on smaller screens */
    }

    .chaptersnav-items {
        flex-direction: column; /* Stack items vertically */
        gap: 1.5rem;
    }

    .chaptersnav-items img {
        height: 150px; /* Adjust image size for mobile */
    }
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0.5rem; /* Space between nav items */
    margin: 0;
    padding: 0;
    flex-grow: 1; /* Allow it to take equal space */
    /*position: absolute;*/
    top: 170%;
    width: 100%;
}

.nav-links a:hover {
    color: #ff9800; /* Highlight color */
}

/* Slim Chapters Navigation */
.chaptersnav {
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center items vertically */
    padding-top: 1.5rem; /* Add some vertical spacing */
    background-color: #f7f7f7; /* Optional: background color */
}

.chaptersnav-items {
    display: flex;
    justify-content: center; /* Center all items horizontally */
    align-items: center; /* Vertically align items */
    gap: 2rem; /* Space between chapters */
    list-style: none; /* Remove list bullets */
    padding: 0;
    margin: 0;
    max-width: 1200px; /* Restrict width for consistency */
}

.chaptersnav-items li {
    text-align: center; /* Center text under the images */
    background: none; /* Remove background color */
    border: none !important; /* Remove borders if any */
}
.chaptersnav-items a {
    background: none; /* Remove background color */
    border: none !important; /* Remove borders if any */
}
.chaptersnav-items img {
    width: 80px; /* Smaller image size */
    height: 80px;
    object-fit: contain;
    margin-bottom: 0.5rem; /* Space between image and text */
    background: none; /* Remove any background */
}

.chaptersnav-items p {
    font-size: 1rem; /* Adjust font size */
    color: #333;
    font-weight: 600;
    margin: 0;
}
.logo {
    display: flex;
    align-items: center; /* Vertically center content */
    gap: 0.5rem; /* Adds space between the image and text */
}

.imglogo {
    width: 50px; /* Set a fixed width */
    height: 50px; /* Set a fixed height */
    object-fit: contain; /* Ensures proper scaling */
    margin-top: 15px;
}

.textlogo {
    font-size: 1.5rem; /* Adjust text size proportionally */
    font-weight: bold;
    line-height: 1; /* Prevent extra spacing in text */
    color: #ff9800; /* Matching the text color */
    width: 13rem;
}
.cameraimg {
    width: 100px; /* Set a fixed width */
    height: 100px; /* Set a fixed height */
}




/* Fix for transparent PNG images */
.cameraimg {
    background: none !important; /* Forcefully remove any background */
    width: 80px; /* Adjust width */
    height: 80px; /* Adjust height */
    object-fit: contain; /* Keep proportions and fit in the container */
    display: block; /* Ensure proper display */
    margin: 0 auto; /* Center the image */
}
.chaptersnav-items li {
    background: none !important; /* No background for list items */
    box-shadow: none !important; /* No shadows */
    border: none !important; /* No borders */
    padding: 0; /* Remove extra padding */
    margin: 0; /* Remove margins */
    text-align: center; /* Center the text below */
}

.chaptersnav-items a {
    display: block; /* Ensure proper layout */
    text-decoration: none; /* Remove link underline */
    color: #333; /* Clean text color */
}

.chaptersnav-items img {
    background: none !important; /* Transparent background */
    box-shadow: none !important; /* Remove any shadow */
    border: none !important; /* Remove borders */
    width: 100px; /* Adjust the size as needed */
    height: auto; /* Maintain proportions */
    object-fit: contain; /* Ensures image fits well */
    display: block; /* Align image properly */
    margin: 0 auto; /* Center the image */
}

.chaptersnav-items p {
    margin-top: 0.5rem; /* Add spacing below the image */
    font-size: 1rem; /* Clean font size */
    font-weight: 500; /* Slightly bold text */
    color: #333; /* Default text color */
    text-align: center; /* Center align the text */
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden; /* Prevent overflow */
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure video covers the container */
}

/* Dark gradient effect covering edges */
.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8) 90%, rgba(0, 0, 0, 1) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.8) 90%, rgba(0, 0, 0, 1) 100%);
    pointer-events: none; /* Allow interaction with the video */
    z-index: 1; /* Place gradient above the video */
}
@media (max-width: 768px) {
    .video-container::before {
        background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 1) 70%);
    }
}

.video-overlay {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0; /* Place at the top */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    color: white;
    z-index: 2;
    padding-top: 5%; /* Add space from the top */
}

.video-overlay h1, 
.video-overlay p {
    margin: 0 0 1rem; /* Add spacing between h1, p, and booking section */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.booking-section {
    position: absolute;
    top: 50%; /* Booking section starts below the overlay content */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}
/* Apple-Like Fixed Navbar */
.navbar {
    position: fixed; /* Keep navbar fixed at the top */
    top: 0;
    left: 0;
    width: 100%;
    height: 33px; /* Consistent navbar height */
    background-color:#f7f7f7;/* Pure white background */
    /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Light bottom shadow */
    display: flex;
    justify-content: space-between; /* Space between logo and links */
    align-items: center; /* Center items vertically */
    padding: 0 2rem; /* Horizontal spacing */
    z-index: 1000; /* Ensure navbar stays on top */
    font-family: Arial, Helvetica, sans-serif; /* Clean typography */
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo img {
    width: 40px; /* Adjust logo size */
    height: auto;
    margin-right: 0.5rem;
}

.navbar .textlogo {
    font-size: 1.2rem; /* Adjust text size */
    font-weight: bold;
    color: #333; /* Dark text */
    text-decoration: none;
}

.nav-links li a:hover {
    color: #b6b6b6; /* Apple-like blue hover effect */
}

.right-buttons .btn-store {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    /*border: 1px solid #007aff;*/
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.right-buttons .btn-store:hover {
    background-color: #b6b6b6;
    color: #fff;
}

/* Remove active and focus color changes for links */
.nav-links li a:focus,
.nav-links li a:active {
    color: inherit; /* Inherit the default color */
    outline: none; /* Remove any browser focus outline */
}

html, body {
    scroll-behavior: smooth !important;
}
.wifi-service img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Optional, for rounded images */
}
.wifi-service img {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem; /* Space between image and title */
    border-radius: 10px; /* Rounded corners for images */
}

.wifi-service h3 {
    margin-bottom: 0.5rem; /* Space between title and description */
    color: #dadada; /* Title color */
}

.wifi-service p {
    color: #e0e0e0; /* Paragraph color */
    font-size: 0.9rem; /* Adjust font size as needed */
}

.overlay {
    position: absolute; /* or 'relative' depending on your layout needs */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure overlay is behind content, adjust if necessary */
    background-color: rgba(0, 0, 0, 0.5); /* Example background, adjust opacity/color as needed */
}
.security-system-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2rem 0;
    margin-top: 2rem; /* Adds space above the section to separate from previous content */
   /* background-color: #fff; /* Adjust background color as needed */
    position: relative;
    z-index: 2;
}
.security-system-service {
    text-align: center;
    width: 20%; /* Adjust based on the number of services */
}

.security-system-service img {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem; /* Space between image and title */
    border-radius: 10px; /* Rounded corners for images */
}

.security-system-service h3 {
    margin-bottom: 0.5rem; /* Space between title and description */
    color: #dfdfdf; /* Title color */
}

.security-system-service p {
    color: #cccccc; /* Paragraph color */
    font-size: 0.9rem; /* Adjust font size as needed */
}
.kurwa {
    position: absolute;
    top: 0;
}
.wifi-service h3,
.wifi-service p {
    /*background-color: rgba(0, 0, 0, 0.5); /* Dark background for text for better visibility */
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    backdrop-filter: blur(10px); /* Blur effect on the background */
}


.wifi-service h3, .wifi-service p {
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    position: relative; /* Ensures text is above the blurred pseudo-element */
    z-index: 1;
}
.wifi-service {
    text-align: center;
    width: 600px;
    flex-wrap: wrap;
    transition: transform 0.3s ease;
    padding: 20px;
    position: relative; /* Allows positioning of pseudo-elements */
    border-radius: 10px;
    /*overflow: hidden; /* Prevents blur overflowing */
}

.wifi-service h3,
.wifi-service p {
    position: relative;
    color: white;
    z-index: 1; /* Ensures text stays on top of blur */
    margin: 0.5rem 0;

}

.service-h1 {
    text-align: center;
    backdrop-filter: blur(20px); /* Blur effect on the background */
    position: relative;
    width: 20%;
}

/* Container for the header */
.wifi-header {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Adjust as needed */
    padding: 10px 0;
}

/* Add blurred background to the heading */
.wifi-header::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
   /* background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
   /* backdrop-filter: blur(10px); /* Blur effect */
    z-index: 0; /* Keeps the blur behind the text */
    border-radius: 10px; /* Optional: rounded corners */
}

/* Styling for the heading text */
.wifi-header h2 {
    position: relative;
    color: white; /* Text color */
    font-size: 2rem;
    font-weight: bold;
    z-index: 1; /* Ensures text stays on top of the blur */
    margin: 0;
    padding: 0 20px; /* Padding inside the blur box */
    text-align: center;
}
/* Container for IT Administration header */
.it-header {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Adjust spacing */
    padding: 10px 0;
}

/* Blurred background effect */
.it-header::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    /*backdrop-filter: blur(10px); /* Blur effect */
    z-index: 0; /* Keeps the blur behind the text */
    border-radius: 10px; /* Optional: rounded corners */
}

/* Styling for IT Administration text */
.it-header h2 {
    position: relative;
    color: white; /* Text color */
    font-size: 2rem;
    font-weight: bold;
    z-index: 1; /* Ensures text stays on top of the blur */
    margin: 0;
    padding: 0 20px; /* Padding for text inside the blur box */
    text-align: center;
}
/* Container for IT Administration header */
.secuirty-header {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Adjust spacing */
    padding: 10px 0;
}

/* Blurred background effect */
.security-header::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    /*backdrop-filter: blur(10px); /* Blur effect */
    z-index: 0; /* Keeps the blur behind the text */
    border-radius: 10px; /* Optional: rounded corners */
}

.google-stars {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.google-stars i {
    color: #ffcc00; /* Yellow stars */
    font-size: 1.5rem;
    margin: 0 3px;
}
/* Footer Section */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f9fa; /* Light background */
    padding: 20px 10px;
    font-family: Arial, sans-serif;
    border-top: 1px solid #ddd;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .footer-logo img {
    height: 40px;
    width: 40px;
    margin-right: 10px;
  }
  
  .footer-logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f5a623; /* Orange text color */
    margin: 0;
  }
  
  .footer nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .footer nav ul li {
    margin: 0 15px;
  }
  
  .footer nav ul li a {
    text-decoration: none;
    font-size: 1rem;
    color: #333333; /* Dark text color */
    transition: color 0.3s ease;
  }
  
  .footer nav ul li a:hover {
    color: #f5a623; /* Orange color on hover */
  }
  
  .footer-text {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 10px;
    text-align: center;
  }
/* General Section Styling */
.security-systems {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .security-systems h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #222;
  }
  
  .security-systems .intro {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #555;
  }
  
  /* Grid Container */
  .security-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  /* Individual Item Styling */
  .security-item {
    text-align: center;
    width: 300px;
    /*background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px; */
    padding: 20px;
    transition: transform 0.3s ease;
  }
  
  .security-item:hover {
    transform: translateY(-10px);
  }
  
  .security-item img {
    width: 240px;       /* Set a fixed width */
    height: 300px;      /* Set a fixed height */
    object-fit: contain; /* Ensures the image fits nicely within the set dimensions */
    margin-bottom: 15px; /* Adds spacing below the image */
  }
  
  .security-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
  }
  
  .security-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
  }
  /* General Section Styling */
.security-systems {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .security-systems h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #222;
  }
  
  .security-systems .intro {
    font-size: 1rem;
    margin-bottom: 40px;
    color: #555;
  }
  

  .it-admin-content {
    position: absolute; /* Overlay on the existing section */
    bottom: 10%; /* Adjust positioning to suit the section */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.5); /* Matching semi-transparent background */
    color: white; /* Text color for visibility */
    border-radius: 10px; /* Optional: rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    z-index: 5; /* Ensure it appears above other elements */
    max-width: 80%;



  }

  @media (max-width: 768px) {
    .it-admin-content {
        bottom: 5%; /* Move it closer to the bottom */
        padding: 1rem; /* Reduce padding */
        font-size: 0.9rem; /* Adjust font size */
    }
}

  .blog-pic1 {
    height: 30%;
    width: 30%;
  }
    .blog-member{
    border-radius: 20%;
    width: 1.5rem;
    height: 1.5rem;
    align-items: left;
  }
  .blog-title {
    text-align: left;
  }
  .blog-section-blog {
    padding: 2rem 1rem;
    background-color: #fafafa;

    align-items: center;
    justify-content: center;
    text-align: center;
}
.blog-section-blog h2 {

    text-align: center;
    padding: 20px 0 0 0;

}
.content ul li {
    text-align: left;
    padding-left: 20rem;
    text-decoration:solid;
    font-family: 'Open-Sans', sans-serif;
    font-size: 22px;
}
.image-blogg {
    text-align: left;
    margin-left: 5rem; /* Adjust spacing between image and text */

}

.nav-links li a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    color: #333; /* Default text color */
    transition: color 0.3s ease-in-out; /* Smooth hover effect */
}

@media (max-width: 1558px) {
    .wifi-service {
        width: 33%;
    }
}
@media (max-width: 1189px) {
    .wifi-service {
        width: 33%;
    }
}
@media (max-width: 869px) {
    .wifi-service {
        width: 33%;
    }
}

.booking-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.booking-header {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.booking-section form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-section .form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.booking-section input,
.booking-section select,
.booking-section textarea {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease;
}

.booking-section input:focus,
.booking-section select:focus,
.booking-section textarea:focus {
    border-color: #008cff;
}

.booking-section button {
    padding: 0.75rem;
    background-color: #008cff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-section button:hover {
    background-color: #006bbf;
}

#formMessage {
    font-size: 1rem;
    margin-top: 1rem;
    color: green;
}

svg:not(:root).svg-inline--fa {
    color: gold;
}
.footer-logo h2 {
    color: #f5a623;
    margin-bottom: 2%;
}
@media (max-width: 700px) {
    .wifi-networks-section {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center the items */
    }

    .wifi-service {
        width: 100%; /* Adjust width for smaller screens */
        margin-bottom: 20px; /* Add spacing between items */
        padding: 0;
    }
}
.wifi-networks-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 0;
    margin-top: 0rem;
    min-height: 75vh; /* Ensure it takes up the full viewport height */
    position: relative;
    /*background: rgba(0, 0, 0, 0.5); /* Adjust background if necessary */
    z-index: 2;
}

.services-section {
    position: relative;
    padding: 2rem 0;
    min-height: 150vh; /* Ensure full screen height */
    /*background: url('background-image.jpg') no-repeat center center/cover; /* Replace with your background image */
    z-index: 1;
}
/* Fix Navbar and Chapters Navigation Overlap */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000; /* Keep navbar above other elements */
    }

    .chaptersnav {
        margin-top: 50px; /* Add margin to separate from the navbar */
        padding-top: 10px;
    }

    .chaptersnav-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem; /* Add spacing between items */
    }


    .nav-links li {
        margin: 0.5rem 0; /* Add spacing between links */
        text-align: center;
    }
}
/* Fix Navbar and Dropdown for Mobile */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000; /* Ensure it stays on top */
        background: white; /* Optional: Add a background */
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
    }

    .nav-links.show {
        display: flex; /* Show when toggled */
    }

    .nav-links li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .chaptersnav {
        margin-top: 70px; /* Push content below the navbar and dropdown */
    }
}
/* Navbar and Dropdown Fix */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000; /* Ensure navbar stays on top */
        background: white;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
    }

    .nav-links.show {
        display: flex; /* Show when toggled */
    }

    .nav-links li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .chaptersnav {
        margin-top: 70px; /* Push content below the navbar and dropdown */
    }

    .chaptersnav-items {
        margin-top: 20px;
    }
}
/* Navbar and Dropdown Fix */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: white;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    }


    .nav-links {
        position: absolute;
        top: 100%; /* Start below the navbar */
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem 0;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
        z-index: 999;
        height: 3rem;
        margin: 2rem 0;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
    }

    .nav-links li {
        margin: 0.5rem 0;
        text-align: center;
    }

    .chaptersnav {
        position: relative;
        margin-top: 15%; /* Dynamically adjust based on dropdown height */
    }
}
@media (max-width: 755px) {
    .video-overlay h1 {
        font-size: 2rem;
    }
}