* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* font-family{
    font-family: "Roboto", sans-serif;
    font-family: "Orbitron", sans-serif;
    font-family: 'Montserrat', sans-serif;
} */

html {
    scroll-behavior: smooth;
}

img {
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

.Info-section {
    width: 100%;
    height: auto;
    display: flex;
    background-color: #0A0A0A;
    color: #FFFFFF;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
}

.Info-section svg {
    fill: #D4AF37 !important;
    width: 20px;
    height: 25px;
}

.right-side-info {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.right-side-info span {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.left-side-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.left-side-info svg {
    width: 27px;
    height: 27px;
}

header {
    background-color: #FFFFFF;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    border-bottom: 1px solid gray;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-logo {
    display: flex;
    gap: 15px;
    width: auto;
    align-items: center;
    font-family: "Orbitron", sans-serif;
}

.header-logo-div {
    width: 60px;
    height: 60px;
}

.header-logo h1 {
    font-size: 24px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #D4AF37 56%, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.header-logo p {
    font-size: 20px;
    letter-spacing: 5px;
}

.navbar ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li {
    position: relative;
}

nav ul li a {
    position: relative;
    text-decoration: none;
    display: inline-flex;
    gap: 5px;
    align-items: center;
    transition: all .3s ease-in-out;
}

nav ul li a::before {
    position: absolute;
    content: "";
    bottom: -10px;
    left: 0;
    height: 0%;
    width: 0%;
    transition: all .3s ease-in-out;
}

nav ul li a:hover::before {
    height: 2px;
    width: 100%;
    background-color: #D4AF37;
}

nav ul li a:hover {
    color: #D4AF37;
}

nav ul li a svg {
    width: 15px;
}

.active-home a {
    color: #D4AF37 !important;
    position: relative;
}

.active-home svg {
    fill: #D4AF37 !important;
}

.active-home a::before {
    content: none;
}

.active-home a::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #D4AF37;
}

.nav-logo,
.nav-footer {
    display: none;
}

.pages-link {
    display: flex;
    gap: 15px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.pages-link a {
    color: #000000;
}

.pages-button {
    padding: 10px 20px;
    background-color: #000000;
    border-radius: 5px;
    color: #D4AF37;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .3s ease-in-out;
}

.pages-button:hover {
    color: #000000;
    background-color: #D4AF37;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: #000000;
    border-radius: 10px;
    transition: all 0.3s ease;
}


/* ---------------------------------------------------------------------------------------------------------------------------
     HOME HERO SECTION
-------------------------------------------------------------------------------------------------------------------------- */
.home-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url("./images/home-hero-background-img.png");
    background-position: -0px 0px 0px 0px;
    background-repeat: no-repeat;
    padding: 30px;
    background-size: cover;
    color: white;
}

.home-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.home-hero-content h1 {
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
    background: linear-gradient(90deg,
            #D4AF37 0%,
            #D4AF37 75%,
            #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.home-hero-content h2 {
    font-size: 28px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 30px;
}

.home-hero-cta {
    display: flex;
    gap: 30px;
}

.home-hero-cta a {
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    background-color: #D4AF37;
    color: #0A0A0A;
    font-weight: 600;
    transition: all .3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.home-hero-cta-book {
    background-color: #FFFFFF !important;
    color: #000000 !important;
}

.home-hero-cta a:hover {
    background: linear-gradient(120deg, #D4AF37 30%, #FFFFFF);
}

/* --------------------------------------------------------------------------------------------------------------------------------
WHY CHOOSE US
-------------------------------------------------------------------------------------------------------------------------------- */
.home-why-choose-us {
    width: 100%;
    padding: 100px 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
}

.home-why-choose-us-left-content {
    width: 48%;
    background-image: url("images/why-choose-us-img2.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-why-choose-us-right-content {
    width: 48%;
}

.why-choose-us-head {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px !important;
    background: linear-gradient(120deg,
            #D4AF37 0%,
            #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.why-choose-us-info {
    display: flex;
    flex-wrap: wrap;
    row-gap: 25px;
    justify-content: space-between;
    margin-top: 40px;
}

.why-choose-us-info div {
    width: 48%;
    box-shadow: rgba(216, 214, 214, 0.79) 0px 0px 5px;
    padding: 15px;
    border-radius: 10px;
    min-height: 140px;
}

.why-choose-us-info h1 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.why-choose-us-info p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    color: rgb(52, 52, 52);
}

.why-choose-us-button {
    margin-top: 40px;
    display: block;
    padding: 15px 20px;
    width: fit-content;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    background-color: #D4AF37;
    color: #0A0A0A;
    font-weight: 600;
    transition: all .3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.why-choose-us-button:hover {
    background: linear-gradient(120deg, #D4AF37 30%, #FFFFFF);
}

/* --------------------------------------------------------------------------------------------------------------------------------
PRODUCT SECTION
-------------------------------------------------------------------------------------------------------------------------------- */
.product-highlight {
    background-color: #0A0A0A;
    color: white;
    padding: 100px 50px;
    width: 100%;
}

.product-highlight-head {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-highlight-head h1 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    width: max-content;
    background: linear-gradient(90deg,
            #D4AF37 0%,
            #D4AF37 75%,
            #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.product-highlight-head p {
    color: white;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    width: 650px;
    text-align: center;
    margin-bottom: 70px;
}

.product-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 35px;
}

.product-card {
    width: 29%;
    color: #000000;
    border-radius: 20px;
    min-height: 550px;
    overflow: hidden;
    box-shadow: 0px 0px 15px white;
    padding: 20px;
    color: #FFFFFF;
    position: relative;
    transition: all .3s ease-in-out;
}

.product-card:hover {
    box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.658);
    margin-top: 10px;
}

.product-card:hover img {
    width: 105%;
    height: 105%;
    transition: all .5s ease-in-out;
}

.product-card-img {
    height: 300px;
    overflow: hidden;
    border: 1px solid gray;
    border-radius: 20px;
}

.product-card h1 {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    margin: 20px 0px;
}

.product-card h2 {
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    margin: 30px 0px;
    color: #d5d4d4;
}

.product-card p {
    position: absolute;
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between !important;
    bottom: 25px;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
}

.product-card p span {
    display: block;
    color: #D4AF37;
}

.product-button {
    margin-top: 40px;
    display: flex;
    justify-self: end;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    background-color: #D4AF37;
    color: #0A0A0A;
    font-weight: 600;
    transition: all .3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.product-button:hover {
    background: linear-gradient(120deg, #D4AF37 30%, #FFFFFF);
}

/* ---------------------------------------------------------------------------------------------------------------
INSTALLATION STEP
--------------------------------------------------------------------------------------------------------------- */
.installation-step {
    width: 100%;
    padding: 100px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.installation-step-head {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.installation-step-head h1 {
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    background: linear-gradient(90deg,
            #D4AF37 0%,
            #D4AF37 75%,
            #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.installation-step-head p {
    color: #000000;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    text-align: center;
    margin-bottom: 70px;
}

.installation-step-buttton {
    margin-top: 40px;
    display: block;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    background-color: #D4AF37;
    color: #0A0A0A;
    font-weight: 600;
    transition: all .3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.installation-step-buttton:hover {
    background: linear-gradient(120deg, #D4AF37 30%, #FFFFFF);
}

.installation-step-container {
    width: 48%;
}

.installation-step-content {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: calc(100% - 96%);
    justify-content: center;
}

.installation-step-box {
    width: 48%;
    box-shadow: rgba(216, 214, 214, 0.79) 0px 0px 5px;
    min-height: 250px;
    padding: 20px;
    border-radius: 15px;
}

.installation-step-icon {
    width: 60px;
    height: 60px;
    padding: 10px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid black;
    margin-bottom: 15px;
}

.installation-step-icon svg {
    fill: #D4AF37;
}

.installation-step-box h1 {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.installation-step-box p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    color: rgb(52, 52, 52);
}

/* ---------------------------------------------------------------------------------------------------------------
   DISTINCTION SECTION
--------------------------------------------------------------------------------------------------------------- */
.distinction-section {
    background-color: #0A0A0A;
    color: white;
    padding: 100px 50px;
    width: 100%;
}

.distinction-section-head {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.distinction-section-head h1 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    width: max-content;
    background: linear-gradient(90deg,
            #D4AF37 0%,
            #D4AF37 75%,
            #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.distinction-section-head p {
    color: white;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    width: 650px;
    text-align: center;
    margin-bottom: 70px;
}

.distinction-section-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 35px;
}

.distinction-section-box {
    width: 29%;
    color: #000000;
    border-radius: 20px;
    /* min-height: 550px; */
    overflow: hidden;
    box-shadow: 0px 0px 15px white;
    padding: 20px;
    color: #FFFFFF;
    position: relative;
    transition: all .3s ease-in-out;
}

.distinction-section-icon {
    width: 60px;
    display: flex;
    align-self: center;
    justify-self: center;
    margin: 30px 0px;
}

.distinction-section-icon svg {
    fill: #D4AF37;
}

.distinction-section-box h1 {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    margin: 20px 0px;
    text-align: center;
}

.distinction-section-box p {
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    margin: 30px 0px;
    color: #d5d4d4;
    text-align: center;
}

/* ---------------------------------------------------------------------------------------------------------------
TESTIMONIAL SECTION
--------------------------------------------------------------------------------------------------------------- */
.testimonial-section {
    padding: 100px 50px;
    background-color: #f7f7f7;
    position: relative;
    overflow: hidden;
}

.testimonial-section h1 {
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    width: fit-content;
    margin: auto;
    background: linear-gradient(90deg,
            #D4AF37 0%,
            #D4AF37 75%,
            #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center
}

.testimonial-subtitle {
    color: #000000;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    width: 650px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 70px;
    margin: auto;
}

.carousel {
    margin-top: 70px;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    min-width: 300px;
    margin: 0 15px;
    flex: 0 0 300px;
    text-align: center;
}

.testimonial-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    margin-bottom: 10px;
}

.testimonial-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.stars {
    color: #D4AF37;
    font-size: 18px;
    margin: 10px 0;
}

/* ----------- Carousel Navigation ----------- */
.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.carousel-btn {
    background-color: #000;
    color: #D4AF37;
    border: none;
    padding: 10px 15px;
    margin: 0 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background-color: #D4AF37;
    color: #000;
}

/* ----------- Trust Bar ----------- */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    color: #555;
    font-size: 14px;
}

.trust-bar div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-bar i {
    color: #D4AF37;
}

/* ----------- CTA ----------- */
.testimonial-cta {
    text-align: center;
    margin-top: 20px;
}

.testimonial-cta p {
    color: #333;
    font-size: 18px;
}

.cta-btn {
    background-color: #D4AF37;
    color: #000;
    border: none;
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 40px;
    transition: all 0.3s ease-in-out;
}

.cta-btn:hover {
    background: linear-gradient(120deg, #D4AF37 30%, #FFFFFF);
}

@media (max-width: 768px) {
    .carousel {
        justify-content: center;
    }

    .testimonial-card {
        flex: 0 0 90%;
        margin: 0 10px;
    }
}

/* ---------------------------------------------------------------------------------------------------------------
CTA BANNER
--------------------------------------------------------------------------------------------------------------- */

.final-cta-banner {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.85)),
        url('https://images.unsplash.com/photo-1581090700227-3a41e90a2d4b?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;

    margin-bottom: 20px;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    width: max-content;
    margin: auto;
    background: linear-gradient(90deg,
            #D4AF37 0%,
            #D4AF37 75%,
            #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.cta-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #e0e0e0;
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* flex-wrap: wrap; */
}

.cta-btn {
    display: inline-block;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

.gold-btn {
    background-color: #D4AF37;
    color: #000;
}

.gold-btn:hover {
    background-color: #000;
}

.outline-btn {
    border: 2px solid #D4AF37;
    color: #D4AF37;
    background: transparent;
}

.outline-btn:hover {
    background-color: #D4AF37;
    color: #000;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
}

/* ---------------------------------------------------------------------------------------------------------------
FOOTER
--------------------------------------------------------------------------------------------------------------- */
.site-footer {
    background-color: #000;
    color: #ccc;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 60px 50px;
    border-bottom: 1px solid #222;
}

.footer-logo {
    display: flex;
    gap: 15px;
    width: auto;
    align-items: center;
    margin-bottom: 10px;
    /* font-family: "Orbitron", sans-serif; */
}

.footer-logo-div {
    width: 60px;
    height: 60px;
}

.footer-logo h1 {
    width: auto;
    font-size: 20px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(120deg, #D4AF37 56%, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 5px;
}

.footer-logo p {
    font-size: 20px;
    letter-spacing: 2px;

}

.footer-column h3,
.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    color: #D4AF37;
    margin-bottom: 15px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #D4AF37;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links img {
    width: 28px;
    height: 28px;
    filter: grayscale(100%) brightness(80%);
    transition: 0.3s;
}

.social-links img:hover {
    filter: none;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding: 20px 10px;
    background-color: #0d0d0d;
    font-size: 13px;
    color: #aaa;
}

.footer-bottom a {
    color: #D4AF37;
    text-decoration: none;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* --------------------------------------------------------------------------------------------------------------
   ABOUT PAGE
-------------------------------------------------------------------------------------------------------------- */

.about-hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url("./images/about-page/hero-img.webp");
    background-position: -0px 0px 0px 0px;
    background-repeat: no-repeat;
    padding: 30px;
    background-size: cover;
    color: white;
}

.about-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.about-hero-content h1 {
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
    background: linear-gradient(90deg,
            #D4AF37 0%,
            #D4AF37 75%,
            #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-hero-content h2 {
    font-size: 28px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 30px;
}

.about-mission-vision {
    background-color: #0A0A0A;
    color: white;
    padding: 100px 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.about-mv {
    width: 48%;
}

.about-mv h1 {
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    width: max-content;
    background: linear-gradient(90deg, #D4AF37 0%, #D4AF37 75%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-mv p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
}

.about-story {
    background-color: white;
    padding: 100px 50px;
    width: 100%;
}

.about-story-head {
    margin-bottom: 70px;
}

.about-story-head h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    width: fit-content;
    margin: auto;
    background: linear-gradient(90deg, #D4AF37 0%, #D4AF37 75%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.about-story-box {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 30px;
    align-items: center;
}

.reverse {
    flex-direction: row-reverse;
}

.about-story-img {
    width: 47%;
    height: 60vh;
    border-radius: 30px;
    overflow: hidden;
}

.about-story-content {
    width: 48%;
}

.about-story-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px !important;
    background: linear-gradient(120deg, #D4AF37 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    color: transparent;
}

.about-story-content p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: rgb(52, 52, 52);
}

.about-why {
    background-color: #0A0A0A;
    color: white;
    padding: 100px 50px;
    width: 100%;
}

.about-why-head {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin: auto;
    margin-bottom: 70px;
    width: max-content;
    background: linear-gradient(90deg, #D4AF37 0%, #D4AF37 75%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-why-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-why-content {
    width: 23%;
    color: #000000;
    border-radius: 20px;
    /* min-height: 550px; */
    overflow: hidden;
    box-shadow: 0px 0px 15px white;
    padding: 20px;
    color: #FFFFFF;
    position: relative;
    transition: all .3s ease-in-out;
}

.about-why-content:hover {
    box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.658);
    margin-top: 10px;
}

.about-why-icon {
    width: 60px;
    display: flex;
    align-self: center;
    justify-self: center;
    margin: 30px 0px;
}

.about-why-icon svg {
    fill: #D4AF37;
}

.about-why-content h1 {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    margin: 20px 0px;
    text-align: center;
}

.about-why-content p {
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    margin: 30px 0px;
    color: #d5d4d4;
    text-align: center;
}

.about-cta-banner {
    background: linear-gradient(to right, #D4AF37, white);
    color: #fff;
    padding: 100px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-cta-content {
    width: 48%;
}

.about-cta-img {
    width: 45%;
    border-radius: 30px;
    overflow: hidden;
    /* height: 50vh; */
}

.about-cta-content h1 {
    font-size: 32px;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    margin-bottom: 30px;
}

.about-cta-content p {
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    color: rgb(52, 52, 52);
}

.about-cta-button {
    display: flex;
    gap: 20px;
}

.about-cta-button a {
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 16px;
    background-color: #fff;
    color: #0A0A0A;
    font-weight: 600;
    transition: all .3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.about-cta-button a:hover {
    background: linear-gradient(120deg, #000 30%, #FFFFFF);
    color: white;
}

/* --------------------------------------------------------------------------------------------------------------
   SHOP PAGE
-------------------------------------------------------------------------------------------------------------- */

.shop-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url("./images/shop-photo.jpg");
    background-position: -0px 0px 0px 0px;
    background-repeat: no-repeat;
    padding: 30px;
    background-size: cover;
    color: white;
}

.shop-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.shop-hero h1 {
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
    width: fit-content;
    background: linear-gradient(90deg,
            #D4AF37 0%,
            #D4AF37 75%,
            #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
    margin-top: 40px;
    /* max-width: 700px; */
    z-index: 20;
}

.shop-hero p {
    font-size: 28px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 30px;
    position: relative;
    /* margin-top: 40px; */
    max-width: 700px;
    z-index: 20;
}

/* ===== FILTER BAR ===== */
.filter-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
    background: #f9f9f9;
}

.filter-btn {
    background: #000;
    color: #D4AF37;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: #D4AF37;
    color: #000;
}

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
    padding: 100px 80px;
    width: 100%;
}

.product-box {
    background: #fff;
    border: 1px solid #eee;
    width: 30%;
    border-radius: 16px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.531);
    /* text-align: center; */
    padding: 20px;
    transition: all 0.3s ease-in-out;
}

.product-box:hover {
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.531);
}

.product-box.hide {
    display: none !important;
    /* FIX: removes the element from layout completely */
}

.product-box img {
    width: 100%;
    height: 250px;
    /* object-fit: contain; */
    border-radius: 20px;
    overflow: hidden;
}

.product-box h3 {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    margin: 20px 0px;
}

.product-box p {
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    margin: 30px 0px;
    color: #555;
}

.price {
    display: block;
    color: #D4AF37;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 15px;
}

.shop-btn {
    background: #25D366;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

.shop-btn:hover {
    background: #128C7E;
}

/* ===== TRUST BANNER ===== */
.trust-banner {
    background: #111;
    color: #D4AF37;
    text-align: center;
    padding: 20px;
    font-size: 15px;
}

/* ===== CTA ===== */
.shop-cta {
    text-align: center;
    padding: 60px 20px;
    background: #f7f7f7;
}

.shop-cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-btn {
    background: #D4AF37;
    color: #000;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #000;
    color: #fff;
}

/* --------------------------------------------------------------------------------------------------------------
  SERVICE PAGE
-------------------------------------------------------------------------------------------------------------- */
.service-hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url("./images/about-page/about-story1.jpeg");
    background-position: -0px 0px 0px 0px;
    background-repeat: no-repeat;
    padding: 30px;
    background-size: cover;
    color: white;
}

.service-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.service-hero-content h1 {
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
    background: linear-gradient(90deg,
            #D4AF37 0%,
            #D4AF37 75%,
            #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.service-hero-content h2 {
    font-size: 25px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 30px;

}

.service-why-section {
    background-color: #0A0A0A;
    color: white;
    padding: 100px 50px;
    width: 100%;
}

.service-why-head h1 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    width: max-content;
    background: linear-gradient(90deg, #D4AF37 0%, #D4AF37 75%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin: auto;
    margin-bottom: 70px;
}

.service-why-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 35px;
}

.service-why-content {
    width: 45%;
    color: #000000;
    border-radius: 20px;
    /* min-height: 550px; */
    overflow: hidden;
    box-shadow: 0px 0px 20px white;
    padding: 30px 50px;
    color: #FFFFFF;
    position: relative;
    transition: all .3s ease-in-out;
}

.service-why-content h1 {
    font-size: 27px;
    font-family: 'Montserrat', sans-serif;
    margin: 20px 0px;
    text-align: center;
}

.service-why-content p {
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    margin: 30px 0px;
    color: #d5d4d4;
    text-align: center;
}


.installation-overview-section {
    width: 100%;
    padding: 100px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.installation-overview-head {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.installation-overview-head a {
    display: block;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    font-size: 16px;
    background-color: #D4AF37;
    color: #0A0A0A;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease-in-out;
    font-family: 'Montserrat', sans-serif;
}

.installation-overview-head h1 {
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    background: linear-gradient(90deg, #D4AF37 0%, #D4AF37 75%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.installation-overview-head p {
    color: #000000;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    text-align: center;
    margin-bottom: 40px;
}

.installation-overview-container {
    display: flex;
    flex-wrap: wrap;
    width: 48%;
    row-gap: 30px;
    column-gap: calc(100% - 96%);
    justify-content: center;
}

.installation-overview-content {
    width: 48%;
    box-shadow: rgba(216, 214, 214, 0.79) 0px 0px 5px;
    /* min-height: 250px; */
    padding: 20px;
    border-radius: 15px;
}

.installation-overview-content h1 {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
}

.installation-overview-content h2 {
    color: #555;
    font-size: 18px;
    text-align: center;
    line-height: 1.6;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
}

.installation-overview-content p {
    color: #D4AF37;
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
}

.service-step {
    background-color: #0A0A0A;
    color: white;
    padding: 100px 50px;
    width: 100%;
}

.service-step-head {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin: auto;
    margin-bottom: 70px;
    width: max-content;
    background: linear-gradient(90deg, #D4AF37 0%, #D4AF37 75%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.service-step-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 35px;
}

.service-step-content {
    width: 29%;
    color: #000000;
    border-radius: 20px;
    /* min-height: 550px; */
    overflow: hidden;
    box-shadow: 0px 0px 15px white;
    padding: 40px 20px;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    transition: all .3s ease-in-out;
}

.service-step-content h1 {
    color: #D4AF37;
    font-size: 40px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
}

.service-step-content h2 {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    margin: 20px 0px;
    text-align: center;
}

.service-step-content p {
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    color: #d5d4d4;
    text-align: center;
}

/* --------------------------------------------------------------------------------------------------------------
   BOOK NOW
-------------------------------------------------------------------------------------------------------------- */
.book-hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url("./images/bookus-page.jpeg");
    background-position: -0px 0px 0px 0px;
    background-repeat: no-repeat;
    padding: 30px;
    background-size: cover;
    color: white;
}

.book-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.book-hero-section .home-hero-cta {
    margin-top: 20px;
}

.book-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-self: flex-start;
}

.book-hero-content h1 {
    font-size: 48px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
    background: linear-gradient(90deg,
            #D4AF37 0%,
            #D4AF37 75%,
            #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.book-hero-content h2 {
    font-size: 25px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 30px;

}

.process {
    text-align: center;
    padding: 100px 50px;
    background-color: #fff;
}

.process h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin: auto;
    margin-bottom: 70px;
    width: max-content;
    background: linear-gradient(90deg, #D4AF37 0%, #D4AF37 75%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 35px;
}

.step {
    width: 29%;
    color: #000000;
    border-radius: 20px;
    /* min-height: 550px; */
    overflow: hidden;
    box-shadow: 0px 0px 15px rgb(63, 58, 58);
    padding: 40px 20px;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    transition: all .3s ease-in-out;
}

.step h3 {
    color: #D4AF37;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    margin: 20px 0px;
    text-align: center;
}

.step p {
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    text-align: center;
    color: black;
}

.form-section {
    background-color: #000;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.form-section h2 {
    color: #D4AF37;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    margin-bottom: 30px;
}

form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input,
select,
textarea {
    padding: 14px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

textarea {
    resize: vertical;
}

.submit-btn {
    background-color: #D4AF37;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: #fff;
    color: #000;
}

.after-submit {
    background-color: #fff;
    color: #333;
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
}

/* Scroll to Top Button Styles */
#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  font-size: 22px;
  background-color: #D4AF37; /* gold */
  color: #000; 
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px 20px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(200, 196, 196, 0.531);
  transition: all 0.3s ease;
  display: none; /* Hidden by default */
}

#scrollTopBtn:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.1);
}
#whatsappBtn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  display: none; /* Hidden by default */
  text-decoration: none;
}

#whatsappBtn img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#whatsappBtn img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}


/* --------------------------------------------------------------------------------------------------------------
  RESPONSIVENESS
-------------------------------------------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .Info-section {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 10px 20px;
        font-size: 13px;
    }

    .right-side-info,
    .left-side-info {
        gap: 10px;
    }

    header {
        padding: 10px 20px;
    }

    .header-logo h1 {
        font-size: 22px;
    }

    .header-logo p {
        font-size: 16px;
    }

    .navbar ul {
        gap: 20px;
    }

    .pages-link {
        gap: 10px;
        font-size: 15px;
    }

    .pages-button {
        padding: 8px 16px;
        font-size: 15px;
    }

    .home-hero-section {
        height: 90vh;
        padding: 25px;
        background-position: center center;
    }

    .home-hero-content {
        max-width: 600px;
        margin-top: 30px;
    }

    .home-hero-content h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .home-hero-content h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .home-hero-cta a {
        font-size: 15px;
        padding: 12px 25px;
    }

    .home-why-choose-us {
        flex-direction: row;
        padding: 80px 20px;
        gap: 30px;
    }

    .home-why-choose-us-left-content {
        width: 48%;
        height: 60vh;
    }

    .why-choose-us-head {
        font-size: 28px !important;
    }

    .why-choose-us-info div {
        width: 48%;
        min-height: 130px;
    }

    .why-choose-us-info h1 {
        font-size: 17px;
    }

    .why-choose-us-info p {
        font-size: 15px;
    }

    .product-highlight {
        padding: 80px 40px;
    }

    .product-highlight-head h1 {
        font-size: 28px;
    }

    .product-highlight-head p {
        width: 80%;
        font-size: 17px;
    }

    .product-card {
        width: 45%;
        min-height: 500px;
    }

    .product-card h1 {
        font-size: 18px;
    }

    .product-card h2,
    .product-card p {
        font-size: 14px;
    }

    .installation-step {
        flex-direction: column;
        text-align: center;
        padding: 80px 40px;
    }

    .installation-step-head,
    .installation-step-container {
        width: 90%;
    }

    .installation-step-head h1 {
        font-size: 28px;
    }

    .installation-step-head p {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .installation-step-content {
        column-gap: 20px;
    }

    .installation-step-box {
        width: 45%;
    }

    .distinction-section {
        padding: 80px 40px;
    }

    .distinction-section-head h1 {
        font-size: 28px;
    }

    .distinction-section-head p {
        font-size: 17px;
        width: 80%;
    }

    .distinction-section-box {
        width: 45%;
        /* 2 columns instead of 3 */
    }

    .distinction-section-box h1 {
        font-size: 18px;
    }

    .distinction-section-box p {
        font-size: 14px;
    }

    testimonial-section {
        padding: 80px 40px;
    }

    .testimonial-section h1 {
        font-size: 28px;
    }

    .testimonial-subtitle {
        width: 80%;
        font-size: 17px;
        margin-bottom: 60px;
    }

    .carousel {
        margin-top: 60px;
    }

    .testimonial-card {
        flex: 0 0 280px;
        min-width: 280px;
        padding: 25px;
        margin: 0 10px;
    }

    .testimonial-card p {
        font-size: 14px;
    }

    .cta-btn {
        font-size: 15px;
        padding: 10px 22px;
    }

    .final-cta-banner {
        padding: 80px 40px;
        background-position: center center;
    }

    .cta-content h2 {
        font-size: 32px;
        width: auto;
    }

    .cta-content p {
        font-size: 17px;
        max-width: 650px;
    }

    .cta-buttons {
        gap: 16px;
    }

    .cta-btn {
        padding: 12px 28px;
        font-size: 15px;
    }

    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        padding: 50px 40px;
    }

    .footer-logo-div {
        width: 55px;
        height: 55px;
    }

    .footer-logo h1 {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .footer-logo p {
        font-size: 18px;
    }

    .footer-column h3,
    .footer-column h4 {
        font-size: 17px;
    }

    .footer-column p,
    .footer-column ul li {
        font-size: 13px;
    }

    .social-links img {
        width: 26px;
        height: 26px;
    }

    .about-hero-content h1 {
        font-size: 40px;
    }

    .about-hero-content h2 {
        font-size: 24px;
    }

    .about-mission-vision {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
        padding: 80px 40px;
    }

    .about-mv {
        width: 100%;
    }

    .about-story-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-story-img,
    .about-story-content {
        width: 100%;
        height: auto;
    }

    .about-why-content {
        width: 45%;
        margin-bottom: 40px;
    }

    .about-cta-banner {
        flex-direction: column;
        text-align: center;
    }

    .about-cta-content,
    .about-cta-img {
        width: 100%;
    }

    .about-cta-button {
        justify-content: center;
    }

    .shop-hero {
        height: 70vh;
        padding: 20px;
        background-position: center;
    }

    .shop-hero h1 {
        font-size: 40px;
        margin-top: 30px;
    }

    .shop-hero p {
        font-size: 22px;
        max-width: 600px;
    }

    .product-grid {
        padding: 80px 40px;
        gap: 25px;
    }

    .product-box {
        width: 45%;
    }

    .service-hero-content h1 {
        font-size: 40px;
    }

    .service-hero-content h2 {
        font-size: 22px;
    }

    .service-why-content {
        width: 48%;
        padding: 25px 30px;
    }

    .installation-overview-section {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .installation-overview-head,
    .installation-overview-container {
        width: 90%;
        text-align: center;
    }

    .installation-overview-content {
        width: 45%;
    }

    .service-step-content {
        width: 45%;
        padding: 30px 20px;
    }

    .book-hero-section {
        height: 70vh;
        padding: 25px;
        background-position: center;
    }

    .book-hero-content {
        margin-top: 30px;
        max-width: 600px;
    }

    .book-hero-content h1 {
        font-size: 40px;
    }

    .book-hero-content h2 {
        font-size: 22px;
    }

    .process {
        padding: 80px 40px;
    }

    .process h2 {
        font-size: 30px;
        width: 100%;
    }

    .step {
        width: 45%;
        padding: 30px 20px;
    }

    .step h3 {
        font-size: 18px;
    }

    .step p {
        font-size: 14px;
    }

    form {
        max-width: 600px;
    }
}

/* --- Tablets (≤768px) --- */
@media (max-width: 768px) {
    .Info-section {
        display: none;
    }

    header {
        /* flex-direction: column;
        align-items: flex-start; */
        padding: 15px;
    }

    .header-logo {
        justify-content: space-between;
        /* width: 100%; */
    }

    .navbar ul {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 10px 0;
    }

    .pages-link {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        margin-top: 50px;
    }

    .pages-link li {
        border-bottom: 1px solid rgba(128, 128, 128, 0.37);
        padding-bottom: 10px;
    }

    .pages-button {
        align-self: flex-start;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 65%;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        align-items: center;
        padding: 20px;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .navbar.active {
        right: 0;
    }

    .navbar ul {
        flex-direction: column;
        gap: 25px;
        padding: 0;
    }

    nav ul li a::before {
        content: none;
    }

    .active-home a::after {
        content: none;
    }

    .navbar a {
        font-size: 18px;
        color: #000000;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .navbar a:hover {
        color: #D4AF37;
    }

    .pages-button {
        background-color: #D4AF37;
        color: #000;
        border: none;
        padding: 12px 24px;
        margin-top: 20px;
        font-weight: 600;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .pages-button:hover {
        background-color: #000;
        color: #D4AF37;
    }

    /* Hamburger animation when active */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .home-hero-section {
        height: auto;
        padding: 40px 20px 60px;
        text-align: center;
    }

    .home-hero-content {
        align-items: center;
        margin: 0 auto;
    }

    .home-hero-content h1 {
        font-size: 34px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .home-hero-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .home-hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .home-hero-cta a {
        width: 80%;
        font-size: 15px;
    }

    .home-why-choose-us {
        flex-direction: column;
        padding: 70px 20px;
        align-items: center;
    }

    .home-why-choose-us-left-content {
        width: 100%;
        height: 50vh;
        border-radius: 20px;
    }

    .home-why-choose-us-right-content {
        width: 100%;
        margin-top: 40px;
        text-align: center;
    }

    .why-choose-us-head {
        font-size: 26px !important;
    }

    .why-choose-us-info {
        justify-content: center;
        gap: 20px;
    }

    .why-choose-us-info div {
        width: 80%;
    }

    .why-choose-us-info h1 {
        font-size: 16px;
    }

    .why-choose-us-info p {
        font-size: 15px;
    }

    .why-choose-us-button {
        width: 80%;
        margin: 30px auto 0;
    }

    .product-highlight {
        padding: 70px 30px;
    }

    .product-highlight-head h1 {
        font-size: 26px;
    }

    .product-highlight-head p {
        width: 90%;
        font-size: 16px;
        margin-bottom: 50px;
    }

    .product-cards {
        justify-content: center;
        gap: 25px;
    }

    .product-card {
        width: 80%;
        min-height: 480px;
    }

    .product-card h1 {
        font-size: 18px;
    }

    .product-card h2 {
        font-size: 14px;
    }

    .product-button {
        font-size: 15px;
        padding: 12px 18px;
    }

    .installation-step {
        flex-direction: column;
        padding: 70px 25px;
        gap: 50px;
    }

    .installation-step-head {
        width: 100%;
    }

    .installation-step-head h1 {
        font-size: 26px;
    }

    .installation-step-head p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .installation-step-container {
        width: 100%;
    }

    .installation-step-content {
        flex-direction: column;
        align-items: center;
    }

    .installation-step-box {
        width: 80%;
        margin-bottom: 20px;
    }

    .distinction-section {
        padding: 60px 30px;
    }

    .distinction-section-head h1 {
        font-size: 24px;
    }

    .distinction-section-head p {
        font-size: 16px;
        width: 90%;
        margin-bottom: 50px;
    }

    .distinction-section-content {
        justify-content: center;
    }

    .distinction-section-box {
        width: 80%;
        /* single centered column */
        margin-bottom: 30px;
    }

    .distinction-section-icon {
        width: 50px;
    }

    .testimonial-section {
        padding: 70px 30px;
    }

    .testimonial-section h1 {
        font-size: 26px;
        text-align: center;
    }

    .testimonial-subtitle {
        width: 90%;
        font-size: 16px;
        margin-bottom: 50px;
    }

    .carousel {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .testimonial-card {
        flex: 0 0 250px;
        scroll-snap-align: start;
        margin: 0 8px;
    }

    .carousel-controls {
        margin-top: 20px;
    }

    .trust-bar {
        flex-direction: column;
        gap: 10px;
        font-size: 13px;
    }

    .testimonial-cta p {
        font-size: 16px;
    }

    .final-cta-banner {
        padding: 70px 30px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 16px;
        max-width: 500px;
        margin-bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-btn {
        width: 80%;
        max-width: 280px;
        text-align: center;
        padding: 12px 0;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 40px 30px;
    }

    .footer-logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .footer-logo h1 {
        font-size: 17px;
        letter-spacing: 3px;
    }

    .footer-logo p {
        font-size: 16px;
    }

    .footer-column h3,
    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-column p,
    .footer-column ul li {
        font-size: 13px;
        line-height: 1.5;
    }

    .social-links {
        gap: 10px;
    }

    .social-links img {
        width: 24px;
        height: 24px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 15px 5px;
    }

    .about-hero-section {
        height: 70vh;
        padding: 20px;
        background-position: center;
    }

    .about-hero-content {
        margin-top: 30px;
        max-width: 90%;
        text-align: center;
    }

    .about-hero-content h1 {
        font-size: 34px;
    }

    .about-hero-content h2 {
        font-size: 20px;
    }

    .about-mission-vision {
        padding: 60px 30px;
        text-align: center;
    }

    .about-mv h1 {
        font-size: 26px;
        margin: auto;
        margin-bottom: 30px;
    }

    .about-mv p {
        font-size: 16px;
    }

    .about-story {
        padding: 70px 30px;
    }

    .about-story-head h1 {
        font-size: 28px;
    }

    .about-story-box {
        gap: 40px;
    }

    .about-story-content h1 {
        font-size: 26px !important;
        text-align: center;
    }

    .about-story-content p {
        text-align: center;
    }

    .about-why {
        padding: 80px 30px;
    }

    .about-why-head {
        font-size: 28px;
    }

    .about-why-content {
        width: 100%;
        margin-bottom: 30px;
    }

    .about-cta-banner {
        padding: 70px 30px;
        gap: 50px;
    }

    .about-cta-content h1 {
        font-size: 28px;
    }

    .about-cta-content p {
        font-size: 16px;
    }

    .about-cta-button a {
        font-size: 15px;
        padding: 12px 24px;
    }

    .shop-hero {
        height: 60vh;
        padding: 20px;
    }

    .shop-hero h1 {
        font-size: 32px;
        margin-top: 20px;
        text-align: center;
    }

    .shop-hero p {
        font-size: 18px;
        max-width: 500px;
        text-align: center;
    }

    .filter-bar {
        /* flex-direction: column; */
        align-items: center;
        gap: 10px;
    }

    .product-grid {
        justify-content: center;
        padding: 60px 30px;
    }

    .product-box {
        width: 80%;
        text-align: center;
    }

    .product-box img {
        height: 220px;
    }

    .shop-cta p {
        font-size: 16px;
    }

    .cta-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .service-hero-section {
        height: 70vh;
        padding: 20px;
    }

    .service-hero-content {
        margin-top: 30px;
        text-align: center;
        align-items: center;
    }

    .service-hero-content h1 {
        font-size: 34px;
    }

    .service-hero-content h2 {
        font-size: 20px;
    }

    .service-why-section {
        padding: 80px 30px;
    }

    .service-why-content {
        width: 100%;
    }

    .service-why-head {
        width: 100%;
    }

    .service-why-head h1 {
        width: 100%;
    }

    .installation-overview-section {
        flex-direction: column;
        align-items: center;
        padding: 80px 20px;
        gap: 50px;
    }

    .installation-overview-head,
    .installation-overview-container {
        width: 100%;
        text-align: center;
    }

    .installation-overview-content {
        width: 90%;
    }

    .service-step {
        padding: 80px 30px;
    }

    .service-step-head {
        width: 100%;
    }

    .service-step-container {
        justify-content: center;
        gap: 40px;
    }

    .service-step-content {
        width: 80%;
    }

    .book-hero-section {
        height: auto;
        padding: 40px 20px;
        text-align: center;
    }

    .book-hero-content {
        margin-top: 50px;
        max-width: 100%;
        align-items: center;
    }

    .book-hero-content h1 {
        font-size: 36px;
    }

    .book-hero-content h2 {
        font-size: 20px;
    }

    .steps {
        justify-content: center;
    }

    .step {
        width: 80%;
        margin-bottom: 30px;
    }

    .process {
        padding: 70px 20px;
    }

    .form-section {
        padding: 60px 15px;
    }

    form {
        width: 100%;
    }
}

/* --- Mobile Devices (≤480px) --- */
@media (max-width: 480px) {
    .Info-section {
        font-size: 12px;
        padding: 10px;
    }

    .Info-section svg {
        width: 18px;
        height: 20px;
    }

    header {
        padding: 10px;
    }

    .header-logo-div {
        width: 45px;
        height: 45px;
    }

    .header-logo h1 {
        font-size: 18px;
        text-align: left;
    }

    .header-logo p {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .navbar ul {
        gap: 10px;
        font-size: 14px;
    }

    .pages-link {
        flex-direction: column;
        gap: 8px;
        font-size: 14px;
        width: 100%;
    }

    .pages-button {
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 14px;
    }

    .left-side-info,
    .right-side-info {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }

    .home-hero-section {
        height: auto;
        padding: 30px 15px 50px;
        background-position: center top;
        background-size: cover;
    }

    .home-hero-content {
        width: 100%;
        text-align: center;
    }

    .home-hero-content h1 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .home-hero-content h2 {
        font-size: 18px;
        line-height: 1.4;
    }

    .home-hero-cta {
        flex-direction: column;
        gap: 12px;
    }

    .home-hero-cta a {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    .home-why-choose-us {
        flex-direction: column;
        padding: 60px 15px;
    }

    .home-why-choose-us-left-content {
        width: 100%;
        height: 45vh;
        border-radius: 15px;
    }

    .home-why-choose-us-right-content {
        width: 100%;
        margin-top: 30px;
    }

    .why-choose-us-head {
        font-size: 22px !important;
        text-align: center;
    }

    .why-choose-us-info {
        flex-direction: column;
        align-items: center;
    }

    .why-choose-us-info div {
        width: 100%;
        min-height: 120px;
    }

    .why-choose-us-info h1 {
        font-size: 15px;
    }

    .why-choose-us-info p {
        font-size: 14px;
    }

    .why-choose-us-button {
        width: 100%;
        padding: 14px 0;
        font-size: 15px;
    }

    .product-highlight {
        padding: 60px 20px;
    }

    .product-highlight-head h1 {
        font-size: 22px;
        text-align: center;
    }

    .product-highlight-head p {
        width: 100%;
        font-size: 15px;
        margin-bottom: 40px;
    }

    .product-card {
        width: 100%;
        min-height: 450px;
        padding: 15px;
    }

    .product-card-img {
        height: 250px;
    }

    .product-card h1 {
        font-size: 17px;
    }

    .product-card h2,
    .product-card p {
        font-size: 13px;
    }

    .product-button {
        font-size: 14px;
        padding: 10px 15px;
    }

    .installation-step {
        padding: 60px 20px;
    }

    .installation-step-head h1 {
        font-size: 22px;
    }

    .installation-step-head p {
        font-size: 15px;
    }

    .installation-step-buttton {
        padding: 12px 18px;
        font-size: 14px;
    }

    .installation-step-container {
        width: 100%;
    }

    .installation-step-box {
        width: 100%;
        padding: 15px;
    }

    .installation-step-icon {
        width: 50px;
        height: 50px;
    }

    .installation-step-box h1 {
        font-size: 17px;
    }

    .installation-step-box p {
        font-size: 14px;
    }

    .distinction-section {
        padding: 50px 20px;
    }

    .distinction-section-head h1 {
        font-size: 22px;
    }

    .distinction-section-head p {
        font-size: 15px;
        width: 100%;
        margin-bottom: 40px;
    }

    .distinction-section-box {
        width: 100%;
        padding: 15px;
    }

    .distinction-section-icon {
        width: 45px;
        margin: 20px 0;
    }

    .distinction-section-box h1 {
        font-size: 17px;
    }

    .distinction-section-box p {
        font-size: 13px;
    }

    .testimonial-section {
        padding: 60px 20px;
    }

    .testimonial-section h1 {
        font-size: 22px;
        line-height: 1.3;
    }

    .testimonial-subtitle {
        width: 100%;
        font-size: 15px;
        margin-bottom: 40px;
    }

    .carousel {
        margin-top: 40px;
        flex-direction: row;
        overflow-x: auto;
        gap: 15px;
    }

    .testimonial-card {
        flex: 0 0 220px;
        padding: 20px;
        margin: 0;
    }

    .testimonial-card h3 {
        font-size: 16px;
    }

    .testimonial-card p {
        font-size: 13px;
        line-height: 1.5;
    }

    .carousel-btn {
        padding: 8px 12px;
        font-size: 16px;
    }

    .testimonial-cta p {
        font-size: 15px;
    }

    .cta-btn {
        font-size: 14px;
        padding: 10px 20px;
        margin-top: 30px;
    }

    .final-cta-banner {
        padding: 60px 20px;
        background-position: top center;
    }

    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-btn {
        width: 100%;
        max-width: 260px;
        padding: 10px 0;
        font-size: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 35px 20px;
    }

    .footer-logo-div {
        width: 50px;
        height: 50px;
    }

    .footer-logo {
        align-items: center;
        text-align: center;
        justify-content: center;
        flex-direction: column;
    }

    .footer-logo h1 {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .footer-logo p {
        font-size: 15px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h3,
    .footer-column h4 {
        font-size: 15px;
    }

    .footer-column p,
    .footer-column ul li {
        font-size: 12px;
    }

    .social-links {
        justify-content: center;
        gap: 8px;
    }

    .social-links img {
        width: 22px;
        height: 22px;
    }

    .footer-bottom {
        font-size: 11px;
        padding: 15px 5px;
    }

    .about-hero-section {
        height: 60vh;
        padding: 15px;
    }

    .about-hero-content {
        margin-top: 20px;
        text-align: center;
        align-items: center;
    }

    .about-hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .about-hero-content h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .about-mission-vision,
    .about-story,
    .about-why,
    .about-cta-banner {
        padding: 50px 20px;
    }

    .about-story-head h1,
    .about-mv h1,
    .about-why-head,
    .about-cta-content h1 {
        font-size: 24px;
    }

    .about-mv p,
    .about-story-content p,
    .about-cta-content p,
    .about-why-content p {
        font-size: 14px;
    }

    .about-why-content {
        width: 100%;
        padding: 15px;
    }

    .about-cta-button {
        flex-direction: column;
        gap: 15px;
    }

    .about-cta-button a {
        width: 100%;
        font-size: 14px;
        padding: 10px 0;
    }

    .shop-hero {
        height: 55vh;
        padding: 15px;
        text-align: center;
    }

    .shop-hero h1 {
        font-size: 26px;
        margin-top: 15px;
    }

    .shop-hero p {
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto 20px;
    }

    .filter-bar {
        padding: 10px;
    }

    .filter-btn {
        width: 100%;
        max-width: 300px;
        padding: 10px;
        font-size: 14px;
    }

    .product-grid {
        flex-direction: column;
        padding: 40px 15px;
    }

    .product-box {
        width: 100%;
        padding: 15px;
    }

    .product-box img {
        height: 200px;
    }

    .product-box h3 {
        font-size: 18px;
    }

    .product-box p {
        font-size: 14px;
    }

    .price {
        font-size: 15px;
    }

    .shop-cta {
        padding: 40px 10px;
    }

    .shop-cta p {
        font-size: 15px;
    }

    .cta-btn {
        width: 100%;
        max-width: 250px;
        font-size: 14px;
        padding: 10px 0;
    }

    .trust-banner {
        font-size: 13px;
        padding: 15px;
    }

    .service-hero-section {
        height: auto;
        padding: 15px;
    }

    .service-hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .service-hero-content h2 {
        font-size: 18px;
    }

    .service-why-section {
        padding: 60px 20px;
    }

    .service-why-head h1 {
        font-size: 26px;
    }

    .service-why-content {
        width: 100%;
        padding: 20px;
    }

    .installation-overview-section {
        padding: 60px 15px;
        gap: 40px;
    }

    .installation-overview-head h1 {
        font-size: 26px;
    }

    .installation-overview-head p {
        font-size: 16px;
    }

    .installation-overview-content {
        width: 100%;
        padding: 15px;
    }

    .installation-overview-content h1 {
        font-size: 18px;
    }

    .installation-overview-content h2 {
        font-size: 16px;
    }

    .service-step {
        padding: 60px 20px;
    }

    .service-step-head {
        font-size: 26px;
    }

    .service-step-content {
        width: 100%;
        padding: 25px 15px;
    }

    .service-step-content h1 {
        font-size: 30px;
    }

    .service-step-content h2 {
        font-size: 18px;
    }

    .service-step-content p {
        font-size: 14px;
    }

    .book-hero-section {
        height: auto;
        padding: 30px 15px;
        text-align: center;
    }

    .book-hero-content {
        margin-top: 20px;
        max-width: 100%;
        align-items: center;
    }

    .book-hero-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .book-hero-content h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .process {
        padding: 50px 15px;
    }

    .process h2 {
        font-size: 26px;
        width: 100%;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .step {
        width: 100%;
        padding: 25px 15px;
    }

    .step h3 {
        font-size: 16px;
    }

    .step p {
        font-size: 14px;
    }

    .form-section h2 {
        font-size: 24px;
    }

    input,
    select,
    textarea {
        font-size: 14px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 12px;
    }

    .after-submit {
        font-size: 14px;
        padding: 30px 10px;
    }
}