@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    scroll-behavior: smooth;
    font-family: "Questrial", sans-serif;
}

:root {
    --teamColor: #0C2635;
    --backgroundColor: #F4F4F4;
}

/* Navbar section */

header {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 0px 20px 0px 0px;
    background-color: var(--teamColor);
    z-index: 1000;
}

header.sticky {
    width: 100%;
    top: 0px;
    padding: 0px 80px 1px 80px;
    background-color: #0E222C;
    box-shadow: 3px 4px 4px 0px rgba(214, 214, 214, 0.50);
}

header .logo {
    position: relative;
    color: var(--textColor);
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.6s;
}

.logo {
    background-color: #fff;
    padding: 15px;
}

.logo a {
    text-decoration: none;
    text-align: center;
}

.logo h6 {
    color: #000000;
    font-weight: bolder;
}

.nav__list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav__item {
    position: relative;
    list-style: none;
}

.nav__item a {
    position: relative;
    margin: 0 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 18px;
    transition: 0.6s;
}

.nav__link {
    padding: 10px;
    color: #0E222C;
    font-weight: 600;
}

.header__close,
.header__toggle {
    display: none;
}

header.sticky .logo,
header.sticky ul li a {
    color: #ffffff;
}

.nav__list a {
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.nav__list a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: -13px;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #FFF500;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.nav__list a:hover:after {
    width: 100%;
    left: 0;
}

/* banner section css */
.swiper {
    width: 100%;
    height: 90vh;
}

.swiper-scrollbar {
    display: none !important;
}

.banner-section {
    background-image: url('images/home/banner-img.webp');
    background-position: center;
    background-size: cover;
    height: 90vh;
    display: flex;
    align-items: end;
    position: relative;
    padding: 0px 0px 60px 0px;
    z-index: -1;
}

.banner-section-2 {
    background-image: url('images/home/banner-img-2.webp');
    background-position: center;
    background-size: cover;
    height: 90vh;
    display: flex;
    align-items: end;
    position: relative;
    padding: 0px 0px 60px 0px;
    z-index: -1;
}

.banner-section-3 {
    background-image: url('images/home/banner-img-3.webp');
    background-position: center;
    background-size: cover;
    height: 90vh;
    display: flex;
    align-items: end;
    position: relative;
    padding: 0px 0px 60px 0px;
    z-index: -1;
}

.banner-section h1,
.banner-section-2 h1,
.banner-section-3 h1 {
    color: #fff;
}

.slider-line {
    display: flex;
}

.slider-yellow-line {
    width: 10%;
    height: 3px;
    background-color: #FFF500;
}

.slider-gray-line {
    width: 90%;
    height: 2px;
    background-color: #D9D9D9;
}

.nextPre {
    display: flex;
    justify-content: space-between;
}

.nextPre p {
    color: #fff;
}

.nextPre-btn button {
    background-color: #0C2635;
    color: #fff;
    border: 0px;
    padding: 5px 20px;
}

.banner-card {
    position: absolute;
    height: 90vh;
    width: 25rem;
    top: 0;
    right: 0;
    background-color: #fff;
    display: flex;
    align-items: end;
    padding: 0px 0px 100px 60px;
    text-align: left !important;
    z-index: 100;
}

.flower-img {
    position: absolute;
    top: 0;
    right: 0;
    height: 36vh;
    width: auto;
}

.banner-line {
    display: flex;
}

.yelow-line {
    width: 20%;
    height: 2px;
    background-color: #FFF500;
}

.dark-line {
    width: 68%;
    height: 2px;
    background-color: #1E1E1E;
}

/* welcome-section css */

.welcome-section {
    margin-top: 100px;
}

.welcome-section h1 {
    color: #0c2635a9;
}

.welcome-section p {
    color: #00000094;
}

.welcome-data {
    height: 100%;
    display: flex;
    align-items: center;
}

.findOutbtn button {
    border: 0px;
    color: #fff;
    background-color: #1B97CB;
    border-radius: 5px;
    padding: 8px 40px;
}

.welcome-section .card {
    border: 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    border-radius: 0px;
    height: 100%;
    transition: 0.3s;
    padding: 30px 0px;
    text-align: center;
}

.welcome-section .card:hover {
    background-color: #000000;
    transform: 0.3s;
}

.welcome-section .card:hover h3,
.welcome-section .card:hover p {
    color: #fff;
}

.welcome-section .card h3 {
    color: #000000;
    text-align: center;
}

.welcome-section .card p {
    color: #0000009a;
    text-align: center;
}

.welcome-section .card i {
    font-size: 50px;
    color: #1B97CB;
}

.welcome-section .card:hover i {
    color: #fff;
}

/* products-section css */

.products-section {
    margin-top: 100px;
}

.product-data {
    background-color: #263238;
    color: #fff;
    padding: 35px 60px !important;
}

.product-data h1 {
    color: #ffffffcc;
}

.product-data p {
    color: #ffffffa9;
}

.product-img {
    display: flex;
}

/* shop-section css */

.shop-section {
    margin-top: 100px;
    text-align: center;
}

.shop-section .card {
    border: 0px;
    height: 100%;
    border-radius: 0px !important;
    text-align: left;
}

.rating i {
    color: #546E7A;
}

.shop-section .card h6 {
    color: #000000 !important;
}

.shop-section .card p {
    color: #1B97CB;
}

.shop-section .card h4 {
    font-weight: 600;
}

.explore-btn button {
    color: #fff;
    background-color: #1B97CB;
    border: 0px;
    border-radius: 5px;
    padding: 7px 30px;
}

/* interior-section css */

.interior-section {
    margin-top: 100px;
}

.interior-section .container {
    background-image: url('images/home/interior-bg-img.webp');
    background-position: center;
    background-size: cover;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interior-section .container a {
    text-decoration: none;
    color: red;
    font-size: 60px;
}

.heading-area {
    box-shadow: inset rgba(25, 60, 88, 0.25) -11px -20px 20px 20px;
    padding: 20px 10px;
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.interior-section .container h2,
.interior-section .container p {
    color: #fff;
}

.slider-line-2 {
    display: flex;
}

.slider-yellow-line-2 {
    width: 5%;
    height: 3px;
    background-color: #FFF500;
}

.slider-gray-line-2 {
    width: 35%;
    height: 2px;
    background-color: #D9D9D9;
}

/* testimonial-section css */

.testimonial-section {
    margin-top: 100px;
    height: auto;
    background-image: url('images/home/testimonial-bg.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    padding: 100px 0px;
}

.demo {
    background: transparent;
}

#testimonial-slider {
    padding: 100px 80px 100px 80px;
    background: #0C2635;
    text-align: center;
    border-radius: 8px;
}

.testimonial .description {
    color: #ffffffc4;
    line-height: 26px;
    text-indent: 30px;
    position: relative;
}

.testimonial .description:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: -15px;
}

.testimonial .title {
    font-weight: bold;
    color: #ffffff;
    text-transform: capitalize;
    margin: 0;
}

.testimonial .post {
    display: block;
    font-size: 15px;
    color: #ffffff;
}

.owl-theme .owl-controls .owl-buttons div {
    background: transparent;
}

.owl-theme .owl-controls {
    margin-top: 40px;
}

.owl-theme .owl-controls .owl-page span {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: url("images/home/client-img-1.webp") no-repeat;
    background-size: cover;
    transition: all 0.3s ease-in-out 0s;
}

.owl-theme .owl-controls .owl-page:nth-child(2) span {
    background: url("images/home/client-img-2.webp") no-repeat;
    background-size: cover;
}

.owl-theme .owl-controls .owl-page:nth-child(3) span {
    background: url("images/home/client-img-3.webp") no-repeat;
    background-size: cover;
}

.owl-theme .owl-controls.clickable .owl-page:hover span {
    opacity: 0.5;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls .owl-page.active:hover span {
    opacity: 1;
}

/* contact-section css */
.contact-head {
    margin-top: 100px;
    text-align: center;
}

.line-center {
    height: 3px;
    width: 50px;
    background-color: #FFF500;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    margin-top: 100px;
    background-color: var(--teamColor);
    height: auto;
    padding: 50px 0px;
}

.contact-section h5,
.contact-section h3,
.contact-section p {
    color: #fff;
}

.contact-section p {
    color: #ffffff81;
}

.line {
    height: 2px;
    width: 50px;
    background-color: #FFF500;
}

.details-section {
    display: flex;
    align-items: center;
}

.round {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    border: 2px solid var(--backgroundColor);
    background-color: var(--teamColor);
    display: flex;
    justify-content: center;
    align-items: center;
}

.round i {
    font-size: 26px;
    color: #fff;
}

.datas h5,
h6 {
    color: #fff;
}

form input {
    padding: 13px 20px !important;
}

.submit-btn button {
    padding: 8px 35px;
    border: 0px;
    background-color: #1B97CB;
    color: #fff;
    border-radius: 8px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* footer section css */

footer {
    margin-top: 30px;
}

.footer-details {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.footer-details h4 {
    font-weight: bold;
    color: #1B97CB;
    text-align: center;
}

.footer-details h5 {
    color: #1B97CB;
}

.footer-details h6 {
    color: #00000075;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}

.line-social {
    width: 100%;
    height: 1px;
    background-color: #00000075;
}

.social-media-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-round {
    height: 50px;
    width: 50px;
    background-color: #000000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-round a {
    text-decoration: none;
    color: #fff;
}

.icon-round i {
    font-size: 22px;
    color: #fff;
}

.footer-nav {
    margin-top: 80px;
    height: 70px;
    width: 100%;
    background-color: var(--teamColor);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-nav p {
    color: #ffffff8e;
}

/* media query starting */
@media all and (min-width:1300px) {

    .banner-section h1,
    .banner-section-2 h1,
    .banner-section-3 h1 {
        color: #fff;
        font-size: 70px;
    }

    .banner-section {
        background-image: url('images/home/banner-img.webp');
        background-position: center;
        height: 80vh;
    }

    .banner-section-2 {
        background-image: url('images/home/banner-img-2.webp');
        background-position: center;
        height: 80vh;
    }

    .banner-section-3 {
        background-image: url('images/home/banner-img-3.webp');
        background-position: center;
        height: 80vh;
    }

    .swiper {
        width: 100%;
        height: 80vh;
    }

    .banner-card {
        position: absolute;
        height: 80vh;
        width: 30rem;
        top: 0;
        right: 0;
        background-color: #fff;
        display: flex;
        align-items: end;
        padding: 0px 0px 100px 60px;
        text-align: left !important;
        z-index: 100;
    }

    .flower-img {
        position: absolute;
        top: 0;
        right: 0;
        height: 36vh;
        width: auto;
    }

    .banner-line {
        display: flex;
    }

    .yelow-line {
        width: 20%;
        height: 2px;
        background-color: #FFF500;
    }

    .dark-line {
        width: 68%;
        height: 2px;
        background-color: #1E1E1E;
    }
}

@media all and (max-width:900px) {

    /* navbar css */
    body {
        overflow-x: hidden;
    }

    body.overflow-hidden {
        overflow: hidden;
    }

    header {
        position: fixed;
        top: 0px;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: 0.6s;
        padding: 0px 20px 0px 0px;
        background-color: var(--teamColor);
        z-index: 1000;
    }

    .logo a {
        font-size: 0.9rem;
    }

    .header__toggle {
        display: inline;
        color: #fff;
        font-size: 24px;
    }

    header.sticky .header__toggle {
        display: inline;
        color: #ffffff;
        font-size: 24px;
    }

    .header__close {
        position: absolute;
        right: 24px;
        display: block;
        font-size: 24px;
        border-radius: 50%;
        z-index: 1000;
        color: #ffffff;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--teamColor);
        color: #ffffffee;
        width: 40%;
        height: 100vh;
        padding: 24px 0;
        z-index: 1000;
        transition: 0.5s;
        border-radius: 0 0 0 50%;
        z-index: 1000;
    }

    header.sticky {
        padding: 5px 20px 10px 20px;
        background-color: #0E222C;
        box-shadow: 3px 4px 4px 0px rgba(214, 214, 214, 0.50);
    }

    header.sticky .nav__item a {
        color: #ffffff;
    }

    header .logo {
        position: relative;
        color: var(--textColor);
        text-decoration: none;
        text-transform: uppercase;
        transition: 0.6s;
    }

    .logo img {
        height: 40px;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
    }

    .show {
        right: 0;
    }

    .nav__item a {
        color: #ffffff;
    }

    .nav__item {
        margin: 2rem 0;
    }

    .nav__list a {
        text-decoration: none;
        display: inline-block;
        position: relative;
    }

    .nav__list a:after {
        background: none repeat scroll 0 0 transparent;
        bottom: 0;
        content: "";
        display: block;
        height: 2px;
        left: 50%;
        position: absolute;
        background: #FFF500;
        transition: width 0.3s ease 0s, left 0.3s ease 0s;
        width: 0;
    }

    /* banner section css */

    .banner-section {
        background-image: url('images/home/banner-img.webp');
        background-position: center;
        height: 50vh;
    }

    .banner-section-2 {
        background-image: url('images/home/banner-img-2.webp');
        background-position: center;
        height: 50vh;
    }

    .banner-section-3 {
        background-image: url('images/home/banner-img-3.webp');
        background-position: center;
        height: 50vh;
    }

    .swiper {
        width: 100%;
        height: 50vh;
    }

    .banner-section h1,
    .banner-section-2 h1,
    .banner-section-3 h1 {
        color: #fff;
    }

    .banner-card {
        position: absolute;
        height: 50vh;
        width: 15rem;
        top: 0;
        right: 0;
        background-color: #fff;
        display: flex;
        align-items: end;
        padding: 0px 0px 0px 20px;
        text-align: left !important;
        z-index: 100;
    }

    .flower-img {
        position: absolute;
        top: 0;
        right: 0;
        height: 20vh;
        width: auto;
    }

    /* welcome-section css */

    .welcome-img {
        display: flex;
        justify-content: end;
    }

    .welcome-img img {
        height: 35vh;
        margin-bottom: 30px;
    }

    /* interior-section css */

    .interior-section {
        margin-top: 100px;
    }

    .interior-section .container {
        background-image: url('images/home/interior-bg-img.webp');
        background-position: center;
        background-size: cover;
        height: 35vh;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* product-img  */

    .product-img {
        display: none;
    }

    /* contact-section css */

    .contact-section {
        margin-top: 100px;
        background-color: var(--teamColor);
        height: auto;
        padding: 50px 0px;
    }

    form {
        margin-top: 30px;
    }
}

@media all and (max-width:768px) {

    /* navbar css */
    body {
        overflow-x: hidden;
    }

    body.overflow-hidden {
        overflow: hidden;
    }

    header {
        height: auto;
        justify-content: space-between;
        padding: 0px 3px;
    }

    .logo {
        background-color: #fff;
        padding: 5px;
    }

    .logo h6 {
        color: #000000;
        font-weight: bolder;
    }


    .header__toggle {
        display: inline;
        color: #ffffffee;
        font-size: 26px;
    }

    .header__close {
        position: absolute;
        right: 24px;
        display: block;
        font-size: 24px;
        border-radius: 50%;
        z-index: 1000;
        color: #ffffff;
    }

    .nav__item a {
        color: #ffffff;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        background-color: var(--teamColor);
        color: #eeee;
        width: 100%;
        height: 100vh;
        padding: 24px 0;
        z-index: 1000;
        transition: 0.5s;
        border-radius: 0 0 0 0%;
        z-index: 1000;
    }

    .nav__list {
        display: flex;
        flex-direction: column;
        margin-left: 22%;
    }

    .show {
        right: 0;
    }

    .nav__item {
        margin: 1.5rem 0;
    }

    header.sticky {
        padding: 0px 0px;
        background-color: #0E222C;
        box-shadow: 3px 4px 4px 0px rgba(214, 214, 214, 0.50);
    }

    /* banner section css */

    .banner-section {
        background-image: url('images/home/banner-img.webp');
        background-position: center;
        height: 60vh;
    }

    .banner-section-2 {
        background-image: url('images/home/banner-img-2.webp');
        background-position: center;
        height: 60vh;
    }

    .banner-section-3 {
        background-image: url('images/home/banner-img-3.webp');
        background-position: center;
        height: 60vh;
    }

    .swiper {
        width: 100%;
        height: 60vh;
    }

    .banner-section h1,
    .banner-section-2 h1,
    .banner-section-3 h1 {
        color: #fff;
    }

    .nextPre-btn {
        display: flex;
    }

    .banner-card,
    .flower-img {
        display: none;
    }

    .nextPre-btn button {
        background-color: #0C2635;
        color: #fff;
        border: 0px;
        padding: 2px 20px;
    }

    /* welcome-section css */

    .welcome-section {
        margin-top: 70px;
    }

    /* products-section css */

    .products-section {
        margin-top: 70px;
    }

    .product-data {
        background-color: #263238;
        color: #fff;
        padding: 35px 10px !important;
    }

    .product-img {
        display: flex;
    }

    /* shop-section css */

    .shop-section {
        margin-top: 70px;
        text-align: center;
    }

    /* interior-section css */

.interior-section {
    margin-top: 100px;
}

.interior-section .container {
    background-image: url('images/home/interior-bg-img.webp');
    background-position: center;
    background-size: cover;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading-area {
    box-shadow: inset rgba(25, 60, 88, 0.25) -11px -20px 20px 20px;
    padding: 10px 10px;
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.interior-section .container h2,
.interior-section .container p {
    color: #fff;
}

.slider-line-2 {
    display: flex;
}

.slider-yellow-line-2 {
    width: 5%;
    height: 3px;
    background-color: #FFF500;
}

.slider-gray-line-2 {
    width: 35%;
    height: 2px;
    background-color: #D9D9D9;
}

    /* testimonial-section css */

    .testimonial-section {
        margin-top: 70px;
        height: auto;
        background-image: url('images/home/testimonial-bg.webp');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center;
        background-size: cover;
        padding: 50px 0px;
    }

    #testimonial-slider {
        padding: 50px 10px 50px 10px;
        background: #0C2635;
        text-align: center;
        border-radius: 8px;
    }

    .owl-theme .owl-controls .owl-page span {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: url("images/home/client-img-1.webp") no-repeat;
        background-size: cover;
        transition: all 0.3s ease-in-out 0s;
    }

    /* contact-section css */

    .contact-section {
        margin-top: 80px;
        background-color: var(--teamColor);
        height: auto;
        padding: 50px 0px;
    }

    .round i {
        font-size: 20px;
        color: #fff;
    }

    form input {
        padding: 10px 15px !important;
    }

    /* footer section css */

    footer {
        margin-top: 80px;
    }

    .footer-details {
        display: block;
        justify-content: center;
        margin-top: 20px;
    }

    .footer-details h4 {
        font-weight: bold;
        color: #1B97CB;
        text-align: center;
        margin-left: 0rem !important;
        margin: 10px 0px 0px 0px;
    }

    .footer-details h5 {
        color: #1B97CB;
        text-align: center;
        margin-left: 0rem !important;
        margin: 10px 0px 0px 0px;
    }

    .footer-details h6 {
        color: #00000075;
        text-align: center;
        margin-left: 0rem !important;
        margin: 10px 0px 0px 0px;
    }

    .social-media-icon {
        margin-left: 0rem !important;
    }

    .social-media {
        display: block;
        align-items: center;
        justify-content: center;
        margin-top: 40px;
    }

    .line-social {
        display: none;
    }

    .icon-round {
        height: 40px;
        width: 40px;
        background-color: #000000;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-round a {
        text-decoration: none;
        color: #fff;
    }

    .icon-round i {
        font-size: 18px;
        color: #fff;
        margin-top: 0rem !important;
    }

    .footer-nav {
        margin-top: 30px;
        height: 70px;
        width: 100%;
        background-color: var(--teamColor);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 20px;
    }

    .footer-nav p {
        color: #ffffff8e;
        text-align: center;
    }
}