@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 4rem;
    list-style: none;
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

section {
    padding: 50px 10%;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f3f3f3;
    padding: 18px 100px;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.75);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1c1c1c;
    animation: fadeIn 1s ease-in-out;
}

.navbar {
    display: flex;
    transition: all 0.3s ease;
}

.navbar a {
    font-size: 1rem;
    padding: 10px 20px;
    color: black;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    animation: slideIn 1s ease forwards;
}

.navbar a:hover {
    color: #000000;
    transform: scale(1.1);
}

#menu-icon {
    font-size: 2rem;
    cursor: pointer;
    display: none;
}

@media (max-width: 1135px) {
    header {
        padding: 14px 50px;
    }

    .navbar a {
        padding: 10px 9px;
    }
}

@media (max-width: 810px) {
    section {
        padding: 50px 8%;
    }

    #menu-icon {
        display: initial;
        color: #212121;
    }

    .navbar {
        position: absolute;
        top: -500px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;
        background: #ffffff;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
        transition: top 0.5s ease;
    }

    .navbar.active {
        top: 100%;
    }

    .navbar a {
        padding: 1.5rem;
        display: block;
        background-color: #f3f3f3;
    }
}

.home {
    position: relative;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000, #434343, #000000); /* Gradient with 3 stops */
    background-size: 200% 200%; /* Larger than the container for smooth animation */
    animation: gradientAnimation 10s linear infinite; /* Smooth and constant animation */
    overflow: hidden;
}

/* Keyframes for smooth gradient animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%; /* Start position */
    }
    50% {
        background-position: 100% 50%; /* Middle position */
    }
    100% {
        background-position: 0% 50%; /* Back to start */
    }
}

/* Overlay for the low-opacity image */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/Dhaulagiri.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Low opacity */
    z-index: 1;
}

/* Container for content */
.container {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

/* Content styling */
.content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #e1e1e1;
    text-shadow: 2px 5px 8px rgba(0, 0, 0, 0.6); /* Drop shadow */
}

.content p {
    font-size: 1.2em;
    color: #fff; /* White text */
    margin-bottom: 30px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.9); /* Drop shadow */
}

/* Buttons styling */
.buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between buttons */
}

.btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid #fff; /* White border */
    color: #fff; /* White text */
    text-decoration: none;
    font-size: 1em;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #fff; /* White background on hover */
    color: #000; /* Black text on hover */
    transform: scale(1.05); /* Slightly enlarge the button */
}
/* Responsive Design */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5em;
    }

    .content p {
        font-size: 1em;
    }

    .buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Services Section */
.services {
    text-align: center;
    padding: 40px 5%;
    background: linear-gradient(135deg, #e9e9e9, #ffffff, #b1b1b1); /* Gradient with 3 stops */
    color: #1e1e1e;
}

.services h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.service-card {
    background: rgba(47, 47, 47, 0.9);
    backdrop-filter: blur(5px);
    padding: 15px;
    width: 160px;
    height: 90px;
    text-align: center;
    border-radius: 8px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Icon & Text Adjustments */
.service-card i {
    font-size: 28px;
    margin-bottom: 5px;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 500;
}

/* Subtle Hover Effect */
.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

/* About Section Styling */
.about {
    padding: 60px 10%; /* Add padding to the section */
    background-color: #eaeaea; /* Light gray background for the section */
    color: #252525; /* Dark text */
}

.about-container {
    display: flex;
    align-items: center; /* Vertically center the content */
    gap: 40px; /* Space between text and image */
    max-width: 1200px; /* Limit container width for better spacing */
    margin: 0 auto; /* Center the container */
}

/* Left Half: Text */
.about-text {
    flex: 1; /* Take up half the space */
    padding: 20px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #131313; /* Dark gray text for better readability */
}

/* Right Half: Image */
.about-image {
    flex: 1; /* Take up half the space */
    max-width: 50%; /* Ensure the image doesn't exceed half the container */
}

.about-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about {
        padding: 40px 5%; /* Reduce padding for smaller screens */
    }

    .about-container {
        flex-direction: column; /* Stack text and image vertically */
        gap: 30px; /* Increase gap for better spacing */
    }

    .about-text,
    .about-image {
        max-width: 100%; /* Full width for stacked layout */
    }

    .about-text {
        padding: 0; /* Remove padding for smaller screens */
        text-align: center; /* Center-align text on smaller screens */
    }

    .about-text h2 {
        font-size: 2rem; /* Slightly smaller heading for mobile */
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 1rem; /* Slightly smaller text for mobile */
        line-height: 1.7;
        color: #131313; /* Dark gray text for better readability */
    }

    .about-image img {
        border-radius: 8px; /* Slightly smaller border radius for mobile */
    }
}

/* YouTube Section Styling */
.youtube {
    padding: 60px 10%;
    background: url('images/bluenextmove.jpg') center/cover no-repeat, 
                linear-gradient(135deg, #252525, #434343, #303030); /* Background image + gradient */
    background-blend-mode: overlay; /* Blend the gradient with the image */
    background-size: cover;
    background-position: center;
    color: #fff; /* White text */
    position: relative;
}

.youtube .container {
    text-align: center;
    max-width: 1200px; /* Limit container width for better spacing */
    margin: 0 auto; /* Center the container */
}

.youtube h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #fff; /* White heading */
}

.video-grid {
    display: flex;
    justify-content: center; /* Center the videos horizontally */
    gap: 40px; /* Space between videos */
}

.video-wrapper {
    flex: 1; /* Allow videos to grow and fill available space */
    max-width: 55%; /* Slightly less than half to account for gap */
}

.video-wrapper iframe {
    width: 100%;
    height: 400px; /* Bigger height for larger videos */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Responsive Design for YouTube Section */
@media (max-width: 768px) {

    .youtube h2 {
        font-size: 1.8em;
        margin-bottom: 40px;
        color: #fff; /* White heading */
    }
    .video-grid {
        flex-direction: column; /* Stack videos vertically */
        gap: 20px; /* Reduce gap for stacked layout */
    }

    .video-wrapper {
        max-width: 100%; /* Full width for stacked videos */
    }

    .video-wrapper iframe {
        height: 300px; /* Adjust height for smaller screens */
    }
}

/* Gallery Section Styling */
.gallery {
    padding: 60px 10%; /* Add padding to the section */
    background: url('images/white.jpg') center/cover no-repeat; /* Replace with your image */
    background-color: #eaeaea;/* White background */
    position: relative; /* For positioning navigation buttons */
}

.gallery .container {
    max-width: 1200px; /* Limit container width for better spacing */
    margin: 0 auto; /* Center the container */
    text-align: center; /* Center-align the heading */
    position: relative; /* For positioning navigation buttons */
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #000; /* Black heading */
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Limit slideshow width */
    height: 500px; /* Fixed height for the slideshow */
    margin: 0 auto; /* Center the slideshow */
    overflow: hidden; /* Hide overflow */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    background-color: #fff; /* White background for the slideshow */
}

/* Slides */
.slide {
    display: none; /* Hide all slides by default */
    width: 100%;
    height: 100%; /* Fixed height for the slides */
    transition: opacity 0.5s ease; /* Smooth transition */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images cover the area */
    border-radius: 10px; /* Rounded corners */
}

/* Navigation Buttons */
.prev, .next {
    position: absolute;
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for exact centering */
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    color: #000; /* Black arrows */
    border: none;
    width: 40px; /* Fixed width for buttons */
    height: 40px; /* Fixed height for buttons */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%; /* Circular buttons */
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
    z-index: 10; /* Ensure buttons are above slides */
}

.prev:hover, .next:hover {
    background-color: rgba(255, 255, 255, 1); /* Solid white background on hover */
}

.prev {
    left: 10px; /* Position left button */
}

.next {
    right: 10px; /* Position right button */
}

/* Responsive Design for Gallery Section */
@media (max-width: 768px) {
    .gallery {
        padding: 40px 5%; /* Reduce padding for smaller screens */
    }

    .gallery h2 {
        font-size: 2rem; /* Smaller heading for mobile */
        margin-bottom: 30px;
    }

    .slideshow-container {
        height: 300px; /* Adjust height for smaller screens */
    }

    .prev, .next {
        width: 35px; /* Slightly smaller buttons for mobile */
        height: 35px;
        font-size: 1.2rem;
        top: 55%; /* Move buttons down slightly */
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        height: 250px; /* Further adjust height for very small screens */
    }

    .prev, .next {
        width: 30px; /* Smaller buttons for very small screens */
        height: 30px;
        font-size: 1rem;
        top: 55%; /* Move buttons down slightly */
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    background: url('images/bluenextmove.jpg') center/cover no-repeat, 
                linear-gradient(135deg, #252525, #434343, #303030); /* Background image + gradient */
    background-blend-mode: overlay; /* Blend the gradient with the image */
    background-size: cover;
    background-position: center;
    padding: 95px 20px;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -35px;
    left: 0;
    width: 100%;
    height: 105%;
    background-image: url("./images/flower2.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
    opacity: 0.1;
    z-index: 0;
}

.contact-text {
    text-align: center;
    margin-bottom: 20px;
}

.contact-text h6 {
    color: #e1e1e1;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
}


.contact-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.contact-container::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.contact-box {
    max-width: 850px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(307deg, rgb(248, 248, 248) 0%, rgb(233, 233, 233) 70%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.45);
    border-radius: 10px;
    overflow: hidden;
}

.contact-left {
    height: 100%;
    background: url("images/IMG_5961.jpg") no-repeat center;
    background-size: cover;
    border-radius: 10px 0 0 10px;
}

.contact-right {
    padding: 25px 40px;
}

.contact-right h6 {
    color: #131313;
    font-size: 1.8rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.contact-field {
    width: 100%;
    padding: 0.5rem 1rem;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0);
    background-color: #cfcfcf;
    font-size: 1rem;
    margin-bottom: 22px;
    transition: 0.3s;
    resize: none;
}

.contact-field:hover {
    background-color: #a9a9a9;
}

.contact-field:focus {
    background-color: #f2f2f2;
    border: 2px solid rgba(0, 0, 0, 0.25);
}

.contact-area {
    min-width: 150px;
}

.contact-btn {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    background-color: #3c3c3c;
    color: #fff;
    cursor: pointer;
    outline: none;
    border: none;
}

.contact-btn:hover {
    background-color: #000000;
}

/* Responsive Design for Contact Section */
@media screen and (max-width: 880px) {
    .contact-text h6 {
        font-family: "Inter", sans-serif;
        color: #ffffff;
        font-size: 2.6rem;
        font-weight: 700;
        margin-bottom: 50px;
    }

    .contact-section::before {
        top: -43px;
        background-size: 100%;
    }

    .contact-text h6::after {
        content: '';
        display: block;
        width: 15%;
        height: 4px;
        margin: 2px auto 0;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-left {
        height: 200px;
    }
}

@media screen and (max-width: 480px) {
    .contact-text h6 {
        font-family: "Inter", sans-serif;
        color: #ffffff;
        font-size: 2.6rem;
        font-weight: 700;
        margin-bottom: 50px;
    }

    .contact-section::before {
        top: -43px;
        background-size: 100%;
    }

    .contact-text h6::after {
        content: '';
        display: block;
        width: 30%;
        height: 4px;
        margin: 2px auto 0;
    }

    .contact-text h6 {
        font-size: 2rem;
    }

    .contact-right h6 {
        font-size: 1.5rem;
    }

    .contact-field,
    .contact-btn {
        font-size: 1rem;
        padding: 0.5rem;
    }
}


/* Footer */

.footer {
    background: linear-gradient(307deg, rgb(228, 228, 228) 0%, rgb(255, 255, 255) 70%);
    text-align: center;
    padding: 23px;
    width: 100%;
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer p {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

@media (max-width: 480px) {
    .footer p {
    font-size: .8rem;
    color: #333;
    }   
}
