@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');


:root {
    --primary-color: #0c345f;
    --white-color: #fff;
    --black-color: #000;
    --text-shadow: #00000057;
    --select-color: #3bb77e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}


/* For all text selection on the site */
::selection {
    background: var(--select-color);
    /* highlight background */
    color: #fff;
    /* text color */
}

/* For Firefox specifically */
::-moz-selection {
    background: var(--select-color);
    color: #fff;
}

a {
    text-decoration: none;
}


section {
    position: relative;
    z-index: 1;
    padding: 38px 0;
}




.heading {
    font-size: 42px;
    font-weight: 600;
    text-transform: capitalize;
    text-shadow: 0px 5px 10px var(--text-shadow);
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 14px;
}

img {
    width: 100%;
}

.content-box p {
    font-size: 15px;
    color: var(--black-color);
    line-height: 28px;
    margin: 0;
    padding: 0;
}

/* Top header */
.top-header {
    background-color: var(--primary-color);
    padding: 6px 0;
    font-size: 14px;
}

/* Navbar section */
.navbar {
    background: var(--white-color);
    /* border-bottom: 1px solid #ddd; */
    padding: 10px 0;
}

/* Default navbar */
.navbar {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar .navbar-brand img:nth-child(2) {
    display: none;
    /* Hide white logo initially */
}

/* Fixed + scrolled state */
.navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--primary-color);
    /* Change background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Swap logo on scroll */
.navbar.scrolled .navbar-brand img:nth-child(1) {
    display: none;
    /* Hide default logo */
}

.navbar.scrolled .navbar-brand img:nth-child(2) {
    display: inline-block;
    /* Show white logo */
}


.logo img {
    max-height: 70px;
}

/* Menu */
.menubar ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    padding: 0;
}



.menubar ul li a {
    display: block;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
    padding: 0px 16px;
}

.navbar.scrolled .menubar ul li a {
    color: var(--white-color) !important;
}


.crafting-elegance .content-box h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
}

.innovate-illuminate .card-box {
    border: 1px solid var(--text-shadow);
    padding: 5px;
    margin-bottom: 15px;
}

.innovate-illuminate .card-box img {
    border: 1px solid var(--text-shadow);
}

.innovate-illuminate .card-box h2 {
    background-color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    width: 100%;
    padding: 3px 8px;
    margin: 0;
    margin-top: 1px;
    text-align: center;
}

.clients-say-about-us .testimonial-card {
    margin-bottom: 40px;
}

.clients-say-about-us .testimonial-card .test-img img {
    width: 85px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.clients-say-about-us .testimonial-card .comment p {
    font-size: 15px;
    color: var(--black-color);
    font-weight: 400;
}

.clients-say-about-us .testimonial-card .authour-details h5 {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
}

.clients-say-about-us .testimonial-card .authour-details ul {
    list-style: none;
    color: var(--primary-color);
    font-size: 15px;
    margin: 0;
    padding: 0;
}


/* footer page css  */



.footer .footer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer .footer-container .footer-box {
    max-width: calc(25% - 90px);
    width: 100%;
    padding: 12px;
}

.footer .footer-container .footer-box h2 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 18px;
}

.footer .footer-container .footer-box ul {
    list-style: none;
    padding: 0;
}

.footer .footer-container .footer-box ul.social-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.footer .footer-container .footer-box ul.social-icon li img {
    max-width: 50px;
}

.footer .footer-container .footer-box ul li a,
.footer .footer-container .footer-box ul li p,
.footer .footer-container .footer-box ul li i {
    text-decoration: none;
    color: var(--black-color);
    font-size: 14px;
    font-weight: 400;
}

.footer .footer-container .footer-box ul li p span {
    color: var(--primary-color);
    font-weight: 500;
}

.footer .footer-container .footer-box ul li p span i {
    color: var(--primary-color);
    margin-right: 3px;
}

.footer .footer-container .footer-box .about-us-footer {
    text-align: center;
}

.footer .footer-container .footer-box .about-us-footer img {
    display: block;
    max-width: 226px;
    width: 100%;
    margin: auto;
    margin-bottom: 12px;
}

.footer .footer-container .footer-box .gst-num {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.footer .copywrite-footer {
    padding: 10px 40px 10px 20px;
    background-color: var(--primary-color);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer .copywrite-footer p,
.footer .copywrite-footer a {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    color: var(--white-color);
    text-decoration: none;
}

.footer .copywrite-footer p span {
    font-size: 22px;
    font-weight: 500;
}




/* owl carousel  */

.owl-carousel .owl-nav {
    text-align: center;
    margin-top: 20px;
}

.owl-carousel .owl-nav button {
    background: #f2f2f2 !important;
    /* light gray */
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-size: 18px;
    color: #333 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.owl-carousel .owl-nav button:hover {
    background: var(--select-color) !important;
    color: #fff !important;
}


.button {
    display: block;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 7px;
    width: fit-content;
    text-decoration: none;
    padding: 12px 18px;
    font-weight: 500;
    font-size: 14px;
    margin-top: 20px;
}


.talk-to-us {
    background-color: var(--primary-color);
    padding: 14px 0;
}

.talk-to-us h2 {
    color: var(--white-color);
    margin: 0;
    padding: 0;
}

.talk-to-us a {
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 28px;
    width: fit-content;
    display: block;
    text-decoration: none;
    border-radius: 5px;
    margin-left: auto;
}



#whatsapp-floating-icon {
    position: fixed;
    bottom: 26px;
    right: 26px;
    text-decoration: none;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
    background-color: #25D366;
    color: var(--white-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.top-page-heading {
    border-bottom: 1px solid #ddd;
    margin-bottom: 5px;
    padding: 20px 0;
}

.top-page-heading ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    gap: 6px;
}

.top-page-heading ul li {
    font-size: 14px;
    font-weight: 600;
    font-family: "Quicksand", sans-serif;
}

.top-page-heading ul li a,
.top-page-heading ul li span i,
.top-page-heading ul li a i {
    color: var(--select-color);
    text-decoration: none;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
}


.top-page-heading ul li span {
    color: #7E7E7E;
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
}



/* counter css  */




.counter-section {
    color: #fff;
}

.counter-box {
    flex: 1;
}

.counter-box h2 {
    font-size: 68px;
    margin: 0;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}

.counter-box p {
    font-size: 28px;
    margin: 0;
    padding: 0;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
}


.about-passion h4 {
    color: #009EE3;

    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0px;
    word-spacing: 4px;

}

.about-passion h2 {
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 40px;
}


.why-choose .image-box img {
    border-radius: 14px;
}

.why-choose .content-box h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 45px;
    font-weight: 500;
}

.why-choose .content-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.why-choose .content-box ul li h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}

.why-choose .content-box ul li p {
    margin-bottom: 16px;
}

.our-vision h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 40px;
}

.our-luxurious {
    padding-bottom: 0;
}

.our-luxurious h2 {
    color: #009EE3;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0px;
    word-spacing: 4px;
}

.counter-section {
    padding-top: 20px;
}

.contact-info-section .contact-box {
    text-align: center;

}

.contact-info-section .contact-box i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-info-section .contact-box a {
    text-decoration: none;
    color: var(--primary-color);
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}


.contact-form-section .form-box {
    background-color: #D1D1D1;
    border-radius: 10px;
    padding: 10px;
}

.contact-form-section .form-box h2 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    color: var(--primary-color);
    font-family: "Quicksand", sans-serif;
    margin-bottom: 20px;
}

.contact-form-section .form-box .two-input {
    display: flex;
    gap: 12x;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-form-section .form-box .two-input input {
    width: 49%;
}

.contact-form-section .form-box input,
.contact-form-section .form-box textarea {
    padding: 18px 15px;
    background-color: var(--white-color);
    border-radius: 8px;
    width: 100%;
    border: none;
    outline: none;
    margin-bottom: 12px;
}

.contact-form-section .form-box button {
    margin: 0;
    width: 100%;
    background-color: var(--select-color);
    border: 1px solid #18a463;
    outline: none;
    box-shadow: none;
    text-align: center;
    padding: 20px;
}

.enquire-form.contact-form-section .form-box {
    border: 2px solid #959595;
    background-color: #cacaca;
    width: 100%;
    height: 100%;
}

.enquire-form.contact-form-section .form-box button {
    background-color: var(--primary-color);
}

.enquire-form.contact-form-section .form-box input {
    padding: 18px;
    border: 1px solid #afafaf;
}

.enquire-form.contact-form-section {
    padding-top: 0;

}

.enquire-form.contact-form-section h2 {
    text-align: center;
    margin-bottom: 26px;
    font-size: 26px;
    color: var(--primary-color);
    font-family: "Quicksand", sans-serif;
    text-transform: capitalize;
    font-weight: 600;
}



.service-detail-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--primary-color);
}

.service-detail-section strong {
    font-weight: 600;
    font-size: 16px;
}

.product-card-section .product-card-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
    padding: 0px 55px;
}

.product-card-section .product-card-box .card-box {
    border: 1px solid var(--primary-color);
    padding: 12px;
    border-radius: 10px;
    max-width: calc(20% - 26px);
    width: 100%;
    margin-bottom: 0px;
    cursor: pointer;
    transition: box-shadow .2s ease;
}

.product-card-section .product-card-box .card-box:hover {
    box-shadow: 0px 0px 9px var(--primary-color);
}

.product-card-section .product-card-box .card-box .product-image {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.product-card-section .product-card-box .card-box .product-image .overlay-product-name {
    padding: 0px 14px;
    background-color: #000000da;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transition: top .6s ease;
}

.product-card-section .product-card-box .card-box .product-image:hover .overlay-product-name {
    top: 0%;
}

.product-card-section .product-card-box .card-box .product-image .overlay-product-name span {
    color: var(--white-color);
    font-size: 22px;
    font-weight: 700;
    display: block;
    text-align: center;
}

.product-card-section .product-card-box .card-box .product-name h2 {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    padding: 3px 5px;
    background-color: #c7c7c7;
    width: 100%;
    margin-top: 18px;
    text-transform: capitalize;
}

.term-condition h2,
.privacy-policy h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.term-condition p,
.privacy-policy p {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.term-condition ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.term-condition .content-box {
    margin-bottom: 20px;
}

.term-condition .content-box p {
    margin-bottom: 0px;
}

.term-condition .email {
    padding-left: 25px;
}

.certificate-section .two-certificate {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.certificate-section .two-certificate .certificate-box {
    max-width: 320px;
}

.certificate-section .certificate-box {
    max-width: 360px;
    width: 100%;
    border: 1px solid var(--text-shadow);
    padding: 5px;
    margin-bottom: 12px;
}

.certificate-section .certificate-box span {
    font-size: 16px;
    display: block;
    text-align: center;
    width: 100%;
    color: #5d5d5d;
}




/* mobail menu css  */


#mobail-menu-btn {
    display: none;
    border: none;
    padding: 0px;
    margin: 4px;
    border-radius: 6px;
    color: var(--black-color);
    background-color: unset;
    font-size: 30px;
    cursor: pointer;
}

.mobail-menubar {
    display: none;
    position: absolute;
    left: -430px;
    top: 0;
    max-width: 420px;
    width: 100%;
    height: 100vh;
    background-color: var(--white-color);
    border-right: 1px solid var(--text-shadow);
    padding: 10px;
    transition: all .4s ease;
}

.mobail-menubar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    margin-bottom: 14px;
}

.mobail-menubar ul li {
    margin-bottom: 7px;
    padding: 4px 10px;
    border-bottom: 1px solid var(--text-shadow);
    width: 100%;
}

.mobail-menubar ul li a {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color);
    text-decoration: none;
}

.mobail-menubar .logo img {
    max-width: 140px;
    height: auto;
    margin-bottom: 18px;
}

.mobail-menubar .close-btn {
    position: absolute;
    right: 18px;
    top: 14px;
    font-size: 24px;
    color: var(--black-color);
    cursor: pointer;
}

.mobail-menubar .contact-menu {
    padding: 10px;
    background-color: #f1efef;
    border-radius: 8px;
}
.mobail-menubar .contact-menu p i{
    color: green;
    font-size: 15px;
}

.mobail-menubar .contact-menu p {
    margin: 0;
    padding: 0;
    padding-left: 10px;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 400;
    color: var(--black-color);
}

.mobail-menubar .footer-text p {
    font-size: 12px;
    font-weight: 400;
    margin: 0;
    padding: 4px 8px;
}

@media screen and (max-width:992px) {
    .top-header {
        display: none;
    }

    #mobail-menu-btn {
        display: block;
    }

    .navbar {
        box-shadow: 0px 1px 4px var(--text-shadow);
    }

    .menubar {
        display: none;
    }


    .mobail-menubar {
        display: block;
    }
}





@media screen and (max-width:768px){
    section{
        padding: 28px 0px;
    }
    .heading{
        font-size: 28px;
    }
    .image-box{
        margin: 12px 0px;
    }
    
    
    .navbar.scrolled #mobail-menu-btn{
        color: #fff;
    }
    
    .product-card-section .product-card-box{
        padding: 0px 22px;
    }
    
    .product-card-section .product-card-box .card-box{
        max-width:calc(100% - 0px);
    }
    
    
    .talk-to-us .row{
        display: flex;
        text-align: center;
        justify-content:center;
        gap: 12px;
    }
    .talk-to-us a{
        margin: 0 auto;
    }
    
    .footer .footer-container .footer-box{
        max-width: calc(100% - 0px);
    }
    .footer .copywrite-footer{
        justify-content: center;
        gap: 12px;
    }
    .footer .copywrite-footer p, .footer .copywrite-footer a{
        text-align: center;
    }
}




