/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: url('assets/images/background.jpg') no-repeat center center fixed; /* Background image */
    background-size: cover; /* Cover the entire viewport */
}
/* demo */
.demo-banner {
    background-color: #ffcc00;
    text-align: center;
    padding: 2px 0;
    color: #333;
    /* font-weight: bold; */
    font-size:10px;
}

.demo-text {
    color: #ff0000;
    font-size: 8px;
    text-align: center;
    margin-top: 10px;
}

/* Navigation Styles */
nav {
    background: rgba(255, 255, 255, 0.8); /* Light semi-transparent background */
    color: #333;
    padding: 15px 20px; /* Padding around the nav */
    position: sticky; /* Fixed position on scroll */
    top: 0;
    z-index: 1000; /* On top of other content */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}

.nav-toggle {
    display: none; /* Hide by default */
    font-size: 20px; /* Larger font size for hamburger icon */
    border: none; /* No border */
    cursor: pointer; /* Pointer cursor */
}

/* Nav Container */
.nav-container {
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space between logo and links */
    align-items: center; /* Center items vertically */
}

/* Logo Styles */
/* Logo Styles */
.logo {
    display: flex; /* Use flexbox for alignment */
    align-items: center; /* Center logo vertically */
}

.logo-img {
    width: 100px; /* Set desired width */
    height: auto; /* Maintain aspect ratio */
    max-height: 100px; /* Optional: set max height if needed */
}

/* Navigation Links */
.nav-links {
    list-style: none; /* Remove bullet points */
    display: flex; /* Horizontal layout */
    gap: 20px; /* Space between links */
}

/* Link Styles */
.nav-links a {
    text-decoration: none; /* Remove underline */
    color: #333; /* Link color */
    font-weight: 700; /* Bold links */
    transition: color 0.3s; /* Smooth color transition */
}

/* Link Hover Effect */
.nav-links a:hover {
    color: #ff7e5f; /* Change color on hover */
}

/* Home Section */
    /* Home Section */
    .home-section {
        position: relative;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        overflow: hidden;
    }

    .home-content {
        text-align: center;
        z-index: 2;
    }

    .overlay {
        background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text contrast */
        padding: 20px;
        border-radius: 10px;
    }

    h1 {
        font-size: 3rem;
        font-family: 'Arial', sans-serif;
        margin-bottom: 10px;
        font-weight: bold;
    }

    p {
        font-size: 1rem;
        /* margin: 15px 0; */
        font-family: 'Verdana', sans-serif;
        line-height: 1.6;
    }

    .btn {
        background-color: #f39c12;
        color: white;
        padding: 12px 25px;
        text-decoration: none;
        border-radius: 5px;
        font-size: 1rem;
        font-weight: bold;
        transition: background-color 0.3s;
    }

    .btn:hover {
        background-color: #e67e22;
    }

   /* Image Slider */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden; /* Prevents white space */
}

.slider {
    display: flex;
    width: 300%; /* Matches the number of images */
    height: 100%;
    animation: slide 12s infinite;
}

.slider img {
    width: 100vw; /* Each image takes full viewport width */
    height: 100%;
    object-fit: cover;
}

/* Keyframes for sliding effect */
@keyframes slide {
    0% { transform: translateX(0); }
    33.33% { transform: translateX(-100vw); }
    66.66% { transform: translateX(-200vw); }
    100% { transform: translateX(0); }
}

/* Button Styles */
.btn {
    background: #ff7e5f; /* Button color */
    color: #fff; /* Text color */
    padding: 10px 20px; /* Button padding */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    transition: background 0.3s; /* Smooth background transition */
}

/* Button Hover Effect */
.btn:hover {
    background: #ff6a4a; /* Darker shade on hover */
}
/* about-section */
.about-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.about-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Services Section */
.services-container {
    padding: 50px 20px; /* Section padding */
}

.services-grid {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive columns */
    gap: 15px; /* Space between items */
}

.service-item {
    border: 1px solid #ddd; /* Light border */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Hide overflow */
    transition: transform 0.3s; /* Smooth transform transition */
}

.service-item:hover {
    transform: scale(1.05); /* Scale effect on hover */
}

.service-item img {
    width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
}

/* Gallery Section */
.gallery-container {
    display: grid; /* Use grid layout */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive columns */
    gap: 15px; /* Space between items */
    padding: 50px 20px; /* Section padding */
}

.gallery-item {
    position: relative; /* For overlay positioning */
    overflow: hidden; /* Hide overflow */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Box shadow */
    transition: transform 0.3s; /* Smooth transform transition */
}

.gallery-item:hover {
    transform: scale(1.05); /* Scale effect on hover */
}

.gallery-item img {
    width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
}

/* Overlay Styles */
.gallery-overlay {
    position: absolute; /* Absolute positioning */
    bottom: 0; /* Align to bottom */
    left: 0; /* Align to left */
    right: 0; /* Align to right */
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    color: white; /* Text color */
    text-align: center; /* Center text */
    padding: 10px; /* Padding */
    opacity: 0; /* Hide by default */
    transition: opacity 0.3s; /* Smooth opacity transition */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1; /* Show overlay on hover */
}

/* Form Section */
.form-section {
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.9); /* Light semi-transparent background */
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input:focus, select:focus, textarea:focus {
    border-color: #ff7e5f;
    outline: none;
}

button {
    background: #ff7e5f;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    /* width: 100%; */
}

button:hover {
    background: #feb47b;
}

.response-message {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
}

/* Contact Us Section */
.contact-us-section {
    padding: 50px 20px;
    background: #f9f9f9; /* Light background for contrast */
    text-align: center;
}

.contact-us-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333; /* Darker text for headings */
}

.contact-us-section p {
    margin-bottom: 30px;
    font-size: 1.2em;
    color: #555; /* Slightly lighter color for body text */
}

/* Contact Info Container */
.contact-info {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    justify-content: center; /* Center items */
    gap: 20px; /* Space between items */
    margin: 0 auto; /* Center the container */
    max-width: 800px; /* Max width for larger screens */
}

.info-item {
    display: flex;
    align-items: center;
    background: #fff; /* White background for contact items */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1; /* Allow items to grow */
    min-width: 220px; /* Minimum width for responsiveness */
}

.info-item:hover {
    transform: translateY(-3px); /* Lift effect on hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); /* Darker shadow on hover */
}

.info-item i {
    font-size: 2em; /* Larger icon size */
    margin-right: 15px; /* Space between icon and text */
    color: #ff7e5f; /* Accent color for icons */
}

.info-item div {
    text-align: left; /* Align text to the left */
}

/* Social Media Links */
.social-media {
    margin-top: 20px;
}

.social-media p {
    margin: 10px 0; /* Space between paragraphs */
}

.social-media a {
    text-decoration: none;
    color: #ff7e5f; /* Accent color */
    font-weight: bold; /* Bold links */
    transition: color 0.3s;
}

.social-media a:hover {
    color: #e67e22; /* Darker accent color on hover */
}

/* Footer */
footer {
    text-align: center; /* Center text */
    padding: 20px; /* Padding */
    background: rgba(255, 255, 255, 0.9); /* Light background */
    position: relative;
    bottom: 0;
    width: 100%;
    color: #333; /* Dark text color */
}

footer p {
    margin: 10px 0; /* Space between paragraphs */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
 
    }

   

    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .slider-image {
        width: 100%;
    }
    .nav-links {
        flex-direction: column; /* Stack links on smaller screens */
        display: none; /* Hide by default */
        background: rgba(255, 255, 255, 0.9); /* Background for mobile menu */
        position: absolute; /* Position absolute for dropdown */
        top: 88px; /* Below nav */
        left: 0;
        width: 100%; /* Full width */
    }

    .nav-links.active {
        display: flex; /* Show on toggle */
    }

    .nav-toggle {
        display: block; /* Show toggle button on smaller screens */
    }
}

@media (max-width: 480px) {
    .home-content h1 {
        font-size: 2.5em; /* Smaller title size for mobile */
    }

    .btn {
        padding: 10px 15px; /* Adjust button padding for mobile */
    }
}
