/*
    Theme Name: Artemas
    Author:  Artemas
    Description: ---- 2025.
    Document   : Framework
    Created on :  March 20 2025, 12.00 AM
*/

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

:root {
    --font-one: "Outfit", sans-serif;
    --font-two: "Manrope", serif;
    --btnradius: 30px;
    --sm-radius: 10px;
    --maincolor: #F7F9F2;
    --textcolor: #2B3848;
    --textcolor-bright: #fff;
    --textcolor-light: #D9D9D9;
    --textcolordark: #1D1D1B;
    --span-bg: #545454;
    --span-bg-dark: #CCCCCC;
    --black: #000;
    --blue: #423677;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

@media screen and (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
}

body {
    font-size: 100%;
    color: var(--textcolor);
    background: var(--maincolor);
    font-family: var(--font-one);
    margin: 0px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    -webkit-text-size-adjust: none;
    font-weight: 300;
}

::placeholder {
    color: var(--secondry-color);
    font-family: var(--font-one);
    font-weight: 400;
}

.clear {
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

:focus {
    outline: 0;
}

a,
a:link,
a:visited {
    outline: none;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    font-family: var(--font-one);
}

img {
    border: none;
    max-width: 100%;
}

ul,
li {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    line-height: 1.2;
    font-family: var(--font-one);
}

p {
    margin: 0;
    line-height: 1.3;
    font-size: 1.4em;
    color: var(--textcolordark);
    font-weight: 400;
    font-family: var(--font-two);
}

h1 {
    margin: 0;
    padding: 0;
    color: var(--textcolor-bright);
    line-height: 0.9;
    font-size: 10vw;
    font-weight: 600;
    font-family: var(--font-one);
}

h2 {
    margin: 0;
    padding: 0;
    color: var(--textcolor);
    font-size: 6vw;
    line-height: 1;
    font-weight: 700;
    font-family: var(--font-one);
}

h3 {
    margin: 0;
    padding: 0;
    color: var(--textcolor);
    font-size: 1.3em;
    line-height: 1;
    font-weight: 500;
    font-family: var(--font-one);
}

h5 {
    margin: 0;
    padding: 0;
    color: var(--textcolor);
    font-size: 2.6em;
    line-height: 1.2;
    font-weight: 600;
    font-family: var(--font-one);
}

h4 {
    margin: 0;
    color: var(--textcolor);
    line-height: 1.1;
    font-size: 1.5em;
    text-transform: uppercase;
    padding: 50px 0;
    font-family: var(--font-one);
}

.outer:before,
.outer:after,
.container:after,
.container:before,
.container-full:after,
.container-full:before,
.slider-area:after,
.slider-area:before {
    content: " ";
    display: table;
}

.outer:after,
.container:after,
.container-full:after,
.slider-area:after {
    clear: both;
}

.outer {
    width: 100%;
    padding: 0 0;
    margin: 0 auto;
}

.container {
    margin: 0 auto;
    width: 90%;
    max-width: 90%;
    position: relative;
    z-index: 2;
}

.small-container {
    margin: 0 auto;
    width: 90%;
    max-width: 1024px;
    position: relative;
    z-index: 2;
}

.medium-container {
    margin: 0 auto;
    width: 90%;
    max-width: 1100px;
    position: relative;
    z-index: 2;
}

.full-container {
    margin: 0 auto;
    width: 97%;
    max-width: 97%;
    position: relative;
    z-index: 2;
}

.flex {
    display: flex;
}

.flexwrap {
    display: flex;
    flex-wrap: wrap;
}

.align-start {
    align-items: flex-start;
}

.align-center {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.flex-end {
    display: flex;
    justify-content: flex-end;
}

.sub-head {
    max-width: 590px;
    padding: 20px 0;
    display: block;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.marquee {
    display: flex;
    animation: scroll-left 20s linear infinite;
    gap: 50px;
}

.marquee.right {
    display: flex;
    animation: scroll-right 20s linear infinite;
    gap: 50px;
    padding: 50px 0 0 0;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

.tag {
    display: inline-block;
    padding: 20px 80px;
    background: white;
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
    font-size: 3vw;
    box-shadow: 0 0 11px 10px #33333303;
}

.pink {
    color: #d4929f;
}

.green {
    color: #5f9560;
}

.blue {
    color: #6e9baa;
}

.lightblue {
    color: #8aabe2;
}

.violet {
    color: #b2689c;
}

.olive {
    color: #88894d;
}

.spacer {
    padding: 10% 0;
}

.spacer-small {
    padding: 5% 0;
}

.spacer-small-top {
    padding: 5% 0 0 0;
}

.spacer-small-bottom {
    padding: 0 0 5% 0;
}

.spacer-top {
    padding: 10% 0 0 0;
}

.spacer-bottom {
    padding: 0 0 10% 0;
}

.banner {
    width: 100%;
    position: relative;
    text-align: center;
    z-index: 0;
}

.banner-image {
    padding: 120px 0;
}

.banner-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.banner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background: linear-gradient(225.55deg, #f7c6e6 10.12%, #ffda85 49.39%, rgba(118, 239, 233, 0.8) 87.13%);
    filter: blur(100px);
    /*animation: moveGradient 50s ease-in-out infinite;*/
    opacity: 0.9;
    transform-origin: center center;
}

/*@keyframes moveGradient {*/
/*    0% {*/
/*        transform: rotate(0deg);*/
/*    }*/
/*    25% {*/
/*        transform: rotate(90deg);*/
/*    }*/
/*    50% {*/
/*        transform: rotate(180deg);*/
/*    }*/
/*    75% {*/
/*        transform: rotate(270deg);*/
/*    }*/
/*    100% {*/
/*        transform: rotate(360deg);*/
/*    }*/
/*}*/

.banner h1 {
    position: relative;
    z-index: 2;
    padding: 12% 0 7% 0;
}

.animated-text span {
    opacity: 0;
    display: inline-block;
    transform: translateY(20px);
    animation: fadeSlideIn 0.5s ease-out forwards;
    color: var(----textcolor-bright);
}

@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 8% 0 3% 0;
}

.portfolio h4 {
    font-size: 2.8em;
    text-transform: capitalize;
    padding: 50px 0 0px 0;
    color: var(--black);
    font-weight: bold;
}

.zoom-container {
    width: 100%;
}

.zoom-image-onscroll {
    width: 100%;
    transform: scale(0.2);
    /* Start at 20% */
    transition: transform 0.4s ease-out;
    will-change: transform;
    border-radius: 50px;
    transform-origin: top center;
}

.zoom-image-onscroll img {
    width: 100%;
    border-radius: 50px;
}

.animated-text-onscroll {
    color: rgba(0, 0, 0, 0);
}

.animated-text-onscroll span {
    opacity: 0;
    visibility: hidden;
    display: inline-block;
    transform: translateY(20px);
    animation: fadeUp 0.5s forwards;
    color: var(--textcolor);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.service-area {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 50px 0;
}

.service-area {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}

.service-area:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 50vh;
    right: -30%;
    top: 15%;
    background: linear-gradient(141.55deg, #d9a7ff, #fcd29f, #b1f8d1);
    background-size: 300% 300%;
    animation: colorFlow 15s ease-in-out infinite;
    filter: blur(100px);
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

@keyframes colorFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.service-area:after {
    content: "";
    position: absolute;
    width: 50%;
    height: 30vh;
    left: -20%;
    bottom: 30%;
    background: linear-gradient(141.55deg, #9B9EF7, #DAE0FF, #FCD3DE, #C2F0FC, #9B9EF7);
    background-size: 400% 400%;
    animation: smokeGradient 25s ease-in-out infinite;
    filter: blur(100px);
    transform: rotate(-113.19deg);
    opacity: 0.9;
    z-index: 0;
}

@keyframes smokeGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 29vw);
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.card {
    position: relative;
    width: 100%;
    height: 40vh;
    background: #fff;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px);
}

.card .blob {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    filter: blur(70px);
}

.blob1 {
    background: linear-gradient(135deg, #ff6a00, #ff99a1);
}

.blob2 {
    background: linear-gradient(135deg, #6a00ff, #00ffe5);
}

.blob3 {
    background: linear-gradient(135deg, #ff00c8, #ffe600);
}

.blob4 {
    background: linear-gradient(135deg, #ffb347, #2e1a47);
}

.blob5 {
    background: linear-gradient(135deg, #aaffcc, #00ccff);
}

.card p {
    position: relative;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.56);
    z-index: 1;
    text-align: center;
    font-size: 2vw;
}

.card a p {
    color: var(--textcolor);
}

.home-service-card .card a p {
    font-size: 25px;
    transform: translate(0px, -15px);
    display: block;
    font-family: var(--font-one);
}

dotlottie-player {
    filter: saturate(0.8);
}

.circle-button {
    justify-self: center;
    width: 100px;
    height: 100px;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.circle-button:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

.review .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 90%;
}

.review .left {
    flex: 1 1 300px;
}

.review .left h3 {
    font-size: 4vw;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--textcolor);
}

.stars {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffb400;
}

.review .right {
    flex: 1 1 400px;
    background: var(--maincolor);
    padding: 4rem;
    border-radius: 50px;
    position: relative;
    border: 1px solid black;
}

.review .right::after {
    content: "";
    position: absolute;
    bottom: 5%;
    right: -20px;
    width: 100%;
    height: 90%;
    border-radius: 50px;
    border: 1px solid black;
    z-index: -1;
}

.right .name {
    font-family: 'Brush Script MT', cursive;
    font-size: 2vw;
    margin-bottom: 1rem;
}

.review .right .quote {
    font-size: 1.5vw;
    line-height: 1.6;
    color: #333;
}

.review .right .link {
    margin-top: 1.5rem;
    display: inline-block;
    font-weight: 500;
    text-decoration: none;
    color: black;
}


.text-block-meet {
    position: relative;
    z-index: 3;
    padding: 100px;
}
.text-block-meet .circle-btn {
    position: absolute;
    top: 100px;
    right: 100px;
}
.top-text {
    font-size: 6vw;
    font-weight: 700;
    line-height: 1;

}

.underscore {
    display: inline-block;
    margin-right: 0.3rem;
}

.bottom-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.tagline {
    font-size: 3vw;
    font-weight: 600;
    padding: 0 30px 0 0;
}

.circle-btn {
    width: 6vw;
    height: 6vw;
    min-width: 80px;
    min-height: 80px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8vw;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    transition: all 0.3s ease;
}

.circle-btn a {
    color: #fff;
}

.circle-btn:hover {
    background-color: #fff;
    color: #000;
    cursor: pointer;
}

.circle-btn:hover a {
    color: #000;
}

@media (max-width: 500px) {
    .bottom-section {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
}

.more-than {
    background: #000;
    color: #fff;
    padding: 0;
    margin: 5% auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    border-radius: 50px; 
    max-width: 90%;
    /*    background: url(../img/animation.gif) no-repeat center center /cover;*/
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.more-than .circle-btn {
    width: 6vw;
    height: 6vw;
    min-width: 80px;
    min-height: 80px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.8vw;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.2;
    color: #000;
    background: #fff;
    transition: all 0.3s ease;
}

.more-than .circle-btn a {
    color: #000;
}

.more-than .circle-btn:hover a {
    color: #fff;
}

.more-than .circle-btn:hover {
    color: #fff;
    border: 1px solid #000;
    background: #000;
}

.goal-stats-section {
    padding: 4vw 2vw;
    display: flex;
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    column-gap: 50px;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.gradient-area {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gradient-area:before {
    position: absolute;
    width: 70%;
    height: 100vh;
    left: -50%;
    bottom: 20%;
    background: linear-gradient(141.55deg, #FAD8F7 -3.79%, #F7EFF5 82.82%);
    filter: blur(100px);
    transform: rotate(178.62deg);
    content: "";
    z-index: 1;
}

.gradient-area:after {
    position: absolute;
    width: 70%;
    height: 60vh;
    right: -40%;
    top: 30%;
    background: linear-gradient(141.55deg, #9B9EF7 -3.79%, #DAE0FF 82.82%);
    filter: blur(100px);
    transform: rotate(51.03deg);
    content: "";
}

.goal-stats-section div {
    z-index: 2;
}

.goal-stats-section .left {
    width: 25%;
}

.goal-stats-section .right {
    width: 25%;
}

.stat-box {
    flex: 1 1 300px;
    margin: 2vw;
    max-width: 22vw;
    min-width: 300px;
}

.stat-box h2 {
    font-size: 2.5vw;
    color: var(--white);
    font-weight: 700;

}

.stat-box h2 span {
    font-size: 1.6vw;
    font-weight: 400;
    display: inline-block;
}

.stat-box p {
    font-size: 1.1vw;
    color: #333;
    margin-top: 0;
    line-height: 1.5;
    max-width: 100%;
}

.goal-center {
    border: 1px solid #ccc;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
    width: 30%;
}

.goal-center h2 {
    font-size: 6vw;
    color: #f07f87;
    margin: 0;
    line-height: 0.8;
}

.goal-center h2 span {
    font-size: 6vw;
    display: block;
}

.goal-center p {
    font-size: 1.3em;
    color: #333;
    margin-top: 1vw;
    text-align: center;
    padding: 0 20%;
}

.stat-box,
.goal-center {
    flex: 1;
    max-width: 100%;
}

.article-area {
    z-index: 9;
    position: relative;
}

.article-area .container {
    display: flex;
    background-color: #4D3E5D;
    border-radius: 50px;
    padding: 5%;
    margin: 5% auto 1% auto;
    color: white;
    gap: 40px;
    max-width: 90%;
    min-height: 90vh;
    z-index: 2;
    position: relative;
}

.article-area .left-content {
    justify-content: flex-start;
    width: 65%;
    z-index: 2;
    display: flex;
    position: relative;
}

.article-area .left-content h3 {
    font-size: 6vw;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    margin: 0;
    z-index: 2;
    max-width: 70%;
}

.article-area .left-content img {
    width: 60%;
    border-radius: 30px;
    object-fit: cover;
    position: absolute;
    right: 0;
    z-index: 1;
}

.article-area .right-content {
    justify-content: flex-start;
    z-index: 3;
    width: 35%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: end;
    transform: translate(-70px, -50px);
}

.article-area .right-content p {
    font-size: 1.3em;
    line-height: 1.6;
    margin: 0;
    padding: 0 0 30px 0;
    color: #fff;
}

.article-area .footer-link {
    text-align: right;
    margin: 0 auto 50px auto;
    max-width: 85%;
}

.article-area .footer-link a {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 500;
}

.call-to-action {
    padding: 80px 40px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.call-to-action .content {
    max-width: 90%;
    margin: 0 auto;
    color: #000;
}

.call-to-action p {
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 5px;
    font-family: var(--font-one);
}

.call-to-action h2 {
    font-size: 5vw;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 40px 0;
    color: #000;
}

.call-to-action .btn {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid #000;
    border-radius: 30px;
    text-decoration: none;
    color: #000;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}

.call-to-action .btn:hover {
    background-color: #000;
    color: #fff;
}

.footer {
    background-color: #ffffff;
    padding: 4%;
    border-radius: 40px;
    max-width: 90%;
    margin: 0 auto 50px auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-brand {
    padding: 0;
    margin: 0 0 50px 0;
    font-size: inherit;
    display: flex;
}

.footer-brand h2 {
    max-width: 250px;
}

.footer-links {
    display: flex;
    flex: 1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 9%;
}

.footer-column h4 {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: none;
    padding: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #000;
    font-size: 1.1em;
    font-weight: 400;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: auto;
}

.footer-social a img {
    width: 16px;
    height: 16px;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 40px 0 20px;
}

.footer-bottom {
    text-align: left;
    font-size: 11px;
    font-family: var(--font-one);
}

.footer-bottom p {
    font-family: var(--font-one);
}

.portfolio .container-area {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    gap: 24px;
    margin: 30px auto;
    height: 400vh;
    align-items: center;
}

.portfolio .cardarea {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    min-height: 110vh;
    position: sticky;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 -60px 66px 12px #0000001f;
}

.portfolio .cardarea img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: top;
    margin: 0;
}

.portfolio .one {
    top: 50px;
}

.portfolio .two {
    top: 80px;
}

.portfolio .three {
    top: 110px;
}

.portfolio .four {
    top: 140px;
}


/*inner pages*/

.common-inner .banner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #fbd5a6 0%, rgb(69 100 236 / 46%) 100%);
    filter: blur(100px);
    /*animation: moveGradient 50s ease-in-out infinite;*/
    opacity: 0.9;
    transform-origin: center center;
}


.service-card .cardarea {
    width: 100%;
    margin: 0;
    padding: 100px;
    box-sizing: border-box;
    min-height: 90vh;
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 -60px 66px 12px #0000001f;
    background: #fff;
    text-align: left;
    gap: 50px;

}

.flex-item {
    flex: 1 1 45%;
}

.service-card-block {
    padding: 0 0 0 5%;
}

.service-animation-img {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card .cardarea h2 {
    font-size: 4em;
    max-width: 520px;
}

.service-card .cardarea p {
    max-width: 600px;
    padding: 20px 0 0 0;
    font-size: 1.5em;
}

@media (max-width: 768px) {
    .flex-item {
        flex: 1 1 100%;
    }
}

.service-card .cardarea.revert {
    flex-direction: row-reverse;
    gap: 50px;
}


.service-card.border .cardarea {
    width: 100%;
    margin: 0;
    padding: 100px;
    box-sizing: border-box;
    min-height: 90vh;
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #333;
    background: #f7f9f2;
    text-align: left;
}

.common-inner .portfolio {
    padding: 3% 0 3% 0;
}

.inner-review.article-area .left-content img {
    width: 60%;
    border-radius: 30px;
    object-fit: cover;
    position: relative;
    left: 0;
    z-index: 1;
}


.inner-review.article-area .right-content {
    justify-content: flex-start;
    z-index: 3;
    width: 35%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: end;
    transform: translate(0px, 0px);
}

.inner-review.article-area .left-content h3 {
    transform: translate(-80px, 20px);
    font-size: 4.5vw;
    line-height: 0.9;
}

.common-inner h2 {
    font-size: 4vw;
}

.common-inner .marquee-wrapper .small-container h2 {
    padding: 0 0 80px 0;

}

.banner.about-banner::before {
    background: linear-gradient(225.55deg, #f7c6e6 10.12%, #ffda85 49.39%, rgba(118, 239, 233, 0.8) 87.13%);
    filter: blur(100px);
    opacity: 0.9;
    transform-origin: center center;
}

.common-inner .marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.cardarea .circle-button {
    justify-self: flex-start;
    margin: 30px 0;
}

.article-area.inner-review .small-container h4 {
    padding: 50px 0 20px 0;
}

.article-area.inner-review .container {
    margin: 20px auto 1% auto;
}

.project-banner img {
    width: 100%;
    border-radius: 30px;
    margin: 150px 0;
}

.portfolio-text {
    text-align: left;
    max-width: 1150px;
    margin: 0 auto;
}

.portfolio-text h2 {
    padding: 0 0 30px 0;
}

.portfolio-text p {
    padding: 0 15% 0 0;
    line-height: 1.5;
}

.about-text {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
}

.about-text .column {
    flex: 1 1 45%;
    padding: 20px;
    box-sizing: border-box;
}

.about-text .column.left {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}

.about-text .column.left h2 {
    padding: 30px 0 30px 0;
}

.about-text .column.left p {
    padding: 0 0 50px 0;
}

.about-text .column.right img {
    height: 70vh;
    width: 100%;
    object-fit: cover;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .about-text .column .column {
        flex: 1 1 100%;
    }
}

.since {
    text-align: left;
}

.since h2 {
    font-size: 15vw;
    color: #fff;
    line-height: 0.8;
}

.since h2 span {
    font-size: 2vw;
}

.team-pic {
    width: 100%;
    padding: 40px 0 0 0;
}

.team-pic img:nth-child(1) {
    transform: translate(20px, 0px);
}

.team-pic img:nth-child(2) {
    transform: translate(-10px, 0px);
}

.about-goal h2 {
    font-size: 2em;
    color: #474747;
}

.team-section {
    width: 90%;
    max-width: 90%;
    margin: 80px auto;
    text-align: center;
    background: #252323;
    padding: 8%;
    border-radius: 50px;
}

.team-section h2 {
    margin-bottom: 30px;
    color: #F7F9F2;
}

.team-photos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
    align-content: center;
    align-items: center;
}

.team-photos img {
    width: 6vw;
    height: 6vw;
    border-radius: 50%;
    object-fit: cover;
    display: inline-block;
    margin: 0 -6px;
    filter: contrast(1.5);
    mix-blend-mode: exclusion;
}



.team-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
    text-align: left;
    padding: 4% 8%;
}

.team-section .left,
.team-section .right {
    flex: 1 1 45%;
}

.team-section .right p {
    color: #F7F9F2;
}

.team-section .left p {
    color: #F7F9F2;
    font-weight: 700;
    font-size: 1.9em;
}



.sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100%;
    background: #fff;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    transition: left 0.3s ease;
    z-index: 999999;
}

.closeSidebar {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #000;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.closeSidebar.animate {
    transform: rotate(90deg);
    opacity: 0;
}

.article-area .container.olive {
    background-color: #3e5d4f;
}

.article-area .container.blue {
    background-color: #7D89D3;
}

.service-card .cardarea.no-border {
    border: 0;
    padding: 50px 0;
}

.service-card .cardarea.nopadding {
    padding: 0;
}


.portfolio .cardarea.no-border img {
    object-fit: cover;
    height: 650px;
    width: 90%;
    object-position: center;
}

.whatsapp-float.show-icons {
    visibility: visible;
}

.whatsapp-float {
    position: fixed;
    bottom: -80px;
    /* Start hidden below view */
    left: 50%;
    transform: translateX(-50%);
    background-color: #25D366;
    border-radius: 30px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: sans-serif;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    z-index: 9999;

    /* Transition for smooth slide */
    transition: bottom 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.whatsapp-float.show-icons {
    bottom: 40px;
    /* Visible position */
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-float:hover {
    transform: translateX(-50%) scale(1.05);
}

.whatsapp-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}

.whatsapp-label {
    white-space: nowrap;
}


.common-inner.branding .portfolio .cardarea img {
    height: 650px;
    object-position: center;
}

.work-listing {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0px 0 120px 0;
}

.work-listing .row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.work-listing .col-2 {
    width: 50%;
    padding: 50px 20px 0 20px;
    box-sizing: border-box;
}

.work-listing a:hover {
    background-color: #fff;
    border-radius: 40px;
    padding: 50px;
}

.work-listing .col-1 {
    width: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
}

.work-listing a {
    display: block;
    text-decoration: none;
    padding: 0;
    transition: 0.3s;
    animation: fadeIn ease 1s;
    -webkit-animation: fadeIn ease 1s;
    -moz-animation: fadeIn ease 1s;
    -o-animation: fadeIn ease 1s;
    -ms-animation: fadeIn ease 1s;
    padding: 40px;
    background: #ffffff;
    border-radius: 50px;
    text-align: center;
}


.work-listing img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
    border-radius: 40px;
}

.work-listing h3 {
    margin: 15px 0 0 0;
    font-size: 1.5em;
    display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .work-listing .col-2 {
        width: 100%;
        padding: 0 10px 20px 10px;
    }

    .work-listing a {
        padding: 20px;
    }

    .work-listing .col-1 {
        width: 100%;
        padding: 0 10px 20px 10px;
        box-sizing: border-box;
    }

    .work-listing h3 {
        font-size: 1.5em;
    }
}

.branding .circle-button {
    transform: translate(0px, -30px);
}

.services.home-area .card img {
    width: 200px;
    height: 200px;
    position: relative;
    z-index: 3;
    display: none;
}

.article-area .circle-btn a {
    color: #fff;
}

.article-area .circle-btn:hover a {
    color: #000;
}

.pd-detailed h3 {
    font-size: 3.4em;
    max-width: 520px;
    font-weight: 600;
    margin: 0 auto;
}

.pd-detailed .service-card-block {
    padding: 0;
}

.pd-detailed h3 span {
    color: #937373;
    font-size: 35px;
    display: block;
    margin: 0 0 20px 0;
}

.team-pic img:nth-child(3) {
    transform: translate(-20px, 0px);
}

.team-pic img:nth-child(4) {
    transform: translate(-40px, 0px);
}

.banner.small-404 h1 {
    font-size: 9em;
    line-height: 1;
}

.banner.small-404 a {
    color: #000;
    text-decoration: underline;
}

.visit-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid #2B3848;
    color: #2B3848;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 20px 0;
    border-radius: 100px;
    text-transform: uppercase;
}

.visit-btn:hover {
    background-color: #2B3848;
    color: white;
}

.address h4 {
    text-transform: none;
    font-size: 1.7em;
    color: #000;
}

.stars {
    display: inline-flex;
    font-size: 1rem;
    font-family: 'Arial Rounded MT Bold', sans-serif;
    color: #fff;
    cursor: pointer;

}

.star {
    transition: color 0.2s;
    margin: 0 10px 0 0;
}

.star:hover,
.star:hover ~ .star {
    color: #fff;
}


.nav-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links > ul > li {
    position: relative;
    /* for submenu absolute positioning */
    display: inline-block;
    /* horizontal menu */

}

.nav-links ul li a {
    padding: 10px 0;
}

.nav-links ul li a:hover {
    color: var(--textcolor);
}

.nav-links ul li li a {
    text-decoration: none;
    padding: 12px 0;
    display: block;
    color: #333;
    white-space: nowrap;
    text-align: center;
    margin: 0;
}

.nav-links ul li li a:hover {
    color: #c15167;
    /* example hover color */
}

/* Submenu styles */
.sub-nav {
    position: absolute;
    top: 100%;
    left: -32px;
    transform: translate(0, 10px);
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-height: 0;
    opacity: 1;
    pointer-events: none;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    min-width: 180px;
    border-radius: 10px;
    z-index: 9999;
    padding: 0;
}

/* Show submenu on hover of parent li */
.nav-links > ul > li:hover > .sub-nav {
    max-height: 500px;
    /* adjust if needed */
    opacity: 1;
    pointer-events: auto;
}

/* Submenu list style */
/*
.sub-nav li {
  border-bottom: 1px solid #eee;
}
*/

.sub-nav li:last-child {
    border-bottom: none;
}

.sub-nav li a {
    padding: 10px 15px;
    color: #333;
}

.sub-nav li a:hover {
    background-color: #f2f2f2;
    color: #007bff;
}

.address-area {
    display: block;
    z-index: 2;
    position: relative;
}

.contact-area .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 0 150px 0;
    text-align: left;
    color: #fff;
}

.contact-area .set {
    padding: 1rem;
    line-height: 1.5;
    color: #fff;
}

.contact-area .set p {
    font-size: 1.2em;
}

.contact-area .set h2 {
    padding: 0 0 20px 0;
}


/* Optional: Responsive stacking on smaller screens */
@media (max-width: 768px) {
    .contact-area .grid {
        grid-template-columns: 1fr;
    }

    .score {
        display: grid;
        grid-template-columns: 100%;
        gap: 10PX;
    }
}

.service-area h2 {
    font-size: 4vw;
}

p.sub-head {
    color: #474747;
    font-weight: 500;
    font-size: 1.7em;
}

h4.bold-text {
    color: var(--black);
    font-size: 2.5em;
    font-weight: 400;
    text-transform: capitalize;
}

h4.bold-text span {
    font-weight: bold;
}

.score {
    display: grid;
    grid-template-columns: repeat(3, 26vw);
    gap: 30px;
    border-top: 1px solid #ffffff5c;
    margin: 45px 0 0 0;

}

.video-team {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.video-team video {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    margin: 0 auto;
    height: 100vh;
    width: 100%;
        object-fit: cover;
        object-position:center center;
}

.score .stat-box {
    margin: 2vw 0;
}

.score .stat-box p {
    color: var(--white);
    font-size: 18px;
    max-width: 350px;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 10px;
}

.new-sect .more-than {
    margin: 0 auto;
}

.new-sect.spacer-small {
    padding: 0 0 2% 0;
}

.team a {
    color: var(--black);
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1.2em;

}

.team {
    text-align: right;
    margin: 2% 0 0 0;
}

.new-review.review .right {
    border: 0;
    background-color: var(--textcolor-bright);
}

.new-review.review .right::after {
    display: none;
}

.new-review.review .container {
    background-color: var(--textcolor-bright);
    padding: 50px;
    border-radius: 60px;
}

.new-review.review .right .quote {
    font-weight: 400;
    line-height: 1.2;
    color: #474747;
}

.new-review.review .left h3 {
    font-weight: 500;
    color: var(--black);
}

.new-review.review .adjust {
    max-width: 120px;
    margin: 50px 0 0 0;
}

.blog .container {
    border-radius: 70px;
    background-color: #573C3E;
    padding: 50px 80px;
    text-align: center;
}

.blog-sec {
    display: grid;
    grid-template-columns: repeat(3, 26.3vw);
    gap: 20px;
    text-align: left;
}

.blog-content {
    padding: 15px 40px;
}

.blog h4 {
    color: var(--textcolor-bright);
    font-size: 2.5vw;
    font-weight: 500;
    text-transform: capitalize;
}

.blog h5 {
    color: var(--textcolor-bright);
    font-size: 1.5em;
    font-weight: 400;
}

.blog p {
    color: var(--textcolor-bright);
    font-size: 1.1em;
    font-weight: 300;
    font-family: var(--font-one);
    padding: 10px 0;
    opacity: 0.7;
}

.blog-sec img {
    width: 100%;
    height: 300px;
    border-radius: 60px;
    object-fit: cover;
}

.blog-sec a {
    color: var(--textcolor-bright);
    font-family: var(--font-two);
    font-weight: 400;
    text-transform: uppercase;
    opacity: 1;
}

img.qts {
    max-width: 150px;
    margin: 0 0 20px 0;
}

.blog {
    position: relative;
    width: 100%;
    z-index: 1;
}
p.sub-head {
    display: none;
}
.blog-detail-page {
    width: 100%;
    padding: 150px 0 50px 0;
}
.blog-detail-page h3 {
    font-size: 3em;
    margin: 0 0 20px 0;
}
.blog-detail-page img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
    margin: 20px 0;
}
.blog-detail-page p {
    margin: 0 0 20px 0;
    font-weight: 400;
    line-height: 1.2;
    color: #474747;
    font-size: 1.5em;
}
.blog-detail-page h4 {
    padding: 20px 0;
    text-transform: capitalize;
    font-size: 1.8em;
}
.blog-detail-page ul li {
     font-weight: 300;
    line-height: 1.2;
    color: #474747;
    font-size: 1.5em;
    list-style: disc;
    margin: 0 0 10px 0;
}
.blog-detail-page ul {
    margin: 0 0 0 20px;
}
.blog-detail-page ul {
    margin: 0 0 0 60px;
    padding: 0 0 20px 0;
}