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

body,
html {
overflow-x: hidden;
}

@font-face {
font-family: "Winter Farmhouse";
src: url("./font/Winter-Farmhouse.ttf") format("truetype");
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Poppins Medium";
src: url("./font/Poppins-Medium.ttf") format("truetype");
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Poppins";
src: url("./font/Poppins-Regular.ttf") format("truetype");
font-weight: 400;
font-style: normal;
font-display: swap;

}

h1,
h2 {
font-family: "Winter Farmhouse", sans-serif;
font-weight: 400;
text-transform: uppercase;
}

p.highlight,
h4 {
font-family: "Poppins Medium", sans-serif;
font-weight: 500;
}

p,
a,
li {
font-family: "Poppins", sans-serif;
font-weight: 400;
color: #2c2c2c;
}

/* Header Css Start */
header .container {
max-width: 1540px;
width: 100%;
margin: 0 auto;
padding: 0 40px;
display: flex;
justify-content: space-between;
align-items: center;
position: absolute;
top: 10%;
left: 0%;
right: 0%;
z-index: 99999;
}
@media (max-width: 768px) {
header .container {
justify-content: center;
align-items: center;
}
}

.phone_btn {
display: flex;
align-items: center;
gap: 10px;
border: 1px solid #ffffff;
padding: clamp(10px, 0.8vw + 6px, 15px);
border-radius: 20px;
cursor: pointer;
}
@media (max-width: 768px) {
.phone_btn {
display: none;
}
}

.phone_btn img {
width: 18%;
height: 100%;
}

.phone_btn a {
font-size: clamp(16px, 1vw + 0.2rem, 16px);
line-height: 1em;
color: #ffffff;
text-decoration: none;
}

.logo img {
width: 100%;
height: auto;
}

.quote_btn {
border: 1px solid #ffffff;
padding: clamp(14px, 1vw + 8px, 20px) clamp(30px, 2vw + 10px, 50px);
border-radius: 20px;
cursor: pointer;
}
@media (max-width: 768px) {
.quote_btn {
display: none;
}
}

.quote_btn a {
font-size: clamp(16px, 1vw + 0.2rem, 18px);
line-height: 1em;
color: #ffffff;
text-decoration: none;
text-transform: capitalize;
}
/* Header Css End */


section.about {
background-image: url("imgs/about-background-image.png");
background-position: top center;
background-size: cover;
background-repeat: no-repeat;
background-color: #ffffff;
position: relative;
display: flex;
justify-content: center;
flex-direction: column;
}

.about .container {
position: relative;
max-width: 1620px;
width: 100%;
margin: 0 auto;
padding: 200px 40px 0px;
}
@media (max-width: 768px) {
.about .container {
padding: 100px 20px 0px;
}
}
img.cloud-absolute {
position: absolute;
top: -5%;
left: -20%;
width: 53%;
height: auto;
opacity: 12;
animation: floatCloud 6s ease-in-out infinite;
mask-image: linear-gradient(
to right,
rgba(0, 0, 0, 0) 0%,
rgb(0 0 0 / 114%) 126%,
rgb(0 0 0) 161%
);
mask-repeat: no-repeat;
mask-size: 100% 100%;
}

@keyframes floatCloud {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(85px);
}
100% {
transform: translateY(0px);
}
}

img.cloud-absolute-2 {
position: absolute;
width: 34%;
height: auto;
right: -3%;
top: 12%;
opacity: 0.6;

mask-image: linear-gradient(
to right,
rgba(0, 0, 0, 1) 0%,
rgba(0, 0, 0, 0) 100%
);
mask-repeat: no-repeat;
mask-size: 100% 100%;
}

img.happy-children-absolute {
position: absolute;
width: 20%;
height: auto;
top: 10%;
left: 1%;
}

img.children-painting-absolute {
position: absolute;
width: 20%;
height: auto;
top: 10%;
right: 1%;
}

.content_container {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}

.content_container h2 {
font-size: clamp(40px, 10vw, 160px);
line-height: clamp(30px, 7vw, 110px);
color: #1c465c;
text-align: center;
width:80% !important;
}

.content_container p.highlight {
font-size: clamp(16px, 2vw, 26px);
line-height: clamp(24px, 3vw, 36px);
color: #6e926e;
text-align: center;
width: 80%;
}

.content_container p {
font-size: clamp(14px, 1.8vw, 22px);
line-height: clamp(22px, 2.5vw, 34px);
text-align: center;
width: 82%;
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
}

.about .features-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
width: 100%;
justify-items: center;
}
@media (max-width: 768px) {
.about .features-container {
grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
}
img.feature-icon {
width: 100%;
max-width: 50px !important;
}
.feature-item {
flex-wrap: wrap;
}
}

.feature-item {
display: flex;
flex-direction: row;
align-items: center;
border: 1px solid #6e926e;
padding: 20px;
border-radius: clamp(15px, 2vw, 30px);
gap: clamp(10px, 1.5vw, 20px);
background: rgba(255, 255, 255, 0.3);
backdrop-filter: blur(10px);
width: 100%;
max-width: 400px;
}
.features-container .feature-item:nth-child(1) {
max-width: 300px !important;
}
.features-container .feature-item:nth-child(2) {
max-width: 400px !important;
}
.features-container .feature-item:nth-child(3) {
max-width: 300px !important;
}
.features-container .feature-item:nth-child(4) {
max-width: 400px !important;
}

img.feature-icon {
width: 100%;
max-width: 78px;

height: auto;
}

.feature-item h4 {
font-size: clamp(16px, 2vw, 26px);
line-height: clamp(20px, 2.5vw, 30px);
color: #6e926e;
font-weight: 500;
}

.illustration .container {
position: relative;
width: 70%;
padding: 0px;
}

.illustration {
position: relative;
display: inline-block;
}

@media (max-width: 768px) {

.illustration .container img {
  transform: translate(-362px, 0px);  
}
}
.illustration::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 60%;
background: linear-gradient(to top, #ffffff 30%, rgb(255 255 255 / 3%) 100%);
pointer-events: none;
}

/* About Css End */

/* Why Choose Css Start */

section.why_choose .container {
display: flex;
position: relative;
max-width: 1520px;
width: 100%;
margin: 0 auto;
padding: 0 40px 120px 40px;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
}
@media (max-width: 768px) {
section.why_choose .container {
padding: 0 20px 80px 20px;
}
}

.why_choose h2 {
text-align: center;
font-size: clamp(40px, 10vw, 160px);
line-height: clamp(30px, 7vw, 110px);
color: #1c465c;
width: 90%;
}

.why_choose p {
font-size: clamp(14px, 1.8vw, 22px);
line-height: clamp(22px, 2.5vw, 34px);
text-align: center;
}

.why_choose p {
font-size: clamp(14px, 1.8vw, 22px);
line-height: clamp(22px, 2.5vw, 34px);
text-align: center;
width: 75%;
}

.process-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
width: 100%;
}
@media (max-width: 768px) {
.process-container {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
}
/* Optional: make sure process boxes fill nicely */
.process-container > div {
background-color: #c2f9e1;
border-radius: 20px;
padding: clamp(0.8em, 1vw, 1.25em) clamp(0.8em, 1vw, 1.25em)
clamp(4em, 9vw, 7.5em) clamp(0.8em, 1vw, 1.25em);
position: relative;
}

/* Process Box 1 Css Start */
.process-container .process-box-1 {
position: relative;
background-color: #c2f9e1;
border-radius: 20px;
width: 100%;
padding: clamp(0.8em, 1vw, 1.25em) clamp(0.8em, 1vw, 1.25em)
clamp(4em, 9vw, 7.5em) clamp(0.8em, 1vw, 1.25em);
}

.process-box-1 .process-item {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
}

img.process-item-img {
width: auto;
}

.process-box-1 .process-item h2.process-item-heading {
font-size: clamp(40px, 5vw, 70px);
line-height: clamp(34px, 3.6vw, 50px);
text-align: left;
text-transform: none;
}

.process-box-1 .process-item p.process-item-para {
font-size: clamp(14px, 1.8vw, 18px);
line-height: clamp(22px, 2.3vw, 28px);
text-align: left;
width: 100%;
}

img.process-item-absolute-1 {
position: absolute;
width: 100%;
max-width: 30%;
min-width: 20%;
height: auto;
bottom: 0;
left: 0;
transform: translate(-50%, 30%);
}
@media (max-width: 768px) {
img.process-item-absolute-1 {
max-width: 20%;
transform: translate(-10%, 40%);
}
}
/* Process Box 1 Css End */

/* Process Box 2 Css Start */
.process-container .process-box-2 {
position: relative;
background-color: #ffdacd;
border-radius: 20px;
width: 100%;
padding: clamp(0.8em, 1vw, 1.25em) clamp(0.8em, 1vw, 1.25em)
clamp(4em, 9vw, 7.5em) clamp(0.8em, 1vw, 1.25em);
}

.process-box-2 .process-item {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
}

.process-box-2 .process-item h2.process-item-heading {
font-size: clamp(40px, 5vw, 70px);
line-height: clamp(34px, 3.6vw, 50px);
text-align: left;
text-transform: none;
color: #966351;
width: 100%;
}

.process-box-2 .process-item p.process-item-para {
font-size: clamp(14px, 1.8vw, 18px);
line-height: clamp(22px, 2.3vw, 28px);
text-align: left;
width: 95%;
}

img.process-item-absolute-2 {
position: absolute;
width: 30%;
min-width: 20%;
height: auto;
bottom: 0;
left: 0;
transform: translate(-30%, 30%);
}
@media (max-width: 768px) {
img.process-item-absolute-2 {
max-width: 20%;
transform: translate(-10%, 50%);
}
}
/* Process Box 2 Css End */

/* Process Box 3 Css Start */
.process-container .process-box-3 {
position: relative;
background-color: #ffeec3;
border-radius: 20px;
width: 100%;
padding: clamp(0.8em, 1vw, 1.25em) clamp(0.8em, 1vw, 1.25em)
clamp(4em, 9vw, 7.5em) clamp(0.8em, 1vw, 1.25em);
}

.process-box-3 .process-item {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
}

.process-box-3 .process-item h2.process-item-heading {
font-size: clamp(40px, 5vw, 70px);
line-height: clamp(34px, 3.6vw, 50px);
text-align: left;
text-transform: none;
color: #918465;
}

.process-box-3 .process-item p.process-item-para {
font-size: clamp(14px, 1.8vw, 18px);
line-height: clamp(22px, 2.3vw, 28px);
text-align: left;
width: 100%;
}

img.process-item-absolute-3 {
position: absolute;
width: 30%;
min-width: 20%;
height: auto;
bottom: 0;
left: 0;
transform: translate(-30%, 30%);
}
@media (max-width: 768px) {
img.process-item-absolute-3 {
max-width: 20%;
transform: translate(-10%, 40%);
}
}
/* Process Box 3 Css End */

/* Process Box 4 Css Start */
.process-container .process-box-4 {
position: relative;
background-color: #eef2ff;
border-radius: 20px;
width: 100%;
padding: clamp(0.8em, 1vw, 1.25em) clamp(0.8em, 1vw, 1.25em)
clamp(4em, 9vw, 7.5em) clamp(0.8em, 1vw, 1.25em);
}

.process-box-4 .process-item {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 10px;
}

.process-box-4 .process-item h2.process-item-heading {
font-size: clamp(28px, 4vw, 50px);
line-height: clamp(24px, 3.2vw, 40px);
letter-spacing: clamp(-5px, -0.35vw, -5px);
text-align: left;
text-transform: none;
color: #7680a1;
width: 100%;
}

span.process-item-percentage {
font-size: clamp(40px, 5vw, 70px);
line-height: clamp(34px, 3.6vw, 50px);
letter-spacing: clamp(-1px, -0.15vw, -2px);
}

.process-box-4 .process-item p.process-item-para {
font-size: clamp(14px, 1.8vw, 18px);
line-height: clamp(22px, 2.3vw, 28px);
text-align: left;
width: 95%;
}

img.process-item-absolute-4 {
position: absolute;
width: 30%;
min-width: 20%;
height: auto;
bottom: 0;
left: 0;
transform: translate(-30%, 30%);
}
@media (max-width: 768px) {
img.process-item-absolute-4 {
max-width: 20%;
transform: translate(-10%, 40%);
}
}
/* Process Box 4 Css End */
/* Why Choose Css End */

/* Talk To Us Css Start */

section.talk_to_us {
width: 100%;
padding: 100px 40px;
}

.talk_to_us .container {
position: relative;
max-width: 1640px;
width: 100%;
margin: 0 auto;
display: flex;
flex-direction: row;
align-items: center;
background-image: url(imgs/talk-to-us-bg-img.png);
background-position: top center;
background-repeat: no-repeat;
background-size: cover;
border-radius: 60px;
}
@media (max-width: 768px) {
.talk_to_us .container {
flex-direction: column;
}
}

/* Talk To Content Container Css Start */
.talk-to-content {
position: relative;
width: 100%;
padding: 20px 0px 25px 100px;
margin: 60px 0;
display: flex;
flex-direction: column;
gap: 30px;
}
@media (max-width: 768px) {
.talk-to-content {
padding: 20px 20px 25px 20px;
margin: 30px 0;
}
}

.talk-to-content h2.talk-to-heading-1 {
font-size: clamp(40px, 4vw, 70px);
line-height: clamp(36px, 3.3vw, 60px);
color: #ffffff;
width: 100%;
}

h2.talk-to-heading-2 {
font-size: clamp(60px, 7vw, 130px);
line-height: clamp(40px, 4.8vw, 70px);
background: linear-gradient(193deg, #94b594, #6e926e);
-webkit-text-fill-color: transparent;
background-clip: text;
}

.talk-to-content .cta_btn {
display: flex;
flex-direction: row;
align-items: center;
gap: 20px;
}

a.get-started-btn {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
font-family: "Winter Farmhouse";
font-size: clamp(26px, 3.5vw, 46px);
line-height: clamp(20px, 2.2vw, 30px);
color: #ffffff;
text-decoration: none;
padding: clamp(0.7em, 1.4vw, 1.5625em) clamp(1em, 3.1vw, 3.4375em);
border: 1px solid #ffffff;
border-radius: 20px;
text-transform: uppercase;
background: linear-gradient(90deg, #2a5d78, #0e3347);
}

a.get-started-btn:hover {
overflow: visible;
}

a.get-started-btn img.get-started-btn-hover-img {
position: absolute;
bottom: 0;
left: 6%;
opacity: 0;
transform: translateY(30px);
transition: all 0.8s ease;
width: 25%;
height: auto;
}

a.get-started-btn span,
a.get-started-btn {
transition: transform 0.4s ease;
}

a.get-started-btn:hover img.get-started-btn-hover-img {
opacity: 1;
transform: translateY(0);
width: 25%;
height: auto;
}

a.get-started-btn span {
transition: transform 1s ease;
}

a.get-started-btn:hover span {
transform: translateX(30px);
}

a.live-chat-btn {
font-family: "Winter Farmhouse";
font-size: clamp(26px, 3.5vw, 46px);
line-height: clamp(20px, 2.2vw, 30px);
padding: clamp(0.7em, 1.4vw, 1.5625em) clamp(1.25em, 3.5vw, 4.0625em);
text-decoration: none;
color: #ffffff;
border: 1px solid #ffffff;
border-radius: 20px;
}

img.talk-to-content-m-icon-absolute {
position: absolute;
width: auto;
height: auto;
top: 10%;
left: 4%;
}
@media (max-width: 768px) {
img.talk-to-content-m-icon-absolute {
top: -6%;
}
}

img.talk-to-content-cross-icon-absolute {
position: absolute;
width: auto;
height: auto;
top: 40%;
right: 5%;
}
/* Talk To Content Container Css End */

/* Talk To Image Container Css Start */
.talk-to-img {
position: relative;
width: 85%;
display: flex;
flex-direction: column;
align-items: center;
}

img.talk-to-img-right-con {
width: 89%;
text-align: right;
margin-top: -7%;
}
/* Talk To Image Container Css End */
/* Talk To Us Css End */

/* Main Process Section Start */

section.main-process {
background-image: url("imgs/main-process-bg-img.png");
background-size: cover;
background-repeat: no-repeat;
background-position: top center;
background-color: #ffffff;
}

.main-process .container {
max-width: 1520px;
width: 100%;
margin: 0 auto;
padding: 60px 40px;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
gap: 20px;
}

.main-process h2 {
font-size: clamp(40px, 10vw, 160px);
line-height: clamp(30px, 7vw, 110px);
text-align: center;
color: #1c465c;
width: 80%;
}

.main-process p {
font-size: clamp(18px, 2.5vw, 32px);
line-height: clamp(20px, 2.5vw, 32px);
}

/* Main Process Container 1 Css Start */
.main-process-con-1 {
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
padding: 40px 0px 0px 0px;
}
@media (max-width: 768px) {
.main-process-con-1 {
flex-direction: column;
padding: 0px;
}
}

.main-process-con-1 .main-process-1-left-con {
position: relative;
width: 50%;
padding: 40px;
border: 1px solid transparent;
border-radius: 30px;
background: linear-gradient(#ffffff, #ffffff) padding-box,
linear-gradient(180deg, rgba(110, 146, 110, 0.2), rgba(255, 255, 255, 1))
border-box;
background-clip: padding-box, border-box;
background-origin: padding-box, border-box;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.03);
display: flex;
flex-direction: column;
gap: 10px;
margin-top: 5%;
}
@media (max-width: 768px) {
.main-process-con-1 .main-process-1-left-con {
width: 100%;
margin-top: 0%;
padding: 30px 20px;
}
}

.main-process-con-1 h2 {
font-size: clamp(28px, 3.6vw, 52px);
line-height: clamp(22px, 2.5vw, 36px);
text-align: left;
color: #6e926e;
}

.main-process-con-1 p {
font-size: clamp(16px, 1.2vw, 18px);
line-height: clamp(22px, 1.8vw, 28px);
max-width: 81%;
width: 100%;
}

img.number-img-1-absolute {
position: absolute;
width: 58%;
height: auto;
top: 35%;
right: 0%;
left: 95%;
bottom: 50%;
}
@media (max-width: 768px) {
img.number-img-1-absolute {
display: none;
}
}

.main-process-con-1 .main-process-1-right-con {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-end;
}

.main-process-1-right-con img.main-process-con-1-img-1 {
width: 100%;
max-width: 386px;
height: auto;
}
/* Main Process Container 1 Css End */

/* Main Process Container 2 Css Start */
.main-process-con-2 {
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
padding: 0px;
}
@media (max-width: 768px) {
.main-process-con-2 {
flex-direction: column-reverse;
padding: 0px;
}
}

.main-process-con-2 .main-process-2-right-con {
position: relative;
width: 50%;
padding: 50px 60px;
border: 1px solid transparent;
border-radius: 30px;
background: linear-gradient(#ffffff, #ffffff) padding-box,
linear-gradient(180deg, rgba(110, 146, 110, 0.2), rgba(255, 255, 255, 1))
border-box;
background-clip: padding-box, border-box;
background-origin: padding-box, border-box;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.03);
display: flex;
flex-direction: column;
gap: 10px;
}
@media (max-width: 768px) {
.main-process-con-2 .main-process-2-right-con {
width: 100%;
padding: 40px;
}
}

.main-process-con-2 h2 {
font-size: clamp(28px, 3.6vw, 52px);
line-height: clamp(22px, 2.5vw, 36px);
text-align: left;
color: #6e926e;
width: 60%;
}

.main-process-con-2 p {
font-size: clamp(16px, 1.2vw, 18px);
line-height: clamp(22px, 1.8vw, 28px);
width: 85%;
}

img.number-img-2-absolute {
position: absolute;
width: 58%;
height: auto;
top: 33%;
right: 0%;
left: -50%;
bottom: 50%;
}
@media (max-width: 768px) {
img.number-img-2-absolute {
display: none;
}
}

.main-process-con-2 .main-process-2-left-con {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
}
@media (max-width: 768px) {
.main-process-con-2 .main-process-2-left-con {
width: 100%;
padding: 20px 0px;
}
}

.main-process-2-left-con img.main-process-con-2-img-2 {
width: 100%;
max-width: 370px;
height: auto;
margin-top: -8%;
margin-left: 6%;
z-index: 99;
}
/* Main Process Container 2 Css End */

/* Main Process Container 3 Css Start */
.main-process-con-3 {
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
padding: 0px;
}
@media (max-width: 768px) {
.main-process-con-3 {
flex-direction: column;
padding: 0px;
}
}

.main-process-con-3 .main-process-3-left-con {
position: relative;
width: 50%;
padding: 50px 60px;
border: 1px solid transparent;
border-radius: 30px;
background: linear-gradient(#ffffff, #ffffff) padding-box,
linear-gradient(180deg, rgba(110, 146, 110, 0.2), rgba(255, 255, 255, 1))
border-box;
background-clip: padding-box, border-box;
background-origin: padding-box, border-box;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.03);
display: flex;
flex-direction: column;
gap: 10px;
margin-top: -5%;
}
@media (max-width: 768px) {
.main-process-con-3 .main-process-3-left-con {
width: 100%;
padding: 40px;
}
}

.main-process-con-3 h2 {
font-size: clamp(28px, 3.6vw, 52px);
line-height: clamp(22px, 2.5vw, 36px);
text-align: left;
color: #6e926e;
}

.main-process-con-3 p {
font-size: clamp(16px, 1.2vw, 18px);
line-height: clamp(22px, 1.8vw, 28px);
width: 83%;
}

img.number-img-3-absolute {
position: absolute;
width: 58%;
height: auto;
top: 35%;
right: 0%;
left: 93%;
bottom: 50%;
}
@media (max-width: 768px) {
img.number-img-3-absolute {
display: none;
}
}

.main-process-con-3 .main-process-3-right-con {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-end;
}

.main-process-3-right-con img.main-process-con-3-img-3 {
width: auto;
height: auto;
margin-top: -6%;
margin-right: 16%;
z-index: 1;
}
/* Main Process Container 3 Css End */

/* Main Process Container 4 Css Start */
.main-process-con-4 {
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
padding: 0px;
}
@media (max-width: 768px) {
.main-process-con-4 {
flex-direction: column-reverse;
padding: 0px;
}
}

.main-process-con-4 .main-process-4-right-con {
position: relative;
width: 50%;
padding: 80px 60px;
border: 1px solid transparent;
border-radius: 30px;
background: linear-gradient(#ffffff, #ffffff) padding-box,
linear-gradient(180deg, rgba(110, 146, 110, 0.2), rgba(255, 255, 255, 1))
border-box;
background-clip: padding-box, border-box;
background-origin: padding-box, border-box;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.03);
display: flex;
flex-direction: column;
gap: 10px;
margin-top: -10%;
}
@media (max-width: 768px) {
.main-process-con-4 .main-process-4-right-con {
width: 100%;
padding: 40px;
}
}
.main-process-con-4 h2 {
font-size: clamp(28px, 3.6vw, 52px);
line-height: clamp(22px, 2.5vw, 36px);
text-align: left;
color: #6e926e;
}

.main-process-con-4 p {
font-size: clamp(16px, 1.2vw, 18px);
line-height: clamp(22px, 1.8vw, 28px);
width: 90%;
}

img.number-img-4-absolute {
position: absolute;
width: 58%;
height: auto;
top: 33%;
right: 0%;
left: -50%;
bottom: 50%;
}
@media (max-width: 768px) {
img.number-img-4-absolute {
display: none;
}
}

.main-process-con-4 .main-process-4-left-con {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
}

.main-process-4-left-con img.main-process-con-4-img-4 {
width: auto;
height: auto;
margin-top: -14%;
margin-left: 10%;
z-index: 99;
}
@media (max-width: 768px) {
.main-process-4-left-con img.main-process-con-4-img-4 {
width: 100%;
max-width: 278px;
margin-top: -10%;
margin-left: 0%;
}
}
/* Main Process Container 4 Css End */

/* Main Process Container 5 Css Start */
.main-process-con-5 {
display: flex;
flex-direction: row;
align-items: center;
width: 100%;
padding: 0px;
}

.main-process-con-5 .main-process-5-right-con {
width: 100%;
display: flex;
flex-direction: column;
align-items: flex-end;
}

.main-process-5-right-con img.main-process-con-5-img-5 {
width: auto;
height: auto;
margin-top: -12%;
margin-right: 6%;
z-index: 1;
}
@media (max-width: 768px) {
.main-process-5-right-con img.main-process-con-5-img-5 {
display: none;
}

.our-expert .expert-heading-1 {
    font-size: 80px !important;
    line-height: 90px !important;
}
}
/* Main Process Container 5 Css End */
/* Main Process Section End */

/* Order Slider Section Css Start */

.order {
padding: 0 0 100px;
overflow: hidden;
}

.marquee {
position: relative;
background: url("imgs/order-slider-bg-img.png") center/cover no-repeat;
display: flex;
overflow: hidden;
white-space: nowrap;
max-width: 1520px;
width: 100%;
margin: 0 auto;
padding: 20px 40px;
align-items: center;
justify-content: flex-start;
border-radius: 20px;
opacity: 90%;
animation: floatBackground 30s ease-in-out infinite alternate;
}

@keyframes floatBackground {
0% {
background-position: center top;
}
100% {
background-position: center bottom;
}
}

.marquee::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(rgb(39 89 116 / 81%), rgb(14 51 71 / 85%));
border-radius: 20px;
pointer-events: none;
z-index: 1;
}

.marquee > * {
position: relative;
z-index: 2;
}

.marquee-content {
display: flex;
animation: marquee 30s linear infinite;
}

.marquee-content span {
display: flex;
align-items: center;
gap: 10px;
font-family: "Winter Farmhouse";
font-size: clamp(36px, 5.5vw, 80px);
line-height: clamp(28px, 3.5vw, 50px);
color: #ffffff;
padding: 0;
}

.marquee-content img {
height: auto;
width: auto;
animation: rotate360 12s linear infinite;
}

@keyframes marquee {
from {
transform: translateX(0);
}
to {
transform: translateX(-100%);
}
}

@keyframes rotate360 {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}

/* Order Slider Section Css End */

/* Portfolio Section Css Start */

.container-portfolio {
max-width: 1520px;
margin: 0 auto;
padding: 80px 40px;
background: transparent;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}

.container-portfolio h2 {
font-size: clamp(40px, 10vw, 160px);
line-height: clamp(30px, 7vw, 110px);
text-align: center;
color: #1c465c;
width: 80%;
}

.filters {
display: flex;
justify-content: center;
gap: 18px;
margin-bottom: 36px;
flex-wrap: wrap;
padding: 0 0;
}

.filters button {
font-family: "Poppins", sans-serif;
background: rgba(110, 146, 110, 0.2);
border: 1px solid #6e926e;
border-radius: 12px;
padding: 15px 30px;
font-size: 20px;
line-height: 20px;
font-weight: 500;
color: #6e926e;
cursor: pointer;
transition: background 0.2s, color 0.2s;
}

.filters .active,
.filters button:hover {
background: linear-gradient(135deg, rgba(42, 93, 120, 1), rgba(14, 51, 71, 1));
color: #fff;
}

.item {
opacity: 1;
transform: scale(1);
transition: opacity 0.4s, transform 0.4s;
pointer-events: auto;
display: block;
}

.item.hide {
opacity: 0;
transform: scale(0.95);
pointer-events: none;
/* display: none; */
}

.portfolio {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 28px;
padding: 0 60px 60px 60px;
}
@media (max-width: 1024px) {
.portfolio {
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 20px;
padding: 0 !important;
}
}

.portfolio .item {
background: #fff;
border-radius: 40px;
overflow: hidden;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
display: flex;
align-items: center;
justify-content: center;
height: 400px;
cursor: pointer;
border: 1px solid rgba(211, 205, 193, 1);
}

.portfolio .item img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: top;
}

.image-modal {
display: none;
position: fixed;
z-index: 9999;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.8);
justify-content: center;
align-items: center;
}

.image-modal img {
max-width: 80vh;
max-height: 80vh;
border-radius: 40px;
box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
background: #fff;
width: auto;
height: auto;
}

.close-modal {
position: absolute;
top: 30px;
right: 50px;
font-size: 48px;
color: #fff;
cursor: pointer;
font-family: Arial, sans-serif;
transition: color 0.2s;
z-index: 10000;
}

.close-modal:hover {
color: #6e926e;
}

.project-box {
position: relative;
overflow: hidden;
border-radius: 18px;
box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
cursor: pointer;
height: 400px;
width: auto;
}

.project-box .project-title {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
font-size: 26px;
font-weight: 600;
text-align: center;
z-index: 2;
opacity: 1;
transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-box:hover .project-title {
opacity: 0;
transform: translate(-50%, -70%);
}

.project-box img {
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.3s ease;
}

.project-box:hover img {
filter: blur(3px);
transform: scale(1.05);
}

.project-box .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(216, 0, 2, 0.6);
display: flex;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.3s ease;
}

.project-box:hover .overlay {
opacity: 1;
}

.project-box .overlay h3 {
font-family: "Potato Sans";
color: #fff;
font-size: 30px;
font-weight: bold;
text-align: center;
letter-spacing: 1px;
}

.project-images {
display: none;
}

.project-title {
text-align: center;
font-weight: 600;
color: #222;
margin-top: 12px;
opacity: 1;
transform: translateY(0);
transition: opacity 0.4s ease, transform 0.4s ease;
}

.project-box:hover + .project-title {
opacity: 0;
transform: translateY(-20px);
}

.nav-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
font-size: 36px;
color: #fff;
background: transparent;
border: none;
cursor: pointer;
z-index: 10000;
}
#prev-image {
left: 30px;
}
#next-image {
right: 30px;
}

/* Portfolio Section Css End */

/* Testimonial Slider Section Css Start */

.testimonial-slider {
max-width: 1920px;
width: 100%;
margin: 0 auto;
padding: 100px 0px !important;
display: flex !important;
flex-direction: column;
align-items: center;
gap: 50px;
}

.testimonial-slider h2 {
font-size: clamp(40px, 10vw, 160px);
line-height: clamp(30px, 7vw, 110px);
text-align: center;
color: #1c465c;
width: 60%;
}
@media (max-width: 768px) {
.testimonial-slider h2 {
width: 100%;
}
}

.testimonial-slider {
position: relative;
width: 100%;
padding: 40px 0;
}

.slider-item-1,
.slider-item-2,
.slider-item-3,
.slider-item-4 {
position: relative !important;
background-size: cover;
background-position: center;
height: 277px !important;
padding: 30px 30px 20px;
box-sizing: border-box;
border-radius: 20px;
width: 560.6417236328125px !important;
}

.slider-item-1 {
background-image: url("imgs/testimonial-slide-img-1.png");
width: 100% !important;                          
  max-width: 600px !important;                      
     
  background-size: cover;           
  background-position: center;           
  background-repeat: no-repeat;          
}
.slider-item-2 {
background-image: url("imgs/testimonial-slide-img-2.png");
width: 100% !important;                          
  max-width: 600px !important;                      
   
  background-size: cover;           
  background-position: center;           
  background-repeat: no-repeat; 
}
.slider-item-3 {
background-image: url("imgs/testimonial-slide-img-3.png");
width: 100% !important;                          
  max-width: 600px !important;                      
        
  background-size: cover;           
  background-position: center;           
  background-repeat: no-repeat; 
}
.slider-item-4 {
background-image: url("imgs/testimonial-slide-img-4.png");
width: 100% !important;                          
  max-width: 600px !important;                      
  background-size: cover;           
  background-position: center;           
  background-repeat: no-repeat; 
}

.testimonial-slider p {
font-size: 18px;
line-height: 28px;
margin: 24px 0 16px 46px;
width: 81%;
}

img.rating-stars-img-absolute-1,
img.rating-stars-img-absolute-2,
img.rating-stars-img-absolute-3,
img.rating-stars-img-absolute-4 {
position: absolute;
width: auto;
height: auto;
top: -8%;
left: 10%;
}

.client-name-img-absolute-1 {
background: url(imgs/client-name-img-1.png);
background-repeat: no-repeat;
width: 100%;
height: 100%;
display: flex;
position: absolute;
right: 0%;
left: 64%;
top: 73%;
}

.client-name-img-absolute-2 {
background: url(imgs/client-name-img-2.png);
background-repeat: no-repeat;
width: 100%;
height: 100%;
display: flex;
position: absolute;
right: 0%;
left: 70%;
top: 73%;
}

.client-name-img-absolute-3 {
background: url(imgs/client-name-img-3.png);
background-repeat: no-repeat;
width: 100%;
height: 100%;
display: flex;
position: absolute;
right: 0%;
left: 70%;
top: 73%;
}

.client-name-img-absolute-4 {
background: url(imgs/client-name-img-4.png);
background-repeat: no-repeat;
width: 100%;
height: 100%;
display: flex;
position: absolute;
right: 0%;
left: 70%;
top: 73%;
}

.client-name-img-absolute-1 p,
.client-name-img-absolute-2 p,
.client-name-img-absolute-3 p,
.client-name-img-absolute-4 p {
color: #ffffff;
margin-left: 32px;
}

img.testimonial-cartoon-img {
width: 100%;
height: auto;
max-width: 7%;
}
@media (max-width: 768px) {
    img.testimonial-cartoon-img {
width: 10%;
height: auto;
}
}
@media (max-width: 768px) {
    .testimonial-slider h2 {
        width: 90%;
    }
    .testimonial-slider h2 {
    font-size: clamp(40px, 17vw, 160px);
    line-height: clamp(55px, 6vw, 110px);
    text-align: center;
    color: #1c465c;
   
}
}


.swiper-slide {
height: auto;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.swiper-button-next,
.swiper-button-prev {
display: none !important;
}

.swiper-wrapper {
gap: 0;
padding: 40px 0px;
margin-left: 80px;
}

/* Testimonial Slider Section Css End */

/* Our Expert Section Css Start */

.our-expert {
background: url(imgs/our-expert-bg-img.png);
background-position: bottom;
background-repeat: no-repeat;
background-size: cover;
}

.our-expert .container {
max-width: 1620px;
width: 100%;
margin: 0 auto;
padding: 100px 40px 34px;
display: flex;
flex-direction: column;
align-items: center;
}

img.expert-heading-img {
width: 100%;
max-width: 294px;
min-width: 20%;
height: auto;
}

.our-expert .expert-heading-1 {
font-size: clamp(120px, 20vw, 400px);
line-height: clamp(90px, 15vw, 300px);
color: #b973e8;
text-align: center;
display: flex;
align-items: center;
flex-wrap: nowrap;
}

.our-expert .expert-heading-2 {
font-size: clamp(90px, 15vw, 300px);
line-height: clamp(72px, 12vw, 240px);
color: #5c82d7;
text-align: center;
display: flex;
align-items: center;
flex-wrap: nowrap;
gap: 30px;
}
@media (max-width: 768px) {
.our-expert .expert-heading-2 {font-size: 50px;line-height: 50px;gap: 10px;margin-left: -27px;}
}

.our-expert .expert-heading-3 {position: relative;font-size: clamp(78px, 16vw, 310px);line-height: clamp(70px, 12vw, 230px);color: #2acdd9;text-align: center;display: flex;align-items: center;flex-wrap: nowrap;gap: 30px;}

img.expert-heading-3-img-absolute {
position: absolute;
width: auto;
height: auto;
bottom: 0;
left: -2%;
}
@media (max-width: 768px) {
img.expert-heading-3-img-absolute {
display: none;
}
}

img.expert-heading-3-img-2-absolute {
position: absolute;
width: auto;
height: auto;
bottom: 0;
right: -3%;
}
@media (max-width: 768px) {
img.expert-heading-3-img-2-absolute {
display: none;
}
}

a.our-expert-btn {
font-family: "Winter Farmhouse";
font-size: clamp(28px, 4.5vw, 60px);
line-height: clamp(28px, 4.5vw, 60px);
text-decoration: none;
text-transform: uppercase;
background: linear-gradient(90deg, #2a5d78, #0e3347);
color: white;
display: inline-block;
padding: 20px 50px;
border: none;
border-radius: 20px;
margin-top: 40px;
}

/* Our Expert Section Css End */

/* Get In Touch Section Css Start */

.get-in-touch {
position: relative;
background: url(imgs/get-in-touch-bg-img.png) center center no-repeat;
background-size: auto;
z-index: 1;
}

.get-in-touch::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 150px;
background: linear-gradient(to bottom, rgb(255 255 255 / 94%), transparent);
z-index: 2;
pointer-events: none;
}

.get-in-touch .container {
max-width: 1520px;
width: 100%;
margin: 0 auto;
padding: 150px 16px 100px;
position: relative;
z-index: 3;
}

.card-header h2 {
font-size: clamp(40px, 10vw, 160px);
line-height: clamp(30px, 7vw, 110px);
text-align: center;
color: #1c465c;
}

.card {
display: flex;
flex-direction: column;
align-items: center;
}

form {
padding: 22px;
width: 75%;
display: flex;
flex-direction: column;
gap: 10px;
}

.form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 30px;
}
@media (max-width: 768px) {
.form-grid {
grid-template-columns: 1fr;
}
}

.field {
display: flex;
flex-direction: column;
gap: 8px;
}

input,
textarea,
button {
font: inherit;
}

input,
textarea {
padding: 25px 20px;
border: 1px solid #fff;
border-radius: 20px;
background: #fff;
outline: none;
transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.05s ease;
}

input::placeholder,
textarea::placeholder {
color: #94a3b8;
}

input:focus,
textarea:focus {
border-color: #87c6df;
box-shadow: 0 0 0 4px rgba(135, 198, 223, 0.2);
}

textarea {
min-height: 180px;
resize: vertical;
}

input::placeholder,
textarea::placeholder {
color: #000000;
font-family: "Poppins", sans-serif;
font-size: clamp(14px, 1.5vw, 20px);
line-height: clamp(14px, 1.5vw, 20px);
}

.stack {
display: grid;
gap: 16px;
margin-top: 16px;
}

.actions {
display: flex;
justify-content: center;
margin-top: 10px;
}

.btn {
font-family: "Winter Farmhouse";
border-radius: 20px;
padding: 25px 60px;
cursor: pointer;
background: linear-gradient(135deg, #2a5d78, #0e3347);
color: #fff;
transition: transform 0.08s ease, filter 0.2s ease, box-shadow 0.2s ease;
font-size: clamp(20px, 3vw, 40px);
line-height: clamp(20px, 2.2vw, 30px);
text-transform: uppercase;
}

.btn:active {
transform: translateY(1px);
}

img.footer-img-absolute {
position: absolute;
width: auto;
height: auto;
bottom: -24%;
right: 0;
opacity: 0.25;
}

/* Get In Touch Section Css End */

/* Footer Section Css Start */

footer {
position: relative;
width: 100%;
min-height: 300px;
overflow: hidden;
color: #fff;
}

.footer-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 0;
}

.footer-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgb(255 249 249 / 84%);
z-index: 1;
}

footer .container {
position: relative;
max-width: 1520px;
width: 100%;
margin: 0 auto;
padding: 220px 40px 175px;
display: flex;
flex-direction: row;
gap: 116px;
z-index: 99;
}
@media (max-width: 768px) {
footer .container {
flex-wrap: wrap;
padding: 100px 20px 80px;
gap: 40px 80px;
}
}

.logo-container {
width: 33.3333%;
display: flex;
flex-direction: column;
gap: 20px;
}
@media (max-width: 768px) {
.logo-container {
width: 60%;

gap: 20px;
}
}

.logo-container .footer-logo {
width: auto;
height: auto;
}

.logo-container p {
font-size: clamp(14px, 1.5vw, 20px);
line-height: clamp(22px, 2.5vw, 34px);
}

p.highlight {
font-size: clamp(16px, 1.8vw, 24px);
line-height: clamp(18px, 2vw, 26px);
color: #6e926e;
}

.address {
width: 38.3333%;
display: flex;
flex-direction: column;
gap: 30px;
}

.address h2 {
font-size: clamp(32px, 5vw, 70px);
line-height: clamp(20px, 2.5vw, 32px);
color: #1c465c;
}

.address p.line-address {
font-size: clamp(16px, 1.8vw, 24px);
line-height: clamp(22px, 2.5vw, 34px);
}

.email-no {
width: 33.3333%;
display: flex;
flex-direction: column;
gap: 30px;
}

.email-no .phone-container {
display: flex;
flex-direction: column;
gap: 20px;
}

.phone-container h2 {
font-size: clamp(32px, 5vw, 70px);
line-height: clamp(20px, 2.5vw, 32px);
color: #1c465c;
}

.phone-container p {
font-size: clamp(16px, 1.8vw, 24px);
line-height: clamp(16px, 1.8vw, 24px);
}

.email-no .email-address {
display: flex;
flex-direction: column;
gap: 20px;
}

.email-address h2 {
font-size: clamp(32px, 5vw, 70px);
line-height: clamp(20px, 2.5vw, 32px);
color: #1c465c;
}

.email-address p {
font-size: clamp(16px, 1.8vw, 24px);
line-height: clamp(16px, 1.8vw, 24px);
}

/* Footer Section Css Start */

.hero {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
color: white;
}
@media (max-width: 768px) {
.hero {
height: 70vh;
}
}

/* Backgrounds */
.hero-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
z-index: 0;
}

.hero-bg.bg1 {
background: url("./imgs/bg-color.jpg") no-repeat center center;
transform: scale(3.8) translateY(300px);
}

.hero-bg.bg2 {
background: url("./imgs/second-face.png") no-repeat center center;
opacity: 0; /* hidden at start */
}

/* Stars Layer */
.stars {
position: absolute;
top: 0;
left: 0;
width: 200%;
height: 100%;
background: url("./imgs/stars.png") repeat-x;
background-size: cover;
z-index: 1;
animation: moveStars 60s linear infinite;
}

@keyframes moveStars {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
}

/* Clouds Base */
.clouds {
position: absolute;
bottom: 0;
width: 100%;
height: 320px;
background: url("./imgs/cloud.png") repeat-x;
background-size: cover;
z-index: 2;
opacity: 0.85;
transform: scale(1.3);
}
@media (max-width: 768px) {
.clouds {
transform: translate(0px, 70px) !important;
height: 180px !important;
}
}

.clouds::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 120px;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
z-index: 3;
}

/* Scroll cloud cover effect */
.cloud-cover {
position: absolute;
top: 100%;
left: 0;
width: 100%;
height: 100%;
background: url("./imgs/cloud.png") repeat-x center center / cover;
z-index: 9999999999;
pointer-events: none;
}

/* Intro Title */
.hero h1 {
position: absolute;
top: 40%;
width: 60%;
z-index: 4;
opacity: 0;
transform: translateY(40px);
color: #fff;
text-align: center;
font-family: "Winter Farmhouse";
font-size: clamp(3rem, 8vw, 160px);
font-style: normal;
font-weight: 400;
line-height: clamp(2rem, 5vw, 100px);
text-transform: uppercase;
}

/* Final Content Block */
.content-block {
position: absolute;
top: 25%;
width: 100%;
text-align: center;
opacity: 0;
transform: translateX(-200px);
z-index: 5;
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
flex-direction: column;
}
@media (max-width: 768px) {
.content-block {
top: 35%;
}
}

.content-block h2 {
color: #fff;
text-align: center;
font-family: "Winter Farmhouse";
font-size: clamp(2rem, 8vw, 160px);
line-height: clamp(1.25rem, 5vw, 100px);
text-transform: uppercase;
margin-bottom: 1rem;
max-width: 1200px;
width: 100%;
}
@media (max-width: 768px) {
.content-block h2 {
margin-bottom: 0rem;
}
}

.content-block p {
color: #fff;
text-align: center;
font-family: "Poppins", sans-serif;
font-size: clamp(16px, 2vw, 25px);
font-weight: 500;
line-height: 1.3em;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
@media (max-width: 768px) {
.content-block p {
max-width: 400px;
}
}
.group-btn {
display: flex;
flex-direction: row;
}

.content-block .btn,
.btn-2 {
display: inline-block;
margin: 0 0.5rem;
padding: 20px 35px;
border-radius: 20px;
border: 1px solid #fff;
text-decoration: none;
font-weight: bold;
transition: background 0.3s;
}
@media (max-width: 768px) {
.content-block .btn,
.btn-2 {
padding: 12px 25px;
border-radius: 10px;
}
}

.content-block .btn {
background-image: linear-gradient(98deg, #2a5d78 -1.67%, #0e3347 107.17%);
}
.content-block .btn:hover {
background: transparent;
}
.btn-2 {
background-color: #fff;
color:#2c2c2c;
}

.content-block .btn a,
.btn-2 a {
color: #2c2c2c;
text-align: center;
font-family: "Winter Farmhouse";
font-size: clamp(20px, 3vw, 40px);
font-weight: 400;
line-height: 0.75;
text-transform: uppercase;
text-decoration: none;
}

.contact-form {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0; /* Let cloud be over it initially */
display: flex;
justify-content: center;
align-items: center;
background-image: url(./imgs/background-img.png);
opacity: 0;
transform: scale(1);
pointer-events: none;
transition: opacity 0.5s ease;
}

.contact-wrapper {
position: relative;
width: 100%;
max-width: 1400px;
padding: 40px 20px;
display: flex;
margin-top: 8%;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
@media (max-width: 768px) {
.contact-wrapper {
margin-top: 20%;
}
}

.character {
width: 100%;
max-width: 250px;
height: auto;
}
.right-character {
width: 100% !important;
max-width: 235px !important;
height: auto !important;
transform: translateX(-10px);
}

.left-character {
position: absolute;
left: 0;
bottom: 0;
}

.right-character {
position: absolute;
right: 0;
bottom: 0;
}
.img-circle {
position: absolute;
right: 0;
top: 0;
width: 100%;
max-width: 250px;
height: auto;
transform: translate(-50%, -40%);
}
@media (max-width: 768px) {
.img-circle {
max-width: 200px;
transform: translate(-20%, -20%);
}
}
.contact-card {
border-radius: 40px;
border: 1.5px solid #fff;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(15px);
padding: 40px 30px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-width: 950px;
width: 80%;

z-index: 1;
text-align: center;
}
@media (max-width: 768px) {
.contact-card {
width: 100%;
padding: 0px;
border-radius: 20px;
}
}

.contact-card h3 {
font-size: clamp(32px, 5vw + 8px, 74px);
line-height: 1.1; /* smoother vertical rhythm */

/* Extra liquid-like feel */
letter-spacing: 0.05em;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);

color: #fff;
font-family: "Winter Farmhouse";
font-weight: 700;
}

.contact-card h3 span {
color: #6e926e;
font-family: "Poppins", sans-serif;
font-size: clamp(32px, 5vw, 64px);
font-style: normal;
font-weight: 600;
line-height: 44px;
letter-spacing: -3.2px;
text-transform: uppercase;
}

.contact-card form {
display: flex;
flex-direction: column;
gap: 16px;

padding: 25px;
width: 90%;
}

.form-row {
display: flex;
gap: 16px;
flex-wrap: wrap;
}

/*.form-row input {*/
/*flex: 1;*/
/*min-width: 200px;*/
/*}*/

.contact-card input,
.contact-card textarea {
padding: 13px 20px;
font-size: 16px;
width: 100%;
border-radius: 10px;
border: none;
outline: none;
background: #ffffff;
color: rgba(44, 44, 44, 1);
}

.contact-card textarea {
min-height: 120px;
resize: none;
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
color: #9ca3af;
}

.contact-card button {
border-radius: 20px;
background: linear-gradient(
91deg,
#6e926e -40.25%,
#1c465c 47.03%,
#6e926e 125.91%
);
color: #fff;
padding: 20px;
border: none;

color: #fff;
text-align: center;
font-family: "Poppins", sans-serif;
font-size: clamp(18px, 2vw, 26px);
font-style: normal;
font-weight: 400 !important;
line-height: 26px; /* 100% */

cursor: pointer;

transition: opacity 0.3s;
}
@media (max-width: 768px) {
.contact-card button {
padding: 12px;
font-size: clamp(16px, 2vw, 24px);
}
}

.contact-card button:hover {
opacity: 0.85;
}

/* Responsive Design */
@media (max-width: 768px) {
.form-row {
flex-direction: column;
}

.left-character,
.right-character {
display: none;
}
}
.copyright {
background-image: linear-gradient(
91deg,
#6e926e -40.25%,
#1c465c 47.03%,
#6e926e 125.91%
);
height: 64px;
width: 100%;
padding: 20px 0;
color: #fff;
text-align: center;
font-family: "Poppins", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 20px; /* 100% */
z-index: 99;
}
@media (max-width: 768px) {
.copyright {
font-size: 16px;
line-height: 16px; /* 100% */
}
}

.middle-line img {
position: absolute;
top: 57%;
left: 50%;
transform: translate(-50%, -50%);
}
.tawk-min-container .tawk-button-circle.tawk-button-large {
    width: 60px;
    height: 60px;
    background-image: linear-gradient(135deg, #2a5d78, #0e3347) !important;
}

.tawk-min-container .tawk-button-circle.tawk-button-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2a5d78, #0e3347) !important;
}



.call-btn {
  position: fixed;
  width: 100%;
  bottom: 0px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
  padding: 24px 30px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  text-decoration: none;
  z-index: 9999;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  background: linear-gradient(270deg, #2A5D78, #0E3347, #00081B, #0E2640, #6E926E);
  background-size: 1000% 1000%;
  animation: gradientFlow 10s ease infinite, pulse 2s ease-in-out infinite;
}

/* Smooth gradient animation */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Gentle pulse animation */
@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.08); }
}

.call-btn:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  animation: gradientFlow 4s ease infinite, pulse 1.5s ease-in-out infinite;
}

.groupbtn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    
}

.btn-txt{
    
    font-family: "Winter Farmhouse";
 text-decoration: none;
    
    cursor: pointer;
        margin-top: 40px;
    color: #2c2c2c;
    transition: transform 0.08s ease, filter 0.2s ease, box-shadow 0.2s ease;
    font-size: clamp(40px, 3vw, 60px);
    line-height: clamp(20px, 2.2vw, 30px);
    text-transform: uppercase;
}


@media (max-width: 768px) {
img.expert-heading-img {max-width: 70px;}
}
@media (max-width: 768px) {
.our-expert .expert-heading-3 {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0px 10px;
        justify-content: center;
}}

@media (max-width: 768px) {
form {
width: 100%;
}
}


@media (max-width: 768px) {
footer .container {
flex-wrap: wrap;
padding: 100px 20px 80px;
gap: 40px 120px;
}
}


/* @media (max-width: 768px) {
.testimonial-slider{
    display: none;
}
}

@media (max-width: 425px) {
    .testimonial-slider {
        display: block;
    }
} */

@media (max-width: 425px) {

  /* Slide box responsive */
  .slider-item-1,
  .slider-item-2,
  .slider-item-3,
  .slider-item-4 {
    width: 100% !important;
    height: auto !important;
    padding: 44px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }

  /* Text responsive */
    .testimonial-slider p {
        font-size: 14px;
        line-height: 1.5;
        margin: 0 0 15px 52px;
        width: 78% !important;
        text-align: left;
    }

  /* Stars responsive */
  .rating-stars-img-absolute-1,
  .rating-stars-img-absolute-2,
  .rating-stars-img-absolute-3,
  .rating-stars-img-absolute-4 {
    position: absolute !important;
    margin: 10px auto;
    display: block;
    max-width: 120px;
    height: auto;
  }

  img.rating-stars-img-absolute-1, img.rating-stars-img-absolute-2, img.rating-stars-img-absolute-3, img.rating-stars-img-absolute-4 {
    top: -16%;
    left: 10%;
}

  /* Client name responsive */
  .client-name-img-absolute-1 {
    background: url(imgs/client-name-img-1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 53%;
    height: 34%;
    display: flex;
    position: absolute;
    right: 0%;
    left: 50%;
    top: 73%;
}

  .client-name-img-absolute-2 {
    background: url(imgs/client-name-img-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 53%;
    height: 34%;
    display: flex;
    position: absolute;
    right: 0%;
    left: 53%;
    top: 73%;
}

  .client-name-img-absolute-3 {
    background: url(imgs/client-name-img-3.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 53%;
    height: 34%;
    display: flex;
    position: absolute;
    right: 0%;
    left: 53%;
    top: 73%;
}

.client-name-img-absolute-4 {
    background: url(imgs/client-name-img-4.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 53%;
    height: 34%;
    display: flex;
    position: absolute;
    right: 0%;
    left: 53%;
    top: 73%;
}

  .client-name-img-absolute-1 p {
    margin: 21px 0 -27px 52px;
    color: #ffffff; /* white background par visible ho */
    font-weight: 600;
    font-size: 14px;
  }

  .client-name-img-absolute-2 p {
        margin: 21px 0 -27px 24px;
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
        text-align: center;
    }

  .client-name-img-absolute-3 p {
    margin: 21px 0 -27px 66px;
    color: #ffffff; /* white background par visible ho */
    font-weight: 600;
    font-size: 14px;
  }

    .client-name-img-absolute-4 p {
    margin: 21px 0 -27px 66px;
    color: #ffffff; /* white background par visible ho */
    font-weight: 600;
    font-size: 14px;
  }

  /* Wrapper adjust */
  .swiper-wrapper {
    margin-left: 0 !important; /* jo left gap aa raha tha wo remove */
    padding: 20px 0;
  }

}

@media (max-width: 430px) {

  /* Slide box responsive */
  .slider-item-1,
  .slider-item-2,
  .slider-item-3,
  .slider-item-4 {
    width: 100% !important;
    height: auto !important;
    padding: 44px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
  }

  /* Text responsive */
    .testimonial-slider p {
        font-size: 14px;
        line-height: 1.5;
        margin: 0 0 15px 52px;
        width: 78% !important;
        text-align: left;
    }

  /* Stars responsive */
  .rating-stars-img-absolute-1,
  .rating-stars-img-absolute-2,
  .rating-stars-img-absolute-3,
  .rating-stars-img-absolute-4 {
    position: absolute !important;
    margin: 10px auto;
    display: block;
    max-width: 120px;
    height: auto;
  }

  img.rating-stars-img-absolute-1, img.rating-stars-img-absolute-2, img.rating-stars-img-absolute-3, img.rating-stars-img-absolute-4 {
    top: -16%;
    left: 10%;
}

  /* Client name responsive */
  .client-name-img-absolute-1 {
    background: url(imgs/client-name-img-1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 53%;
    height: 34%;
    display: flex;
    position: absolute;
    right: 0%;
    left: 50%;
    top: 73%;
}

  .client-name-img-absolute-2 {
    background: url(imgs/client-name-img-2.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 53%;
    height: 34%;
    display: flex;
    position: absolute;
    right: 0%;
    left: 53%;
    top: 73%;
}

  .client-name-img-absolute-3 {
    background: url(imgs/client-name-img-3.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 53%;
    height: 34%;
    display: flex;
    position: absolute;
    right: 0%;
    left: 53%;
    top: 73%;
}

.client-name-img-absolute-4 {
    background: url(imgs/client-name-img-4.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 53%;
    height: 34%;
    display: flex;
    position: absolute;
    right: 0%;
    left: 53%;
    top: 73%;
}

  .client-name-img-absolute-1 p {
    margin: 21px 0 -27px 52px;
    color: #ffffff; /* white background par visible ho */
    font-weight: 600;
    font-size: 14px;
  }

  .client-name-img-absolute-2 p {
        margin: 21px 0 -27px 24px;
        color: #ffffff;
        font-weight: 600;
        font-size: 14px;
        text-align: center;
    }

  .client-name-img-absolute-3 p {
    margin: 21px 0 -27px 66px;
    color: #ffffff; /* white background par visible ho */
    font-weight: 600;
    font-size: 14px;
  }

    .client-name-img-absolute-4 p {
    margin: 21px 0 -27px 66px;
    color: #ffffff; /* white background par visible ho */
    font-weight: 600;
    font-size: 14px;
  }

  /* Wrapper adjust */
  .swiper-wrapper {
    margin-left: 0 !important; /* jo left gap aa raha tha wo remove */
    padding: 20px 0;
  }

}


/* Popup Form Css Start */

/* Overlay background */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: none; /* by default hidden */
  justify-content: center;
  align-items: center;
  z-index: 9999999999;
}

/* Popup main box */
.popup {
  background-image: 
      linear-gradient(
          180deg,
          rgba(255, 255, 255, 0.80) 0%, 
          rgba(255, 255, 255, 0.80) 40%, 
          rgba(255, 255, 255, 0.50) 100%
      ),
      url("imgs/popup-background-img.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  width: 100%;
  height: 550px;
  max-width: 960px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  animation: popupAnim 0.4s ease;
  padding: 24px 24px 0px 0px;
  justify-content: space-between;
}


/* Popup animation */
@keyframes popupAnim {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Left side */
.popup-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 40px 0px 0px 0px;
}
.popup-left h2 {
  color: #1C465C;
  font-size: 80px;
  line-height: 60px;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  padding-left: 38px;
}
.popup-left p {
  color: #6E926E;
  font-family: Poppins;
  margin-top: 10px;
  font-size: 18px;
  line-height: 26px;
  width: 73%;
  padding-left: 38px;
}

.popup-left-img-con {
  width: 100%;
  display: flex;
  padding-top: 66px;
  z-index: 99;
}

img.popup-left-img {
  max-width: 495px;
  width: 100%;
  height: 100%;
}

/* Right side */
.popup-right {
  background: rgba(197, 204, 229, 1);
  padding: 30px;
  border-radius: 20px 20px 0px 0px;
  position: relative;
  max-width: 465px;
  width: 100%;
  margin-left: -25px;
}
.popup-right h3 {
  color: #1C465C;
  font-family: "Winter Farmhouse";
  font-size: 60px;
  font-weight: 400;
  line-height: 40px;
  text-transform: uppercase;
  width: 70%;
  padding-bottom: 14px;
  padding-top: 10px;
}
.popup-right h3 span {
  background: linear-gradient(90deg, #5E8E5E 0%, #6E926E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(42, 93, 120, 1);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 5px 0px 0px 1px;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  font-size: 28px;
  font-weight: bold;
}

/* Popup form */
.popup-form-box {
  width: 100%;
  padding: 0px;
  gap: 0px;
}

.popup-input, .popup-textarea {
  width: 100%;
  font-family: Poppins;
  padding: 15px 18px;
  margin: 8px 0;
  border: none;
  border-radius: 11px;
  font-size: 16px;
  line-height: 16px;
  outline: none;
  color: rgba(0, 0, 0, 1);
}

.popup-form-row {
  display: flex;
  gap: 10px;
}

.popup-form-row .popup-input {
  flex: 1;
}

.popup-textarea {
  resize: none;
  min-height: 120px;
}

/* Submit button */
.popup-btn {
  font-family: "Winter Farmhouse";
  margin-top: 10px;
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(98deg, #2A5D78 -1.67%, #0E3347 107.17%);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 36px;
  line-height: 26px;
  font-weight: 400;
}


/* Responsive */
@media(max-width:768px){
  .popup {
    flex-direction: column;
    max-width: 95%;
  }
  .popup-left, .popup-right {
    border-radius: 0;
    flex: unset;
  }
}


/* Popup Form Css Start */


.btn-5{

    font-family: "Winter Farmhouse";
    font-size: clamp(26px, 3.5vw, 46px);
    line-height: clamp(20px, 2.2vw, 30px);
    color: #2c2c2c;
    text-decoration: none;
    padding: clamp(0.7em, 1.4vw, 1.5625em) clamp(1em, 3.1vw, 3.4375em);
    border: 1px solid #ffffff;
    border-radius: 20px;
    text-transform: uppercase;
    background-color: #fff;
}
