/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: unset;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #101010;
}
html::-webkit-scrollbar-thumb {
    background-color: #FFD900;
    border-radius: 50rem;
}
a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}
ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
body {
    font-size: 20px;
    font-family: "Aeonik TRIAL Regular";
    font-weight: 400;
    color: #171717;
}
a,
a:hover,
a:focus {
    color: #ffffff;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}
h1,
h2,
h3,
h4 {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
main {
    overflow: clip;
}
img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}
.w-100 {
    width: 100% !important;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.text-center {
    text-align: center;
}
.container-fluid {
    padding: 0 40px;
}
.fixed-btn {
    position: fixed;
    right: 15px;
    top: 40%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.24);
    display: flex;
    flex-direction: column;
    gap: 0px;
    z-index: 9999;
    border-radius: 6px;
}
.call {
    width: 55px;
    height: 55px;
    background-color: #FFD900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 6px;
    img{
        filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7500%) hue-rotate(211deg) brightness(115%) contrast(115%);
    }
}
.enq-btn {
    color: #121212;
    font-family: "Aeonik TRIAL Regular";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    overflow: clip;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    border-radius: 6px;
    background: #FFF;
    position: relative;
    padding-left: 0;
    padding-top: 14px;
    &:hover,
    &:focus {
        background: #101010;
        color: #fff;
    }
    span {
        background: #FFD900;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 9px;
    }
}
.call-wp {
    position: fixed;
    bottom: 5%;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}
.enq-btn:hover::after,
.enq-btn:focus-visible::after {
    scale: 1 1;
    transform-origin: right;
}
.call:hover,
.fw:hover {
    transform: scale(1.1);
}
.vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-style: normal;
    font-size: 14px;
    font-style: normal;
}
/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}
.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}
.popup .popup__content {
    width: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}
.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #FFD900;
    transition: all .5s;
    z-index: 9;
}
.popup .popup__content .close:hover {
    background-color: #ffffff;
}
.popup .popup__content .close:hover span {
    background-color: #15222B;
}
.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #000;
}
.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}
.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}
.est-popup{
    .left{
        background: url(../images/est-img.webp);
        &::after{
            display: none;
        }
    }
}
.left {
    background: url(../images/inspiration-slider1.webp);
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    &::after{
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        background: #101010c7;
        opacity: 0.5;
    }
}
.left .logo{
    height: auto;
    position: relative;
    z-index: 1;
}
.right {
    padding: 30px;
    text-align: left;
    background: #101010;
    .primary-btn{
        border: 0;
        cursor: pointer;
        &:hover {
            background: #FFF;
            color: #000;
        }
    }
    label,.title{
        color: #fff;
    }
    .form-control{
        background: #FFF;
    }
    .form-control:focus {
        border-color: #FFD900;
    }
}
.est-popup .popup__content {
    width: 70%;
}
.estimate-container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            margin: 50px auto;
            overflow: hidden;
        }
        
        .progress-bar {
            display: flex;
            background: #f0f0f0;
            padding: 0;
        }
        
        .progress-step {
            flex: 1;
            text-align: center;
            padding: 20px 10px;
            position: relative;
            font-weight: 500;
            color: #888;
        }
        
        .progress-step.active {
            color: #2d2d2d;
            background: white;
        }
        
        .progress-step.active .step-number {
            background: #FFD900;
            color: #000;
        }
        
        .progress-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            width: 0;
            height: 0;
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
            border-left: 15px solid #f0f0f0;
            transform: translateY(-50%);
            z-index: 2;
        }
        
        .progress-step.active:not(:last-child):after {
            border-left: 15px solid white;
        }
        
        .step-number {
            display: inline-block;
            width: 30px;
            height: 30px;
            background: #ddd;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            margin-right: 10px;
        }
        
        .form-step {
            padding: 40px;
            display: none;
        }
        
        .form-step.active {
            display: block;
        }
        
        .step-title {
            font-family: "Aeonik TRIAL Bold";
            font-size: 32px;
            margin-bottom: 30px;
            color: #2d2d2d;
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            text-align: left;
        }
        
        .form-control {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: #c67b5f;
            outline: none;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .form-col {
            flex: 1;
        }
        
        .style-options {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
        }
        
        .style-option {
            border: 2px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .style-option:hover, .style-option.selected {
            border-color: #FFD900;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(198, 123, 95, 0.2);
        }
        
        .style-img {
            height: 120px;
            background-size: cover;
            background-position: center;
        }
        
        .style-name {
            padding: 15px;
            text-align: center;
            font-weight: 500;
        }
        
        .checkbox-group {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .checkbox-item {
            flex: 1 0 45%;
            padding: 20px;
            border: 2px solid #eee;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .checkbox-item:hover, .checkbox-item.selected {
            border-color: #c67b5f;
            background: rgba(198, 123, 95, 0.05);
        }
        
        .checkbox-item input {
            margin-right: 10px;
        }
        
        .estimate-summary {
            background: #3f3f3f;
            border-radius: 8px;
            padding: 30px;
            margin-top: 30px;
            color: #FFD900;
        }
        
        .summary-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        
        .summary-total {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            font-size: 20px;
            font-weight: 700;
            color: #2d2d2d;
        }
        
        .form-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .form-navigation .btn {
            min-width: 150px;
            text-align: center;
        }
        
        .form-navigation .btn-outline {
            background: transparent;
            color: #000;
            border: 2px solid #000;
        }
        .btn {
            display: inline-block;
            background: #FFD900;
            color: #000;
            padding: 14px 32px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
        }
        
        .btn:hover {
            background: #000;
            color: #FFD900;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid white;
            margin-left: 15px;
        }
        
         @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
                margin-bottom: 0;
            }
            
            .progress-step span {
                display: block;
                text-align: center;
            }
            
            .progress-step .step-number {
                margin-right: 0;
                margin-inline: auto;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            nav ul {
                display: none;
            }
        }
        /* Thank You Popup */
.thank-you-page{
    height: 100dvh;
    .banner-img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
        .thank-you-popup {
            display: flex;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .thank-you-content {
            background: white;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            max-width: 500px;
            width: 90%;
            animation: popIn 0.5s ease;
        }
        
        .thank-you-content h2 {
            color: #c67b5f;
            margin-bottom: 20px;
            font-size: 32px;
        }
        
        .thank-you-content p {
            margin-bottom: 30px;
            font-size: 18px;
            color: #555;
            line-height: 1.6;
        }
        
        .thank-you-btn {
            background: #c67b5f;
            color: white;
            border: none;
            padding: 14px 40px;
            border-radius: 8px;
            font-size: 18px;
            font-weight: normal;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .thank-you-btn:hover {
            background: #c67b5f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
        }
        
        /* Error Styles */
        .error-message {
            color: #ff4444;
            font-size: 14px;
            margin-top: 5px;
            display: none;
        }
        
        .error-border {
            border-color: #ff4444 !important;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes popIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 60px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
p{
    color: #171717;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}
.dec{
    color: #171717;
    font-family: "Aeonik TRIAL Regular";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}
.title {
    color: #000;
    text-align: center;
    font-family: "Aeonik TRIAL Regular";
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    margin-bottom: 11px;
}
.section-title {
    color: #101010;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 20px;
    z-index: 1;
    span{
        display: inline-block;
        position: relative;
        font-family: "DM Serif Text Italic";
        &::after{
            position: absolute;
            content: '';
            width: 100%;
            height: 100%;
            background: url(../images/underline.webp);
            background-size: 100%;
            background-repeat: no-repeat;
            bottom: -36px;
            left: 50%;
            transform: translateX(-50%);
            z-index: -1;
        }
    }
}
.small-line {
    width: 79px;
    height: 2px;
    background: #000;
    display: inline-block;
    margin-left: 15px;
    margin-top: 20px;
    margin-bottom: 24px;
}
.primary-btn {
border-radius: 6px;
background: #FFD900;
border: 1px solid #FFD900;
padding: 16px 24px;
display: inline-block;
color: #000;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 10px;
font-family: "Aeonik TRIAL Regular";
transition: all .5s;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-ms-transition: all .5s;
-o-transition: all .5s;
position: relative;
overflow: hidden;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 4px;
overflow: hidden;
letter-spacing: 0.5px;
}
.primary-btn:before,
.primary-btn:after,
.secondary-btn::before,
.secondary-btn::after {
  content: "";
  z-index: -1;
  width: calc(100% + 40px);
  height: 100%;
  position: absolute;
  top: 0;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
  transition: transform 0.6s;
}
.primary-btn:before,
.secondary-btn::before {
  left: calc(-100% - 40px);
}
.primary-btn:after,
.secondary-btn::after {
  left: 100%;
  transform: rotate(180deg);
  background-color: #101010;
}
.primary-btn:hover:before,
.secondary-btn:hover:before {
  transform: translateX(100%);
}
.primary-btn:hover:after,
.secondary-btn:hover:after {
  transform: rotate(180deg) translateX(100%);
}
.primary-btn:hover {
  color: #fff;
  border-color: #FFD900;
}
.secondary-btn {
    background: transparent;
    border-color: #000;
}
.call-btn{
    background: transparent;
    border: none;
    font-size: 24px;
    color: #FFF;
    font-weight: 400;
    &:hover{
        color: #FFD900;
        img{
            filter: brightness(0) saturate(100%) invert(70%) sepia(92%) saturate(530%) hue-rotate(0deg) brightness(104%) contrast(104%);
        }
        &::after, &::before{
            display: none;
        }
    }
}
.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 12px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
}
.form-control:focus {
    border-color: #FF722B;
}
form .btn-group {
    justify-content: center;
}
.form-group {
    margin-bottom: 10px;
}
input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}
.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}
.form-group {
    position: relative;
}
.italic {
    font-style: italic;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}
/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}
/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}
.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}
.slideInRight {
    animation-name: slideInRight;
}
/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}
/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}
.zoomReverseIn {
    animation-name: zoomReverseIn;
}
/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}
.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}
/*******************************
	Menu
*******************************/
header {
    position: relative;
    z-index: 999;
    right: 0;
    left: 0;
    background: #000;
}
.topbar{
    background: #000;
    text-align: center;
    padding-block: 6px;
    position: relative;
    z-index: 1;
    display: none;
    overflow: hidden;
    a{
        color: #FFD900;
    }
    p{
        color: #FFF;
        font-family: "Aeonik TRIAL Regular";
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0;
    }
}
.flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}
#menu{
    padding-top: 6px;
}
.logo{
    transition: all .5s;
}
header.sticky {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
    background-color: rgba(31, 31, 31);
    .topbar{
        display: block;
    }
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    z-index: 999;
    transition: ease-in-out .4s;

}
.social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social a{
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    stroke-width: 1px;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}
.social a:hover{
    transform: scale(1.2);
    border-color: #FFD900;
    img{
        filter: brightness(0) saturate(100%) invert(70%) sepia(92%) saturate(530%) hue-rotate(0deg) brightness(104%) contrast(104%);
    }
}
.mobile-menu{
    display: none;
}
/************************************* Home Page **************************************/
.banner {
    overflow: hidden;
    position: relative;
    /* &:after{
        content: '';
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.64) 12.41%, rgba(0, 0, 0, 0.00) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.58) 5%, rgba(0, 0, 0, 0.00) 100%);
        position: absolute;
        inset: 0;
    } */
    .banner-bg{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 132px;
    }
    .banner-content{
        position: relative;
        z-index: 1;
        width: 100%;
        text-align: center;
        padding: 35px;
        h1{
            color: #FFF;
            font-family: "Aeonik TRIAL Regular";
            font-size: 75px;
            font-style: normal;
            font-weight: 400;
            margin-bottom: 5px;
            span{
                display: inline-block;
                position: relative;
                font-family: "DM Serif Text Italic";
                &::after{
                    position: absolute;
                    content: '';
                    background: url(../images/underline.webp);
                    background-repeat: no-repeat;
                    background-size: 100%;
                    bottom: -100px;
                    width: 85%;
                    height: 100%;
                    left: 50%;
                    transform: translateX(-50%);
                }
            }
        }
        p{
            color: #FFF;
            font-size: 32px;
            line-height: normal;
        }
    }
    .offer-tag{
        position: absolute;
        width: 170px;
        height: 170px;
        padding: 10px;
        background: rgba(31, 31, 31, 0.80);
        z-index: 1;
        right: -61px;
        top: 259px;
        text-align: center;
        border-radius: 50%;
        color: #FFF;
        .offer-logo{
            width: 35%;
        }
        h3{
            color: #FFF;
            text-align: center;
            font-family: "Aeonik TRIAL Bold";
            font-size: 16px;
            font-weight: 700;
            span{
                display: inline-block;
                font-family: "DM Serif Text Regular";
                font-size: 28px;
                font-weight: 400;
            }
        }
        .no-cost-emi{
            width: 190px;
            height: 26px;
            background: #FFD900;
            display: inline-block;
            clip-path: polygon( 0% 0%,100% 0%,91.032% 50%,100% 100%,0% 100%,8.969% 50%,0% 0% );
            color: #000;
            margin-left: -19px;
            color: #000;
            text-align: center;
            font-size: 18px;
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }
}
.btn-group {
    display: flex;
    gap: 25px;
}
/************************************
 Category
************************************/
.category{
    .category-card{
        text-align: center;
        padding: 10px;
        height: 100%;
        transition: all .5s;
        &:hover{
            box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.05);
            transform: scale(1.1);
            .category-card-img{
                img{
                    transform: rotateY(180deg);
                }
            }
        }
    }
    .category-card-img{
        width: 48px;
        height: 48px;
        margin-inline: auto;
        margin-bottom: 12px;
    }
    p{
        color: #000;
        font-size: 19px;
        font-family: "Aeonik TRIAL Regular";
        font-weight: 400;
    }
}
/*******************************
       Services
*******************************/
.services{
    .section-head{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .section-title{
        margin-bottom: 5px;
        span{
            &::after{
                bottom: -40px;
            }
        }
    }
}
.step-items{
    margin-top: 50px;
    margin-inline: auto;
}
.accordion-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
}
details {
    display: flex;
    flex-direction: row;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
    &::after{
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        border-radius: 20px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.00) 100%);
        left: 0;
        top: 0;
        z-index: -1;
    }
    ::marker {
        content: '';
    }
    summary img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        transition: filter 0.5s ease;
    }
    summary {
        width: 120px;
        height: 419px;
        padding: 1rem 1em;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-evenly;
        .summary-content{
            display: flex;
            align-items: center;
            flex-direction: column;
            justify-content: space-between;
        }
        .step-img{
            position: absolute;
            z-index: 1;
            width: 70px;
            height: 70px;
            bottom: 30px;
            left: 75px;
        }
        h3{
            color: #FFF;
            font-size: 24px;
            transform: rotate(-90deg);
            height: 35%;
            width: 410px;
            display: flex;
            align-items: center;
            justify-content: start;
            font-family: "Aeonik TRIAL Bold";
            font-weight: 700;
        }
    }
    
    .details-content-wrapper {
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 12px 24px;
        width: 100%;
        display: flex;
        align-items: flex-end;
        gap: 10px;
        h3{
            color: #fff;
            font-size: 24px;
            margin-bottom: 17px;
            font-family: "Aeonik TRIAL Bold";
            font-weight: normal;
        }
        .primary-btn{
            width: 170px;
            padding: 17px 14px;
            margin-bottom: 20px;
        }
    }
    &[open]{
       summary{
        background: transparent;
        span{
            left: 20px;
        }
        h3, .step-img{
            opacity: 0;
        }
        img {
            top: 0px;
            left: 0;
        }
    }
       
    span{
        color: #fff;
        }
    }
}
.details-content-wrapper {
    /* Animate-in the text when open */
    h3{
        opacity: 0;
        margin-top: 5px;
        color: #fff;
    }
    [open] & h3{
        transform: none;
        opacity: 1;
        transition-delay: 0.5s;
    }
    p {
        opacity: 0;
        color: #fff;
        font-size: 18px;
    }
    
    [open] & p{
        transform: none;
        opacity: 1;
        transition-delay: 0.5s;
    }
}
/* Animation */
::details-content {
    transition: width 0.5s ease, content-visibility 0.5s ease allow-discrete;
    width: 0;
}
[open]::details-content {
    width: 515px;
}
/************************************
  Scroll Section
************************************/
.reverse-scroll-section {
    .section-title{
        color: #FFF;
        margin-bottom: 40px;
        span{
            &::after{
                bottom: -45px;
            }
        }
    }
    .dec{
        color: #FFF;
        margin-bottom: 40px;
    }
    background-color: #000;
    position: relative;
    .marquee-wrapper {
      overflow: hidden;
      position: relative;
      width: 100%;
      background: #000;
      height: 100px;
      padding: 20px 0;
      &::after,&::before{
        background: linear-gradient(to right, rgba(0, 0, 0, 0.24) 0%, rgb(0, 0, 0) 100%);
        content: '';
        position: absolute;
        right: 0;
        top: -7px;
        bottom: 17px;
        width: 20%;
      }
      &::before{
        background: linear-gradient(to left, rgba(0, 0, 0, 0.151) 0%, rgb(0, 0, 0) 100%);
        left: 0;
        right: auto;
        z-index: 1;
      }
    }
    .marquee-track {
      position: absolute;
      display: flex;
      white-space: nowrap;
    }
    .card {
      min-width: 280px;
      height: 80px;
      padding: 15px 35px;
      border-radius: 20px;
      border: 1px solid #FFF;
      background-color: transparent;
      margin-right: 20px;
      text-align: center;
      color: #252525;
      font-family: 'NeurialGrotesk Regular';
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.5s;
      span{
        color: #FFF;
        font-size: 44px;
        font-style: normal;
        font-weight: 400;
      }
    }
  }
/************************************
   portfolio
************************************/
.portfolio{
    .section-title{
        margin-bottom: 5px;
        span{
            &::after{
                bottom: -45px;
            }
        }
        margin-bottom: 10px;
    }
    .dec{
        margin-bottom: 28px;
    }
}
.portfolio-item{
width: 100%;
height: 377px;
border-radius: 20px;
overflow: hidden;
position: relative;
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
span{
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.37) 0%, rgba(0, 0, 0, 0.73) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD900;
    transform: scale(.9);
    opacity: 0;
    transition: all .5s;
    font-size: 40px;
    font-weight: lighter;
}
&:hover{
    span{
        opacity: 1;
        transform: scale(1);
    }
}
}
/************************************
    Easy Steps
************************************/
.easy-steps{
    .section-title{
        margin-bottom: 5px;
        span{
            &::after{
                width: 50%;
                left: 22%;
                bottom: -45px;
            }
        }
    }
    .dec{
        margin-bottom: 28px;
    }
    .easy-step-img{
        border-radius: 29px;
        height: 80vh;
        overflow: hidden;
        position: relative;
        border: 2px dashed #000;
        img{
            width: 100%;
            height: 100%;
            border-radius: 29px;
            position: absolute;
            visibility: hidden;
            transition: opacity 0.5s ease;
            padding: 15px;
        }
    }
      .easy-step-img img.active {
        visibility: visible;
      }
      
    .timeline {
        .row:last-child {
          .col-2 .circle::after {
            display: none;
          }
        }
      }
    /* .timeline{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    } */
    h3{
        color: #191919;
        font-family: "Aeonik TRIAL Bold";
        font-size: 24px;
        font-weight: 700;
    }
    .circle{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        position: relative;
        span{
            display: inline-block;
            color: #000;
            font-size: 20px;
            font-weight: 400;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #D4D4D4;
            display: flex;
            align-items: center;
            justify-content: center;
            outline: 1px solid #000;
            outline-offset: 5px;
            outline-style: dashed;
        }
        &::after{
            content: '';
            position: absolute;
            inset: 0;
            width: 1px;
            height: 100%;
            border: 1px solid #000;
            border-style: dashed;
            border-color: #000;
            top: 20%;
            left: 50%;
            transform: translateX(-50%);
            z-index: -1;
        }
    }
    .easy-step-content-box{
        cursor: pointer;
        height: 120px;
        p{
            opacity: 0;
            transition: all .5s;
            margin-bottom: 0;
        }
        .active p {
            opacity: 1;
        }
        &:hover{
            p{
                opacity: 1;
                transition: all .5s;
            }
        }
    }
    .circle span.active,
    .circle span.hover {
      background: #FFD900;
    }
    .easy-step-content-box.active{
        p{
            opacity: 1;
        }
    }
    .circle span.active {
        background: #FFD900;
    }
}
/************************************
  Inspiration
************************************/
.inspiration{
    .section-title{
        margin-bottom: 10px;
        span{
            &::after{
                width: 95%;
                left: 50%;
                transform: translateX(-50%);
                bottom: -45px;
            }
        }
    }
    .dec{
        margin-bottom: 28px;
    }
    .inspiration-slider{
        .item{
            position: relative;
            height: 672px;
            border-radius: 20px;
            overflow: hidden;
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            h4{
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%,-50%);
                color: #FFF;
                font-size: 38px;
                font-style: normal;
                font-weight: 400;
                opacity: 0;
                transition: all .6s;
                scale: 0 0;
                z-index: 1;
                text-align: center;
            }
            a{  position: absolute;
                background: linear-gradient(0deg, rgba(0, 0, 0, 0.89) 0%, rgba(0, 0, 0, 0.00) 100%);
                opacity: 0;
                transition: all .5s;
                border-radius: 20px;
                inset: 0;
                display: block;
                scale: 0 0;
            } 
            &:hover{
                a{
                    opacity: 1;
                    scale: 1 1;
                }
                h4{
                    opacity: 1;
                    scale: 1 1;
                }
            }
        }
        .slick-list{
            margin: 0 -10px;
        }
        .slick-slide{
            margin: 0 10px;
        }
        .slick-dots {
            position: absolute;
            bottom: -60px;
            display: block;
            width: 100%;
            padding: 0;
            margin: 0;
            list-style: none;
            text-align: center
        }
        .slick-dots li{
            position: relative;
        }
        .slick-dots li, button{
            width: 90px;
            height: 3px;
            background: #C9C9C9;
            display: inline-block;
            margin-inline: auto;
        }
        .slick-dots button{
            background: transparent;
            position: absolute;
            inset: 0;
            padding: 0;
            margin-top: -1px;
            height: 3px;
        }
        .slick-dots li.slick-active button{
            background: #000000;
        }
    }   
}
/************************************
  Offer Elegance
************************************/
.offer-elegance{
    .section-title {
        & span {
            &::after {
                position: absolute;
                bottom: -50px;
            }
        }
    }
    .offer-elegance-card{
        padding: 20px;
        border-radius: 21px;
        border: 1px solid #EAEAEA;
        background: #FFF;
        box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all .5s;
        .card-header{
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
            h3{
                color: #191919;
                font-size: 24px;
                font-weight: 700;
                line-height: 104.167% ;
            }
        }
        li{
            position: relative;
            margin-bottom: 15px;
            color: #151515;
            font-size: 18px;
            font-weight: 400;
            line-height: 160.222%;
            padding-left: 20px;
            transition: all.5s;
            &::before{
                content: ' ';
                position: absolute;
                width: 12px;
                height: 12px;
                background-image: url(../images/list-icon.webp);
                background-size: contain;
                background-repeat: no-repeat;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
            }
            &:hover{
                transform: translateX(10px);
            }
        }
        li:last-child{
            margin-bottom: 0;
        }
        &:hover{
            background: #FFD900;
            box-shadow: 0px 5px 4px 0px rgba(255, 217, 0, 0.103);
            transform: translateY(-10px);
        }
    }
}
/************************************
  collaboration
************************************/
.collaboration{
   background: #F6F4F1;
   .section-title{
    margin-bottom: 10px;
    span{
        &::after{
            width: 90%;
            bottom: -40px;
        }
    }
    }
   .item{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    .slick-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
   }
}
/************************************
  testimonials
************************************/
.testimonials{
    .section-title{
        margin-bottom: 0;
        span{
            &::after{
                width: 90%;
                bottom: -40px;
            }
        }
    }
    .primary-btn{
        padding: 16px 40px;
    }
    .video-item{
        display: none;
    }
    .testimonials-box{
        height: 280px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        a{
            &::after{
                content: '';
                position: absolute;
                inset: 0;
                border-radius: 10px;
                background: rgba(0, 0, 0, 0.10);
            }
        }
        .clients-img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .yotpo-icon{
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            height: auto;
            width: auto;
        }
        &:hover{
            .clients-img{
                transform: scale(1.1);
            }
        }
    }
    .d-none {
        display: none !important;
      }
      .fade-in {
        animation: fadeIn 0.5s ease-in-out forwards;
      }
      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
    }
    .btn-group{
        justify-content: center;
        margin-top: 30px;
    }
}
/*******************************
Faq 
*******************************/
.faq{
    .section-title{
        margin-bottom: 30px;
        span{
            &::after{
                bottom: -43px;
            }
        }
    }
}
.accordion__item {
    margin: 12px auto;
    transition: .5s;
    border-bottom: 1px solid #CDCDCD;
    background: #FFF;
    position: relative;
}
.accordion__title:hover{
    transform: translateY(-5px);
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 10px 16px;
    padding-right: 32px;
    margin-bottom: 0px;
    color: #191919;
    font-family: "Aeonik TRIAL Bold";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    transition: all .5s;
}
.accordion__title::after {
    content: ' ';
    position: absolute;
    background: url(../images/faq-arrow.webp);
    background-size: 100%;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    right: 16px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
}
.accordion__title.accordion-active::after{
    transform: rotate(180deg);
}
.accordion__item .accordion__content {
    padding: 16px;
    margin-bottom: 0;
    display: none;
    padding-top: 0;
    p{
        line-height: 160%;
        margin-bottom: 0;
        color: #171717;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
    }
}
.testi-box {
    border-radius: 16px;
    border: 1px solid #D7D7D7;
    background: rgba(0, 0, 0, 0.20);
    box-shadow: 0px 8px 19px 0px rgba(0, 0, 0, 0.11);
    display: block;
    overflow: hidden;
    position: relative;
    &:hover{
        .play-icon{
            img{
                transform: scale(1.2);
            }
        }
    }
    .play-icon {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        background: rgba(0, 0, 0, 0.20);
    }
}
.testi-slider{
    .slick-list{
        margin: 0 -10px;
    }
    .slick-slide{
        margin: 0 10px;
    }
}
.slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 5px;
    border-radius: 10px;
    background: #DBDBDB;
    &::before{
        display: none;
    }
}
.slick-dots li.slick-active button 
{
    background: #707070;
}
.slick-dots li {
    width: 10px;
    height: 10px;
}
.slick-dots {
    bottom: -50px;
}
.request-quote {
    position: relative;
    padding-top: 80px;
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .section-title{
        line-height: 100%;
        margin-bottom: 27px;
    }
}
/****************************
        Discover More
******************************/
.discover-more{
    .container{
        border-radius: 18px;
        background: #FEF8EA;
        padding: 40px;
    }
    .discover-more-box{
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }
    .discover-more-content{
        padding: 40px;
        padding-right: 150px;
    }
    .secondary-btn{
        padding: 16px 48px;
    }
}
/****************************
        Footer
******************************/
footer {
    width: 100%;
    padding-top: 45px;
}
.footer-box {
    padding-right: 4%;
    .logo{
        margin-bottom: 30px;
    }
}
.footer-logo {
    margin-bottom: 25px;
}
footer p {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.footer-title {
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 136.364%;
    margin-bottom: 32px;
}
.contact-info p{
    position: relative;
    padding-left: 30px;
    img{
        position: absolute;
        left: 0;
        top: 5px;
    }
}
footer ul li a,
footer p a {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
footer p a:hover,
.contact-info .list-item:hover a {
    color: #FFD900;
}
.contact-info{
    padding-right: 14%;
}
.copyright {
    border-top: 1px solid #56464F;
    padding-block: 17px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 29px;
    p{
        margin: 0;
    }
}
.copyright a {
    color: #E78368;
    text-decoration: underline;
}
footer{
    background: #111;;
    .form-control{
        padding: 11px 8px;
        border-radius: 4px;
        border: 1px solid #999;
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 78.571% ;
        background-color: transparent;
        &::placeholder{
            color: #FFF;
        } 
        option{
            color: #000;
        }
    }
    .form-control:focus {
        border-color: #FFD900;
    }
    .primary-btn{
        border-radius: 4px;
        font-size: 14px;
        padding: 11px 8px;
        width: 100%;
        text-align: center;
        &:hover{
            background-color: #101010;
            border-color: #FFD900;
        }
    }
}
textarea{
    font-family: "Aeonik TRIAL Regular";
}
/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
@media screen and (-webkit-min-device-pixel-ratio: 1.25),
       screen and (min-resolution: 120dpi) {
        .popup .popup__content {
    width: 58%;
}
       }
@media (max-width: 1600px),
(max-width: 1536px) {
    .home-interior {
        .row .col-lg-6:last-child {
            padding: 2%;
            padding-right: 7%;
            padding-top: 0;
            padding-bottom: 110px;
        }
    }
    .portfolio-item {
        height: 338px;
    }
    .banner {
        .container {
            padding-bottom: 50px;
        }
        .offer-tag {
            right: -61px;
            top: 222px;
        }
    }
    .easy-steps {
        .easy-step-content-box {
            height: 100px;
        }
    }
}
@media (max-width: 1440px),
(max-width: 1366px) {
header{
    .logo {
        width: 290px;
    }
}
.sec-gap {
    padding: 40px 0;
}
.primary-btn {
    padding: 15px 22px;
    font-size: 16px;
}   
.topbar {
    p {
        font-size: 14px;
    }
}
.logo{
    img{
        width: 50%;
    }
}
.banner {
    & .banner-content {
        h1 {
            font-size: 50px;
            span{
                &::after{
                    bottom: -65px;
                }
            }   
        }
        p{
            font-size: 22px;
        }
    }
    .offer-tag{
        width: 150px;
        height: 150px;
        right: -20px;
        top: 176px;
        h3{
            font-size: 14px;
            span{
                font-size: 24px;
            }
        }
        .no-cost-emi{
            font-size: 16px;
            width: 168px;
        }
    }
}
.category {
    p {
        font-size: 16px;
    }
}
.enq-btn {
    span {
        width: 50px;
    }
}
.category-card{
    p{
        font-size: 16px;
    }
}
.section-title {
    font-size: 38px;
}
.dec {
    font-size: 14px;
    line-height: 24px;
}
.services{
    .section-title {
        & span {
            &::after {
                bottom: -35px;
            }
        }
    }
    details {
        border-radius: 15px;
        summary {
            width: 86px;
            height: 349px;
            h3{
                width: 338px;
            }
        }
        & .details-content-wrapper, .summary-content {
            h3 {
                font-size: 20px;
            }
            p{
                font-size: 16px;
            }
            .primary-btn {
                width: 150px;
                padding: 14px 14px;
                margin-bottom: 20px;
                font-size: 14px;
            }
        }
    }
}
.reverse-scroll-section {
    & .section-title {
        margin-bottom: 30px;
        & span {
            &::after {
                bottom: -40px;
            }
        }
    }
    .card{
        min-width: 240px;
        height: 70px;
        img{
            height: 70%;
        }
        span{
            font-size: 34px;
        }
    }
}
.portfolio {
    & .section-title {
        & span {
            &::after {
                bottom: -40px;
            }
        }
    }
}
.easy-steps {
    h3{
        font-size: 22px;
    }
    & .section-title {
        & span {
            &::after {
                bottom: -40px;
            }
        }
    }
    .circle {
        & span {
            width: 34px;
            height: 34px;
            font-size: 16px;
        }
    }
    .easy-step-content-box {
        height: 90px;
    }
}
.inspiration {
    & .section-title {
        & span {
            &::after {
                bottom: -39px;
            }
        }
    }
    .inspiration-slider{
        .item{
            height: 480px;
            h4{
                font-size: 32px;
            }
        }
        .slick-dots li, button{
            height: 2px;
        }
        .slick-slide{
            margin: 0 5px;
        }
        .slick-list{
            margin: 0 -5px;
        }
    }
}
.offer-elegance {
    & .offer-elegance-card {
        & .card-header {
           h3{
            font-size: 20px;
           }
        }
        li{
            font-size: 14px;
            margin-bottom: 10px;
            &::before{
                width: 10px;
                height: 10px;
            }
        }
    }
}
.collaboration {
    & .section-title {
        & span {
            &::after {
                bottom: -33px;
            }
        }
    }
}
.testimonials {
    .section-title{
        & span{
            &::after{
                bottom: -33px;
            }
        }
    }
    .testimonials-box {
        height: 240px;
    }
}
.faq {
    & .section-title {
        & span {
            &::after {
                bottom: -37px;
            }
        }
    }
}
.discover-more{
    & .section-title {
        & span {
            &::after {
                bottom: -43px;
            }
        }
    }
}
p {
    font-size: 16px;
}
.mb-60 {
    margin-bottom: 40px;
}
.portfolio-item {
    height: 290px;
}
.accordion__item .accordion__title{
    font-size: 18px;
}
.accordion__item .accordion__content p{
    font-size: 16px;
}
.popup .popup__content {
    width: 70%;
}
footer{
    .footer-title{
        font-size: 20px;
        margin-bottom: 22px;
    }
    p{
        font-size: 16px;
    }
}
.style-options {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
    .estimate-container{
        margin: 0;
    }
}
@media (max-width: 991.98px) {
    .call {
        width: 48px;
        height: 48px;
    }
    .sec-gap{
        padding: 30px 0;
    }
    .section-title {
        font-size: 30px;
    }
    .dec{
        font-size: 16px;
    }
    .primary-btn {
        font-size: 14px;
        padding: 15px 18px;
    }
    header{
        .logo {
            width: 220px;
        }
    }
    footer{
        .logo {
            width: 320px;
        }
    }
    header {
        .call-btn{
            padding: 15px;
            background-color: #FFD900;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            span{
                display: none;
            }
            img{
                width: 15px;
                height: 15px;
                filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(13%) hue-rotate(228deg) brightness(103%) contrast(104%);
            }
        }
    }
    .topbar {
        p {
            font-size: 16px;
        }
    }
    .banner {
        height: auto;  
        .banner-content {
            h1 {
                font-size: 40px;
                span{
                    &::after{
                        bottom: -50px;
                    }
                }
            }
            p{
                font-size: 22px;
            }
        }
        .offer-tag {
            width: 140px;
            height: 140px;
            right: 21px;
            top: 107px;
            h3 {
                font-size: 12px;
                span {
                    font-size: 20px;
                }
            }
            .no-cost-emi{
                width: 158px;
                height: 24px;
                margin-left: -19.5px;
                font-size: 14px;
            }
        }
    }
    .category {
        padding-bottom: 0;
    }
    .category-card {
        p {
            font-size: 15px;
        }
    }
    .services {
        & .section-title {
            margin-bottom: 2px;
            & span {
                &::after {
                    bottom: -25px;
                }
            }
        }
        .accordion-wrapper{
            gap: 8px;
        }
        details {
            summary {
                width: 60px;
                height: 216px;
                h3{
                    width: 183px;
                }
            }
            .details-content-wrapper, & .summary-content {
                h3 {
                    font-size: 20px;
                    margin-bottom: 8px;
                }
                p{
                    font-size: 14px;
                    line-height: 120%;
                }
                .primary-btn {
                    width: 110px;
                    padding: 10px 8px;
                    margin-bottom: 20px;
                    font-size: 10px;
                }
            }
            .details-content-wrapper{
                padding: 10px;
            }
        }
    }
        [open]::details-content {
        width: 315px;
    }
    .step-items {
        margin-top: 0;
    }
    .reverse-scroll-section {
        .dec{
            margin-bottom: 30px;
        }
        & .section-title {
            margin-bottom: 25px;
            & span {
                &::after {
                    bottom: -30px;
                }
            }
        }
        .card{
            min-width: 200px;
            height: 60px;
            padding: 10px 20px;
            span{
                font-size: 26px;
            }
        }
        .marquee-wrapper {
            height: 80px;
        }
    }
    .portfolio {
        & .section-title {
            & span {
                &::after {
                    bottom: -30px;
                }
            }
        }
    }
    .easy-steps {
        padding: 10px 0;
        & .section-title {
            & span {
                &::after {
                    bottom: -32px;
                }
            }
        }
        .easy-step-img{
            margin-bottom: 40px;
        }
    }
    .easy-step-content-box p {
        opacity: 1 !important;
    }
    .inspiration {
        & .section-title {
            margin-bottom: 7px;
            & span {
                &::after {
                    bottom: -30px;
                }
            }
        }
        .inspiration-slider{
            padding-inline: 10px;
            .slick-slide{
                height: 380px;
            }
            .slick-dots li, button{
                width: 50px;
            }
        }
    }
    .offer-elegance {
        .section-title {
            margin-bottom: 7px;
            & span {
                &::after {
                    position: absolute;
                    bottom: -30px;
                }
            }
        }
        & .offer-elegance-card {
            padding: 15px;
            li {
                font-size: 15px;
                margin-bottom: 5px;
                &::before {
                    width: 10px;
                    height: 10px;
                }
            }
            .card-header{
                margin-bottom: 5px;
            }
        }
    }
    .collaboration {
        & .section-title {
            margin-bottom: 5px;
            & span {
                &::after {
                    bottom: -26px;
                }
            }
        }
        .item{
            height: 80px;
        }
        .collaboration-slider{
            .slick-slide{
                margin: 0 10px;
            }
            .slick-list{
                margin: 0 -10px;
            }
        }
    }
    .testimonials {
        .section-title{
            & span{
                &::after{
                    bottom: -26px;
                }
            }
        }
    }
    .faq {
        & .section-title {
            & span {
                &::after {
                    bottom: -30px;
                }
            }
        }
        .accordion__item .accordion__content p {
            font-size: 17px;
        }
    }
    .portfolio-item {
        height: 180px;
    }
    .discover-more {
        & .section-title {
            & span {
                &::after {
                    bottom: -32px;
                }
            }
        }
    }
    .popup .popup__content {
        width: 70%;
    }
    .left {
        background: #101010;
    }
    .est-popup .popup__content{
        width: 88%;
    }
}

@media (max-width: 575.98px) {
.popup .popup__content {
    width: 90%;
}
.left .logo {
    width: 60%;
}
.right {
    padding: 14px;
    .primary-btn {
        padding: 10px 20px;
    }
}
.title {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 6px;
}
label {
    font-size: 14px;
    margin-bottom: 2px;
}
.form-control {
    font-size: 14px;
    padding: 7px 8px;
}
.form-group {
    margin-bottom: 6px;
}
.topbar {
    padding: 3px;
    p {
        font-size: 12px;
    }
}
header {
    .logo {
        width: 180px;   
    }
    .call-btn{
        padding: 10px;
    }
}
footer{
    .footer-box{
        .logo {
            width: 200px;   
            margin-bottom: 10px;
        }
    }
}
.primary-btn {
    padding: 10px 5px;
    font-size: 10px;
}
.banner {
    .container{
        padding-bottom: 36px;
    }
    & .banner-content {
        width: 100%;
        padding: 2%;
        h1 {
            font-size: 23px;
            line-height: 160%;
            span {
                &::after {
                    bottom: -34px;
                }
            }
        }
        p {
            font-size: 14px;
            margin-bottom: 10px;
        }
    }
    .offer-tag {
        width: 110px;
        height: 110px;
        top: 74px;
        right: 15px;
        h3{
            font-size: 9px;
            span{
                font-size: 18px;
            }
        }
        .no-cost-emi {
            width: 118px;
            height: 20px;
            font-size: 11px;
            margin-left: -14px;
        }
        .stars{
            margin-bottom: 6px;
        }
    }
}
.section-title {
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 100%;
}
.dec {
    font-size: 14px;
    line-height: 13px;
}
.sec-gap {
    padding: 10px 0;
}
.service-item {
    .title {
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 6px;
    }
}
.service-item {
    border-radius: 8px;
    p {
        line-height: 136.556%;
        font-size: 13px;
    }
    .primary-btn {
        padding: 10px 10px;
        font-size: 12px;
        border-radius: 6px;
    }
}
.btn-group {
    gap: 8px;
}
.accordion__item .accordion__title {
    font-size: 15px;
    line-height: 17px;
}
.accordion__item {
    margin: 6px auto;
}
footer p {
    font-size: 14px;
    line-height: 20px;
}
footer ul li a, footer p a {
    font-size: 14px;
    line-height: 20px;
}
.footer-title {
    font-size: 16px;
}
.copyright {
    justify-content: center;
}
.fixed-btn{
    right: 1px;
    top: 50%;
}
.call-wp{
    width: 40px;
    right: 4px;
    gap: 4px;
}
.call {
    width: 36px;
    height: 36px;
    padding: 9px;
}
.enq-btn {
    span {
        width: 38px;
    }
}
.vertical {
    font-size: 12px;
}
.category {
    .category-card-img {
        width: 40px;
        height: 40px;
    }
    .category-card {
        p {
            font-size: 12px;
        }
    }
}
.services {
    & .section-title {
        margin-bottom: 5px;
        & span {
            &::after {
                bottom: -20px;
            }
        }
    }
    details[open] {
        display: block;
        transition: max-height 0.3s ease-out;
    }
    details {
        display: block;
        width: 100%;
    }
    .accordion-wrapper {
        flex-wrap: wrap;
        width: 100%;
        gap: 15px;
    }
}
.reverse-scroll-section {
    .section-title{
        margin-bottom: 20px;
    }
    .dec{
        margin-bottom: 10px;
    }
    & .section-title {
        & span {
            &::after {
                bottom: -24px;
            }
        }
    }
    .card{
        min-width: 130px;
        height: 40px;
        border-radius: 10px;
        padding: 6px 20px;
        img{
            height: 50%;
        }
        span{
            font-size: 20px;
        }
    }
    .marquee-wrapper{
        height: 50px;
    }
}
.portfolio {
    & .section-title {
        margin-bottom: 12px;
        & span {
            &::after {
                bottom: -25px;
            }
        }
    }
}
.easy-steps {
    & .section-title {
        margin-bottom: 8px;
        & span {
            &::after {
                bottom: -25px;
            }
        }
    }
    .circle {
        & span {
            width: 23px;
            height: 23px;
            font-size: 12px;
        }
    }
    h3 {
        font-size: 18px;
    }
    p{
        font-size: 14px;
    }
}
.inspiration {
    & .section-title {
        margin-bottom: 10px;
        & span {
            &::after {
                bottom: -24px;
            }
        }
    }
    .inspiration-slider{
        padding-inline: 30px;
        .slick-dots{
            margin-bottom: 30px;
            margin-left: -32px;
        }
        .slick-dots li, button{
            width: 20px;
        }
    }
}
.offer-elegance {
    & .section-title {
        margin-bottom: 12px;
        & span {
            &::after {
                bottom: -25px;
            }
        }
    }
    .offer-elegance-card {
        li {
            font-size: 14px;
        }
    }

}
.collaboration {
    & .section-title {
        margin-bottom: 8px;
        & span {
            &::after {
                bottom: -20px;
            }
        }
    }
    .collaboration-slider{
        .item{
            height: 40px;
        }
        .slick-slide{
            margin: 0 5px;
        }
    }
}
.testimonials {
    & .section-title {
        margin-bottom: 5px;
        & span {
            &::after {
                bottom: -20px;
            }
        }
    }
    .primary-btn {
        padding: 12px 25px;
    }
}
.faq {
    & .section-title {
        margin-bottom: 0;
        & span {
            &::after {
                bottom: -22px;
            }
        }
    }
    .accordion__item .accordion__content p {
        font-size: 14px;
    }
    .accordion__title::after{
        width: 18px;
        height: 18px;
    }
}
.discover-more {
    .container {
        padding: 20px;
    }
    .dec{
        line-height: 18px;
    }
    .discover-more-content {
        padding: 0px;
        padding-top: 20px;
    }
    .primary-btn {
        padding: 10px 14px;
    }
    .secondary-btn {
        padding: 12px 32px;
    }
    .section-title {
        & span {
            &::after {
                bottom: -25px;
            }
        }
    }
}
.social a{
    width: 28px;
    height: 28px;
    padding: 6px;
}
    .est-popup .popup__content{
        width: 100%;
    }
    .progress-step .step-number {
        margin-right: 0;
        margin-inline: auto;
    }
    .progress-step span {
        font-size: 10px;
    }
    .step-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .form-step {
        padding: 15px;
        padding-top: 5px;
    }
    .style-options {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(80px, 3fr));
        gap: 4px;
    }
    .style-name {
        padding: 6px;
        text-align: center;
        font-weight: 500;
        font-size: 11px;
    }
    .style-img {
        height: 60px;
    }
    .estimate-summary {
        h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
    }
    .estimate-summary {
        padding: 10px;
        margin-top: 5px;
        color: #FFD900;
    }
    .form-navigation .btn {
        min-width: 125px;
        text-align: center;
        margin-left: 0;
    }
    .form-navigation {
        margin-top: 12px;
    }
    .btn {
        padding: 10px 11px;
        font-size: 14px;
    }
    .form-navigation .btn {
        min-width: 125px;
        text-align: center;
        margin-left: 0;
    }
}