@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/poppins-thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/poppins-light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/poppins-regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/poppins-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/poppins-semiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/poppins-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-default: "Poppins",sans-serif;
    --fontawesome: "Font Awesome 5 Pro";
    --color-black: #000000;
    --dark: #000;
    --dark-secondary: #001d4c;
    --white: #ffffff;
    --color-paragraph: #787878;
    --color-primary: #d4217f;
    --color-secondary: #c00bab;
    --color-heading: #04000b;
    --bg-gray: #f3f7fd;
    --bg-gradient: linear-gradient(169deg, #ff0044, #c00bab);
    --box-shadow: 0px 0px 20px 0px rgba(7, 20, 52, .1);
    --box-shadow-secondary: 0 6px 12px rgba(0, 0, 0, 0.175);
    --box-shadow-extra: 0 5px 50px 0 rgba(0, 0, 0, 0.15);
    --box-shadow-dark: 0px 0px 0px;
}

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

body,
html {
    height: 100%;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

a {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a img {
    border: none;
}

ul {
    list-style-type: none;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.row {
    --bs-gutter-x: 30px;
}

body {
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--color-paragraph);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-heading);
    font-weight: normal;
    line-height: 1.2;
    font-family: var(--font-default);
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 15px;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 27px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 14px;
}

p {
    color: var(--color-paragraph);
    margin: 0 0 15px;
    text-transform: none;
    font-weight: 400;
    font-family: var(--font-default);
    line-height: 1.7;
}

@media (min-width: 1250px) {
    
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 13s50px;
    }
}

.container-full {
    padding: 0 15px;
    margin: auto;
    max-width: 1400px;
}

@media (min-width: 576px) {
    .container-full {
        max-width: 540px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .container-full {
        max-width: 720px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .container-full {
        max-width: 960px;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .container-full {
        max-width: 95%;
        width: 95%;
    }
}

.container-fill {
    padding: 0 15px;
    margin: auto;
    max-width: 100%;
}

@media (min-width: 576px) {
    .container-fill {
        max-width: 540px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .container-fill {
        max-width: 720px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .container-fill {
        max-width: 960px;
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .container-fill {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1199px) {
    .container-fill {
        padding: 0 15px;
        width: 100%;
    }
}

@media only screen and (min-width: 1367px) {
    .container-stage {
        margin-left: calc((100% - 1320px) / 2);
        width: auto;
        min-width: auto;
        max-width: inherit;
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .row {
        --bs-gutter-x: 1.5rem;
    }
}

.bg-cover {
    background-position: bottom center;
    background-size: cover !important;
}

.bg-gray {
    background: var(--bg-gray);
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-gradient {
    background-color: transparent;
    background-image: -webkit-linear-gradient(169deg, #ff0044, #c00bab) !important;
    background-image: -moz-linear-gradient(169deg, #ff0044, #c00bab) !important;
    background-image: -ms-linear-gradient(169deg, #ff0044, #c00bab) !important;
    background-image: -o-linear-gradient(169deg, #ff0044, #c00bab) !important;
    background-image: linear-gradient(169deg, #ff0044, #c00bab) !important;
    background-size: auto !important;
}

.text-light {
    color: var(--white);
}

.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light span,
.text-light a {
    color: var(--white);
}

.shadow {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px !important;
}

.shadow.dark {
    position: relative;
    z-index: 1;
}

.shadow.dark:after {
    background: var(--dark);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.default-padding,
.default-padding-top {
    position: relative;
}

.default-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.default-padding-2 {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    
    .default-padding,
    .default-padding-2 {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.default-padding-top {
    padding-top: 120px;
}
.default-padding-top-2 {
    padding-top: 60px;
}
@media only screen and (max-width: 767px) {
    .default-padding-top {
        padding-top: 50px;
    }
}

@media only screen and (min-width: 1200px) {
    .align-center {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.heading {
    font-weight: 600;
    margin-bottom: 25px;
    margin-top: -5px;
    font-size: 38px;
    line-height: 1.1;
}

.heading span {
    font-weight: 400;
}

.site-heading {
    margin-bottom: 60px;
}

.title {
    font-weight: 600;
    font-size: 38px;
    line-height: 1.2;
}

.site-heading .title {
    margin-bottom: 0;
}

.site-heading p {
    margin-bottom: 0;
    margin-top: 10px;
    padding: 0 10%;
}

.site-heading .devider {
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    position: relative;
    z-index: 1;
    left: 10px;
}

.site-heading.light .devider,
.bg-theme .site-heading .devider,
.bg-gradient .site-heading .devider,
.shadow .site-heading .devider,
.bg-dark .site-heading .devider {
    background: var(--white);
}

.site-heading .devider:before {
    position: absolute;
    left: -15px;
    top: 0;
    content: "";
    height: 2px;
    width: 10px;
    background: var(--color-primary);
}

.site-heading.light .devider:before,
.bg-theme .site-heading .devider:before,
.bg-gradient .site-heading .devider:before,
.shadow .site-heading .devider:before,
.bg-dark .site-heading .devider:before {
    background: var(--white);
}

@media (max-width: 767px) {
    .site-heading p {
        padding: 0;
    }
}

@media only screen and (max-width: 767px) {
    .site-heading {
        margin-bottom: 30px;
    }
}

.btn {
    display: inline-block;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    border-radius: 50px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 16px;
    letter-spacing: 0;
    padding: 10px 25px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.btn:focus,
.btn.active {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: var(--color-primary);
    color: var(--white);
}

.btn.radius {
    border-radius: 6px;
}

.btn.btn-primary {
    border: none;
    color: var(--white);
}

.btn.btn-primary::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1;
    background-size: 220% 150%;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn-white {
    color: #fff;
    border: 1px solid #fff;
    background-color: transparent !important;
}
.btn-white:hover {
    background-color: transparent !important;
    transform: translate3d(0, -2px, 0);
    border: 1px solid #fff;
}

.btn.btn-primary:hover::after {
    background-position: -70% 0;
}

.btn.btn-primary.active {
    background-position: -70% 0;
}

.btn.btn-gradient {
    border: none;
    color: var(--white);
}

.btn.btn-gradient::after {
    position: absolute;
    top: 0;
    right: inherit;
    bottom: inherit;
    left: 0;
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1;
    background-image: linear-gradient(91deg, rgb(242, 29, 84) 0px, rgb(174, 36, 176) 100%);
    background-size: 200%;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.btn.btn-gradient:hover {
    transform: translate3d(0, -2px, 0);
    background-position: right center !important;
    color: #fff;
}

/* .btn.btn-gradient.active {
    background-position: -70% 0;
} */

.btn.btn-light {
    color: var(--color-heading);
    border: none;
    background: var(--white);
    border: 2px solid transparent;
}

.btn.btn-light.btn-md {
    padding: 13px 52px;
}

.btn.btn-light:hover {
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
}

.btn i {
    position: relative;
    top: 1px;
    margin-left: 5px;
}

.btn-md {
    padding: 16px 52px;
    font-size: 17px;
}

.banner-style-area div {
    height: 100%;
}

.round-animation {
    position: absolute;
    top: 0;
    left: -100px;
    margin-top: -50px;
    z-index: -1;
    background: transparent;
    width: 200px;
    height: 200px !important;
    border: 8px solid rgba(98, 34, 204, 0.06);
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    -webkit-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
    transition-property: all;
    -webkit-transition-property: color, background, border-color;
    transition-property: color, background, border-color;
}

.round-animation::after,
.round-animation::before {
    content: "";
    border: 10px solid;
    border-color: inherit;
    width: 270%;
    height: 270%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    position: absolute;
    left: -100%;
    top: -100%;
    opacity: 1;
    -webkit-animation: 2s videomodule-anim linear infinite;
    animation: 2s videomodule-anim linear infinite;
    animation-delay: 0s;
}

.round-animation::before {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

@-webkit-keyframes videomodule-anim {
    0% {
        -webkit-transform: scale(0.68);
        transform: scale(0.68);
    }
    
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes videomodule-anim {
    0% {
        -webkit-transform: scale(0.68);
        transform: scale(0.68);
    }
    
    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

.shape-text {
    position: relative;
    z-index: 1;
    display: inline-block;
}

.shape-text .shape {
    position: absolute;
    left: 0;
    bottom: -25px;
    z-index: -1;
}

@media(min-width: 991px) {
    .hero-section .contact-form {
        margin-bottom: -125px;
        margin-left: 60px;
    }
    
    .map-section .contact-form {
        margin-left: 60px;
    }
    
    .map-section .map {
        position: absolute;
    }
    nav.navbar.validnavs {
        padding: 20px 45px !important;
    }
}


nav.navbar.validnavs.navbar-fixed.no-background {
    display: block;
    position: absolute;
    width: 100%;
    z-index: 100;
    box-shadow: 0 0 0;
    -moz-box-shadow: 0 0 0;
    -webkit-box-shadow: 0 0 0;
    -o-box-shadow: 0 0 0;
}

nav.navbar.validnavs.pause-sticked,
nav.navbar.validnavs.navbar-fixed {
    animation: inherit;
}

nav.validnavs .container {
    position: relative;
}

.validnavs a {
    font-weight: 500;
    background: transparent;
}

.navbar-brand {
    margin: 0;
    padding: 0;
    display: block;
}

.navbar-brand>img {
    display: block;
    height: 60px;
}

.navbar .attr-right {
    float: right;
}

.navbar .attr-right .attr-nav li.contact {
    position: relative;
}

.navbar .attr-right .attr-nav li {
    margin-left: 20px;
}

/*.attr-nav li {*/
    /*  display: inline-block;*/
    /*}*/
    
    .navbar .attr-right .attr-nav li .call,
    .navbar .attr-right .attr-nav li .email{
        display: flex;
        justify-content: right;
        gap: 10px;
    }
    
    .navbar .attr-right .attr-nav li .call i,
    .navbar .attr-right .attr-nav li .email i{
        display: inline-block;
        font-size: 40px;
        margin-right: 15px;
        position: relative;
        color: var(--color-primary);
    }
    
    .navbar .attr-right .attr-nav li .call a,
    .navbar .attr-right .attr-nav li .email a{
        display: flex;
        justify-content: right;
    }
    
    .navbar .attr-right .attr-nav li .call p,
    .navbar .attr-right .attr-nav li .email p{
        margin-bottom: 5px;
        line-height: 1;
        font-size: 14px;
        font-weight: 400;
        display: block;
        line-height: 14px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .contact .call .icon {
        width: 44px;
        height: 44px;
        line-height: 40px;
        border-radius: 50%;
        text-align: center;
        color: var(--white-color);
        background-image: linear-gradient(to right, #d4217f, #c00bab, #d4217f);
        background-size: 220% 150%;
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        justify-content: center;
    }
    
    @media (min-width: 1024px) {
        nav.navbar.validnavs.no-background {
            background-color: transparent;
            border: none;
        }
    }
    
    .navbar .attr-right .attr-nav li .call h5 {
        margin: 0;
        font-weight: 600;
        font-size: 20px;
    }
    .navbar .attr-right .attr-nav li .call h5 a {
        padding: 0 !important;
        display: inline-block;
        font-weight: 600;
        font-size: 24px;
        line-height: 34px;
        color: #fff;
    }
    .hero-section .content {
        padding: 160px 0 80px;
        /* padding-bottom: 60px; */
    }
    .hero-section h1 {
        font-size: 52px;
        /* text-transform: uppercase; */
        line-height: 1.2;
        color: #fff;
        font-weight: 600;
        margin-bottom: 25px;
    }
    .hero-section h1 span.color,
    .heading strong {
        /* display: inline-block; */
        font-weight: 600;
        position: relative;
        color: var(--color-primary);
    }
    .hero-section .info {
        /* padding-bottom: 100px; */
        position: relative;
        z-index: 9;
    }
    .hero-section .hero-text {
        font-size: 20px;
        margin-bottom: 30px;
        color: #fff;
        opacity: .8;
        font-weight: 400;
    }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
        
        .heading,
        .title {
            font-size: 36px;
            margin-top: 0;
            line-height: 1.2;
        }
        
        .about-style-four .thumb img:nth-child(4) {
            display: none;
        }
    }
    
    .shape-right-center {
        position: absolute;
        right: 0;
        top: -120px;
        height: 700px;
        width: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right top;
        z-index: -1;
        opacity: 0.5;
    }
    
    .about-style-two .thumb {
        position: relative;
        z-index: 1;
        margin-bottom: 50px;
    }
    .about-style-two .thumb .sub-item img:nth-child(2) {
        position: absolute;
        right: -70px;
        top: -48px;
        max-width: 300px;
        border: 1px solid #e7e7e7;
        border-radius: 10px;
    }
    
    .about-style-two .thumb .sub-item img:first-child {
        position: absolute;
        left: -50px;
        bottom: -115px;
        padding: 15px;
        max-width: 250px;
        background: #ffffff;
        border: 1px solid #e7e7e7;
        border-radius: 10px;
    }
    
    .about-style-two .thumb img {
        border-radius: 10px;
    }
    
    .about-style-two .thumb .about {
        height: 100%;
        width: 100%;
    }
    
    .about-style-four .thumb {
        position: relative;
        margin-top: 55px;
    }
    
    .about-style-four .thumb img:first-child {
        max-width: 320px;
        box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.88);
        background: var(--white);
        padding: 30px;
        border-radius: 4px;
        position: relative;
        z-index: 1;
    }
    
    .about-style-four .thumb img:nth-child(2) {
        background: #f9f9f9;
        padding: 40px;
        border-radius: 10px;
        border: 1px solid #e1dfe8;
        position: absolute;
        right: -50px;
        top: 95px;
        max-width: 60%;
        z-index: 0;
    }
    
    .about-style-four .thumb .icon {
        display: inline-block;
        height: 120px;
        width: 120px;
        background: var(--white);
        text-align: center;
        box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
        position: absolute;
        margin-left: -50px;
        z-index: 0;
        top: -57px;
        border-radius: 4px;
    }
    
    .about-style-four .thumb .icon-wrapper {
        display: inline-block;
        background: #cdfbe1;
        text-align: center;
        /* font-size: 30px; */
        font-weight: 600;
        color: #6de898;
        border-radius: 15px;
        border: 2px solid #6de898;
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        height: 70px;
        width: 70px;
        line-height: 70px;
    }
    
    .about-style-four .thumb svg {
        transform: translateY(0px) translateX(18px);
    }
    
    .about-style-four .thumb img:nth-child(3) {
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
        position: absolute;
        left: -70px;
        top: 15%;
        height: 100px;
        border-radius: 4px;
        z-index: 2;
    }
    
    .about-style-four .thumb .shape img {
        box-shadow: none;
        padding: 0;
        height: auto;
        width: 150px;
        background: transparent;
        border-radius: inherit;
    }
    
    .about-style-four .thumb .shape {
        position: absolute;
        top: -50px;
        left: -30px;
        z-index: 0;
    }
    
    .about-style-four .thumb img:nth-child(4) {
        background: var(--white);
        padding: 30px;
        height: 120px;
        box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
        border-radius: 4px;
        position: absolute;
        bottom: 0;
        right: 0;
    }
    
    .fun-fact {
        text-align: center;
    }
    
    .fun-factor-style-one .item img{
        width: 60px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 20px;
    }
    /* .fun-factor-style-one .item:first-child img {
        width: 46px;
        margin-bottom: 20px;
    }
    
    .fun-factor-style-one .item:nth-child(2) img {
        width: 64px;
        margin-bottom: 20px;
    }
    
    .fun-factor-style-one .item:nth-child(3) img {
        width: 55px;
        margin-bottom: 20px;
    }
    
    .fun-factor-style-one .item:nth-child(4) img {
        width: 59px;
        margin-bottom: 20px;
    }
    
    .fun-factor-style-one .item:nth-child(5) img {
        width: 55px;
        margin-bottom: 20px;
    } */
    
    .fun-fact .counter {
        position: relative;
    }
    
    .fun-fact .counter {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 45px;
        font-weight: 600;
        color: var(--color-heading);
        line-height: 1;
        margin-bottom: 5px;
        font-family: var(--font-default);
    }
    
    .text-light .fun-fact .counter {
        color: var(--white);
    }
    
    .fun-fact .medium {
        font-weight: 600;
    }
    
    .text-light .fun-fact .medium {
        color: #e2e1e1;
    }
    
    .fun-factor-style-one .fun-fact {
        position: relative;
        z-index: 1;
    }
    
    .brand-area {
        position: relative;
        background-color: transparent;
        background-image: -webkit-linear-gradient(169deg, #ff0044, #c00bab);
        background-image: -moz-linear-gradient(169deg, #ff0044, #c00bab);
        background-image: -ms-linear-gradient(169deg, #ff0044, #c00bab);
        background-image: -o-linear-gradient(169deg, #ff0044, #c00bab);
        background-image: linear-gradient(169deg, #ff0044, #c00bab);
        background-size: auto !important;
    }
    
    .brand3col {
        text-align: center;
    }
    
    .brand-heading h4 strong {
        font-size: 30px;
        text-decoration: underline;
        color: var(--color-primary);
        font-weight: 600;
    }
    
    .brand3col .swiper-wrapper {
        align-items: center;
    }
    
    .color-heading {
        font-weight: 600;
        margin-bottom: 30px;
        font-size: 70px;
        line-height: 1;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-size: cover;
        background-position: center;
        margin-top: -15px;
    }
    
    @media only screen and (max-width: 767px) {
        .color-heading {
            font-size: 40px;
            margin-top: -5px;
        }
    }
    
    .services-details-area .thumb img {
        margin-bottom: 40px;
        border-radius: 10px;
    }
    
    .services-details-area h1,
    .services-details-area h2,
    .services-details-area h3,
    .services-details-area h4,
    .services-details-area h5,
    .services-details-area h6 {
        font-weight: 600;
    }
    
    .business-items {
        padding: 100px 80px;
        border: 1px solid var(--color-primary);
        border-radius: 10px;
        position: relative;
        background: var(--white);
    }
    
    ul.list-icon {
        margin-top: 30px;
        padding: 0;
    }
    
    ul.list-icon li {
        display: flex;
        margin-top: 15px;
        border-top: 1px solid #e7e7e7;
        padding-top: 30px;
        align-items: center;
    }
    
    ul.list-icon li:first-child {
        border: none;
        padding-top: 0;
    }
    
    ul.list-icon li .icon {
        margin-right: 20px;
    }
    
    ul.list-icon li i {
        display: inline-block;
        font-size: 60px;
        color: var(--color-primary);
        text-align: center;
        background: linear-gradient(90deg, #00b5ca 0%, #d900ff 100%);
        -webkit-background-clip: text;
        -moz-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        padding: 0 5px;
        line-height: 1;
    }
    
    ul.list-icon li p {
        margin: 0;
    }
    
    ul.list-icon li h4 {
        font-weight: 600;
    }
    
    ul.list-icon li i::before {
        line-height: inherit;
    }
    
    .half-bg-gray-bottom {
        position: relative;
        z-index: 1;
    }
    
    .half-bg-gray-bottom::after {
        position: absolute;
        left: 0;
        bottom: 0;
        content: "";
        height: 384px;
        width: 100%;
        background: var(--bg-gray);
        z-index: -1;
    }
    
    .project-carousel {
        padding-bottom: 50px;
    }
    
    .project-carousel .swiper-control {
        position: absolute;
        left: 50%;
        bottom: 10px;
        transform: translateX(-50%);
        min-width: 220px;
    }
    
    .project-carousel .swiper-button-prev::before {
        position: absolute;
        top: 50%;
        right: inherit;
        bottom: inherit;
        left: 12px;
        content: "";
        height: 2px;
        width: 50px;
        z-index: -1;
        background-color: var(--color-primary);
        margin-top: -1px;
    }
    
    .project-carousel .swiper-button-prev::after {
        font-family: "Font Awesome 5 Pro";
        content: "\f104";
        font-weight: 100;
        font-size: 30px;
        position: absolute;
        left: 8px;
        color: var(--color-primary);
    }
    
    .project-carousel .swiper-button-next::before {
        position: absolute;
        top: 50%;
        right: 12px;
        bottom: inherit;
        left: inherit;
        content: "";
        height: 2px;
        width: 50px;
        z-index: -1;
        background-color: var(--color-primary);
        margin-top: -1px;
    }
    
    .project-carousel .swiper-button-next::after {
        font-family: "Font Awesome 5 Pro";
        content: "\f105";
        font-weight: 100;
        font-size: 30px;
        position: absolute;
        right: 8px;
        color: var(--color-primary);
    }
    
    .project-carousel .swiper-control .swiper-pagination {
        bottom: -14px;
        font-weight: 500;
        font-family: var(--font-default);
        font-size: 24px;
        letter-spacing: -1.6px;
        color: var(--color-heading);
    }
    
    .project-carousel .swiper-control .swiper-pagination span {
        font-family: var(--font-default);
    }
    
    .project-carousel .swiper-button-next,
    .project-carousel .swiper-button-prev {
        width: 60px;
    }
    
    .project-thumb {
        position: relative;
        z-index: 1;
    }
    
    .project-thumb img {
        border-radius: 10px;
    }
    
    .list-item h5 {
        margin-bottom: 5px;
        font-weight: 600;
        font-size: 20px;
    }
    
    .list-item .item {
        margin-top: 17px;
        position: relative;
        z-index: 1;
        padding-left: 35px;
    }
    
    .list-item .item:first-child {
        margin-top: 0;
    }
    
    .list-item .item::after {
        position: absolute;
        left: 0;
        top: 2px;
        content: "\f00c";
        font-family: "Font Awesome 5 Pro";
        height: 22px;
        width: 22px;
        background: var(--bg-gradient);
        text-align: center;
        line-height: 22px;
        color: var(--white);
        border-radius: 50%;
        font-size: 11px;
        font-weight: 500;
    }
    
    .choose-us-style-three .thumb {
        text-align: center;
        position: relative;
        z-index: 1;
        margin-bottom: 30px;
    }
    
    .experience-box {
        position: absolute;
        right: -50px;
        bottom: -30px;
        height: 300px;
        width: 300px;
        text-align: center;
        background: var(--bg-gradient);
        border-radius: 50%;
        box-shadow: 0px 4px 60px 30px rgba(0, 0, 0, 0.05);
    }
    
    .choose-us-style-three .thumb .thumb-inner img {
        width: 70%;
    }
    
    .choose-us-style-three .thumb .thumb-inner {
        margin: auto;
        border-radius: 0 0 480px 485px;
        overflow: hidden;
        text-align: center;
    }
    
    .choose-us-style-three .thumb::after {
        position: absolute;
        left: 50%;
        bottom: 0;
        content: "";
        height: 600px;
        width: 600px;
        background: #e9edff;
        z-index: -1;
        transform: translateX(-50%);
        border-radius: 50%;
    }
    
    .shape-combo {
        position: absolute;
        left: 0;
        top: -50px;
        height: 100%;
        width: 100%;
        z-index: -1;
    }
    
    .shape-combo img {
        position: absolute;
        height: 200px;
        right: 50px;
        top: 200px;
    }
    
    .choose-us-style-three .thumb .shape img {
        position: absolute;
        height: 150px;
        left: -25px;
        top: 140px;
        z-index: 1;
        transform: rotate(20deg);
    }
    
    .experience-box strong {
        display: block;
        font-size: 100px;
        font-weight: 600;
        line-height: 1;
    }
    
    .experience-box h2 {
        font-size: 22px;
        font-weight: 400;
        margin: 0;
        color: var(--white);
    }
    
    .experience-box .item-inner {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }
    
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .choose-us-style-three-area .align-center {
            align-items: center;
        }
        
        .choose-us-style-three .thumb::after {
            height: 500px;
            width: 500px;
        }
        
        .choose-us-style-three .thumb .thumb-inner {
            border-radius: 0 0 422px 412px;
        }
    }
    
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .choose-us-style-three-area {
            padding-top: 50px;
        }
        
        .choose-us-style-three .thumb {
            margin-bottom: 70px;
        }
        
        .choose-us-style-three .thumb .thumb-inner img {
            max-width: 400px;
        }
        
        .experience-box {
            right: 0;
        }
    }
    
    @media only screen and (max-width: 767px) {
        .choose-us-style-three .thumb {
            display: none;
        }
        
        .shape-combo {
            display: none;
        }
    }
    
    .process-area {
        position: relative;
        z-index: 1;
    }
    
    .process-area::after {
        position: absolute;
        left: 5%;
        top: 120px;
        content: "";
        height: 100px;
        width: 100px;
        background: var(--white);
        clip-path: polygon(45% 1.33975%,
        46.5798% 0.60307%,
        48.26352% 0.15192%,
        50% 0%,
        51.73648% 0.15192%,
        53.4202% 0.60307%,
        55% 1.33975%,
        89.64102% 21.33975%,
        91.06889% 22.33956%,
        92.30146% 23.57212%,
        93.30127% 25%,
        94.03794% 26.5798%,
        94.48909% 28.26352%,
        94.64102% 30%,
        94.64102% 70%,
        94.48909% 71.73648%,
        94.03794% 73.4202%,
        93.30127% 75%,
        92.30146% 76.42788%,
        91.06889% 77.66044%,
        89.64102% 78.66025%,
        55% 98.66025%,
        53.4202% 99.39693%,
        51.73648% 99.84808%,
        50% 100%,
        48.26352% 99.84808%,
        46.5798% 99.39693%,
        45% 98.66025%,
        10.35898% 78.66025%,
        8.93111% 77.66044%,
        7.69854% 76.42788%,
        6.69873% 75%,
        5.96206% 73.4202%,
        5.51091% 71.73648%,
        5.35898% 70%,
        5.35898% 30%,
        5.51091% 28.26352%,
        5.96206% 26.5798%,
        6.69873% 25%,
        7.69854% 23.57212%,
        8.93111% 22.33956%,
        10.35898% 21.33975%);
        opacity: 0.1;
    }
    
    .process-area::before {
        position: absolute;
        left: 12%;
        top: 220px;
        content: "";
        height: 50px;
        width: 50px;
        background: var(--white);
        opacity: 0.1;
        border-radius: 50%;
    }
    
    @media (max-width: 1250px) {
        .process-area::before {
            left: 14%;
        }
    }
    
    .center-sahpe {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        z-index: -1;
    }
    
    .process-area .center-sahpe {
        top: 90px;
    }
    
    .process-style-one .icon {
        display: inline-block;
        height: 150px;
        width: 150px;
        text-align: center;
        line-height: 150px;
        background: var(--white);
        border-radius: 50%;
        color: var(--color-primary);
        font-size: 60px;
        margin-bottom: 30px;
    }
    
    .process-style-one .icon img {
        height: 60px;
    }
    
    .process-style-one i::before {
        line-height: inherit;
    }
    
    .process-style-one h4 {
        font-weight: 600;
        text-transform: capitalize;
        width: 200px;
        margin: 0 auto;
    }
    
    .process-style-one .icon {
        display: inline-block;
        position: relative;
        z-index: 1;
    }
    
    .process-style-one .icon span {
        position: absolute;
        bottom: 15px;
        right: -5px;
        background: var(--bg-gradient);
        height: 45px;
        width: 45px;
        line-height: 43px;
        border-radius: 50%;
        border: 2px solid var(--white);
        font-weight: 800;
        font-size: 16px;
    }
    
    .process-style-one:nth-child(2n) .icon span {
        bottom: auto;
        top: 15px;
        right: -15px;
    }
    
    .proces-style-two-list h4 {
        font-weight: 600;
        position: relative;
        z-index: 1;
    }
    
    .proces-style-two-list h4::after {
        position: absolute;
        left: -55px;
        top: 15px;
        content: "\f00c";
        font-family: "Font Awesome 5 Pro";
        font-size: 17px;
        font-weight: 100;
        height: 35px;
        width: 35px;
        line-height: 37px;
        background: var(--color-primary);
        text-align: center;
        border-radius: 50%;
        margin-top: -20px;
        color: var(--white);
    }
    
    .process-list-box {
        border-left: 1px solid #dddddd;
        padding-left: 38px;
        margin-left: 17px;
    }
    
    .proces-style-two-list {
        margin-bottom: 20px;
    }
    
    .proces-style-two-list:last-child {
        margin-bottom: 0;
    }
    
    .proces-style-two-list p {
        margin: 0;
    }
    
    .expert-fun-fact .fun-fact {
        display: inline-block;
        margin-right: 50px;
        margin-top: 40px;
    }
    
    .expert-fun-fact .fun-fact:last-child {
        margin-right: 0;
    }
    
    .expert-fun-fact .fun-fact .counter {
        justify-content: inherit;
    }
    
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .seo-expert-area .align-center {
            align-items: center;
        }
    }
    
    .seo-score form {
        border: 1px solid #e7e7e7;
        border-radius: 30px;
        position: relative;
        z-index: 1;
        padding: 0 20px;
        background: var(--white);
    }
    
    .seo-score form .col-lg-6 {
        padding: 0;
    }
    
    .seo-score form input,
    .seo-score form input:focus {
        border: none;
        border-radius: 30px;
        box-shadow: inherit;
        outline: inherit;
        min-height: 60px;
        padding: 15px 30px;
    }
    
    .seo-score form button {
        top: 5px;
        position: absolute;
        right: 5px;
    }
    
    .seo-score form .input-group.stylish-input-group {
        border-radius: 30px;
        border: none;
    }
    
    .seo-score form button {
        position: absolute;
        top: 5px;
        right: 5px;
        padding: 11px 50px;
        border-radius: 30px;
        color: #ffffff;
        font-weight: 700;
        border: none;
        background: transparent;
        z-index: 1;
    }
    
    .seo-score button::after {
        position: absolute;
        top: 0;
        right: inherit;
        bottom: inherit;
        left: 0;
        content: "";
        height: 100%;
        width: 100%;
        z-index: -1;
        background-image: linear-gradient(to right,
        var(--color-primary),
        var(--color-secondary),
        var(--color-primary));
        background-size: 220% 150%;
        -webkit-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out;
        border-radius: 30px;
    }
    
    .seo-score button:hover::after {
        background-position: -70% 0;
    }
    
    .seo-score form input[type="url"] {
        border-right: 1px solid #e7e7e7;
        border-top-right-radius: inherit;
        border-bottom-right-radius: inherit;
    }
    
    .seo-score h2 {
        font-weight: 600;
        font-size: 43px;
        line-height: 1.3;
    }
    
    .seo-score h2 strong {
        display: inline-block;
        font-weight: 600;
        color: var(--color-primary);
    }
    
    .seo-score h2 .text-border-shape {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 10px;
        width: 100%;
        background: #d1d8f9;
        z-index: -1;
    }
    
    .half-bg-gray {
        position: relative;
        z-index: 1;
    }
    
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .seo-expert-area {
            text-align: center;
        }
    }
    
    @media only screen and (max-width: 767px) {
        .seo-score form {
            border: none;
        }
        
        .seo-score form input {
            border: 1px solid #e7e7e7;
            border-radius: 30px !important;
            margin-bottom: 15px;
        }
        
        .seo-score form button {
            position: inherit;
            width: 100%;
            min-height: 60px;
        }
        
        .seo-score form .col-lg-6 {
            padding: 0 15px;
        }
        
        .seo-expert-area {
            text-align: center;
        }
        
        .expert-fun-fact .fun-fact {
            margin-left: 20px;
            margin-right: 20px;
        }
        
        .expert-fun-fact .fun-fact .counter {
            justify-content: center;
        }
    }
    
    .faq-area {
        position: relative;
        z-index: 1;
    }
    
    .faq-style-one {
        margin-top: -8px;
    }
    
    .shape-right-bottom {
        position: absolute;
        bottom: -40px;
        right: -30px;
        z-index: -1;
        opacity: 0.7;
    }
    
    .shape-right-bottom img {
        height: 100px;
    }
    
    .curve-bottom {
        position: absolute;
        left: 0;
        bottom: 0;
    }
    
    .seo-heading {
        position: relative;
        z-index: 1;
    }
    
    .seo-heading::after {
        position: absolute;
        right: 0;
        top: -200%;
        content: "";
        height: 600%;
        width: 300%;
        background: var(--dark);
        z-index: -1;
    }
    
    .why-seo-style-one i {
        display: inline-block;
        font-size: 60px;
        margin-bottom: 30px;
    }
    
    .why-seo-style-one img {
        height: 80px;
        margin-bottom: 30px;
    }
    
    .why-seo-style-one h4 {
        font-weight: 600;
    }
    
    .why-seo-style-one p {
        margin: 0;
        opacity: 0.9;
    }
    
    .seo-heading h2 {
        font-weight: 600;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-right: 35px;
        padding-bottom: 29px;
    }
    
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .seo-heading::after {
            display: none;
        }
        
        .seo-heading h2 {
            margin: 0;
        }
        
        .seo-carousel {
            padding-top: 35px;
        }
    }
    
    @media only screen and (max-width: 767px) {
        .cta-area {
            text-align: center;
        }
        
        .seo-heading::after {
            display: none;
        }
        
        .seo-carousel {
            padding-top: 30px;
        }
        
        .seo-heading h2 {
            margin-right: 0;
        }
    }
    
    img.loader {
        margin-left: 8px;
    }
    
    footer {
        overflow: hidden;
        position: relative;
    }
    
    footer .f-items {
        padding-top: 30px;
        padding-bottom: 60px;
    }
    
    .footer-item {
        margin-top: 50px;
    }
    
    .footer-item .widget-title {
        font-weight: 600;
        margin-bottom: 30px;
        font-size: 22px;
    }
    
    .footer-item .logo {
        height: 60px;
        margin-bottom: 30px;
    }
    
    .footer-bottom li {
        display: inline-block;
    }
    
    .footer-bottom li a {
        color: var(--color-paragraph);
    }
    
    .footer-bottom li a:hover {
        color: var(--color-primary);
    }
    
    .bg-dark .footer-bottom li a,
    .bg-theme .footer-bottom li a,
    .bg-gradient .footer-bottom li a,
    .shadow .footer-bottom li a {
        color: #cccccc;
    }
    
    .bg-dark .footer-bottom li a:hover,
    .bg-theme .footer-bottom li a:hover,
    .bg-gradient .footer-bottom li a:hover,
    .shadow .footer-bottom li a:hover {
        color: var(--white);
    }
    
    .footer-bottom a {
        font-weight: 500;
    }
    
    .footer-bottom .text-end li {
        margin-left: 20px;
    }
    
    .footer-bottom p {
        margin: 0;
    }
    
    .bg-dark .footer-bottom p,
    .bg-theme .footer-bottom p,
    .bg-gradient .footer-bottom p,
    .shadow .footer-bottom p {
        color: #cccccc;
    }
    
    .footer-bottom {
        padding: 20px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        z-index: 1;
        overflow: hidden;
        background: var(--dark);
    }
    
    .footer-bottom a:hover {
        color: var(--color-primary);
    }
    
    .bg-dark .footer-bottom a:hover,
    .bg-theme .footer-bottom a:hover,
    .bg-gradient .footer-bottom a:hover,
    .shadow .footer-bottom a:hover {
        color: var(--white);
    }
    
    .footer-item .link li {
        margin-top: 12px;
    }
    
    .footer-item .link li:first-child {
        margin-top: 0;
    }
    
    .footer-item .link li a {
        font-weight: 400;
        color: var(--color-paragraph);
    }
    
    .footer-item .link li a:hover {
        color: var(--color-primary);
        margin-left: 8px;
    }
    
    footer .footer-item p {
        color: var(--color-paragraph);
    }
    
    footer.bg-dark .footer-item p {
        color: #cccccc;
    }
    
    footer .address {
        padding-right: 35px;
    }
    
    footer .address li {
        margin-top: 20px;
        display: flex;
        color: #cccccc;
    }
    
    footer .address li a {
        font-weight: 400;
        color: #cccccc;
    }
    
    footer .address li a:hover {
        color: var(--white);
    }
    
    footer .address li strong {
        color: #ffffff;
        display: block;
        font-weight: 500;
        text-transform: uppercase;
    }
    
    footer .address li svg {
        margin-right: 10px;
        position: relative;
        top: 5px;
    }
    
    footer .about {
        position: relative;
        z-index: 1;
        padding-right: 30px;
    }
    
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        
        .heading,
        .title {
            font-size: 36px;
            margin-top: 0;
            line-height: 1.2;
        }
        
        .hero-section .content {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        .about-style-two .sub-item {
            display: none;
        }
        
        .about-area.circle-shape-right-bottom {
            background: transparent !important;
        }
        
        .about-style-four .thumb img:nth-child(3) {
            display: none;
        }
        
        .about-style-four .thumb {
            margin-bottom: 50px;
        }
        
        .feature-style-one .item {
            background: var(--white);
        }
        
        .brand-area {
            text-align: center;
        }
        
        .fun-factor-style-one .item {
            margin-top: 30px;
        }
        
        .brand3col {
            margin-top: 30px;
        }
        
        .fun-factor-style-one {
            margin-top: 20px;
        }
        
        .feature-style-one .item {
            text-align: center;
        }
        
        .process-style-one-box {
            margin-top: -50px;
        }
        
        .process-style-one:first-child {
            margin-top: 50px;
        }
        
        .process-style-one .icon {
            margin-bottom: 20px;
        }
        
        .process-style-one:nth-child(2n) {
            position: relative;
        }
        
        .process-style-one:nth-child(2n) .icon {
            height: 150px;
            width: 150px;
            line-height: 150px;
            margin-bottom: 45px;
        }
        
        .process-style-one:nth-child(2n) .icon img {
            height: 60px;
        }
        
        .process-style-one:nth-child(2n) h4 {
            margin: 0;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .process-style-one {
            margin-top: 50px;
        }
        
        .process-style-one:nth-child(3) {
            margin-top: 50px;
        }
        
        .process-style-one:nth-child(2n) .icon span {
            top: auto;
            bottom: 15px;
            right: -5px;
        }
        
        .seo-score h2 {
            font-size: 36px;
            line-height: 1.2;
        }
        
        .footer-bottom .text-end {
            text-align: center !important;
            margin-top: 10px;
        }
        
        .footer-bottom {
            text-align: center;
        }
    }
    
    @media only screen and (max-width: 767px) {
        .title {
            font-size: 36px;
            line-height: 1.2;
        }
        
        .heading {
            font-size: 36px;
            margin-top: 0;
            line-height: 1.2;
        }
        
        .shape-text .shape {
            display: none;
        }
        
        .hero-section h1 {
            font-size: 36px;
            line-height: 1.2;
            margin-top: 0;
        }
        
        .hero-section .content {
            padding-top: 60px;
            /* padding-bottom: 60px; */
        }
        
        .about-style-two .sub-item {
            display: none;
        }
        
        .about-area.circle-shape-right-bottom {
            background: transparent !important;
        }
        
        .about-style-four .thumb img:first-child {
            max-width: 100%;
        }
        
        .about-style-four .thumb img:nth-child(2) {
            display: none;
        }
        
        .about-style-four .thumb .icon {
            right: 0;
            z-index: 1;
            top: -30px;
            display: none;
        }
        
        .about-style-four .thumb {
            padding: 0;
            margin-bottom: 40px;
            text-align: center;
            margin-top: 0;
            max-width: 100%;
        }
        
        .about-style-four .thumb img:nth-child(3) {
            left: 0;
            display: none;
        }
        
        .about-style-four .thumb img:nth-child(4) {
            right: 0;
            display: none;
        }
        
        .brand-area {
            text-align: center;
        }
        
        .fun-factor-style-one .item {
            margin-top: 30px;
        }
        
        /* .fun-factor-style-one .item:first-child {
            margin-top: 0;
        } */
        
        .brand3col {
            margin-top: 30px;
        }
        
        .feature-style-one .item {
            text-align: center;
        }
        
        .seo-score h2 {
            font-size: 36px;
            line-height: 1.2;
        }
        
        .shape-right-top {
            z-index: -1;
            opacity: 0.3;
        }
        
        .process-style-one:first-child {
            margin-top: 0;
        }
        
        .process-style-one .icon {
            margin-bottom: 20px;
        }
        
        .process-style-one:nth-child(2n) {
            position: relative;
        }
        
        .process-style-one:nth-child(2n) .icon {
            height: 150px;
            width: 150px;
            line-height: 150px;
            margin-bottom: 45px;
        }
        
        .process-style-one:nth-child(2n) .icon img {
            height: 60px;
        }
        
        .process-style-one:nth-child(2n) h4 {
            margin: 0;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .process-style-one {
            margin-top: 50px;
        }
        
        .process-style-one:nth-child(3) {
            margin-top: 50px;
        }
        
        .process-style-one:nth-child(2n) .icon span {
            top: auto;
            bottom: 15px;
            right: -5px;
        }
        
        .boosting-style-one {
            text-align: center;
        }
        
        ul.list-icon li {
            display: block;
            text-align: center;
        }
        
        ul.list-icon li .icon {
            margin: 0;
            margin-bottom: 15px;
        }
        
        .business-items {
            padding: 50px;
        }
        
        .business-items::after {
            display: none;
        }
        
        footer .f-items {
            padding-top: 0;
        }
        
        .footer-bottom .text-end {
            text-align: center !important;
            margin-top: 10px;
        }
        
        .footer-bottom {
            text-align: center;
        }
    }
    
    @media only screen and (min-width: 600px) and (max-width: 767px) {
        
        .gallery-items.colums-2 .pf-item,
        .gallery-items.colums-3 .pf-item {
            width: 50%;
        }
    }
    
    @media only screen and (min-width: 600px) and (max-width: 1200px) {
        .gallery-items.colums-4 .pf-item {
            width: 50%;
        }
    }
    
    @media only screen and (min-width: 480px) and (max-width: 767px) {}
    
    @media screen and (max-width: 991px) {
        .order-last {
            order: 0;
        }
        
        .footer-bottom .text-end li {
            margin: 0 10px;
        }
        /* .navbar .attr-right{
            padding-top: 15px;
        } */
        nav.navbar {
            padding-top: 25px !important;
        }
    }
    
    @media (min-width: 1200px) {
        .brand-style-bg .container-fill {
            padding-left: 0;
            padding-right: 50px;
        }
        
        .brand-style-bg a.navbar-brand {
            padding: 0 50px;
        }
        
        .navbar.brand-style-bg .navbar-header::before,
        .navbar.brand-style-bg .navbar-header::after {
            display: none;
        }
        
        .navbar.brand-style-bg .navbar-header {
            padding: 0;
            top: inherit;
            margin: 0;
        }
    }
    
    .banner-shape-bg {
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 100%;
        z-index: 1;
        transform: translateX(-50%);
    }
    
    .banner-shape-bg img {
        height: 100%;
        width: auto;
    }
    
    @media only screen and (min-width: 1200px) {
        .services-style-five-area {
            max-width: 90%;
            margin: auto;
            border-radius: 10px;
        }
    }
    
    .services-style-five-area {
        overflow: hidden;
    }
    
    .services-style-five {
        padding: 60px 30px;
        background: var(--white);
        border-radius: 10px;
        padding-bottom: 0;
        transition: all 0.35s ease-in-out;
    }
    
    .services-style-five img {
        height: 80px;
        margin-bottom: 30px;
    }
    
    .services-style-five>a {
        display: inline-block;
        background: var(--bg-gradient);
        padding: 7px 45px;
        padding-top: 9px;
        border-radius: 30px;
        font-weight: 500;
        margin-top: 15px;
        color: var(--white);
    }
    
    .services-style-five p {
        opacity: 0.9;
    }
    
    .services-style-five>a {
        opacity: 0;
        transform: translateY(-30px);
    }
    
    .services-style-five.active>a,
    .services-style-five:hover>a {
        transform: translateY(0);
        opacity: 1;
    }
    
    .services-style-five.active,
    .services-style-five:hover {
        padding-bottom: 60px;
    }
    
    .list-grid-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 30px;
        grid-row-gap: 30px;
        margin-top: 30px;
    }
    
    .list-grid-info h4 {
        font-weight: 600;
    }
    
    .list-grid-info li {
        position: relative;
        z-index: 1;
        padding-left: 25px;
    }
    
    .list-grid-info li::after {
        position: absolute;
        left: 0;
        top: 0;
        content: "\f00c";
        font-family: "Font Awesome 5 Pro";
        font-weight: 100;
    }
    
    .list-grid-info li:first-child::after {
        display: none;
    }
    
    .list-grid-info li:first-child {
        padding-left: 0;
    }
    
    a.btn-chat {
        display: inline-block;
        height: 80px;
        width: 80px;
        line-height: 85px;
        text-align: center;
        background: var(--bg-gradient);
        border-radius: 50%;
        font-weight: 100;
        font-size: 30px;
        margin-top: 15px;
    }
    
    .chat-badge img {
        width: 40px;
        transform: rotate(100deg);
    }
    
    .chat-badge {
        position: absolute;
        left: 100px;
        margin-top: -50px;
    }
    
    .chat-badge span {
        margin-left: 5px;
    }
    
    @media (min-width: 1200px) {
        nav.navbar-border {
            width: 90% !important;
            left: 5%;
        }
        
        nav.navbar-border .container-fill {
            padding: 0;
        }
        
        .banner-area.double-items.bottom-thumb .content {
            margin-top: -110px;
        }
    }
    
    .banner-style-six-area {
        overflow: hidden;
    }
    
    .banner-style-six h4 {
        text-transform: uppercase;
        font-size: 24px;
        color: var(--color-primary);
        font-weight: 500;
        background: var(--bg-gradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .banner-style-six h2 {
        font-size: 80px;
        line-height: 1;
        font-weight: 600;
        margin-bottom: 30px;
    }
    
    .banner-style-six h2 strong {
        display: block;
        font-weight: 200;
    }
    
    .banner-style-six p {
        font-size: 18px;
        font-weight: 400;
    }
    
    .banner-area.banner-style-six-area .swiper-slide.swiper-slide-active .button {
        -webkit-transition-delay: 2400ms;
        transition-delay: 2400ms;
    }
    
    .banner-style-six .button {
        margin-top: 40px;
    }
    
    .banner-style-six-area {
        padding-top: 160px;
    }
    
    .banner-shape-six {
        position: absolute;
        left: 0;
        top: 0;
        height: 100% !important;
        width: 100%;
        background-size: cover;
        background-position: center;
    }
    
    .service-six-item {
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 6px;
        position: relative;
        margin-top: 50px;
    }
    
    .service-six-item i {
        display: inline-block;
        height: 80px;
        width: 80px;
        line-height: 80px;
        background: var(--dark);
        text-align: center;
        color: var(--white);
        font-size: 40px;
        border-radius: 10px;
        margin-bottom: 30px;
        box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    }
    
    .service-six-item i::before {
        line-height: inherit;
    }
    
    .service-six-item p {
        margin: 0;
    }
    
    .service-six-heading {
        height: 100%;
        padding: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-size: cover;
        background-position: center;
        margin-right: 30px;
        position: relative;
        z-index: 1;
    }
    
    .service-six-heading .heading {
        font-size: 42px;
        margin: 0;
        font-weight: 500;
    }
    
    .service-six-heading img {
        position: absolute;
        z-index: -1;
        left: -100px;
        top: 100px;
        width: 200px;
    }
    
    @media only screen and (min-width: 1250px) {
        .container-stage {
            margin-left: calc((100% - 1250px) / 2);
            width: auto;
            min-width: auto;
            max-width: inherit;
            padding-right: 0;
        }
    }
    
    .process-style-one .icon span {
        color: var(--white);
    }
    
    .process-style-one-box.style-two {
        position: relative;
        z-index: 1;
    }
    
    .process-style-one-box.style-two::after {
        position: absolute;
        left: 0;
        top: 25px;
        content: "";
        height: 100%;
        width: 100%;
        background: url(../images/process-2.png);
        background-repeat: no-repeat;
        z-index: -1;
        background-size: contain;
        transform: rotate(-5deg);
    }
    
    .process-style-one.active .icon {
        height: 200px;
        width: 200px;
        line-height: 200px;
    }
    
    .process-style-one.active .icon img {
        height: 80px;
    }
    
    .process-style-one.active:nth-child(2n) .icon span {
        height: 55px;
        width: 55px;
        line-height: 55px;
        font-size: 20px;
        top: 20px;
        right: -10px;
    }
    
    .process-style-one-box.style-two .icon {
        box-shadow: 0 5px 30px 0 rgba(214, 215, 216, 0.57);
    }
    
    .btn-md.btn-border-dark {
        padding: 13px 52px;
    }
    
    @media only screen and (max-width: 1199px) {
        .services-style-five>a {
            transform: translateY(0);
            opacity: 1;
        }
        
        .services-style-five {
            padding-bottom: 60px;
        }
    }
    
    @media only screen and (min-width: 992px) and (max-width: 1199px) {}
    
    @media only screen and (max-width: 991px) {
        .expertise-area .right-info {
            margin-top: 20px;
        }
        
        .process-style-one-box.style-two::after {
            display: none;
        }
        
        .process-style-one.active:nth-child(2n) .icon span {
            height: 45px;
            width: 45px;
            line-height: 45px;
            right: -15px;
        }
        
        .process-style-one.active .icon img {
            height: 60px;
        }
        
        .process-style-one.active .icon {
            height: 150px;
            width: 150px;
            line-height: 150px;
        }
    }
    
    @media only screen and (min-width: 768px) and (max-width: 991px) {
        .banner-style-six-area {
            padding-top: 0;
        }
        
        .banner-style-six {
            text-align: center;
        }
    }
    
    @media only screen and (max-width: 767px) {
        .banner-shape-bg {
            display: none;
        }
        
        .banner-style-six-area {
            padding-top: 10px;
        }
        
        .banner-style-six h2 {
            font-size: 36px;
        }
        
        .banner-style-six {
            text-align: center;
        }
        
        .project-two-swiper-nav {
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            right: auto;
        }
        
        .project-two-swiper-nav .swiper-pagination {
            width: 100%;
        }
        
        .services-style-six-area {
            text-align: center;
        }
        
        .service-six-heading img {
            display: none;
        }
        
        .service-six-heading {
            margin: 0;
            padding: 50px 30px;
        }
    }
    
    @media (max-width: 450px) {
        .list-grid-info {
            grid-template-columns: 1fr;
        }
    }
    
    .contact-form-box {
        background: #fff;
        padding: 30px;
        border-radius: 30px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    }
    
    @media (max-width: 767px) {
        .contact-form-box {
            padding: 45px 15px;
        }
        
        /* .navbar-header {
            white-space: pre;
            height: 120px;
        } */
    }
    
    .contact-form-box h4 {
        color: var(--color-black);
        font-size: 22px;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .contact-form-box p {
        color: var(--color-black);
        font-size: 14px;
        line-height: 18px;
    }
    
    @media(max-width: 547px) {
        .contact-form-box h4 {
            font-size: 21px !important;
        }
        
        .contact-form-box {
            padding: 22px 15px !important;
        }
        
        .cta-area-box h2 {
            font-size: 25px;
            line-height: 35px;
        }
        
        .cta-area-box .button a {
            margin-top: 20px;
        }
        
        .c-r .col-3 {
            width: 50% !important;
        }
        .d-md-none{
            display: none !important;
        }
        .title,
        .heading{
            font-size: 24px !important;
        }
        .fixed-tel{
            bottom: 90px !important;
            right: 15px !important;
        }
        .whatsapp_float{
            bottom: 25px !important;
            right: 15px !important;
        }
    }
    
    .rr-form-input-main input {
        height: 45px;
        border: 1px solid #d3d3d3;
    }
    
    input[type=text],
    input[type=email],
    input[type=tel],
    input[type=number],
    input[type=password],
    input[type=url],
    textarea {
        outline: none;
        background-color: #fff;
        width: 100%;
        line-height: 60px;
        font-size: 14px;
        color: var(--color-black);
        padding-left: 12px;
        padding-right: 12px;
        resize: none;
        font-family: var(--font-family);
        border-radius: 4px;
    }
    
    .rr-form-textarea-box textarea {
        height: 80px;
        padding-bottom: 20px;
        border: 1px solid #d3d3d3;
    }
    
    textarea {
        line-height: 1.4;
        padding-top: 12px;
        padding-bottom: 17px;
    }
    
    .navbar-brand>img {
        height: 40px !important;
    }
    
    .privacy {
        color: var(--color-black);
        font-size: 14px !important;
        font-weight: 400;
        text-align: center;
        margin-bottom: 0;
        margin-top: 10px;
    }
    
    
    @media (min-width: 768px) {
        .c-r {
            width: 670px;
            position: relative;
            z-index: 9;
        }
        
        .cta-area-box h2 {
            margin-right: 35px;
        }
    }
    
    @media (max-width: 1250px) {
        .c-r {
            background-color: var(--white);
        }
    }
    
    .bg-white {
        --bs-bg-opacity: 1;
        background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
    }
    
    .project-carousel .swiper-slide,
    .c-r {
        border: 1px solid #E5E5E5;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 12px;
    }
    
    .service-content h3 {
        font-size: 36px;
        font-weight: 600;
    }
    
    .service-content small {
        line-height: 20px;
    }
    
    .service-content .counter {
        font-size: 36px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 8px;
        color: var(--color-black);
    }
    
    .service-content .counter span {
        color: var(--color-black);
    }
    
    .service-image-wrapper img {
        width: 450px;
        float: right;
        border-radius: 18px;
        height: 100%;
        /* border: 2px solid; */
    }
    
    .map-section {
        padding: 25px 0;
        position: relative;
    }
    
    .cta-area-box h2 {
        font-weight: 600;
        margin: 0;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .cta-area-box p {
        font-size: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 29px;
    }
    
    .cta-area-box .button {
        margin-top: 40px;
    }
    
    .boosting-style-one .icon img {
        width: 60px;
    }
    
    .map-section .contact-form-box h4,
    .map-section .contact-form-box p {
        color: var(--white);
    }
    
    .map-section .contact-form-box input[type=text],
    .map-section .contact-form-box input[type=email],
    .map-section .rr-form-textarea-box textarea {
        background-color: transparent;
        color: var(--white);
        border: 0;
        border-bottom: 1px solid #d3d3d3 !important;
    }
    
    .map-section .contact-form-box input::placeholder,
    .map-section .rr-form-textarea-box textarea::placeholder {
        color: #d3d3d3;
        /* Set your desired placeholder color here */
    }
    
    @media(min-width: 547px) {
        .cta-area-box .button a {
            margin-left: 30px;
        }
    }
    @media(max-width: 485px) {
        .navbar .attr-right {
            text-align: center !important;
        }
        /*                 
        .navbar .attr-right .attr-nav li:nth-child(2) {
            margin-top: 15px !important;
        } */
    }
    
    @media(max-width: 575px) {
        .navbar .attr-right .attr-nav li:nth-child(2) {
            margin-left: 0 !important;
        }
        .attr-nav ul {
            display: flex;
            gap: 10px;
        }
    }
    
    @media(max-width: 768px) {
        .navbar .attr-right .attr-nav li.contact:first-child {
            margin-left: 0 !important;
        }
        
        .service-content small {
            font-size: 12px !important;
        }
        
        .service-content .counter {
            font-size: 28px !important;
        }
        
        .service-image-wrapper img {
            width: 100% !important;
        }
        .hero-section {
            padding-top: 60px;
        }
    }
    
    .map-section iframe {
        width: 100%;
        height: 100%;
    }
    
    .address .content {
        display: flex;
    }
    
    /* for desktop */
    .whatsapp_float {
        position: fixed;
        width: 50px;
        height: 50px;
        bottom: 40px;
        right: 20px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 100;
    }
    
    .whatsapp-icon {
        margin-top: 12px;
    }
    
    /* for mobile */
    @media screen and (max-width: 767px) {
        .whatsapp-icon {
            margin-top: 12px;
        }
        /*.whatsapp_float {*/
            /*  width: 50px;*/
            /*  height: 50px;*/
            /*  bottom: 40px;*/
            /*  right: 40px;*/
            /*  font-size: 30px;*/
            /*}*/
        }
        
        .fixed-tel {
            position: fixed;
            bottom: 110px;
            right: 20px;
            width: 50px;
            height: 50px;
            line-height: 50px;
            z-index: 9999;
            text-align: center;
            
        }
        
        .fixed-tel:before {
            content: "";
            width: 50px;
            height: 50px;
            background-color: #d61c89;
            position: absolute;
            border-radius: 100%;
            box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(0, 0, 0, .24);
            z-index: 1;
            top: 0;
            left: 0;
        }
        
        .fixed-tel i {
            vertical-align: middle;
            z-index: 2;
            position: relative;
            color: #ffffff;
            font-size: 1.5rem;
        }
        
        
        /* New Css  UK*/
        
        .banner-popup-btn {
            cursor: pointer;
            
        }
        
        .banner-popup {
            position: fixed;
            top: 50%;
            transform: translate(-50%, -50%);
            left: 50%;
            z-index: 99999999;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            transition: 0.4s all;
            overflow-y: auto;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .banner-popup.active {
            opacity: 1;
            visibility: visible;
        }
        
        .banner-popup .container {
            display: flex;
            justify-content: center;
        }
        
        .bg-overlay {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 9999999;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            background-color: rgba(0, 0, 0, 0.8);
            transition: 0.4s all;
        }
        
        .bg-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .banner-popup .close-btn {
            display: flex;
            margin-left: auto;
            text-align: right;
            justify-content: end;
            transform: translateY(30px) translateX(15px);
            cursor: pointer;
        }
        
        .banner-popup .close-btn svg {
            transform: translateY(10px) translateX(-10px);
        }
        
        .banner-popup .close-btn {
            width: 45px;
            height: 45px;
            padding: 0;
            line-height: 45px;
            background-image: linear-gradient(to right, var(--color-primary), var(--color-secondary), var(--color-primary));
            background-size: 220% 150%;
            border-radius: 50px;
        }
        
        @media(max-width:767px) {
            .banner-popup .close-btn {
                transform: translateY(20px) translateX(5px);
            }
            
            /* .banner-popup .close-btn svg {
                width: 35px;
                height: 35px;
                padding: 0;
                line-height: 35px;
                font-size: 14px;
            }  */
            .banner-popup .contact-form-box h4 {
                font-size: 18px !important;
            }
            /* .call .icon{
                padding-top: 35px !important;
            } */
            
        }
        
        .cta-area{
            padding-top: 40px;
        }
        
        .d-none{
            display: none;    
        }
        
        @media(min-width:767px) {
            .d-md-block{
                display: block !important;
            }
            .attr-nav li {
                display: inline-block;
            }
            .d-md-inline{
                display: inline-block !important;    
            }
        }
        
        
        .popup {
            display: none;
            position: fixed;
            z-index: 9999;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-color: rgb(0 0 0 / .4)
        }
        
        .popup-content {
            margin: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 15px;
        }
        
        @media(min-width:768px) and (max-width:1200px) {
            .popup-content {
                width: 350px
            }
        }
        
        @media(min-width:1200px) {
            .popup-content {
                width: 25%;
            }
        }
        
        @media(max-width:547px) {
            .popup-content {
                width: 95%
            }
        }
        .close {
            color: #333;
            z-index: 9;
            float: right;
            font-size: 28px;
            font-weight: 400;
            cursor: pointer;
            position: relative;
            cursor: pointer;
            top: 22px;
            right: 30px;
        }
        .close:hover{
            color: #000;
        }
        
        .rr-form-input-box{
            text-align: left;
        }
        .email-error{
            font-size: 13px;
        }
        
        
        
        .contact-container {
            position: fixed;
            right: 0;
            bottom: 20px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .call-us, .whatsapp-us {
            background-color: #f5f5f5;
            /* background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 134.53%); */
            border: 1px solid #eee;
            border-radius: 18px 0 0 18px;
            max-width: 60px;
            margin-bottom: 10px;
            text-align: center;
            padding: 5px 6px;
            transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out;
            white-space: nowrap;
            overflow: hidden;
            box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
        }
        
        .call-us a, .whatsapp-us a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #fff;
        }
        
        .whatsapp-us img {
            width: 30px;
            height: 30px;
            margin-right: 12px;
            margin-left: 10px;
        }
        
        .call-us:hover, .whatsapp-us:hover {
            max-width: 255px;
        }
        
        .chat-with-us p {
            margin-bottom: 0;
            line-height: 20px;
            font-weight: 500;
            font-size: 16px;
        }
        
        @media (max-width: 575px) {
            .call-us:hover, .whatsapp-us:hover{
                max-width: 50px !important;
            }
        }
        
        .call-us svg {
            width: 45px !important;
            margin-right: 6px;
        }
        .offer-for {
            position: relative;
            z-index: 1;
            color: #fff !important;
            font-size: 16px;
            /* margin-bottom: 0; */
        }
        .offer-line {
            position: relative;
            display: inline-block;
            font-size: 18px;
            margin-top: 35px;
            z-index: 1;
            color: #fff !important;
            opacity: 1 !important;
            margin-bottom: 0;
        }
        
        /* .offer-line::before {
            content: "";
            position: absolute;
            left: -8px;
            right: -8px;
            top: 50%;
            height: 1.4em;
            transform: translateY(-50%);
            background: linear-gradient(90deg, #fff 0%, #fff0 100%);
            background-color: #fff;
            z-index: -1;
            border-radius: 6px;
        }                 */
        
        .btn-text {
            padding-left: 10px;
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: all 0.3s ease-in-out;
        }
        
        .btn-text:hover {
            color: var(--color-primary);
        }
        
        .btn-text img {
            margin-right: 6px;
        }
        
        .w-20 {
            width: 20px !important;
        }
        .w-18 {
            width: 18px !important;
        }
        .mr-5px {
            margin-right: 5px;
        }
        @media (max-width: 575px) {
            .navbar-brand>img {
                height: 25px !important;
            }
            .hero-section h1 {
                font-size: 28px !important;
                line-height: 1.4;
            }
            .hero-section .info {
                padding-bottom: 60px !important;
                text-align: center;
            }
            .attr-right .btn {
                padding: 10px 20px !important;
            }
            .btn {
                width: 100%;
            }
            .fun-factor-style-one .item {
                width: 50%;
            }
            .fun-fact .counter {
                font-size: 36px !important;
            }
            .footer-item .logo {
                height: 40px !important;
            }
            .button {
                margin-top: 0 !important;
            }
            .countdown {
                justify-content: space-evenly !important;
            }
            .hero-section .hero-text {
                font-size: 16px !important;
            }
            .countdown-section {
                justify-content: center;
            }
        }
        
        .button {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        
        
        .countdown-inline {
            /* margin-top: 25px; */
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
            color: #ffffff;
        }
        
        .countdown-inline .text {
            font-size: 18px;
            font-weight: 500;
            opacity: 0.9;
            white-space: nowrap;
        }
        
        .days {
            font-size: 36px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 50px;
            background: #fff;
            color: #02130a;
            min-width: 90px;
            text-align: center;
        }
        
        .brand4col .swiper-slide img {
            height: 45px;
        }
        
        .icon-list {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .icon-list .item {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        
        .icon-list .item svg {
            flex-shrink: 0;
            margin-top: 3px;
        }
        
        .icon-list .item p {
            margin: 0;
            line-height: 1.5;
        }          
        
        .hero-img {
            margin-bottom: -70px;
        }
        
        
        
        
        .count-down {
            /* width: 550px;
            height: 378px;
            margin: auto; */
            /* float: left; */
            /* padding: 20px; */
            margin-top: 25px;
        }
        .count-down .flipdown {
            /* margin: auto; */
            width: 550px;
            margin-top: 30px;
        }
        .count-down h3 {
            text-align: left;
            font-weight: 400;
            font-size: 24px;
            margin-top: 0;
            margin-bottom: 10px;
            color: #fff;
        }
        @media (max-width: 550px) {
            .count-down {
                width: 100%;
                height: 362px;
            }
            .count-down h1 {
                font-size: 2.5em;
            }
        }
        
        .flipdown.flipdown__theme-dark .rotor-group-heading:before {
            color: #fff !important;
        }
        .flipdown .rotor-group-heading:before {
            font-weight: 300 !important;
        }
        
        .ramadan-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.3rem 1rem;
            border-radius: 9999px;
            background: linear-gradient(135deg, hsla(0, 0%, 100%, 0.05), hsla(0, 0%, 100%, 0.02));
            backdrop-filter: blur(20px);
            border: 1px solid hsl(240, 5%, 17%);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.5s ease-out;
        }
        
        .badge-icon {
            color: hsl(45, 93%, 58%);
            font-size: 1rem;
        }
        
        .badge-text {
            font-size: 0.875rem;
            color: #a1a1aa;
        }
        
        .countdown-label {
            font-size: 18px;
            /* text-transform: uppercase; */
            color: #fff;
            margin-bottom: 0;
        }
        
        /* Countdown Section */
        .countdown-section {
            display: flex;
            align-items: center;
            gap: 20px;
            /* margin-bottom: 2.5rem; */
            animation: fadeInUp 0.5s ease-out 0.3s both;
        }
        .countdown {
            display: flex;
            gap: 0.75rem;
        }
        @media (min-width: 640px) {
            .countdown {
                gap: 1rem;
            }
        }
        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .countdown-box {
            background: linear-gradient(135deg, hsla(0, 0%, 100%, 0.05), hsla(0, 0%, 100%, 0.02));
            backdrop-filter: blur(20px);
            border: 1px solid hsl(240, 5%, 17%);
            border-radius: 12px;
            padding: 0.65rem;
            min-width: 60px;
            text-align: center;
        }
        /* @media (min-width: 640px) {
            .countdown-box {
                padding: 1rem;
                min-width: 90px;
            }
        } */
        .countdown-value {
            font-size: 22px;
            line-height: normal;
            /* font-weight: 500; */
            font-variant-numeric: tabular-nums;
            color: #fff;
        }
        /* @media (min-width: 640px) {
            .countdown-value {
                font-size: 2.25rem;
            }
        } */
        .countdown-unit {
            font-size: 0.625rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #a1a1aa;
            margin-top: 0.5rem;
        }
        @media (min-width: 640px) {
            .countdown-unit {
                font-size: 0.75rem;
            }
        }
        /* @media (min-width: 1200px) {
            .hero-section {
                height: 100vh;
            }
        } */
        .hero-section {
            position: relative;
            display: flex;
            align-items: center;
        }
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #000 0%, #fff0 100%);
            z-index: 1;
            pointer-events: none;
        }
        
        .mt-40 {
            margin-top: 40px !important;
        }
        
        @media (min-width: 992px) {
            .hero-logos {
                max-width: 650px;
            }
        }
        @media (max-width: 1200px) {
            .hero-logos img {
                margin: 7px;
            }
            .hero-section h1 {
                font-size: 42px;
            }
        }
        .mt-50 {
            margin-top: 50px;
        }