* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding-top: 70px;

}

header {
    box-shadow: 0px 4px 8px gray;
    background-color: black;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    height: 90px;
    width: 100%;
}

ul {
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
}

.logo1 {
    margin-right: 20px;
    display: flex;
    align-items: center;

}

.logo1 img {
    height: 85px;
    display: block;
}

.logo2 {
    margin-right: auto;
    display: flex;
    align-items: center;
}

.logo2 img {
    height: 55px;
    display: block;
}


.menu-icon {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.pages {
    margin-left: 30px;
    font-size: 15px;
    letter-spacing: 1px;
}

.pages a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.pages a:hover {
    color: #ff6347;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-image: linear-gradient(rgba(190, 192, 212, 0.5), rgba(214, 212, 224, 0.5)), url(images/background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;

}

.hero-content {
    text-align: center;
    padding: 200px;
}

.hero-content h1 {
    font-size: 48px;
    color: black;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    color: black;
    margin-bottom: 30px;
}

.hero-content a {
    display: inline-block;
    padding: 10px 20px;
    background-color: red;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
}

.hero-content a:hover {
    background-color: orangered;
}

.our_services {
    padding: 80px 60px;
    text-align: center;
    background: #f8f9fa;
}

.our_services h1 {
    margin-bottom: 50px;
    position: relative;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px lightgray;
    transition: 0.3s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px lightgray;
}

.service-item img {
    width: 270px;
    height: 200px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: black;
}

.why-choose-us {
    padding: 80px 60px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/background2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
}

.why-choose-us h1 {
    margin-bottom: 50px;
}

.choose-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason {
    background: #1c1c1c;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reason:hover {
    transform: translateY(-8px);
    background: #222;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.reason h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff6347;
}

.reason p {
    font-size: 15px;
    line-height: 1.6;
    color: #ccc;
}

.reviews {
    padding: 100px 60px;
    background: #f4f6f9;
    text-align: center;
}

.reviews h1 {
    margin-bottom: 100px;
}

.review-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;

}

.review-item {
    background: #ffffff;
    padding: 60px 30px 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: 0.3s ease;
}

.review-item:hover {
    transform: translateY(-10px);
}

.profile-img {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.profile-img img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 6px solid #f4f6f9;
    object-fit: cover;
}


.review-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
}

.stars {
    color: #f4b400;
    font-size: 25px;
}

.our-location {
    padding: 80px 60px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(images/background3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.our-location h1 {
    margin-bottom: 50px;
    text-align: center;
    color: black;
}

.google-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.address {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.address h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.address h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #420e05;
}

.address p {
    font-size: 15px;
    margin-bottom: 8px;
    color: #555;
}

.address hr {
    margin: 20px 0;
    border: none;
    height: 1px;
    background: #eee;
}

footer {
    background: #0f0f0f;
    color: #fff;
    padding: 70px 60px 30px;
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}

footer>div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.shop-details {
    display: flex;
    flex-direction: column;
}

.shop-details img {
    height: 60px;
}

.shop-details h4 {
    font-size: 20px;
    color: #ff6347;
    margin-left: 10px;
}

.shop-details-top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ff6347;
}

footer p {
    font-size: 14px;
    line-height: 1.7;
    color: #bbb;
}

.Quick-Links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.Quick-Links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}

.Quick-Links li {
    display: block;
    margin-bottom: 5px;
}

.Quick-Links li a {
    display: inline-block;
    text-decoration: none;
    color: #bbb;
    transition: 0.3s;
}

.Quick-Links li a:hover {
    color: #ff6347;
    padding-left: 5px;
}


.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 25px ;
}

.footer-bottom p {
    margin: 6px 0;
    font-size: 13px;
    color: #777;
}

.footer-bottom p a {
    color: #777;
    text-decoration: none;
}

/* contact us page */

.contact-hero {
    min-height: 100vh;
    padding: 60px 8%;
    background: linear-gradient(rgba(189, 189, 189, 0.5), rgba(209, 209, 209, 0.5)), url(images/background5.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 60px;
    align-items: center;
    width: 100%;
    color: black;
}

.contact-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-info div {
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-info a {
    display: flex;
    margin: 25px 10px 0 0;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center */
    text-align: center;

}

.button {
    background: orangered;
    color: #fff;
}

.button:hover {
    background: orange;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 68, 0, 0.4);
    color: black;
}

.button:active {
    transform: translateY(0);
    box-shadow: none;
    color: black;
}


/* Services page */

/* ---------------- Container ---------------- */
.services-page {
    padding: 60px;
    color: black;
    background-color: #f9f9f9;
}

/* Main section title */
.services-page > h1 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

/* ---------------- Services Grid ---------------- */
.services-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
    gap: 30px;
}

/* Individual service card */
.service {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Service images */
.service img {
    width: 100%;
    max-height: 270px;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Service title */
.service h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff6347;
}

/* Content wrapper inside service */
.service > div {
    width: 100%;
    text-align: left;
}

/* Subservice headings */
.service h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
}

/* Paragraphs */
.service p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* ---------------- Brands Section ---------------- */
.brands {
    margin-top: 70px;
    margin-bottom: 20px;
    text-align: center;
}

.brands h2 {
    color: #ff6347;
    margin-bottom: 30px;
}

.brands h3 {
    color: #333;
    margin-top: 20px;
    margin-bottom: 20px;
}
/* Brand logos container */
.brand-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

/* Brand logos */
.brand-logos img {
    max-width: 80px;
    max-height: 80px;
}

.brand-logos img:hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* about us page */

/* ---------- About Page Section ---------- */
.about-page {
    padding: 80px 8%;
   background-image: linear-gradient(rgba(233, 227, 227, 0.5), rgba(233, 219, 219, 0.5)), url(images/background4.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: black;
}

/* Container Layout */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

/* Image Styling */
.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Content Styling */
.about-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #222;
}

.about-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Highlight Box */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.about-highlights div {
    background: white;
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    font-weight: 600;
}

/* Bottom Paragraph */
.about-bottom {
    margin-top: 20px;
    font-weight: 500;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image img {
        height: 300px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}
