@import url('https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&family=Baloo+Bhaina+2&family=Clicker+Script&family=Josefin+Sans:ital,wght@0,100;0,200;0,400;0,500;0,700;1,300;1,600&family=Lora:wght@500&family=Montserrat:ital,wght@0,300;0,500;0,600;0,700;1,100;1,300;1,500&family=Nunito:wght@200;300;400;500&family=Open+Sans:ital,wght@0,300;0,600;1,300;1,400;1,600;1,700&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::before,
::after {
    box-sizing: border-box;
}

:root {
    --hue: 20;
    --saturation: 70%;
    --lightness: 55%;
    --main-color: hsl(var(--hue), var(--saturation), var(--lightness));

    /* text color  */

    --text-white: hsl(0, 0%, 100%);
    --text-light-gray: hsl(0, 0%, 96%);
    --text-x-dark-gray: hsl(0, 0%, 10%);
    --text-dark-gray: hsl(0, 0%, 20%);

    /* bg colors  */
    --body-bg-color: hsl(var(--hue), 60%, 94%);
    --bg-color: hsl(var(--hue), 60%, 96%);
    --bg-white: hsl(0, 0%, 100%);

    /* border color  */
    --border-color: hsl(var(--hue), 48%, 80%);

    /* shadow  */
    --shadow: 0 0 10px hsla(var(--hue), 57%, 63%, 0.3);
    --focus-shadow: 0 0 10px hsla(var(--hue), 57%, 63%, 0.3);

    /* font size  */
    --fs-4xl: 50px;
    --fs2-4xl: 40px;
    --fs-3xl: 35px;
    --fs-2xl: 26px;
    --fs-xl: 20px;
    --fs-lg: 18px;
    --fs-md: 16px;
    --fs-sm: 14px;
}

body.t-dark {
    /* color  */
    --text-x-dark-gray: hsl(0, 0%, 94%);
    --text-dark-gray: hsl(0, 0%, 84%);

    /* bg-color  */
    --body-bg-color: hsl(var(--hue), 20%, 10%);
    --bg-color: hsl(var(--hue), 13%, 17%);

    /* border color  */
    --border-color: hsl(var(--hue), 15%, 30%);

    /* shadow  */
    --shadow: 0 0 10px hsla(var(--hue), 19%, 7%, 0.9);
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: var(--main-color);
    color: var(--text-white);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: var(--body-bg-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
}

body {
    font-family: 'poppins', sans-serif;
    font-weight: 300;
    font-size: var(--fs-md);
    line-height: 1.5;
    color: var(--text-dark-gray);
    background-color: var(--body-bg-color);
    --webkit-text-size-adjust: 100%;
    --webkit-top-highlight-color: transparent;
}

a {
    color: var(--main-color);
    text-decoration: none;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark-gray);
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.page-wrapper {
    overflow: hidden;
}

.container {

    max-width: 1170px;
    margin: auto;
    padding: 0 15px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.section-padding {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title .title {
    display: inline-block;
    font-size: var(--fs-lg);
    font-weight: 400;
    text-transform: capitalize;
    color: var(--main-color);
    margin: 0 0 12px;
    padding: 0 40px;
    position: relative;
}

.section-title .title::before,
.section-title .title::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 34px;
    background-color: var(--main-color);
}

.section-title .title::before {
    left: 0;
}

.section-title .title::after {
    right: 0;
}

.section-title .sub-title {
    font-size: var(--fs-3xl);
    text-transform: capitalize;
}

button {
    cursor: pointer;
}

.btn {
    display: inline-block;
    padding: 10px 28px;
    background-color: var(--main-color);
    color: var(--text-white);
    font-weight: 500;
    font-size: var(--fs-md);
    text-transform: capitalize;
    line-height: 1.5;
    font-family: inherit;
    border: 2px solid transparent;
    border-radius: 30px;
    vertical-align: middle;
    user-select: none;
    transition: all .3s ease;
}

.btn:hover {
    background-color: var(--text-white);
    border: 1px solid var(--main-color);
    color: var(--main-color);
}

.call_btn {
    display: inline-block;
    padding: 6px 18px !important;
    color: var(--text-white);
    font-weight: 500;
    font-size: var(--fs-md);
    text-transform: capitalize;
    line-height: 1.5;
    font-family: inherit;
    border: 2px solid var(--main-color);
    border-radius: 20px;
    vertical-align: middle;
    user-select: none;
    transition: all .3s ease;
}



@keyframes pulse {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    to {
        transform: scale(1)
    }
}



/** -- whatsapp icon start ===========  */
.iocn_whatA,
.call_now {
    position: fixed !important;
    bottom: 24px;
    left: 32px;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    z-index: 9999999;
}

.call_now {
    bottom: 100px;
}

.iocn_whatA img {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 0 0 rgba(52, 240, 14, 0.302);
    -webkit-animation: 1.3s cubic-bezier(.8, 0, 0, 1) 0s normal none infinite running animate;
    border-radius: 50%;
    transition: .3s linear inherit;
    animation: 1.3s cubic-bezier(.8, 0, 0, 1) 0s normal none infinite running animate;
    -webkit-animation: 1.3s cubic-bezier(.8, 0, 0, 1) 0s normal none infinite running animate;
}

@-webkit-keyframes animate {
    to {
        box-shadow: 0 0 0 45px transparent;
    }
}

@keyframes animate {
    to {
        box-shadow: 0 0 0 45px transparent;
    }
}


/* ---------------------------------------------------------------------- */
.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
    padding: 10px 0;
    width: 100%;
}

.header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    z-index: -1;
    transform: translatey(calc(-100% - 10px));
    transition: transform .5s ease;
}

.header.bg-reveal::before {
    transform: translateY(0);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1250px;
}

.header .logo a {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    transform: scaleY(0.9);
    letter-spacing: 2px;
}

.header .logo span {
    font-size: 12px;
    display: block;
    font-weight: 400;
    color: var(--text-dark-gray);
    letter-spacing: 1px;
    text-align: center;
}

.nav li {
    display: inline-block;
    /* margin-left: 1rem; */
    margin: 0 10px;
    position: relative;
}

.nav li a {
    text-transform: capitalize;
    font-size: var(--fs-md);
    color: var(--text-dark-gray);
    font-weight: 400;
    display: block;
    padding: 10px 0;
    transition: color .3s ease;
    position: relative;
}

.nav li a::before,
.nav li::before {
    position: absolute;
    content: '';
    bottom: 0;
    height: 2px;
    width: 0%;
    background-color: var(--main-color);
}

.nav li a.active::before,
.nav li.active::before {
    width: 100%;
}


.nav a:hover {
    color: var(--main-color);
}

.nav-toggler {
    display: none;
}

.nav li>.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;

}

.nav li:hover>.submenu {
    opacity: 1;
    visibility: visible;
}

.home {
    padding: 100px 0 60px;
}

.home-text,
.home-img {
    grid-column: span 6;
    align-self: center;

}

.home-text h1 {
    font-size: var(--fs2-4xl);
    margin: 0 0 20px;
    text-transform: capitalize;
}

.home-text p {
    margin: 0 0 30px;
}

.home-img {

    position: relative;
}

.home-img .circle-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
}

.home-img .circle {
    height: 350px;
    width: 350px;
    background-color: var(--main-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.home-img .image {
    width: 35rem;
    height: 35rem;
}

.home-img .image img {
    height: 100%;
    width: 100%;
    display: block;
    margin: auto;
}



.home .swiper-pagination .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: var(--text-dark-gray);
}

.home .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--main-color);
}

.about {
    padding: 100px 0 60px;
}

.about .section-title {
    text-align: left;
    margin: 0 0 15px;
}

.about-img,
.about-text {
    grid-column: span 6;
}

.about-img .img-box {
    max-width: 400px;
    height: 400px;
    margin: auto;
    border-radius: 50%;
    padding: 15px;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: relative;
    /* border: 5px solid var(--main-color); */
    /* overflow: hidden; */
    z-index: 1;
}

/* Top half arc - border only */
.about-img .img-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-top: 10px solid var(--main-color);
    border-left: 5px solid transparent;
    border-radius: 50%;
    animation: rotateBorder 2s linear infinite;
    z-index: -1;
}

/* Bottom half arc - border only, rotates opposite */
.about-img .img-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border-bottom: 10px solid var(--main-color, #00c9a7);
    border-top: 10px solid transparent;

    border-radius: 50%;
    animation: rotateBorderReverse 2s linear infinite;
    z-index: -2;
}

.about-text .service-list li i {
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    background-color: var(--main-color);
    border-radius: 50%;
    margin: 10px 0;
}

.details_page .about-img .img-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.details_page .about-img .img-box::before,
.details_page .about-img .img-box::after {
    animation: none;
    border: none;

}

.details_page .about-img .img-box img {
    border-radius: 0;
    object-fit: contain;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateBorderReverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


.about-img .img-box img {
    border-radius: 50%;
}

.about-img .box {
    height: 125px;
    width: 125px;
    background-color: var(--main-color);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0 40px;
    padding: 1rem;
}

.about-img .box-1 {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.about-img .box span {
    color: var(--text-white);
    font-weight: bold;
    font-size: var(--fs-3xl);
    margin: 0 0 5px;
    line-height: 1;
}

.about-img .box p {
    font-size: var(--fs-sm);
    text-transform: uppercase;
    color: var(--text-light-gray);
    margin: 0;
}

.services-item {
    grid-column: span 3;
    /* text-align: center; */
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    padding: 30px;
    border-radius: 10px;
}

.services-item .img-box {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
    background-color: var(--bg-color);
    padding: 8px;
    overflow: hidden;
}

.services-item .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform .5s ease;
}

.services-item:hover .img-box img {
    transform: scale(1.5);
}

.services-item h3 {
    text-transform: capitalize;
    font-size: var(--fs-xl);
    font-weight: 500;
}

.pricing-item {
    grid-column: span 4;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: fit-content;
}

.pricing1 .grid {
    grid-template-columns: repeat(8, 1fr);
}

.pricing2 .grid {
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
    background-color: var(--bg-color);
}

.pricing.Fridge_service .grid {
    grid-template-columns: repeat(16, 1fr);
}

.pricing2 .grid .pricing-item {
    border-radius: 0;
    box-shadow: none;

}

.pricing.Fridge_service .grid .pricing-item {
    padding: 30px 20px;
}

.pricing.Fridge_service .grid .pricing-header h3 {
    font-size: 1.2rem;
}

.pricing.Fridge_service .grid .pricing-body p {
    font-size: .9rem;
}

.pricing-header h3 {
    text-transform: capitalize;
    /* margin: 0 0 20px; */
    margin-top: 10px;
    font-size: var(--fs-2xl);
    font-weight: 600;
}

.pricing-header .price {
    /* height: 140px;
    width: 140px; */
    box-shadow: var(--shadow);
    margin: auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
    text-transform: capitalize;
    overflow: hidden;
}

.pricing-header .price span {
    font-size: var(--fs-3xl);
    color: var(--main-color);
    font-weight: bold;
    line-height: 1.3;
}

.pricing-body {
    padding: 10px 0 0px 0;
    text-align: left;
}

.pricing-body li {
    text-transform: capitalize;
    position: relative;
    padding-left: 30px;
}

.pricing-body li+li {
    margin-top: 10px;
}

.pricing-body li i {
    position: absolute;
    left: 0;
    top: 5px;
    font-size: var(--fs-sm);
}

.team-item {
    grid-column: span 4;
}

.team-item .img-box {
    max-width: 350px;
    box-shadow: var(--shadow);
    background-color: var(--bg-color);
    margin: auto;
    border-radius: 50%;
    padding: 15px;
}

.team-item img {
    border-radius: 50%;
    transition: filter 0.5s ease;
}

.team-item:hover img {
    filter: grayscale(50%);
}

.team-item .detail {
    background-color: var(--main-color);
    width: 85%;
    max-width: 260px;
    padding: 15px;
    margin: -42px auto 0;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    border-radius: 0 40px;
    transition: border-radius .5s ease;
}

.team-item:hover .detail {
    border-radius: 40px 0;
}

.team-item h3 {
    margin: 0 0 5px;
    color: var(--text-white);
    font-weight: 500;
    font-size: var(--fs-xl);
}

.team-item p {
    margin: 0;
    color: var(--text-light-gray);
}

.contact-grid {

    max-width: 1000px;
    margin: auto;
}

.contact-info {
    grid-column: span 5;
}

.contact-form {
    grid-column: span 7;
}

.contact-info-item {
    position: relative;
    padding: 20px 0 20px 70px;
}

.contact-info-item+.contact-info-item {
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
}

.contact-info-item i {
    height: 50px;
    width: 50px;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    color: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    left: 0;
}

.contact-info-item h3 {
    margin: 0 0 10px;
    font-size: var(--fs-xl);
    font-weight: 500;
    text-transform: capitalize;
}

.input-box {
    margin-bottom: 20px;
}

::placeholder {
    color: var(--text-dark-gray);
    opacity: 1;
}

.input-control {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    color: var(--text-dark-gray);
    padding: 0 20px;
}

.input-control:focus {
    outline: 1px solid var(--border-color);
}

textarea.input-control {
    display: block;
    height: 150px;
    padding-top: 15px;
    resize: none;
}

.contact-info-item p:last-child {
    margin: 0;
}

.footer {
    padding: 50px 0;
    background-color: var(--main-color);
    text-align: center;
}

.footer h3 {
    color: var(--text-white);
    font-size: var(--fs-2xl);
    margin: 0 0 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.footer .social-links a {
    height: 40px;
    width: 40px;
    background-color: var(--bg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 4px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all .5s ease;
}

.footer .social-links a:hover {
    background-color: transparent;
    color: var(--text-white);
    border-color: inherit;
}




.page-title {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 260px 0 120px;
    min-height: 250px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .page-title {
        padding: 200px 0 110px;
    }
}

.page-title:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--bg-color);
    opacity: 0.75;
    content: "";
}

.page-title .title {
    font-size: 64px;
    color: var(--text-dark-gray);
    margin-bottom: 17px;
    position: relative;
    text-transform: capitalize;
}

.page-title .text {
    position: relative;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.05em;
    max-width: 520px;
    text-transform: capitalize;
}

.page-title .page-breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: capitalize;
}

@media only screen and (max-width: 550px) {
    .page-title .title {
        font-size: 44px;
    }
}

@media only screen and (max-width: 375px) {
    .page-title .title {
        font-size: 34px;

    }
}



/* =============================== */



@media(max-width:1199px) {
    .about-img .box-1 {
        top: 100%;
        left: 50%;
    }
}

@media(max-width:991px) {
    :root {
        --fs-4xl: 42px;
        --fs-3xl: 31px;
        --fs-2xl: 24px;
    }

    .home-img img {
        max-width: 250px;
    }

    .home-img .circle {
        height: 290px;
        width: 290px;
    }

    .services-item .img-box {
        height: 120px;
        width: 120px;
    }

    .pricing-item {
        grid-column: span 6;
    }

    .pricing1 .grid,
    .pricing2 .grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .pricing-header .price {
        /* height: 140px;
        width: 130px; */
    }

    .team-item {
        grid-column: span 6;
    }


}

@media(max-width:768px) {
    :root {
        --fs-4xl: 35px;
        --fs-3xl: 26px;
        --fs-2xl: 22px;
        --fs-xl: 18px;
    }

    .nav-toggler {
        display: block;
        height: 34px;
        width: 40px;
        border: none;
        z-index: 1;
    }

    .nav-toggler span {
        display: block;
        height: 2px;
        width: 24px;
        background-color: var(--main-color);
        margin: auto;
        position: relative;
        transition: background-color 0.3s ease;
    }

    .nav-toggler span::after,
    .nav-toggler span::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--main-color);
        transition: transform .3s ease;
    }

    .nav-toggler span::before {
        transform: translateY(-7px);
    }

    .nav {
        position: absolute;
        top: 100%;
        left: -120%;
        width: 90%;
        height: 100vh;
        background-color: var(--bg-color);
        z-index: 999;
        transition: left .3s linear;
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        display: flex;
        flex-direction: column;
    }

    .home-img .image {
        width: 16rem;
        height: 18rem;
    }

    .home-img .image img {
        width: 100%;
        height: 100%;
        max-width: 100%;
    }

    .about-img,
    .about-text {
        margin-top: 3rem;
    }

    .details_page .about-img .img-box {
        height: 350px;
    }

    .details_page .about-img .box-1 {
        top: 0%;
        left: 30%;
    }
}

@media (max-width: 550px) {
    .home .grid {
        display: flex;

        flex-wrap: wrap-reverse;
        justify-content: center;
    }

    .grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .services .grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* -----------------testimonial--------------------------------  */

.wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}

.quote-row {
    margin: auto;
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
}

.quote-column {
    position: absolute;
    padding: 0 !important;
    overflow: hidden;
    transition-property: top, left, right, bottom;
    background: transparent;
    box-shadow: none;
    /*     transition: .4s; */
}

.col-active {
    width: 33.33% !important;
    transform: translate(-50%, -50%) !important;
    top: 50% !important;
    left: 50% !important;
    bottom: unset !important;
    /* background: rgba(255, 255, 255, 0.375); */
    background-color: var(--main-color);
    box-shadow: 0 0.75rem 2rem 0 rgba(0, 0, 0, 0.1);
    border-radius: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.37);
    overflow: hidden;
    z-index: 1;
}

.col-inner {
    position: relative;
    width: 100%;
    max-width: 130px;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
}

.col-active .col-inner {
    max-width: 100%;
}


.author-meta {
    width: 100%;
    position: relative;
    border: none;
}

.col-active .author-meta {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.image-cover {
    position: absolute;
    width: 100%;
    float: left;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 100%;
    z-index: 1;
    cursor: pointer;
}

.col-active .image-cover {
    position: relative;
    width: 30%;
    max-width: 140px;
    float: left;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 1.3rem 0rem 1.3rem 0rem;
    z-index: 1;
}


.author-info {
    width: 70%;
    float: left;
    padding: 10px;
    overflow: hidden;
    visibility: hidden;
}

.col-active .author-info {
    visibility: visible;
}

.author-info .author-name,
.author-info .person-title {
    transform: translate(-100%, 0%);
    transition: .4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.show .author-info .author-name {
    transform: translate(0%, 0%);
}

.show .author-info .person-title {
    transform: translate(0%, 0%);
    transition-delay: .2s;
}

.person-name {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 21.7px;
    font-weight: 600;
    color: var(--text-dark-gray);
    margin: 0;
    margin-bottom: 5px;
}

.person-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark-gray);
    margin: 0;
}

.quote-wrapper {
    position: relative;
    width: 100%;
    margin: auto;
    color: var(--main-color);
    padding: 20px 15px;
    text-align: center;
    overflow: hidden;
    visibility: hidden;
    z-index: 0;
}

.col-active .quote-wrapper {
    visibility: visible;
}

img {
    object-fit: cover;
    position: relative;
    width: 100%;
    height: 100%;
}

.box-text-inner {
    width: 400px;
    margin: auto;
    color: var(--text-dark-gray);
}

.quote-wrapper .quote-symbol {
    font-size: 14vw;
    line-height: 1em;
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    z-index: 1;
    transition: 0.4s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

.quote-wrapper .quote-symbol:first-child {
    left: 0%;
    text-align: right;
}

.quote-wrapper .quote-symbol:last-child {
    right: 0%;
    text-align: left;
}

.show .quote-wrapper .quote-symbol:first-child {
    left: -50%;
}

.show .quote-wrapper .quote-symbol:last-child {
    right: -50%;
}

/*--Arrow--*/
.arrows-wrap {
    position: unset;
}

.arrow {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 80%;
    background-color: #494949;
    cursor: pointer;

}

.left-arrow {
    float: left;
    left: 30px;
    clip-path: polygon(40% 0%, 40% 20%, 100% 33%, 100% 67%, 40% 80%, 40% 100%, 0% 50%);
}

.right-arrow {
    float: right;
    right: 30px;
    clip-path: polygon(0 33%, 60% 20%, 60% 0%, 100% 50%, 60% 100%, 60% 80%, 0 67%);

}



@media (min-width:640px) {
    .col-active {
        width: 75% !important;
        height: unset !important;
        transform: translate(-50%, -50%) !important;
        top: 50% !important;
        left: 50% !important;
    }
}

@media (min-width:840px) {
    .col-active {
        width: 50% !important;
    }
}

@media (min-width:1080px) {
    .col-active {
        width: 33.33% !important;
    }
}

@media (max-width:640px) {
    .quote-row {
        min-height: 300px !important;
    }

    .arrow {
        top: 100%;
    }

    .quote-column {
        width: 90% !important;
        top: 50%;
        position: absolute;
        opacity: 0;
        transform: translate(-50%, -50%) !important;
        left: 50%;
        height: auto !important;
        z-index: 0;
        transition: .5s all;
    }

    .col-active {
        opacity: 1;
        z-index: 1;
    }

    .col-inner {
        max-width: 100%;
    }

    .author-meta {
        width: 100%;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.432);
    }

    .image-cover {
        position: relative;
        width: 30%;
        max-width: 140px;
        float: left;
        aspect-ratio: 1/1;
        overflow: hidden;
        border-radius: 1.3rem 0rem 1.3rem 0rem;
        z-index: 1;
    }

    .quote-wrapper {
        visibility: visible;
    }


    .quote-wrapper .quote-symbol {
        font-size: 34vh;
    }

}



#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    padding: 12px 20px;
    margin-top: 10px;
    border-radius: 4px;
    min-width: 220px;
    color: #fff;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    font-weight: 500;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    background-color: #28a745;
}

.toast.error {
    background-color: #dc3545;
}


.moblie_call_btn {
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 10px 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--main-color);
    background-color: var(--bg-color);
    color: var(--text-dark-gray);
    border-radius: 30px;
    display: none;
    z-index: 999;

}

.moblie_call_btn p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
}

.moblie_call_btn i {
    font-size: 2rem;
    animation: ring 0.8s infinite ease-in-out;
    transform-origin: center;
}

@keyframes ring {
    0% {
        transform: rotate(0deg) scale(1);
    }

    10% {
        transform: rotate(15deg) scale(1.05);
    }

    20% {
        transform: rotate(-15deg) scale(1.05);
    }

    30% {
        transform: rotate(15deg) scale(1.1);
    }

    40% {
        transform: rotate(-15deg) scale(1.1);
    }

    50% {
        transform: rotate(0deg) scale(1);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

@media (max-width: 991px) {
    .call_now {
        display: none;
    }

    .moblie_call_btn {
        display: flex;
    }
    .nav li>.submenu{
        position: inherit;
        left: 0;
        transform: translateX(0%);
        text-align: left;
        opacity: 1;
        visibility: visible;
         flex-direction: column;
    }
    .more_li .submenu {
    display: none;
}
.more_li.open .submenu {
    display: flex;
   
}

}

.copy_right a {
    color: var(--text-dark-gray);
}

footer {
    background-color: var(--bg-color);
    color: var(--text-dark-gray);
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-section {
    flex: 1 1 200px;
    /* Flexible width, min 300px */
    margin: 10px 0;
}

.footer-section.about_footer {
    flex: 1 1 400px;
}

.footer-section.about_footer a.logo {
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    transform: scaleY(0.9);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-section.about_footer a.logo span {
    font-size: 14px;
    display: block;
    font-weight: 400;
    color: var(--text-dark-gray);
    letter-spacing: 1px;
    /* text-align: center; */
    margin-left: 2rem;
    margin-top: 5px;
}

.footer-section.links {
    text-align: center;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}


.footer-section ul li a {
    color: var(--text-dark-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    margin-top: 20px;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
    .pricing.Fridge_service .grid{
            grid-template-columns: repeat(1, 1fr);
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        flex: 1 1 100%;
        max-width: 100%;
    }

     .blogs .grid {
            grid-template-columns: repeat(1, 1fr) !important;
     }

     .footer-section.about_footer {
    flex: 1 1 auto;
}
}

/* -------------blog details -------------------  */
.blog_details {
    padding: 60px 0;
}

.blog_details .grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* Main content + Sidebar */
    gap: 30px;
    align-items: start;
}

.blog_details .content .image {}

.blog_details .sidebar .box .image img,
.blog_details .content .image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.blog_details .content h1 {
    color: var(--text-dark-gray);
    font-size: 1.2rem;
}

.blog_details .content_text {
    margin-top: 20px;
}

.blog_details .sidebar .box {
    background: var(--bg-color);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    margin: 10px 0;
    gap: 10px;
}

.blog_details .sidebar .box .image {
    width: 8rem;
    /* height: 2rem; */
}



.blog_details .sidebar .text {
    margin-top: 10px;
}

.blog_details .sidebar .text h1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Responsive for tablets & mobile */
@media (max-width: 768px) {
    .blog_details .grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
    }

    .blog_details .sidebar {
        margin-top: 30px;
    }

    .blog_details .sidebar .box{
        margin-bottom: 10px;
    }
}


.source-btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
}

.source-btn:hover {
    background-color: #0056b3;
    transform: scale(1.03);
    text-decoration: none;
}


/*-----------faq section --------------- */
.faq_section{
    padding: 1.5rem 0 3rem 0;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.faq-question {
  background: none;
  border: none;
  font-size: var(--fs-lg);
  font-weight: bold;
  color: var(--text-dark-gray);
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 10px 0;
}

.faq-answer {
  display: none;
  padding: 5px 0 15px 10px;
 color: var(--text-dark-gray);
}

.faq-answer.open {
  display: block;
}

.faq-question::after {
  content: "➕";
  float: right;
  color: var(--text-dark-gray);
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: "➖";
  color: var(--text-dark-gray);
}

