*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
/* General header style product*/
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;

    display: flex;
    align-items: center;
    padding: 20px 40px;

    width: 100%; /* Make sure it spans the page */
    box-sizing: border-box;
}
/* General header style home*/
.mainheader {

        position: sticky;
        top: 0;
        z-index: 1000;
        background: white;
        width: 100%;
    
        display: flex;
        flex-direction: row;              /* horizontal layout */
        justify-content: space-between;  /* logo left, nav right */
        align-items: center;
    
        padding: 20px 40px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    
}


/* Home page */
.home .header {
    position: sticky;
    top: 0;
    justify-content: center;
    background: white;
    z-index: 1000;
}


.inner-page .header {
    justify-content: space-between;
}

.home .header {
    justify-content: space-between;
}

/* Navigation style */
.nav a {
    margin: 0 20px;
    text-decoration: none;
    color: black;
    font-size: 16px;
}


/* Logo style */
.logo {
    font-size: 40px;
    letter-spacing: 8px;   /* very important */
    font-weight: 300;      /* thin = elegant */
    text-transform: uppercase;
}
.hero{
    padding: 50px 10px 20px;   
}
/* HERO IMAGE */
.hero img {
    height: 200px;     
    width: auto;
    object-fit: contain;
}

.intro-section {
    background-color: #cecdca; 
    padding: 100px 20px;
    display: flex;
    align-items: center;     /* vertical centering */
    justify-content: center; /* horizontal centering */
}
.intro-section h2 {
    margin-top: 0;
}

.whiteAtIntro {
    display: block;       
    min-height: 60vh;
    padding: 0 80px;
}

.introContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

    max-width: 1200px;   /* ✅ IMPORTANT */
    width: 100%;
    margin: 0 auto;  
}

.textintro {
    flex: 1;
    min-width: 300px;
}

.textintro h2 {
    white-space: nowrap;
}

.introim {
    flex: 1;
    display: flex;
    justify-content: flex-end;   /* ✅ pushes image to the right */
}

.introim img {
    width: 600px;
    height: 400px;
    object-fit:fill;
    border-radius: 20px;
    margin-left: auto;
}

/* Text styling */
.textintro h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.textintro p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Button */
.btn {
    display: inline-block;
    padding: 14px 30px;
    background: black;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 15px;
}

.btn:hover {
    background-color: #0c0800a9; /* 👈 visible hover color */
    color: white;              /* 👈 contrast so text stays readable */
}

.featured {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
}


/* HERO SECTION */
section {
    text-align: center;
    padding: 0 80px;
}

section > div {
    margin-bottom: 50px; /* adjust value as needed */
}

/* Section title */
section h1 {
    font-size: 40px; /* smaller than default, adjust as needed */
    margin-bottom: 30px; /* space between h1 and first div */
}

/* Product titles */
section h3 {
    font-size: 28px; /* bigger than default */
    margin-bottom: 15px; /* space between title and image */
}

section a {
    display: inline-block; /* keeps it like a button */
    margin-top: 40px;      /* space above the button */
    padding: 12px 25px;    /* nice padding */
    border-radius: 6px;
    background-color: black;
    color: white;
    text-decoration: none;
}
section a:hover{
    background-color: #0c0800a9; /* 👈 visible hover color */
    color: white;  

}

section {
    text-align: center;
    padding: 50px 20px 80px 20px; /* top, right, bottom, left */
}
.features {
    display: flex;
    justify-content: center; /* centered layout */
    gap: 60px;
    margin-top: 50px;
}

.features div {
    max-width: 250px;
    text-align: center;
}
.why {
    padding: 80px 20px;
}

.why h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: rgb(9, 0, 0);
    background-color: #f7f3f3;
    padding: 10px 20px;
    border-radius: 5px;
}

a:hover {
    background-color: #fdfbfb;
}

.footer-content {
    display: flex;
    justify-content: space-between; /* left & right */
    align-items: center; /* vertically aligned */
}

footer {
    display: flex;                    /* 👈 important */
    justify-content: space-between;  /* left & right */
    align-items: center;
    padding: 20px 40px;
    background: #080000;
    color: white;
}

footer a {
    color: white;
    background: none;
    text-decoration: underline;
}

footer p {
    font-size: 14px;
}

.footer-left p {
    margin: 5px 0;
}

.footer-right a {
    margin-left: 15px;
    font-size: 20px;
    text-decoration: none;
}
footer a:hover {
    color: #050300b3;   /* 👈 any visible color (gold/orange looks nice) */
}

footer a,
footer a:visited {
    color: white;
}

footer a:hover {
    color: #888;
}

.footer-right i {
    color: inherit;
}

.nav a:hover {
    color: #888;
}

.review-btn {
    border: 1px solid white;
    padding: 6px 12px;
    margin-right: 15px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.review-btn:hover {
    background-color: #888;
    color: black;
    border-color: #888;
}


h1 {
    font-size: 100px;
}
.container{
    width: 100%;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background: #f9f9f9;
    text-align: center;
}
.title {
    font-size: 50px;
    display: block;
    width: 100%;
    text-align: center;
}
.swiper {
    width:500px;
    height:350px;

}

.swiper-wrapper{
    width: auto;
    height: auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 75%;
    object-fit: contain;
   
}

.swiper-button-prev,
.swiper-button-next {
    width:30px;
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
}


.swiper .swiper-button-prev, .swiper .swiper-button-next {
    color:rgb(0, 5, 9);
}
.swiper .swiper-pagination {
    bottom: 5px;
    color: #333;
    background-color: rgba(0, 5, 9, 0); 
}
p strong {
    font-size: 22px;
    color: #333;
}
p {
    max-width: 500px;
}
ul {
    width: fit-content;      /* makes the list only as wide as needed */
    margin: 0 auto;          /* centers the whole list */
    text-align: left;        /* keeps text aligned properly */
    padding-left: 20px;      /* ensures bullets look correct */
}
.description {
    width: 60%;              /* controls text width */
    margin: 0 auto;          /* centers the block */
    text-align: justify;     /* justifies text */
    line-height: 1;        /* makes it more readable */
    
}
.contact-container {
    max-width: 800px;
    margin: auto;
    padding: 50px 20px;
    text-align: center;
}

.contact-container h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.intro {
    margin-bottom: 30px;
    color: #555;
    text-align:justify;

}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 12px;
    background: black;
    color: white;
    border: none;
    cursor: pointer;
}

.contact-info,
.hours,
.social,
.cta {
    margin-bottom: 20px;
    text-align: justify;
}

.cta {
    background: #f5f5f5;
    padding: 20px;
    border-radius:20%;
    text-align: justify;
}
.about-container {
    max-width: 900px;
    margin: auto;
    padding: 50px 20px;
    text-align:left;
}

.about-container h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.about-container h2 {
    font-size: 28px;
    margin-bottom: 15px;
    margin-top: 40px;
}

.about-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #050505;
    margin-bottom: 20px;
    text-align: justify;
}

.why-choose ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    display: inline-block; /* centers the list in the page */
    margin-bottom: 30px;
}

.why-choose li {
    margin-bottom: 10px;
    font-size: 16px;
}

.cta {
    background: #f5f5f5;
    padding: 20px 30px;
    margin-top: 40px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
}

#success-message {
    background: #e0ffe0;
    border: 1px solid #4CAF50;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    text-align: center;
}

/* Center everything only on reviews page */
.reviews-page {
    text-align: center;
}

/* Bigger title */
.reviews-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

/* Centered form box */
.reviews-page .review-form {
    width: 450px;
    margin: 0 auto;
    padding: 25px;
    border-radius: 12px;
    background-color: #f9f9f9;
}

/* Inputs */
.reviews-page .review-form input,
.reviews-page .review-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
}

/* Button */
.reviews-page .review-form button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
.reviews-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* full screen height */
}
.reviews-content {
    flex: 1; /* takes remaining space */
}

#showAllBtn {
    margin: 20px;
    padding: 10px 20px;
    cursor: pointer;
}