/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* Header Section */
#header {
    background-color: #007bff;
    padding: 20px 0;
}

#header .logo img {
    height: 320px;
    width: auto;
    transition: transform 0.3s ease;
}

#header .logo img:hover {
    transform: scale(1.1);
}

#navbar {
    margin-top: 10px;
}

#navbar ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#navbar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

#navbar a:hover {
    color: #f8f9fa;
    text-decoration: underline;
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('{{asset("frontend/img/hero-img.png")}}') center center no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

#hero h1, #hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#hero .btn-get-started {
    background-color: #007bff;
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
}

#hero .btn-get-started:hover {
    background-color: #0056b3;
    color: white;
}

/* About Section */
#about {
    padding: 80px 0;
    background-color: #ffffff;
}

#about .content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#about .btn-read-more {
    background-color: #007bff;
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    font-weight: 600;
}

#about .btn-read-more:hover {
    background-color: #0056b3;
    color: white;
}

/* Services Section */
#services {
    background-color: #f1f3f5;
    padding: 80px 0;
}

#services .service-box {
    background-color: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

#services .service-box:hover {
    transform: translateY(-10px);
}

#services .service-box .icon {
    font-size: 36px;
    margin-bottom: 15px;
}

#services .service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

#services .service-box a {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

#services .service-box a:hover {
    color: #0056b3;
}

/* Products Section */
#Products {
    padding: 80px 0;
    background-color: #ffffff;
}

#Products .Products-item {
    position: relative;
    overflow: hidden;
}

#Products .Products-item .Products-info {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#Products .Products-item:hover .Products-info {
    opacity: 1;
}

#Products .Products-item .Products-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#Products .Products-item .Products-info p {
    font-size: 1rem;
    margin-bottom: 20px;
}

#Products .Products-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#Products .Products-links a {
    color: white;
    font-size: 1.5rem;
}

#Products .Products-links a:hover {
    color: #007bff;
}

/* Contact Section */
#contact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

#contact .info-box {
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

#contact .info-box i {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 20px;
}

#contact .info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

#contact .info-box p {
    font-size: 1rem;
}

#contact form input, #contact form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

#contact form textarea {
    resize: vertical;
}

#contact form button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
}

#contact form button:hover {
    background-color: #0056b3;
}

/* Footer */
#footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 40px 0;
}

#footer .footer-info {
    text-align: center;
    margin-bottom: 30px;
}

#footer .footer-info img {
    max-height: 100px;
    transition: transform 0.3s ease;  /* Add transition to handle smooth scaling */
}

#footer .social-links a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
}

#footer .footer-links ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

#footer .footer-links ul li {
    margin-bottom: 10px;
}

#footer .footer-links a {
    color: #ffffff;
    text-decoration: none;
}

#footer .footer-links a:hover {
    color: #007bff;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    #header .container-fluid {
        flex-direction: column;
        text-align: center;
    }

    #hero {
        height: auto;
        padding: 50px 0;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #about .container, #services .container, #Products .container, #contact .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}
