/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Merriweather', serif;
}

/* Body */
body {
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Navbar Start*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
}

header .logo span {
    color: #00bcd4;
}

.navbar {
    display: flex;
    gap: 20px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

.navbar a:hover {
    color: #00bcd4;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 150px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #333;
    padding: 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #00bcd4;
    color: #fff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Search Bar Styling */
#Search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

#Search input[type="search"] {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 15px;
}

#Search button {
    padding: 5px 8px;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

#Search button:hover {
    background-color: #0097a7;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* General Button Style if reused */
.btn {
    display: inline-block;
    background-color: #00bcd4;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: rgb(6, 204, 249);
}
/*Navbar end*/


/* Home Section */
.home {
    background: url(pic/pic3.jpg) no-repeat center center/cover;
    display: flex;
    color: rgb(229, 9, 78);
    text-align:left;
    padding: 200px 50px;
}

.home .content {
    max-width: 600px;
    margin: 0 auto;
}

.home h3 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.home span {
    font-size: 18px;
    display: block;
    margin-bottom: 20px;
}

.home .btn {
    background-color: #00bcd4;
    color: rgb(243, 233, 233);
    padding: 5px 8px;
    text-decoration: none;
    font-size: 15px;
}

/*Home Section end*/



/* About Section */
.about {
    padding: 60px 15px;
    background-color: #ffffff;
    color: #333;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #00bcd4;
}

.about-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/*About Section end*/


/*product section start*/

.products {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
    color: #00bcd4;
}
.products h2{
    font-size: 32px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.product-card h3 {
    margin: 15px 0 10px;
    font-size: 20px;
}

.product-card p {
    font-size: 14px;
    color: #555;
}

.product-card .btn {
    display: inline-block;
    margin-top: 10px;
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.product-card .btn:hover {
    background-color: #0056b3;
}

/*products section end*/

/* Service Section */
.services {
    background-color: #f0f0f0;
    padding: 60px 15px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #00bcd4;
}

.services-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    flex: 1 1 280px;
    max-width: 300px;
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 40px;
    color: #00bcd4;
    margin-bottom: 15px;
}

.service-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 14px;
    color: #555;
}
/*Service Section end*/


/* Contact Section */
.contact {
    padding: 60px 15px;
    background-color: #ffffff;
    color: #333;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-size: 32px;
    color: #00bcd4;
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-info ul li i {
    margin-right: 10px;
    color: #00bcd4;
}

.contact-form {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    resize: none;
}

.contact-form button {
    align-self: flex-start;
}
/*contact Section end*/


@media (max-width: 768px) {
  .reviews-grid {
    flex-direction: column;
    align-items: center;
  }
  .testimonial-card {
    width: 90%;
  }
}
/*customer review*/

/* Footer */
footer {
    background: #222;
    color: #bbb;
    padding: 30px 0;
    
}

.footer-top {
    padding-bottom: 20px;
}

.container {
    
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-links {
    flex: 1 1 22%; /* 4 columns roughly */
    margin-bottom: 20px;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #00bcd4;
    position: relative;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #00bcd4;
}

.footer-links p {
    margin-bottom: 10px;
}

.footer-links strong {
    display: block;
    margin-bottom: 5px;
}

.Social-links a {
    font-size: 20px;
    margin-right: 10px;
    color: #bbb;
    transition: 0.3s;
}

.Social-links a:hover {
    color: #00bcd4;
}

/* Responsive Styles */
@media (max-width: 992px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-form button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .home h3 {
        font-size: 24px;
    }

    .home .btn {
        font-size: 16px;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        flex-direction: column;
    }

  

    .footer-top .row {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        text-align: center;
    }
}
