/*------------------------------------------------------------------
Project: Cleaning
Author: The_Krishna
Last change: 25/07/2025
Primary use:
------------------------------------------------------------------ */
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Preloader CSS
3.Whole Page scroll Aniamtion CSS
4.Button CSS
5.Main Header CSS
6.1.Hero Section Slider CSS
6.2.Hero Section Solid CSS
6.3.Hero Section Video CSS
7.Section Two CSS
8.Section Three CSS
9.Section Four CSS
10.Section Five CSS
11.Section Six CSS
12.Section Seven CSS
13.Section Eight CSS
14.Section Nine CSS
15.Section Blog CSS
16.Section Contact Form CSS
17.Footer CSS
18.Bottom To Top Button CSS
19.About Page CSS
20.Team Details Page CSS
21.Pricing Plan Page CSS
22.Our Client Page CSS
23.FAQ Page CSS
24.404 Error Page CSS
25.Services Page CSS
26.Project Page CSS
27.Single Project Page CSS
28.Blog Page CSS
29.Blog Details CSS
30.Get Your Quote Page CSS
31.Lector Services Carousel CSS
32.Lector Services Grid Layout CSS
33.Advisory Section CSS
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
    font-family: "Outfit", sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}

ul {
    padding-left: 0;
}

ul li {
    list-style: none;
}

button {
    border: none;
}

/* ::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #00C2FF;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #171819;
} */
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #F5F6F7;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.leap-frog {
    --uib-size: 80px;
    --uib-speed: 2s;
    --uib-color: rgb(0, 194, 255);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--uib-size);
    height: var(--uib-size);
}

.leap-frog__dot {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
}

.leap-frog__dot::before {
    content: '';
    display: block;
    height: calc(var(--uib-size) * 0.22);
    width: calc(var(--uib-size) * 0.22);
    border-radius: 50%;
    background-color: var(--uib-color);
    will-change: transform;
}

.leap-frog__dot:nth-child(1) {
    animation: leapFrog var(--uib-speed) ease infinite;
}

.leap-frog__dot:nth-child(2) {
    transform: translateX(calc(var(--uib-size) * 0.4));
    animation: leapFrog var(--uib-speed) ease calc(var(--uib-speed) / -1.5) infinite;
}

.leap-frog__dot:nth-child(3) {
    transform: translateX(calc(var(--uib-size) * 0.8)) rotate(0deg);
    animation: leapFrog var(--uib-speed) ease calc(var(--uib-speed) / -3) infinite;
}

@keyframes leapFrog {
    0% {
        transform: translateX(0) rotate(0deg);
    }

    33.333% {
        transform: translateX(0) rotate(180deg);
    }

    66.666% {
        transform: translateX(calc(var(--uib-size) * -0.4)) rotate(180deg);
    }

    99.999% {
        transform: translateX(calc(var(--uib-size) * -0.8)) rotate(180deg);
    }

    100% {
        transform: translateX(0) rotate(0deg);
    }
}

/*-----------------------[ 3.Whole Page scroll Aniamtion CSS ]------------------------*/
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 2s;
}

.fade_up {
    transform: translateY(-100%);
}

.fade_down {
    transform: translateY(100%);
}

.zoom_in {
    transform: scale(0.5);
}

.zoom_out {
    transform: scale(1.5);
}

.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 2s;
}

.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: all 2s;
}

.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 2s;
}

.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 2s;
}

.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 2s;
}

.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: all 2s;
}

.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/*-----------------------[ 4.Button CSS ]------------------------*/
.btn-quote {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    background: #19b3b6;
    border-radius: 30px;
    padding: 18px 30px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

.btn-quote::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 0;
    width: 100%;
    background-color: #000;
    z-index: -1;
    transition: inherit;
    transition: all 0.3s ease;
}

.btn-quote:hover::after {
    height: 100%;
    top: auto;
    bottom: 0;
}

/*-----------------------[ 5.Main Header CSS ]------------------------*/
.header {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 999;
    margin: 0 auto;
    width: calc(100% - 60px);
    padding: 10px 20px;
    background-color: #FFF;
    border-radius: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    max-height: 40px;
    /* Added to control header logo size */
    width: auto;
}

.mobile-logo {
    display: none;
}

.dsad {
    display: none;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}

.menu {
    list-style: none;
    display: flex;
    gap: 60px;
}

.menu li {
    position: relative;
}

.menu li span {
    width: 8px;
    height: 8px;
    background: #19b3b6;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: -35px;
}

.menu li a {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.menu li:hover>a {
    color: #4A7C7C;
}

.menu>li>a.active {
    color: #4A7C7C;
}

.submenu li a.active {
    color: #000000 !important;
}

.menu li.active {
    color: #fff;
    /* text color */
    background-color: #19b3b6;
    /* active background */
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 10px 0;
    border-radius: 0 0 15px 15px;
    border-top: 2px solid #19b3b6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
    min-width: 210px;
}

.submenu li a {
    font-size: 16px;
}

.dropdown:hover .submenu {
    display: block;
}

.submenu li {
    padding: 8px 20px;
}

.submenu li a:hover {
    color: #19b3b6;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call {
    display: flex;
    align-items: center;
    background: #000;
    color: #FFF;
    padding: 6px 30px 6px 6px;
    border-radius: 40px;
    gap: 10px;
}

.call .headphone-main {
    width: 40px;
    /* Reduced from 48px */
    height: 40px;
    /* Reduced from 48px */
    border-radius: 50%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call .headphone-main img {
    width: 20px;
    /* Added specific size */
    height: 20px;
}

.need-help-main p {
    color: var(--5, #FFF);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.need-help-main a {
    color: var(--5, #FFF);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
}

/* Hamburger */
.hamburger {
    display: none;
}

.hamburger img {
    width: 24px;
    /* Added to control hamburger menu icon size */
    height: 24px;
}

.hamburger .close-icon {
    display: none;
}

.nav.open~.header-container .hamburger .menu-icon {
    display: none;
}

.nav.open~.header-container .hamburger .close-icon {
    display: inline;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/*-----------------------[ 6.1.Hero Section Slider CSS ]------------------------*/
.hero-slider {
    width: 100%;
    height: 955px;
}

.main-swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main-swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.60) 100%);
    backdrop-filter: blur(4px);
    z-index: 1;
}

#hero-slider-img1 {
    background-image: url('../images/home/main-slider-img1.jpg');
}

#hero-slider-img2 {
    background-image: url('../images/home/main-slider-img2.jpg');
}

#hero-slider-img3 {
    background-image: url('../images/home/main-slider-img3.jpg');
}

.clearfix-space {
    margin-top: 100px;
}

.slide-content {
    position: absolute;
    z-index: 2;
    color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.needs-text {
    color: var(--5, #FFF);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.lets-us-do {
    color: var(--5, #FFF);
    font-size: 64px;
    /* Reduced from 80px */
    font-weight: 700;
    line-height: 80px;
    /* Adjusted line-height proportionally */
}

.residents {
    color: var(--5, #FFF);
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    margin-top: 20px;
    padding-left: 20px;
    margin-bottom: 60px;
    border-left: 10px solid #19b3b6;
}

.home-img-clening {
    position: absolute;
    top: 40px;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cutomer-img-main-text {
    display: flex;
    align-items: center;
    gap: 120px;
    border-radius: 40px;
    background: linear-gradient(90deg, rgba(0, 194, 255, 0.30) 0%, rgba(0, 194, 255, 0.15) 100%);
    backdrop-filter: blur(6px);
    padding: 8px 30px 8px 8px;
    position: absolute;
    bottom: -100px;
    left: -100px;
}

.cutomer-img-main {
    position: relative;
}

.cutomer-img-main img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.cutomers-text-main h2 {
    color: var(--5, #FFF);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

.cutomers-text-main p::before {
    content: url(../images/svg/white-star.svg);
}

.cutomers-text-main p {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cutome2 {
    position: absolute;
    left: 50px;
    top: 0;
}

.cutome3 {
    position: absolute;
    left: 100px;
    top: 0;
}

.animate-slide {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.swiper-slide-active .animate-slide {
    opacity: 1;
    transform: translateY(0);
}

/*-----------------------[ 6.2.Hero Section Solid CSS ]------------------------*/
.main-swiper-solid-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #003A4C;
    backdrop-filter: blur(4px);
    z-index: 1;
}

.bubble_area {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}

.bubble_area div[class^=bubbles-] {
    height: 1px;
    width: 1px;
    position: absolute;
    background: url(../images/home/bubble_1.png) no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    pointer-events: none;
}

.bubbles-1 {
    bottom: -5px;
    left: 68%;
    -webkit-animation: animate 10s infinite ease-in -6.57s;
    animation: animate 10s infinite ease-in -6.57s;
}

.bubbles-2 {
    bottom: -71px;
    left: 97%;
    -webkit-animation: animate 10s infinite ease-in -5.07s;
    animation: animate 10s infinite ease-in -5.07s;
}

.bubbles-3 {
    bottom: -71px;
    left: 43%;
    -webkit-animation: animate 10s infinite ease-in -6.73s;
    animation: animate 10s infinite ease-in -6.73s;
}

.bubbles-4 {
    bottom: -30px;
    left: 82%;
    -webkit-animation: animate 10s infinite ease-in -4.04s;
    animation: animate 10s infinite ease-in -4.04s;
}

.bubbles-5 {
    bottom: -73.4px;
    left: 29%;
    -webkit-animation: animate 10s infinite ease-in -3.11s;
    animation: animate 10s infinite ease-in -3.11s;
}

.bubbles-6 {
    bottom: -71px;
    left: 41%;
    -webkit-animation: animate 10s infinite ease-in -5.95s;
    animation: animate 10s infinite ease-in -5.95s;
}

.bubbles-7 {
    bottom: -79.4px;
    left: 14%;
    -webkit-animation: animate 10s infinite ease-in -3.68s;
    animation: animate 10s infinite ease-in -3.68s;
}

.bubbles-8 {
    bottom: -115.4px;
    left: 90%;
    -webkit-animation: animate 10s infinite ease-in -3.89s;
    animation: animate 10s infinite ease-in -3.89s;
}

.bubbles-9 {
    bottom: -44.6px;
    left: 33%;
    -webkit-animation: animate 10s infinite ease-in -1.09s;
    animation: animate 10s infinite ease-in -1.09s;
}

.bubbles-10 {
    bottom: -30px;
    left: 59%;
    -webkit-animation: animate 7s infinite ease-in -.96s;
    animation: animate 7s infinite ease-in -.96s;
}

@keyframes animate {
    0% {
        transform: translate3d(-80%, 0, 0) rotate(70deg);
        width: 35px;
        height: 35px;
    }

    100% {
        transform: translate3d(-80%, -800px, 0) rotate(360deg);
        width: 75px;
        height: 75px;
    }
}

/*-----------------------[ 6.3.Hero Section Video CSS ]------------------------*/
.main-swiper-video-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.60) 100%);
    z-index: 1;
}

.video-swiper-row {
    justify-content: center;
    text-align: center;
}

.video-swiper-row .residents {
    padding-left: 0;
    border: none;
}

.video-swiper-row .cutomer-img-main-text {
    position: unset;
    width: fit-content;
    margin: 30px auto 0 auto;
}

/*-----------------------[ 7.Section Two CSS ]------------------------*/
.section-two {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Creative background elements */
.section-two::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.05) 0%, rgba(25, 179, 182, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.section-two::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(25, 179, 182, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.section-two .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive layout adjustments */
.section-two .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
}

.section-two .col-xxl-6 {
    padding: 0 15px;
}

/* Desktop and laptop: Two columns side by side */
@media (min-width: 1024px) {
    .section-two {
        padding: 100px 0;
    }

    .section-two .col-xxl-6:first-child {
        width: 55%;
        flex: 0 0 55%;
    }

    .section-two .col-xxl-6:last-child {
        width: 45%;
        flex: 0 0 45%;
    }
}

/* Tablet landscape: Keep two columns but reduce spacing */
@media (min-width: 768px) and (max-width: 1023px) {
    .section-two {
        padding: 70px 0;
    }

    .section-two .col-xxl-6 {
        width: 50%;
        flex: 0 0 50%;
    }
}

/* Tablet portrait and mobile: Stack in single column */
@media (max-width: 767px) {
    .section-two {
        padding: 60px 0;
    }

    .section-two .col-xxl-6 {
        width: 100%;
        flex: 0 0 100%;
    }

    .section-two .col-xxl-6:last-child {
        margin-top: 40px;
    }

    /* Ensure text alignment for mobile */
    .section-two .cap-text,
    .section-two .sec-text,
    .section-two .sec-sub-text,
    .section-two .section-two-subheading {
        text-align: left;
    }
}

/* Small mobile adjustments */
@media (max-width: 480px) {
    .section-two {
        padding: 50px 0;
    }

    .section-two .container {
        padding: 0 20px;
    }

    .section-two .col-xxl-6:last-child {
        margin-top: 30px;
    }
}

.cap-text {
    color: var(--16, #19b3b6);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding-bottom: 10px;
    position: relative;
}

/* Responsive cap-text */
@media (max-width: 991px) {
    .cap-text {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 767px) {
    .cap-text {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 1.2px;
    }
}

@media (max-width: 480px) {
    .cap-text {
        font-size: 13px;
        line-height: 18px;
    }
}

/* Creative cap-text decoration */
.cap-text::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #19b3b6 100%);
    border-radius: 2px;
    animation: expand 1.5s ease-out;
}

/* Section-specific fix: Left-align orange line only for Section Two (About Duxlegis) */
.section-two .cap-text::after {
    left: 0;
    transform: translateX(0);
}

.sec-text {
    color: var(--3, #000);
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    padding-bottom: 30px;
    position: relative;
}

/* Responsive sec-text */
@media (min-width: 1200px) {
    .sec-text {
        font-size: 36px;
        line-height: 46px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .sec-text {
        font-size: 32px;
        line-height: 42px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .sec-text {
        font-size: 28px;
        line-height: 38px;
        padding-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .sec-text {
        font-size: 24px;
        line-height: 32px;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .sec-text {
        font-size: 22px;
        line-height: 30px;
        padding-bottom: 18px;
    }
}

/* Enhanced highlight layer styling */
.highlight-layer {
    position: relative;
    display: inline-block;
    animation: highlightFadeIn 1s ease-out;
    color: #FFF;
    /* Make highlighted text white */
    z-index: 1;
    margin-left: 8px;
    /* Add space before highlighted text */
    margin-right: 8px;
    /* Add space after highlighted text */
}

.highlight-layer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    right: -8px;
    height: 0%;
    background: #FF6B35;
    transform: translateY(-50%);
    z-index: -1;
    border-radius: 8px;
    animation: highlightGrow 1.2s ease-out 0.3s forwards;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

@keyframes highlightFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes highlightGrow {
    0% {
        height: 0%;
    }

    100% {
        height: 70%;
    }
}

/* Alternative highlight with different colors */
.highlight-layer.teal::before {
    background: #19b3b6;
    box-shadow: 0 4px 15px rgba(25, 179, 182, 0.3);
}

.highlight-layer.yellow::before {
    background: #FFD700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Hero section highlight styling */
.lets-us-do .highlight-layer::before {
    height: 70%;
    border-radius: 12px;
}

.sec-sub-text {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    position: relative;
    animation: slideInUp 1s ease-out 0.2s both;
}

/* Responsive sec-sub-text */
@media (min-width: 1200px) {
    .sec-sub-text {
        font-size: 18px;
        line-height: 30px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .sec-sub-text {
        font-size: 17px;
        line-height: 28px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .sec-sub-text {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .sec-sub-text {
        font-size: 15px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .sec-sub-text {
        font-size: 14px;
        line-height: 22px;
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Two subheading "You Focus on Building the Future" */
.section-two-subheading {
    color: #666 !important;
    font-size: 1.5rem;
    margin-top: -20px;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Responsive subheading */
@media (min-width: 1200px) {
    .section-two-subheading {
        font-size: 1.6rem;
        margin-bottom: 28px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .section-two-subheading {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .section-two-subheading {
        font-size: 1.3rem;
        margin-top: -15px;
        margin-bottom: 22px;
    }
}

@media (max-width: 767px) {
    .section-two-subheading {
        font-size: 1.2rem;
        margin-top: -12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .section-two-subheading {
        font-size: 1.1rem;
        margin-top: -10px;
        margin-bottom: 18px;
    }
}

.about-grid-box-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #F5F6F7;
    position: relative;
}

/* Creative grid line animation */
.about-grid-box-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35 0%, #19b3b6 50%, #FF6B35 100%);
    animation: lineExpand 2s ease-out 0.5s forwards;
}

/* Desktop and laptop: 2x2 grid */
@media (min-width: 1024px) {
    .about-grid-box-main {
        gap: 30px;
    }
}

/* Tablet: 2 columns */
@media (min-width: 768px) and (max-width: 1023px) {
    .about-grid-box-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile: 1 column (stacked) */
@media (max-width: 767px) {
    .about-grid-box-main {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 25px;
        padding-top: 25px;
    }
}

@keyframes lineExpand {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.about-box-main {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: cardSlideIn 0.8s ease-out both;
}

/* Responsive padding and sizing */
@media (min-width: 1200px) {
    .about-box-main {
        padding: 22px;
    }
}

@media (max-width: 767px) {
    .about-box-main {
        padding: 18px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .about-box-main {
        padding: 16px;
    }
}

.about-box-main:nth-child(1) {
    animation-delay: 0.1s;
}

.about-box-main:nth-child(2) {
    animation-delay: 0.2s;
}

.about-box-main:nth-child(3) {
    animation-delay: 0.3s;
}

.about-box-main:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes cardSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.about-box-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

/* Creative hover effect ripple */
.about-box-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.about-box-main:hover::before {
    width: 300px;
    height: 300px;
}

.about-svg-main {
    width: 100%;
    max-width: 48px;
    /* Reduced from 56px */
    height: 48px;
    /* Reduced from 56px */
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

/* Creative pulsing effect */
.about-svg-main::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

/* Add orange accent to all icons on hover */
.about-box-main:hover .about-svg-main {
    background: #FF6B35;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.about-svg-main img {
    width: 24px;
    height: 24px;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    object-fit: contain;
}

/* Responsive icon sizing */
@media (max-width: 767px) {
    .about-svg-main {
        max-width: 44px !important;
        height: 44px !important;
    }

    .about-svg-main img {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .about-svg-main {
        max-width: 40px !important;
        height: 40px !important;
    }

    .about-svg-main img {
        width: 20px;
        height: 20px;
    }
}

.about-box-main:hover .about-svg-main img {
    transform: rotateY(360deg) scale(1.1);
}

.expeStaff {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    padding-bottom: 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* Responsive heading sizes */
@media (max-width: 991px) {
    .expeStaff {
        font-size: 17px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .expeStaff {
        font-size: 16px;
        line-height: 22px;
        padding-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .expeStaff {
        font-size: 15px;
        line-height: 21px;
    }
}

/* Creative text reveal effect */
.expeStaff::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #19b3b6);
    transition: all 0.4s ease;
}

/* Add orange accent to all titles on hover */
.about-box-main:hover .expeStaff {
    color: #FF6B35;
    transition: color 0.3s ease-in-out;
}

.about-box-main:hover .expeStaff::after {
    width: 100%;
}

.fessional {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    transition: all 0.3s ease;
}

/* Responsive description text */
@media (max-width: 991px) {
    .fessional {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 767px) {
    .fessional {
        font-size: 14px;
        line-height: 21px;
    }
}

@media (max-width: 480px) {
    .fessional {
        font-size: 13px;
        line-height: 20px;
    }
}

.about-box-main:hover .fessional {
    color: #333;
    transform: translateX(5px);
}

.about-sec-main {
    display: flex;
    align-items: center;
    margin-top: 60px;
    gap: 20px;
    animation: slideInUp 1s ease-out 0.8s both;
    flex-wrap: wrap;
}

/* Responsive button and call area */
@media (max-width: 991px) {
    .about-sec-main {
        margin-top: 40px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .about-sec-main {
        margin-top: 30px;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .about-sec-main .btn-quote,
    .about-sec-main .call {
        width: 100%;
        justify-content: center;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .about-sec-main {
        margin-top: 25px;
    }
}

.about-sec-main .call {
    background: transparent;
    border: 2px solid #19b3b6;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Creative gradient background on hover */
.about-sec-main .call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 179, 182, 0.1), transparent);
    transition: all 0.6s ease;
}

.about-sec-main .call:hover::before {
    left: 100%;
}

.about-sec-main .call:hover {
    border-color: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(25, 179, 182, 0.2);
}

.about-sec-main .call .headphone-main {
    background: #19b3b6;
    transition: all 0.4s ease;
}

.about-sec-main .call:hover .headphone-main {
    background: #FF6B35;
    transform: rotate(10deg);
}

.about-sec-main .call .headphone-main img {
    filter: brightness(0) saturate(100%) invert(82%) sepia(100%) saturate(0%) hue-rotate(85deg) brightness(112%) contrast(101%);
    transition: all 0.4s ease;
}

.about-sec-main .call:hover .headphone-main img {
    filter: brightness(0) saturate(100%) invert(100%);
    transform: scale(1.1);
}

.about-sec-main .call .need-help-main p,
.about-sec-main .call .need-help-main a {
    color: #000;
    transition: all 0.3s ease;
}

.about-sec-main .call .need-help-main a:hover {
    color: #FF6B35;
    transform: scale(1.05);
}

/* Enhanced button with creative hover effects */
.about-sec-main .btn-quote {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #19b3b6, #00C2FF);
    transition: all 0.4s ease;
}

.about-sec-main .btn-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FF6B35, #FF8A65);
    transition: all 0.4s ease;
    z-index: -1;
}

.about-sec-main .btn-quote:hover::before {
    left: 0;
}

.about-sec-main .btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

/*-----------------------[ Section Two Font Size Adjustments ]------------------------*/

/* Reduce Section Two font sizes for better balance with image */
.section-two .cap-text {
    font-size: 16px;
    /* Reduced from 18px */
    line-height: 22px;
    /* Reduced from 25px */
}

.section-two .sec-text {
    font-size: 28px;
    /* Reduced from 32px */
    line-height: 36px;
    /* Reduced from 42px */
    padding-bottom: 25px;
    /* Reduced from 30px */
}

.section-two .sec-sub-text {
    font-size: 16px;
    /* Reduced from 18px */
    line-height: 26px;
    /* Reduced from 30px */
}

.section-two .expeStaff {
    font-size: 16px;
    /* Reduced from 18px */
    line-height: 22px;
    /* Reduced from 26px */
    padding-bottom: 8px;
    /* Reduced from 10px */
}

.section-two .fessional {
    font-size: 14px;
    /* Reduced from 16px */
    line-height: 20px;
    /* Reduced from 24px */
}

/* Improve image sizing and positioning */
.section-two .about-img1 {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12),
        0 15px 50px rgba(0, 0, 0, 0.08),
        0 25px 80px rgba(25, 179, 182, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    object-fit: cover;
}

/* Responsive image sizes */
@media (min-width: 1200px) {
    .section-two .about-img1 {
        max-width: 450px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .section-two .about-img1 {
        max-width: 380px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .section-two .about-img1 {
        max-width: 320px;
    }
}

@media (max-width: 767px) {
    .section-two .about-img1 {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .section-two .about-img1 {
        max-width: 100%;
        border-radius: 12px;
    }
}

/* Add a subtle glow effect */
.section-two .about-img1::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #19b3b6, #FF6B35, #19b3b6);
    border-radius: 17px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.section-two .about-img1:hover {
    transform: translateY(-8px) scale(1.02);
    /* Enhanced hover shadow with glow */
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 25px 70px rgba(0, 0, 0, 0.1),
        0 35px 100px rgba(25, 179, 182, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(25, 179, 182, 0.3);
}

.section-two .about-img1:hover::before {
    opacity: 0.6;
}

.section-two .sub-img-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Responsive image container */
@media (max-width: 991px) {
    .section-two .sub-img-main {
        padding: 15px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .section-two .sub-img-main {
        padding: 0;
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .section-two .sub-img-main {
        padding: 0;
    }
}

/* Adjust grid spacing */
.section-two .about-grid-box-main {
    gap: 20px;
    /* Reduced from 30px */
    margin-top: 25px;
    /* Reduced from 30px */
    padding-top: 25px;
    /* Reduced from 30px */
}

.section-two .about-box-main {
    padding: 15px;
    /* Reduced from 20px */
    gap: 12px;
    /* Reduced from 15px */
}

.section-two .about-svg-main {
    max-width: 48px;
    /* Reduced from 56px */
    height: 48px;
    /* Reduced from 56px */
}

/* Adjust button area spacing */
.section-two .about-sec-main {
    margin-top: 40px;
    /* Reduced from 60px */
}

/* Phone number in call section */
.section-two .need-help-main a {
    font-size: 18px;
    /* Reduced from 20px */
    line-height: 22px;
    /* Reduced from 26px */
}

.section-two .need-help-main p {
    font-size: 13px;
    /* Reduced from 14px */
    line-height: 18px;
    /* Reduced from 20px */
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .section-two .about-img1 {
        max-width: 380px;
    }

    .section-two .sec-text {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (max-width: 991px) {
    .section-two .about-img1 {
        max-width: 320px;
        margin: 0 auto;
    }

    .section-two .sec-text {
        font-size: 24px;
        line-height: 32px;
    }

    .section-two .about-grid-box-main {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .section-two .about-img1 {
        max-width: 280px;
    }

    .section-two .sec-text {
        font-size: 22px;
        line-height: 30px;
    }

    .section-two .about-sec-main {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/*-----------------------[ 8.Section Three CSS ]------------------------*/
.section-three {
    background-image: url('../images/services/blue-brushstrokes.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    padding-left: 0;
    padding-right: 0;
}

.section-main-text-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.section-main-text-flex .ornare {
    max-width: 630px;
}

.services-slider {
    margin-right: -470px;
    margin-top: 50px;
}

.cleaning-card {
    background: #FFF;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
}

.cleaning-card-img-main {
    overflow: hidden;
}

.cleaning-card-img-main img {
    width: 100%;
    border-radius: 20px 20px 0 0;
    transition: transform 0.7s ease;
}

.cleaning-card:hover .cleaning-card-img-main img {
    transform: scale(1.1);
}

.services-svg-main {
    width: 90px;
    /* Reduced from 120px */
    height: 90px;
    /* Reduced from 120px */
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    margin-top: -50px;
    /* Adjusted from -65px */
    position: relative;
    animation: animate-pulse 3s linear infinite;
}

.services-svg-main img {
    width: 32px;
    /* Added to reduce image size within icon containers */
    height: 32px;
    transition: transform 0.7s ease;
    transform-style: preserve-3d;
}

.card-containe {
    padding: 20px 40px 40px 40px;
    border-bottom: 2px solid #F5F6F7;
    flex-grow: 1;
}

.services-name {
    color: var(--3, #000);
    text-align: center;
    font-size: 22px;
    /* Reduced from 24px */
    font-weight: 600;
    line-height: 30px;
    /* Adjusted line-height proportionally */
    padding-bottom: 10px;
}

.services-card-sub-text {
    color: var(--4, #222);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.card-learn-more {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    color: var(--16, #19b3b6);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
    z-index: 1;
}

.cleaning-card:hover .card-learn-more {
    color: #FFF;
    border-radius: 0 0 20px 20px;
}

.cleaning-card:hover .card-learn-more::after {
    top: auto;
    height: 100%;
    bottom: 0;
}

.card-learn-more::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 0;
    width: 100%;
    background-color: #19b3b6;
    ;
    z-index: -1;
    transition: inherit;
}

.card-learn-more img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(78%) saturate(1569%) hue-rotate(154deg) brightness(100%) contrast(101%);
}

.cleaning-card:hover .card-learn-more img {
    filter: none;
}

/*-----------------------[ 9.Section Four CSS ]------------------------*/

/* --- 1. Global Variables --- */
.section-four {
    --ip-teal: #4A7C7C;
    --ip-teal-dark: #3A6565;
    --ip-teal-light: #D4E3E3;
    --ip-orange: #FF6B35;
    --ip-dark: #1f2e2e;
    --text-grey: #5f6c7b;
    --bg-off-white: #f8fcfc;
    --bg-color: #ffffff;
    --card-radius: 12px;
    --card-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    --card-hover-shadow: 0 12px 30px rgba(0, 137, 123, 0.12);
}

/* --- 2. Creative Animations --- */

/* Background Gradient Flow */
@keyframes gradient-move-why {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Background Shapes */
@keyframes float-y-why {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@keyframes spin-slow-why {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Gradient Text Shimmer */
@keyframes shimmer-why {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Card Entrance Animation */
@keyframes cardFadeIn-why {
    from { 
        opacity: 0; 
        transform: translateY(20px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

/* --- 3. Section Styling --- */
.section-four {
    padding: 70px 0;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #fff 0%, var(--bg-off-white) 100%);
}

/* Animated Gradient Background Layer */
.section-four .bg-gradient-anim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0,137,123,0.03) 0%, rgba(255,255,255,0) 50%);
    z-index: 0;
}

/* Creative Background Container (Shapes) */
.section-four .bg-creative {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Abstract Shapes */
.section-four .bg-shape {
    position: absolute;
    opacity: 1;
}

.section-four .shape-ring-1 {
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border: 50px solid rgba(0, 137, 123, 0.05);
    border-radius: 50%;
    animation: spin-slow-why 25s linear infinite;
}

.section-four .shape-ring-2 {
    bottom: -120px;
    left: -80px;
    width: 500px;
    height: 500px;
    border: 70px solid rgba(255, 107, 53, 0.04);
    border-radius: 50%;
    animation: spin-slow-why 30s linear infinite reverse;
}

.section-four .shape-dot-1 {
    top: 15%;
    left: 10%;
    width: 15px;
    height: 15px;
    background: var(--ip-teal);
    opacity: 0.2;
    border-radius: 50%;
    animation: float-y-why 6s ease-in-out infinite;
}

.section-four .shape-dot-2 {
    bottom: 25%;
    right: 5%;
    width: 25px;
    height: 25px;
    background: var(--ip-orange);
    opacity: 0.2;
    border-radius: 50%;
    animation: float-y-why 7s ease-in-out infinite 1s;
}

.section-four .container {
    position: relative;
    z-index: 2;
}

/* --- 4. Typography --- */
.section-four .why-heading-section {
    margin-bottom: 8px;
}

.section-four .why-description-section {
    margin-bottom: 15px;
}

.section-four .badge-pill {
    display: inline-block;
    padding: 3px 9px;
    background-color: var(--ip-teal-light);
    color: var(--ip-teal);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 6px;
}

.section-four .main-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--ip-dark);
    margin-bottom: 8px;
    line-height: 1.1;
}

.section-four .main-title span {
    background: linear-gradient(90deg, var(--ip-orange), #ff8a65, var(--ip-orange));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    animation: shimmer-why 3s linear infinite;
}

/* Underline decoration */
.section-four .main-title span::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 107, 53, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.section-four .sub-text {
    font-size: 0.90rem;
    color: var(--text-grey);
    line-height: 1.5;
    margin-bottom: 10px;
}

.section-four .sub-text:last-child {
    margin-bottom: 0;
}

.section-four .sec-sub-text {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.65;
    margin-bottom: 15px;
}

/* --- 5. Feature Cards Design --- */
.section-four .why-features-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 15px;
}

.section-four .feature-card {
    background: transparent;
    border-radius: 0;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
    overflow: visible;
    animation: cardFadeIn-why 0.6s ease-out forwards;
    opacity: 0;
    min-height: fit-content;
}

.section-four .feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.section-four .feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.section-four .feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.section-four .feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.section-four .feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* Bottom Gradient Line (Hidden initially) */
.section-four .feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ip-teal), var(--ip-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.section-four .feature-card:hover {
    transform: translateY(-3px);
}

.section-four .feature-card:hover::after {
    transform: scaleX(1);
}

/* Icon Container */
.section-four .icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--ip-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.section-four .feature-icon {
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
}

/* Hover: 3D Flip Icon */
.section-four .feature-card:hover .icon-box {
    background: var(--ip-teal);
    transform: rotateY(180deg);
}

.section-four .feature-card:hover .feature-icon {
    transform: rotateY(-180deg);
}

/* Content */
.section-four .card-content-wrapper {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.section-four .card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ip-dark);
    margin-bottom: 4px;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.section-four .feature-card:hover .card-title {
    color: var(--ip-teal);
}

.section-four .card-desc {
    font-size: 0.82rem;
    color: var(--text-grey);
    line-height: 1.5;
    margin: 0;
    word-break: break-word;
}
    transition: color 0.3s ease;
}

.section-four .feature-card:hover .card-desc {
    color: var(--ip-dark);
}

.section-four .why-choose-row {
    display: flex;
    flex-wrap: wrap;
}

/* Video visibility controls */
/* Hide mobile video on desktop */
.section-four .why-video-mobile {
    display: none;
}

/* Show desktop video on desktop */
.section-four .why-video-desktop {
    display: flex;
}

/* Desktop: normal 2-column layout, features stay in left column */
@media (min-width: 1024px) {
    .section-four .why-text-column {
        display: block;
    }

    .section-four .why-features-content {
        display: block;
    }
    
    .section-four .why-video-mobile {
        display: none !important;
    }
    
    .section-four .why-video-desktop {
        display: flex !important;
    }
}

.section-four .sec-video2 {
    min-height: 620px;
}

.check-box-main-sub {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.check-box-main-sub h2 {
    color: var(--3, #000);
    font-size: 22px;
    /* Reduced from 24px */
    font-weight: 600;
    line-height: 30px;
    /* Adjusted line-height proportionally */
    padding-bottom: 5px;
}

.check-box-main-sub p {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.sec-video2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sec-video2 .video-wrapper {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video2 {
    width: 360px;
    height: 600px;
    object-fit: cover;
    border-radius: 180px;
    display: block;
    transition: transform 0.3s ease;
}

.video2:hover {
    transform: scale(1.02);
}

.sadas {
    width: 360px;
    height: 600px;
    border: 2px solid #19b3b6;
    border-radius: 180px;
    position: absolute;
    left: 130px;
    top: 10px;
    z-index: -1;
    pointer-events: none;
}

.why-choose-img3 {
    position: absolute;
    right: 0;
    bottom: 50px;
    border-radius: 50%;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.20);
    animation: mover 1s infinite alternate;
}

/* ========== Why Choose Section Responsive Styles ========== */

/* Extra Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .section-four {
        padding: 90px 0;
    }

    .section-four .main-title {
        font-size: 2.2rem;
    }

    .section-four .why-features-content {
        gap: 25px;
    }

    .section-four .feature-card {
        padding: 25px;
    }

    .section-four .sec-video2 {
        min-height: 670px;
    }

    .sec-video2 .video-wrapper {
        min-height: 670px;
    }

    .video2 {
        width: 400px;
        height: 650px;
    }

    .sadas {
        width: 400px;
        height: 650px;
        left: 140px;
    }
}

/* Large Desktop (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
    .sec-video2 .video-wrapper {
        min-height: 640px;
    }

    .video2 {
        width: 380px;
        height: 620px;
    }

    .sadas {
        width: 380px;
        height: 620px;
        left: 135px;
    }
}

/* Standard Desktop/Laptop (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .section-four {
        padding: 80px 0;
    }

    .section-four .why-choose-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: flex-start;
        gap: 25px;
    }

    .section-four .col-xxl-6 {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .section-four .main-title {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .section-four .sub-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .section-four .why-features-content {
        gap: 20px;
        margin-top: 25px;
    }

    .section-four .feature-card {
        padding: 16px 12px;
        min-height: auto;
    }

    .section-four .icon-box {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .section-four .feature-icon {
        font-size: 17px;
    }

    .section-four .card-title {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 4px;
    }

    .section-four .card-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .section-four .card-content-wrapper {
        flex: 1;
        min-width: 0;
    }

    .sec-video2 .video-wrapper {
        min-height: 570px;
    }

    .video2 {
        width: 340px;
        height: 550px;
    }

    .sadas {
        width: 340px;
        height: 550px;
        left: 120px;
    }

    .check-box-main-sub h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .check-box-main-sub p {
        font-size: 15px;
        line-height: 22px;
    }

    /* Prevent column overflow */
    .section-four .why-text-column {
        padding-right: 25px;
        flex-shrink: 1;
    }

    .section-four .why-video-desktop {
        flex-shrink: 0;
    }
}

/* Smaller Laptops (1024px - 1199px) - Additional refinements */
@media (min-width: 1024px) and (max-width: 1199px) {
    .section-four .container {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    .section-four .why-choose-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 20px;
    }

    .section-four .col-xxl-6 {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .section-four .why-text-column {
        padding-right: 15px;
    }

    .section-four .main-title {
        font-size: 1.75rem;
    }

    .section-four .sub-text {
        font-size: 0.88rem;
    }

    .section-four .why-features-content {
        gap: 16px;
        margin-top: 20px;
    }

    .section-four .feature-card {
        padding: 14px 10px;
    }

    .section-four .card-title {
        font-size: 0.92rem;
    }

    .section-four .card-desc {
        font-size: 0.82rem;
    }

    .video2 {
        width: 320px;
        height: 530px;
    }

    .sadas {
        width: 320px;
        height: 530px;
        left: 110px;
    }
}

/* Medium Laptops (1200px - 1366px) - 12-inch screens */
@media (min-width: 1200px) and (max-width: 1366px) {
    .section-four .why-choose-row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 30px;
    }

    .section-four .col-xxl-6 {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .section-four .why-features-content {
        gap: 28px;
        margin-top: 28px;
    }

    .section-four .feature-card {
        padding: 20px 12px;
        margin-bottom: 6px;
    }

    .section-four .card-title {
        font-size: 0.96rem;
        margin-bottom: 6px;
        line-height: 1.4;
    }

    .section-four .card-desc {
        font-size: 0.84rem;
        line-height: 1.6;
    }

    .section-four .icon-box {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .section-four .feature-icon {
        font-size: 17px;
    }

    .section-four .why-text-column {
        padding-right: 25px;
    }

    .section-four .sub-text {
        margin-bottom: 18px;
    }

    .video2 {
        width: 350px;
        height: 580px;
    }

    .sadas {
        width: 350px;
        height: 580px;
        left: 120px;
    }
}

/* Specific for 12-inch laptops (1280px - 1366px) */
@media (min-width: 1280px) and (max-width: 1366px) {
    .section-four .why-features-content {
        gap: 32px;
    }

    .section-four .feature-card {
        padding: 22px 14px;
        margin-bottom: 8px;
    }

    .section-four .card-content-wrapper {
        padding-right: 8px;
    }
}

/* Tablet and Below - Stack Vertically with Square Video (< 1024px) */
@media (max-width: 1023px) {
    .section-four .row.why-choose-row {
        display: flex;
        flex-direction: column;
    }

    .section-four .col-xxl-6 {
        width: 100%;
        max-width: 100%;
    }

    .section-four .sec-video2 {
        min-height: auto;
    }

    .section-four .main-title {
        font-size: 1.75rem;
    }

    .section-four .sub-text,
    .section-four .sec-sub-text {
        font-size: 0.9rem;
    }

    .section-four .why-heading-section {
        text-align: center;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .section-four .why-description-section {
        text-align: center;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .section-four .why-features-content {
        gap: 15px;
        margin-top: 30px;
    }

    .section-four .feature-card {
        padding: 18px;
    }

    .section-four .icon-box {
        width: 42px;
        height: 42px;
    }

    .section-four .feature-icon {
        font-size: 16px;
    }

    .section-four .card-title {
        font-size: 0.95rem;
    }

    .section-four .card-desc {
        font-size: 0.82rem;
    }

    /* Show mobile video between description and features, hide desktop video */
    .section-four .why-video-mobile {
        display: flex !important;
        margin: 30px auto;
        width: 100%;
    }
    
    .section-four .why-video-desktop {
        display: none !important;
    }
    
    /* Ensure desktop video column doesn't take space */
    .section-four .col-xxl-6.why-video-desktop {
        display: none !important;
    }

    /* Square video for tablet/mobile */
    .sec-video2 .video-wrapper {
        max-width: 600px;
        min-height: auto;
        margin: 0 auto;
    }

    .video2 {
        width: 90%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 24px;
        margin: 0 auto;
        display: block;
    }

    .sadas {
        display: none;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .section-four {
        padding: 70px 0;
    }

    .section-four .container {
        padding: 0 30px;
    }

    .section-four .main-title {
        font-size: 1.85rem;
    }

    .video2 {
        max-width: 450px;
    }

    .check-box-main-sub {
        margin-top: 25px;
        gap: 18px;
    }

    .check-box-main-sub h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .check-box-main-sub p {
        font-size: 15px;
        line-height: 22px;
    }
}

/* Mobile Landscape (640px - 767px) */
@media (min-width: 640px) and (max-width: 767px) {
    .section-four {
        padding: 60px 0;
    }

    .section-four .main-title {
        font-size: 1.6rem;
    }

    .section-four .feature-card {
        padding: 16px;
    }

    .section-four .icon-box {
        width: 40px;
        height: 40px;
    }

    .video2 {
        max-width: 400px;
        border-radius: 20px;
    }

    .check-box-main-sub {
        margin-top: 22px;
    }
}

/* Mobile Portrait (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
    .section-four {
        padding: 50px 0;
    }

    .section-four .container {
        padding: 0 20px;
    }

    .section-four .main-title {
        font-size: 1.5rem;
    }

    .section-four .badge-pill {
        font-size: 11px;
        padding: 4px 10px;
    }

    .section-four .feature-card {
        padding: 15px;
        gap: 15px;
    }

    .section-four .icon-box {
        width: 38px;
        height: 38px;
    }

    .section-four .feature-icon {
        font-size: 15px;
    }

    .section-four .card-title {
        font-size: 0.9rem;
    }

    .section-four .card-desc {
        font-size: 0.8rem;
    }

    .video2 {
        max-width: 350px;
        border-radius: 18px;
    }

    .check-box-main-sub {
        margin-top: 20px;
        gap: 15px;
    }

    .check-box-main-sub h2 {
        font-size: 18px;
        line-height: 26px;
    }

    .check-box-main-sub p {
        font-size: 14px;
        line-height: 21px;
    }
}

/* Small Mobile (375px - 479px) */
@media (min-width: 375px) and (max-width: 479px) {
    .section-four {
        padding: 40px 0;
    }

    .section-four .container {
        padding: 0 16px;
    }

    .section-four .main-title {
        font-size: 1.3rem;
    }

    .section-four .badge-pill {
        font-size: 10px;
        padding: 4px 10px;
    }

    .section-four .sub-text,
    .section-four .sec-sub-text {
        font-size: 0.85rem;
    }

    .section-four .feature-card {
        padding: 14px;
        gap: 12px;
    }

    .section-four .icon-box {
        width: 36px;
        height: 36px;
    }

    .section-four .feature-icon {
        font-size: 14px;
    }

    .section-four .card-title {
        font-size: 0.88rem;
    }

    .section-four .card-desc {
        font-size: 0.78rem;
    }

    .video2 {
        width: 95%;
        max-width: 320px;
        border-radius: 16px;
    }

    .check-box-main-sub {
        margin-top: 18px;
        gap: 12px;
    }

    .check-box-main-sub h2 {
        font-size: 17px;
        line-height: 24px;
    }

    .check-box-main-sub p {
        font-size: 14px;
        line-height: 20px;
    }

    .why-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        flex-shrink: 0;
    }
}

/* Extra Small Mobile (< 375px) */
@media (max-width: 374px) {
    .section-four {
        padding: 35px 0;
    }

    .section-four .container {
        padding: 0 12px;
    }

    .video2 {
        width: 100%;
        max-width: 280px;
        border-radius: 14px;
    }

    .check-box-main-sub {
        margin-top: 16px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }

    .check-box-main-sub h2 {
        font-size: 16px;
        line-height: 22px;
    }

    .check-box-main-sub p {
        font-size: 13px;
        line-height: 19px;
    }

    .why-icon {
        margin: 0 auto 8px;
    }
}

/*-----------------------[ 10.Section Five CSS ]------------------------*/
.section-five {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.35) 50%), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80&w=2070&auto=format&fit=crop');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 0;
    min-height: 440px;
    /* reduced height for desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-five .residents {
    color: #FFFFFF;
    text-align: center;
    margin-top: 20px;
}

/* Add a dark overlay to ensure contrast without changing the image itself */
.section-five::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    /* 60% opacity dark overlay */
    z-index: 1;
}

/* Banner content wrapper so we can control z-index and centering */
.section-five .banner-text {
    position: relative;
    z-index: 2;
    /* keep text above overlay */
    color: #FFFFFF;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 24px;
    /* small comfortable padding */
}

/* Ensure the sec-sub-text is visible on dark overlay */
.section-five .sec-sub-text {
    color: #FFFFFF;
    /* override any defaults */
    opacity: 0.95;
}

/* Make it responsive: smaller height and font-size on tablets & mobiles */
@media (max-width: 1024px) {
    .section-five {
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .section-five {
        min-height: 140px;
        background-attachment: scroll;
        padding: 32px 0;
    }

    .section-five .sec-sub-text {
        font-size: 16px !important;
        line-height: 24px !important;
    }

    .section-five .banner-text {
        padding: 8px;
    }
}

/* Make subtext in Section Five visible over the dark background/video */
.section-five .sec-sub-text {
    color: #FFFFFF;
    /* Override default dark color so paragraphs are readable */
}

/* Section Five - Override standard section styles for white text on dark background */
.section-five .cap-text {
    display: inline-block !important;
    padding: 5px 12px !important;
    background-color: #D4E3E3 !important;
    color: #4A7C7C !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 50px !important;
    margin-bottom: 10px !important;
    white-space: nowrap !important;
    line-height: normal !important;
}

.section-five .cap-text::after {
    display: none !important;
}

.section-five .sec-text {
    color: #ffffff;
    opacity: 0.95;
}

.section-five .highlight-orange {
    background: linear-gradient(90deg, #FF6B35, #ff8a65, #FF6B35);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    padding: 0;
    margin: 0;
}

/*-----------------------[ 11.Section Six CSS ]------------------------*/
.section-six {
    background: var(--12, #F5F6F7);
    padding: 200px 0 100px;
    padding-left: 0;
    padding-right: 0;
}

.how-to-work-bg {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: color-burn;
}

.mazing {
    max-width: 630px;
    color: #000;
    margin: 0 auto;
    text-align: center;
}

.scetur {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.how-work-step-box {
    display: grid;
    grid-template-columns: 300px auto 300px auto 300px;
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.how-work-step-box .how-work-step-box-sub {
    text-align: center;
}

.how-to-work-circle {
    text-align: center;
    width: 112px;
    /* Reduced from 140px */
    height: 112px;
    /* Reduced from 140px */
    border-radius: 50%;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.how-to-work-circle::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 0;
    width: 100%;
    background-color: #19b3b6;
    z-index: -1;
    transition: inherit;
    transition: all 0.3s ease;
}

.how-work-step-box-sub:hover .how-to-work-circle::after {
    height: 100%;
    top: auto;
    bottom: 0;
}

.how-to-work-circle img {
    width: 32px;
    /* Added specific size */
    height: 32px;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.how-work-step-box-sub:hover .how-to-work-circle img {
    transform: rotateY(180deg);
    /* filter: brightness(0) saturate(100%) invert(82%) sepia(100%) saturate(0%) hue-rotate(85deg) brightness(112%) contrast(101%); */
}

.how-work-step-box .how-work-step-box-sub h3 {
    color: var(--3, #000);
    text-align: center;
    font-size: 22px;
    /* Reduced from 24px */
    font-weight: 600;
    line-height: 30px;
    /* Adjusted line-height proportionally */
    padding-bottom: 10px;
}

/*-----------------------[ 12.Section Seven CSS ]------------------------*/
.section-seven {
    padding: 100px 0;
    padding-left: 0;
    padding-right: 0;
}

.projectSlider {
    margin-top: 60px;
}

.single-img {
    position: relative;
}

.home-project-img {
    width: 100%;
}

.img-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: #19b3b6;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .6s ease;
    padding: 50px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.single-img:hover .img-overlay {
    bottom: 0;
    height: 100%;
}

.img-overlay h3 {
    color: var(--5, #FFF);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    padding-bottom: 20px;
}

.img-overlay p {
    color: var(--5, #FFF);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.view-project-btn {
    background: #FFFFFF;
    color: #19b3b6;
}

.view-project-btn:hover {
    color: #FFF !important;
}

.view-project-btn img {
    filter: brightness(0) saturate(100%) invert(56%) sepia(81%) saturate(2814%) hue-rotate(162deg) brightness(106%) contrast(105%);
}

.view-project-btn:hover.view-project-btn img {
    filter: brightness(0) saturate(100%) invert(82%) sepia(100%) saturate(0%) hue-rotate(85deg) brightness(112%) contrast(101%) !important;
}

.project-button-next,
.project-button-prev {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.60) 100%);
    backdrop-filter: blur(4px);
    width: 48px;
    /* Reduced from 64px */
    height: 48px;
    /* Reduced from 64px */
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.project-button-next:hover,
.project-button-prev:hover {
    background: #19b3b6;
}

.project-button-next.swiper-button-next,
.project-button-prev.swiper-button-prev {
    color: #FFFFFF;
}

.project-button-next.swiper-button-next:after,
.project-button-prev.swiper-button-prev:after {
    font-size: 16px;
    /* Reduced from 20px */
}

/*-----------------------[ 13.Section Eight CSS ]------------------------*/
.section-eight {
    padding: 100px 0;
    text-align: center;
}

.section-eight .cap-text,
.section-eight .sec-text {
    text-align: center;
}

.exper-team-row-home {
    margin-top: 60px;
    gap: 50px 30px;
    justify-content: center;
}

.team-circle-link {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-circle-main {
    border: 2px solid #19b3b6;
    padding: 20px;
    border-radius: 50%;
    position: relative;
    max-width: 300px;
    height: 300px;
    width: 100%;
}

.inner-team-circle {
    width: 100%;
    max-width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--12, #F5F6F7);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

margin-bottom: 5px;
transition: all 0.3s ease-in-out;
}

.team-circle-link:hover h3 {
    color: #19b3b6;
}

.team-circle-link p {
    color: var(--4, #222);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.team-circle-link:hover .social-icons li {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.social-icons {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 3px;
}

.social-icons li {
    width: 32px;
    /* Reduced from 40px */
    height: 32px;
    /* Reduced from 40px */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #19b3b6;
    border: 2px solid transparent;
    border-radius: 50%;
    transform: translateY(20px) scale(0.8);
    opacity: 0;
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}

.social-icons li:hover {
    background: #FFF;
    border: 2px solid #19b3b6;
}

.social-icons li:hover img {
    filter: brightness(0) saturate(100%) invert(80%) sepia(39%) saturate(7500%) hue-rotate(155deg) brightness(99%) contrast(105%);
}

.share-icon-main:hover .social-icons li {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.social-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons li img {
    width: 16px;
    /* Reduced from 20px */
    height: 16px;
    /* Reduced from 20px */
    transition: transform 0.3s ease;
}

.social-icons li:nth-child(1) {
    transition-delay: 0s;
}

.social-icons li:nth-child(2) {
    transition-delay: 0.1s;
}

.social-icons li:nth-child(3) {
    transition-delay: 0.2s;
}

.social-icons li:nth-child(4) {
    transition-delay: 0.3s;
}

.exper-team-row-home {
    margin-top: 60px;
    gap: 50px 0;
}

/*-----------------------[ 14.Section Nine CSS ]------------------------*/
.testimonial-section-main {
    display: flex;
    align-items: stretch;
}

.man-cleaning-home {
    max-width: 50%;
    object-fit: cover;
}

.testimonials-col-main {
    background: var(--12, #F5F6F7);
    padding: 100px;
    width: 100%;
    overflow: hidden;
}

.tryse {
    max-width: 630px;
}

.testimonialSlider {
    max-width: 640px;
    margin-left: 0;
    margin-top: 60px;
    border-radius: 20px;
}

.testimonialSlider-swiper-slide {
    background: var(--5, #FFF);
    padding: 60px;
}

.cellent {
    color: var(--4, #222);
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    padding-top: 10px;
    padding-bottom: 40px;
}

.client-details-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-details h3 {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 5px;
}

.client-details p {
    color: var(--8, #A8A9AD);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.testimonial-client-img1 {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.testimonial-next,
.testimonial-prev {
    width: 40px;
    /* Reduced from 48px */
    height: 40px;
    /* Reduced from 48px */
    border: 2px solid #F5F6F7;
    border-radius: 50%;
    background: #FFF;
}

.testimonial-next.swiper-button-next {
    position: absolute;
    right: 10px;
    top: 85%;
}

.testimonial-prev.swiper-button-prev {
    position: absolute;
    right: 10px;
    left: auto;
    top: 70%;
}

.testimonial-next.swiper-button-next,
.testimonial-prev.swiper-button-prev {
    color: #000000;
}

.testimonial-next.swiper-button-next:after,
.testimonial-prev.swiper-button-prev:after {
    font-size: 16px;
    /* Reduced from 20px */
    font-weight: 600;
}

/*-----------------------[ 15.Section Blog CSS ]------------------------*/
.blog-section {
    padding: 100px 0;
}

.home-blog-row {
    margin-top: 60px;
}

.blog-img-main {
    position: relative;
    overflow: hidden;
}

.blog-box-main {
    border-radius: 20px;
    border: 2px solid var(--12, #F5F6F7);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-box-main:hover {
    border-color: #19b3b6;
    box-shadow: 0 15px 30px rgba(74, 108, 247, 0.1);
}

.blog-box-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 100%);
    transition: all 0.6s ease;
}

.blog-box-main:hover::after {
    left: 100%;
}

.blog-img {
    width: 100%;
    border-radius: 20px 20px 20px 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-box-main:hover .blog-img {
    transform: scale(1.05);
    border-radius: 20px 20px 0 0;
}

.blog-date {
    color: var(--4, #222);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 10px 20px;
    background: #FFFFFF;
    position: absolute;
    bottom: 0;
    left: 30px;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
}

.blog-box-main:hover .blog-date {
    color: #19b3b6;
}

.blog-date::before,
.blog-date::after {
    content: "";
    position: absolute;
    background-color: transparent;
    height: 60px;
    width: 30px;
    box-shadow: 0 20px 0 0 #fff;
    transition: all 0.4s ease;
}

.blog-date::before {
    bottom: 0px;
    left: -30px;
    height: 60px;
    width: 30px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.blog-date::after {
    content: "";
    bottom: 0px;
    right: -30px;
    height: 60px;
    width: 30px;
    border-bottom-left-radius: 20px;
    transition: all 0.4s ease;
}

.blog-containe-main {
    padding: 30px;
}

.blog-containe-main h2 {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    transition: color 0.3s ease;
}

.blog-box-main:hover .blog-containe-main h2 {
    color: #19b3b6;
}

.blog-containe-main p {
    overflow: hidden;
    color: var(--4, #222);
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.expand-img-main {
    overflow: hidden;
}

.expand-img {
    width: 100%;
}

/*-----------------------[ 16.Section Contact Form CSS ]------------------------*/
.contact-form-section {
    padding: 100px 0 220px;
    background: #F5F6F7;
    padding-left: 0;
    padding-right: 0;
}

.adres-main-home {
    display: flex;
    align-items: center;
    gap: 60px;
}

.call-support-text {
    color: var(--16, #19b3b6);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding-bottom: 8px;
    margin-top: 30px;
}

.tel-num {
    color: var(--3, #000);
    font-size: 36px;
    font-weight: 400;
    line-height: 48px;
    transition: all 0.3s ease-in-out;
}

.tel-num:hover {
    color: #19b3b6;
}

.contac-form-main {
    border-radius: 20px;
    background: var(--5, #FFF);
    padding: 30px;
}

.addees {
    font-size: 24px;
    line-height: 34px;
}

.contac-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.your-message-input {
    margin-top: 30px;
}

.send-main-btn {
    justify-content: left;
    margin-top: 30px;
}

/*-----------------------[ 17.Footer CSS ]------------------------*/
.subscribe-section {
    background: #000;
    border-radius: 20px;
    padding: 60px;
    margin-top: -125px;
    margin-bottom: 100px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.updat {
    font-weight: 500;
    color: #FFFFFF;
    padding-bottom: 0;
    max-width: 570px;
}

.subscribe-input-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    padding: 10px 10px 10px 40px;
    width: 100%;
    max-width: 570px;
    border-radius: 42px;
}

.subscribe-input-main input {
    width: 55%;
    outline: none;
    border: none;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.working-hours {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 20px;
}

.timing-hrw {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 2px solid #F5F6F7;
}

.timing-hrw p {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.footer-row-quick {
    justify-content: space-between;
}

.quicklinks-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.quicklinks-main ul li a {
    color: var(--4, #222);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    transition: all 0.4s ease-in-out;
}

.quicklinks-main ul li a:hover {
    color: #19b3b6;
}

.footer-img-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.footer-img-group .footer-imgs {
    width: 100%;
}

.img-container {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: block;
}

.footer-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.57);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-instagram {
    width: 40px;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.img-container:hover .footer-img-overlay {
    opacity: 1;
}

.img-container:hover .brand-instagram {
    opacity: 1;
    transform: scale(1) rotate(360deg);
}

.media-logo-call-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    border-radius: 30px;
    background: var(--3, #000);
    margin-top: 60px;
    margin-bottom: 40px;
}

.media-logo-call-footer .call-detl {
    border-radius: 50px;
    background: var(--14, #19b3b6);
    padding: 10px 50px 10px 10px;
}

.media-logo-call-footer .call-detl .img-main-call {
    background: var(--13, #000);
}

.media-logo-call-footer .call-detl a {
    color: #FFFFFF;
}

.footer-med-icons-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-med-icons {
    width: 48px;
    /* Reduced from 60px */
    height: 48px;
    /* Reduced from 60px */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-med-icons:hover {
    background: #19b3b6;
}

.footer-med-icons img {
    width: 24px;
    /* Reduced from 32px */
    height: 24px;
}

.copyrights-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 40px;
}

.copyrights-main p,
.copyrights-main a {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.copyrights-main a:hover {
    color: #19b3b6;
}

.call-detl {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-detl .img-main-call {
    width: 64px;
    /* Reduced from 80px */
    height: 64px;
    /* Reduced from 80px */
    border-radius: 50%;
    background: #19b3b6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-detl p {
    color: var(--5, #FFF);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 10px;
}

.call-detl a {
    color: #FFF;
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    transition: all 0.3s ease-in-out;
}

/*-----------------------[ 18.Bottom To Top Button CSS ]------------------------*/
button.bottom-top-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #4A7C7C;
    color: white;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s, transform 0.3s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

button.bottom-top-button:hover {
    background-color: #3a6565;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/*-----------------------[ 19.About Page CSS ]------------------------*/
.heroSection {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('https://static.wixstatic.com/media/84770f_96f364b2a1bc48fba2f87a81632f89a5~mv2.jpeg/v1/fill/w_1320,h_700,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/84770f_96f364b2a1bc48fba2f87a81632f89a5~mv2.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 220px 0 100px;
}

.img-header-text {
    color: #FFF;
    font-size: 64px;
    font-weight: 700;
    line-height: 72px;
}

.breadcrumb-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
}

.breadcrumb-group a {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
}

.about-section-three {
    padding: 100px 0;
}

/*-----------------------[ 20.Team Details Page CSS ]------------------------*/
.team-single-box {
    background: #FFF;
    border-radius: 25px;
    border: 2px solid #F5F6F7;
    position: sticky;
    top: 150px;
    margin-bottom: 30px;
}

.rich {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    padding-bottom: 8px;
}

.clane {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.single-team-main {
    border-radius: 20px;
    background: #F5F6F7;
}

.single-team {
    width: 100%;
    border-radius: 20px;
}

.team-contact-1 {
    padding: 30px;
}

.team-meta {
    margin-top: 30px;
}

.team-meta li {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-meta li img {
    width: 20px;
    /* Reduced from 25px */
}

.team-meta li span {
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    color: #19b3b6;
}

.team-meta li a,
.team-meta li p {
    font-size: 18px;
    line-height: 20px;
    font-weight: 500;
    color: #000;
    transition: all .35s ease-in-out;
}

.team-meta li a:hover {
    color: #19b3b6;
}

.single-team-social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.single-team-social a {
    background: #FFF;
    border: 2px solid #FFF;
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.08);
    border-radius: 100%;
    width: 100%;
    max-width: 40px;
    /* Reduced from 50px */
    height: 40px;
    /* Reduced from 50px */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease-in-out;
}

.single-team-social a img {
    width: 20px;
    /* Reduced from 25px */
    filter: brightness(0) saturate(100%) invert(65%) sepia(94%) saturate(3410%) hue-rotate(159deg) brightness(104%) contrast(104%);
}

.single-team-social a:hover {
    background: #19b3b6;
}

.single-team-social a:hover img {
    filter: brightness(0) saturate(100%) invert(99%) sepia(99%) saturate(0%) hue-rotate(318deg) brightness(100%) contrast(105%);
}

.personal-main h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 50px;
    margin-bottom: 20px;
    color: #000;
}

.personal-main p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
    color: #222;
    font-weight: 400;
    text-align: justify;
}

.contact-form-1 {
    box-shadow: rgba(183, 183, 183, 0.2) 0px 8px 24px;
}

/* ------------- Progress Bar ----------- */
#first-sec {
    margin-bottom: 30px;
}

.progress-bar {
    margin: 20px 0 10px;
    overflow: hidden;
    text-align: start;
}

.progress-title-holder {
    padding-bottom: 7px;
    position: relative;
}

.progress-title {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.progress-number-wrapper,
.progress-number-mark {
    color: #19b3b6;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.progress-number-mark {
    margin-bottom: 4px;
    position: absolute;
    bottom: 0;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.progress-content-outter {
    height: 8px;
    border-radius: 10px;
    background-color: rgba(168, 169, 173, 0.2);
}

.progress-content {
    height: 8px;
    border-radius: 10px;
    background-color: #19b3b6;
    width: 0%;
}

/*-----------------------[ 21.Pricing Plan Page CSS ]------------------------*/
.pricing-row {
    margin-top: 60px;
}

.pricing-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 50px 30px 30px;
    text-align: center;
    transition: 0.3s ease;
}

.pricing-card.enterprise {
    background-color: #19b3b6;
    color: #fff;
}

.pricing-card h2 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}

.price-box {
    background: transparent;
    border-radius: 12px;
    padding: 15px;
    display: inline-block;
    margin-bottom: 20px;
}

.price {
    font-size: 40px;
    font-weight: 700;
    color: #19b3b6;
}

.enterprise .price {
    color: #fff;
}

.month {
    font-size: 18px;
    font-weight: 500;
    margin-left: 5px;
    color: #222;
}

.enterprise .month {
    color: #fff;
}

.features {
    list-style: none;
    margin-bottom: 25px;
}

.features li {
    text-align: left;
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #999;
}

.enterprise .features li {
    color: #cce4ff;
}

.features li.active {
    color: #000;
}

.enterprise .features li.active {
    color: #fff;
}

.features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: #19b3b6;
    font-size: 16px;
}

.enterprise .features li::before {
    color: #FFF;
}

.features li:not(.active)::before {
    color: #ccc;
}

.getStarted-btn {
    width: 100%;
}

/*-----------------------[ 22.Our Client Page CSS ]------------------------*/
.clients-main {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 54px;
    margin-top: 60px;
}

.clients-main img {
    max-width: 100%;
}

.testimonial-page {
    background: #F5F6F7;
}

.testimonial-page .testimonialSlider-swiper-slide {
    border-radius: 20px;
}

.testimonial-page .testimonialSlider-swiper-slide {
    padding: 30px;
}

.testimonial-page .cellent {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    padding-top: 10px;
    padding-bottom: 30px;
}

.testimonial-page-row {
    gap: 30px 0;
}

/*-----------------------[ 23.FAQ Page CSS ]------------------------*/
.pulm-multi-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulm-multi {
    max-width: 100%;
}

#accordionExample {
    margin-top: 40px;
}

.accordion-item {
    background: transparent;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.accordion-item:first-of-type {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.accordion-button:focus {
    box-shadow: none;
}

#accordionExample .accordion-button {
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    background: #F5F6F7;
    margin-bottom: 15px;
}

.accordion-button:not(.collapsed) {
    color: #19b3b6;
    background-color: rgba(0, 194, 255, 0.1) !important;
}

#accordionExample.accordion {
    --bs-accordion-border-color: none;
}

#accordionExample .accordion-body {
    padding: 0 0 20px 0;
    color: var(--4, #000);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.accordion-button::after {
    background-image: url('../images/svg/dropdown-arrow.svg');
    --bs-accordion-btn-icon-width: 2rem;
    filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(4323%) hue-rotate(216deg) brightness(97%) contrast(101%);
}

.accordion-button:not(.collapsed)::after {
    background-image: url('../images/svg/dropdown-arrow.svg');
    filter: brightness(0) saturate(100%) invert(60%) sepia(94%) saturate(2460%) hue-rotate(157deg) brightness(100%) contrast(107%);
}

/*-----------------------[ 24.404 Error Page CSS ]------------------------*/
.error-img {
    max-width: 100%;
}

.error-img-btn {
    display: flex;
    align-items: center;
    flex-direction: column;
}

/*-----------------------[ 25.Services Page CSS ]------------------------*/
.services-page-row {
    gap: 40px 0;
}

.layers-img1 {
    width: 100%;
    margin: 30px 0;
}

.fusce {
    color: #222;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.ourServicesPrcoes {
    color: #222;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
    padding-top: 30px;
    padding-bottom: 15px;
}

.singleServicesSlider {
    margin-top: 30px;
}

.singleServicesSlider img {
    width: 100%;
}

.all-service-text {
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    color: #FFF;
    text-align: center;
    padding: 30px;
    background: #000000;
}

.roofing-services-list-main {
    padding: 30px;
    background: #F5F6F7;
    border: 2px solid #FFF;
}

.service-list-arow-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFF;
    margin-bottom: 15px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-list-arow-main::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: auto;
    top: 0;
    height: 0;
    width: 100%;
    background-color: #000;
    z-index: -1;
    transition: inherit;
    transition: all 0.3s ease;
}

.service-list-arow-main:hover::after {
    height: 100%;
    top: auto;
    left: 0;
}

.service-list-arow-main p {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.service-list-arow-main img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(2406%) hue-rotate(189deg) brightness(98%) contrast(101%);
}

.service-list-arow-main:hover,
.service-list-arow-main.active {
    background: #19b3b6;
}

.service-list-arow-main:hover p,
.service-list-arow-main.active p {
    color: #FFF;
}

.service-list-arow-main:hover img,
.service-list-arow-main.active img {
    filter: none;
}

.card-adds-main {
    margin: 40px 0;
}

.adds-img-home {
    border-radius: 20px 20px 0 0;
}

.shape-img {
    width: 100%;
    margin-top: -130px;
}

.adds-details-main {
    background: #FFF;
    padding-bottom: 20px;
    text-align: center;
    box-shadow: rgba(183, 183, 183, 0.2) 0px 8px 24px;
    border-radius: 30px;
}

.adds-details-main h3 {
    font-size: 35px;
    line-height: 45px;
    color: #000;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.documents-box {
    background: #F5F6F7;
    padding: 15px;
    margin-top: 40px;
}

.brochure-main {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFFFFF;
    margin-bottom: 20px;
}

.brochure {
    width: 60px;
    height: 60px;
    background: #19b3b6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-main h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

/*-----------------------[ 26.Project Page CSS ]------------------------*/
.projectSlider2 {
    margin-top: 100px;
}

.project-two-row {
    gap: 40px 0;
}

.project-box-main-img {
    position: relative;
    display: block;
    overflow: hidden;
}

.project-box-main-img img {
    transform: scale(1.0);
    transition-duration: 0.7s;
}

.project-box-main-img:hover img {
    transform: scale(1.05) rotate(1deg);
}

.project-box-main-img:hover .project-two-img-ovelry {
    opacity: 0.80;
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
}

.project-two-img-ovelry {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 194, 255, 0.85);
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    z-index: 1;
}

.project-box-main-img:hover .overlay-title {
    transform: scaleY(1.0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.overlay-title {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 0 30px 30px;
    padding-right: 20px;
    transform: scaleY(0);
    transition: all 300ms ease 100ms;
    z-index: 2;
}

.overlay-title h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #FFF;
}

.overlay-title p {
    color: #FFF;
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    padding-top: 10px;
}

/*-----------------------[ 27.Single Project Page CSS ]------------------------*/
.singleServicesSlider img {
    max-width: 100%;
}

.layers-img {
    max-width: 100%;
    border-radius: 20px;
}

.singleProject2 {
    margin: 20px 0;
}

.diamond-nextbtn-head {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid rgba(168, 169, 173, 0.2);
    border-bottom: 2px solid rgba(168, 169, 173, 0.2);
    margin-top: 50px;
}

.diamond-btn {
    background: #19b3b6;
    width: 32px;
    /* Reduced from 40px */
    height: 32px;
    /* Reduced from 40px */
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-btn img {
    width: 16px;
    /* Added specific size */
    height: 16px;
}

.diamond-next-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    cursor: pointer;
}

.diamond-next-btn h3 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}

.send-inquiry-form {
    padding: 30px;
    background: #FFF;
    box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 140px;
}

.project-info-text {
    color: #000000;
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 30px;
    text-align: center;
}

.project-info-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #9090903b;
    padding: 20px 0;
}

.project-info-main p:nth-child(1) {
    color: #222222;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.project-info-main p:nth-child(2) {
    color: #00C2FF;
    font-size: 20px;
}

.project-details-icon .footer-med-icons img {
    width: 30px;
}

.project-details-icon {
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.project-details-icon .footer-med-icons {
    background: #00C2FF;
    width: 40px;
    /* Reduced from 50px */
    height: 40px;
    /* Reduced from 50px */
}

.project-details-icon .footer-med-icons img {
    width: 20px;
    /* Reduced from 30px */
}

.all-services-row3 {
    justify-content: center;
}

/*-----------------------[ 28.Blog Page CSS ]------------------------*/
.blogPage-row2 {
    gap: 30px 0;
}

.search-box-main {
    padding: 20px;
    background: rgba(168, 169, 173, 0.1);
}

.search-input {
    position: relative;
}

.search-input input {
    width: 100%;
    height: 60px;
    outline: none;
    border: none;
    padding: 18px 15px;
    color: var(--4, #222);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.search-box {
    width: 48px;
    /* Reduced from 60px */
    height: 48px;
    /* Reduced from 60px */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
}

.search-box img {
    width: 20px;
    /* Added specific size */
    height: 20px;
}

.single-services-black-box {
    margin-bottom: 20px;
    margin-top: 40px;
    background: #000000;
    padding: 30px;
}

.single-services-black-box h3 {
    color: var(--5, #FFF);
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
}

.recent-post-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.recent-post-main img {
    width: 48px;
    /* Added to control recent post thumbnail size */
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
}

.recent-post-text-main p {
    color: var(--4, #222);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.recent-post-text-main h2 {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    transition: all 0.3s ease-in-out;
}

.recent-post-main:hover h2 {
    color: #00C2FF;
}

.adds-details-main {
    margin-top: 40px;
}

/*-----------------------[ 29.Blog Details CSS ]------------------------*/
.single-blog-img1 {
    width: 100%;
}

.tag-date {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0 20px;
}

.tag-date-sub {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tag-date-sub p {
    color: #222;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.psum {
    margin-top: 20px;
}

.qoute-box {
    padding: 40px;
    background: #F5F6F7;
    margin: 35px 0;
    position: relative;
}

.qoute-box h2 {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    font-style: italic;
}

.line_client {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.line {
    border-top: 2px solid #00C2FF;
    width: 60px;
}

.jordon {
    color: #222;
    font-size: 16px;
    line-height: 20px;
    padding-left: 10px;
}

.req-form-main {
    margin-top: 30px;
}

.map-iframe {
    width: 100%;
    height: 400px;
    margin-top: 100px;
}

/*-----------------------[ 30.Get Your Quote Page CSS ]------------------------*/
.get-quote-page-section {
    background: #FFFFFF;
}

.get-quote-page-section .sec-text {
    color: #000000;
}

.get-quote-calculator {
    margin-top: 60px;
    margin-bottom: 0;
    background: #F5F6F7;
}

/* ==================== Lector Services CSS Removed - Now in home.css ==================== */

/* ====================================== Our Associations Carousel Section ===================================== */
.associations-carousel-section {
    --ip-teal: #4A7C7C;
    --ip-teal-dark: #3A6565;
    --ip-teal-light: #D4E3E3;
    --ip-orange: #FF6B35;
    --ip-dark: #1f2e2e;
    --text-grey: #5f6c7b;
    --bg-off-white: #f8fcfc;
    background: linear-gradient(135deg, #fff 0%, var(--bg-off-white) 100%);
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

/* Radial Gradient Overlay - Matching About Section */
.associations-carousel-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,137,123,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Background Animations - Matching About Section */
.top-right-bg-animation-assoc {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px; 
    height: 600px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 0 C 80 20, 50 20, 30 0 S 0 50, 20 80 S 80 80, 100 50 Z' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.15'/%3E%3Cpath d='M100 10 C 70 30, 40 30, 10 10' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.1'/%3E%3Cpath d='M90 90 C 60 70, 30 70, 0 90' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.1'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.08'/%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 200px 200px; 
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    animation: spin-slow-assoc 60s linear infinite;
    -webkit-mask-image: radial-gradient(circle, black 0%, transparent 70%);
    mask-image: radial-gradient(circle, black 0%, transparent 70%);
}

.top-left-bg-animation-assoc {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px; 
    height: 600px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 0 C 80 20, 50 20, 30 0 S 0 50, 20 80 S 80 80, 100 50 Z' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.15'/%3E%3Cpath d='M100 10 C 70 30, 40 30, 10 10' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.1'/%3E%3Cpath d='M90 90 C 60 70, 30 70, 0 90' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.1'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.08'/%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%2300897B' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 200px 200px; 
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    animation: spin-slow-assoc 60s linear infinite reverse;
    -webkit-mask-image: radial-gradient(circle, black 0%, transparent 70%);
    mask-image: radial-gradient(circle, black 0%, transparent 70%);
}

@keyframes spin-slow-assoc {
    0% { transform: rotate(0deg) scale(1.5); }
    50% { transform: rotate(180deg) scale(1.4); }
    100% { transform: rotate(360deg) scale(1.5); }
}

.associations-carousel-section .container {
    position: relative;
    z-index: 2;
}

/* Match Section 2's section header styling */
.lector-services .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.lector-services .cap-text {
    color: #19b3b6;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding-bottom: 10px;
    position: relative;
}

.lector-services .cap-text::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #19b3b6 100%);
    border-radius: 2px;
    animation: expand 1.5s ease-out;
}

.lector-services .sec-text {
    color: #000;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    padding-bottom: 25px;
    position: relative;
}

.lector-services .sec-sub-text {
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    animation: slideInUp 1s ease-out 0.2s both;
}

.lector-services .lector-services-slider {
    overflow: hidden;
    margin-top: 50px;
}

/* Match Section 2's card styling */
.lector-services .post-item {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 30px;
    border-radius: 15px;
    background:
        linear-gradient(135deg, rgba(255, 107, 53, 0.02) 0%, rgba(25, 179, 182, 0.02) 100%),
        #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 15px;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08),
        0 15px 50px rgba(0, 0, 0, 0.04),
        0 25px 80px rgba(25, 179, 182, 0.08);
    animation: cardSlideIn 0.8s ease-out both;
    overflow: hidden;
    height: 420px;
    display: flex;
    flex-direction: column;
}

/* Subtle noise texture overlay */
.lector-services .post-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuOSIgbnVtT2N0YXZlcz0iNCIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNub2lzZSkiIG9wYWNpdHk9IjAuMDUiLz48L3N2Zz4=');
    background-size: 200px 200px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

/* Decorative corner accent */
.lector-services .post-item::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    transition: all 0.6s ease;
}

/* Responsive card heights */
@media (max-width: 1199px) {
    .lector-services .post-item {
        height: 400px;
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .lector-services .post-item {
        height: 380px;
        padding: 20px;
        margin: 10px;
    }
}

@media (max-width: 767px) {
    .lector-services .post-item {
        height: 360px;
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .lector-services .post-item {
        height: auto;
        min-height: 340px;
        padding: 18px;
    }
}

.lector-services .post-item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.lector-services .post-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Changed from space-between to flex-start */
    padding-top: 20px;
    /* Added padding to separate from icon */
}

.lector-services .post-content h5 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    /* Reduced line height */
    margin-bottom: 12px;
    /* Reduced margin */
    padding-bottom: 8px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.lector-services .post-content p {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    flex: 1;
    max-height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/* Responsive typography */
@media (max-width: 991px) {
    .lector-services .post-content h5 {
        font-size: 17px;
        line-height: 23px;
    }

    .lector-services .post-content p {
        font-size: 13px;
        line-height: 19px;
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 767px) {
    .lector-services .post-content h5 {
        font-size: 16px;
        line-height: 22px;
    }

    .lector-services .post-content p {
        font-size: 13px;
        line-height: 18px;
    }
}

/* Read More Button Styling */
.lector-services .read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #FF6B35, #FF8C5A);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
}

.lector-services .read-more-btn:hover {
    background: linear-gradient(45deg, #19b3b6, #23D5D9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 179, 182, 0.35);
    color: #fff;
}

.lector-services .read-more-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.lector-services .read-more-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 575px) {
    .lector-services .read-more-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Ensure consistent card heights in the slider */
.lector-services .swiper-slide {
    height: 450px;
    display: flex;
}

/* Responsive slide heights */
@media (max-width: 1199px) {
    .lector-services .swiper-slide {
        height: 430px;
    }
}

@media (max-width: 991px) {
    .lector-services .swiper-slide {
        height: 410px;
    }
}

@media (max-width: 767px) {
    .lector-services .swiper-slide {
        height: 390px;
    }
}

@media (max-width: 575px) {
    .lector-services .swiper-slide {
        height: auto;
        min-height: 360px;
    }
}

.lector-services .swiper-wrapper {
    align-items: stretch;
}

/* Match Section 2's hover ripple effect */
.lector-services .post-item:hover::before {
    top: 50%;
    right: 50%;
    width: 300px;
    height: 300px;
    opacity: 1;
}

.lector-services .post-item-inner .post-thumb {
    position: relative;
    padding: 60px 0 40px 0;
    /* Increased top padding, reduced bottom padding */
    margin-bottom: 20px;
    text-align: center;
}

/* Match Section 2's icon styling */
.lector-services .post-thumb .service-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-size: 18px;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 0 20px rgba(255, 182, 168, 0.12),
        0 0 0 40px rgba(255, 182, 168, 0.06);
}

.lector-services .post-thumb .service-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Match Section 2's pulsing effect */
.lector-services .post-thumb .service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    z-index: -1;
}

/* Ensure Font Awesome icons are centered */
.lector-services .post-thumb .service-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

/* Match Section 2's hover effects */
.lector-services .post-item:hover .service-icon {
    background: #000;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.lector-services .post-thumb .round-1,
.lector-services .post-thumb .round-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: none;
    display: none;
}

.lector-services .post-thumb .round-1 {
    width: 96px;
    /* Reduced from 120px */
    height: 96px;
    /* Reduced from 120px */
    background: rgba(255, 107, 53, 0.08);
    box-shadow: 0px 0px 24px 0px rgba(37, 51, 101, 0.06);
}

.lector-services .post-thumb .round-2 {
    width: 112px;
    /* Reduced from 140px */
    height: 112px;
    /* Reduced from 140px */
    background: rgba(255, 107, 53, 0.05);
    box-shadow: 0px 0px 24px 0px rgba(37, 51, 101, 0.06);
}

/* Animation circles */
.lector-services .services-circle-wrapper {
    width: 84%;
    height: 84%;
    left: 8%;
    top: 8%;
    position: absolute;
}

.lector-services .services-circle-wrapper:nth-child(1) {
    transform: rotate(0deg);
    animation: lactor_1 2s infinite linear;
    animation-play-state: paused;
}

.lector-services .services-circle-wrapper:nth-child(2) {
    transform: rotate(180deg);
    animation: lactor_2 2s infinite linear;
    animation-play-state: paused;
}

.lector-services .services-circle-wrapper .services-circle {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: none;
    background: #FF6B35;
}

.lector-services .post-item:hover .services-circle-wrapper:nth-child(1),
.lector-services .post-item:hover .services-circle-wrapper:nth-child(2) {
    animation-play-state: running;
}

.lector-services .post-item:hover .services-circle {
    display: block;
}

/* Match Section 2's typography */
.lector-services .post-content {
    text-align: center;
}

.lector-services .post-content h5 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* Match Section 2's text reveal effect */
.lector-services .post-content h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #19b3b6);
    transition: all 0.4s ease;
}

.lector-services .post-item:hover .post-content h5 {
    color: #FF6B35;
}

.lector-services .post-item:hover .post-content h5::after {
    width: 60px;
}

.lector-services .post-content p {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.lector-services .post-item:hover .post-content p {
    color: #333;
    transform: translateY(-2px);
}

.lector-services .service-flaticon {
    color: #FF6B35;
    font-size: 16px;
    /* Reduced from 20px */
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
}

.lector-services .service-flaticon:hover {
    color: #e55a2b;
    transform: translateX(5px);
}

.lector-services .services-pagination {
    width: 100%;
    margin-top: 30px;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.lector-services .services-pagination .swiper-pagination-bullet {
    width: 8px;
    /* Reduced from 12px */
    height: 8px;
    /* Reduced from 12px */
    background: rgba(25, 179, 182, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    /* Reduced spacing from 6px to 5px */
    opacity: 1;
    transition: all 0.3s ease;
}

.lector-services .services-pagination .swiper-pagination-bullet-active {
    background: #FF6B35;
    transform: scale(1.3);
    /* Slightly increased scale from 1.2 to 1.3 for better visibility */
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.3);
    /* Reduced shadow blur from 8px to 6px */
}

/* Ensure pagination container is properly positioned */
.lector-services .swiper {
    padding-bottom: 50px;
}

/* Override any default swiper pagination positioning */
.lector-services .swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    text-align: center !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 30px;
}

.lector-services .services-pagination {
    width: 100%;
    margin-top: 30px;
}

/* Use existing keyframes from Section 2 */
@keyframes lactor_1 {
    0% {
        transform: rotate(90deg);
    }

    100% {
        transform: rotate(450deg);
    }
}

@keyframes lactor_2 {
    0% {
        transform: rotate(-90deg);
    }

    100% {
        transform: rotate(270deg);
    }
}

/* Responsive adjustments matching Section 2 */
@media (max-width: 1199px) {
    .lector-services .sec-text {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (max-width: 991px) {
    .lector-services .sec-text {
        font-size: 24px;
        line-height: 32px;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .content-header {
        gap: -2px;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .post-thumb {
        margin: 0 -3px 0 0;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .post-content h5 {
        margin-left: -1px;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .post-thumb svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .lector-services .post-thumb .service-icon {
        width: 56px;
        height: 56px;
        line-height: 56px;
        font-size: 20px;
    }

    .lector-services .post-thumb .round-1 {
        width: 80px;
        height: 80px;
    }

    .lector-services .post-thumb .round-2 {
        width: 96px;
        height: 96px;
    }

    .lector-services .sec-text {
        font-size: 22px;
        line-height: 30px;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .content-header {
        gap: 6px;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .post-thumb {
        margin: 0 -2px 0 0;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .post-content h5 {
        margin-left: -1px;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .post-thumb svg {
        width: 28px;
        height: 28px;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .content-header {
        gap: 0px;
    }

    .services-svg-main {
        width: 80px;
        height: 80px;
        margin-top: -45px;
    }

    .services-svg-main img {
        width: 28px;
        height: 28px;
    }

    .how-to-work-circle {
        width: 96px;
        height: 96px;
    }

    .how-to-work-circle img {
        width: 28px;
        height: 28px;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .content-header {
        gap: 6px;
    }
}

/* ====================================== IP Services Grid Styles ===================================== */
.services.style-2 {
    padding-bottom: 100px;
}

.ip-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-bottom: 40px;
}

.ip-service-card {
    background: linear-gradient(135deg, rgba(25, 179, 182, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-radius: 32px;
    padding: 25px 25px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

.ip-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(25, 179, 182, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ip-service-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(99, 155, 255, 0.15) 0%, rgba(99, 155, 255, 0.05) 100%);
}

.ip-service-card:nth-child(2)::before {
    background: linear-gradient(135deg, rgba(99, 155, 255, 0.25) 0%, rgba(99, 155, 255, 0.15) 100%);
}

.ip-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-color: rgba(25, 179, 182, 0.3);
}

.ip-service-card:hover::before {
    opacity: 1;
}

.ip-service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.ip-service-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 10px;
    position: relative;
}

.ip-service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    z-index: -1;
}

.ip-service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: #fff;
}

.ip-service-card:hover .ip-service-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.ip-service-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ip-service-text h3 {
    font-size: 17px;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px 0;
    padding-bottom: 4px;
    transition: color 0.3s ease;
    line-height: 22px;
}

.ip-service-card:hover .ip-service-text h3 {
    color: #19B3B6;
}

.ip-service-text p {
    font-size: 13px;
    line-height: 19px;
    color: #222;
    margin: 0;
    transition: color 0.3s ease;
}

.ip-service-card:hover .ip-service-text p {
    color: #333;
}

/* Responsive Design for IP Services */
@media (min-width: 1440px) {
    .services.style-2 {
        padding-bottom: 120px;
    }

    .ip-services-grid {
        gap: 40px;
        padding-bottom: 50px;
    }

    .ip-service-card {
        padding: 65px 45px;
        min-height: 420px;
    }

    .ip-service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 22px;
    }

    .ip-service-icon svg {
        width: 30px;
        height: 30px;
    }

    .ip-service-text h3 {
        font-size: 19px;
        line-height: 26px;
        margin-bottom: 14px;
    }

    .ip-service-text p {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 1199px) {
    .services.style-2 {
        padding-bottom: 85px;
    }

    .ip-services-grid {
        margin-top: 50px;
        gap: 25px;
        padding-bottom: 35px;
    }

    .ip-service-card {
        padding: 48px 35px;
        min-height: 350px;
    }

    .ip-service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }

    .ip-service-icon svg {
        width: 28px;
        height: 28px;
    }

    .ip-service-text h3 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .ip-service-text p {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 991px) {
    .services.style-2 {
        padding-bottom: 70px;
    }

    .ip-services-grid {
        grid-template-columns: 1fr;
        margin-top: 45px;
        gap: 25px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 30px;
    }

    .ip-service-card {
        padding: 45px 38px;
        min-height: auto;
    }

    .ip-service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }

    .ip-service-icon svg {
        width: 28px;
        height: 28px;
    }

    .ip-service-text h3 {
        font-size: 17px;
        line-height: 23px;
        margin-bottom: 12px;
    }

    .ip-service-text p {
        font-size: 13px;
        line-height: 19px;
    }
}

@media (max-width: 767px) {
    .services.style-2 {
        padding-bottom: 60px;
    }

    .ip-services-grid {
        margin-top: 40px;
        gap: 20px;
        padding-bottom: 25px;
    }

    .ip-service-card {
        padding: 40px 30px;
        border-radius: 28px;
    }

    .ip-service-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    .ip-service-icon svg {
        width: 26px;
        height: 26px;
    }

    .ip-service-text h3 {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .ip-service-text p {
        font-size: 13px;
        line-height: 18px;
    }
}

@media (max-width: 575px) {
    .services.style-2 {
        padding-bottom: 50px;
    }

    .ip-services-grid {
        margin-top: 35px;
        gap: 18px;
        padding-bottom: 20px;
    }

    .ip-service-card {
        padding: 35px 25px;
        border-radius: 24px;
    }

    .ip-service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
    }

    .ip-service-icon svg {
        width: 24px;
        height: 24px;
    }

    .ip-service-text h3 {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 10px;
    }

    .ip-service-text p {
        font-size: 13px;
        line-height: 18px;
    }
}

@media (max-width: 575px) {
    .lector-services .cap-text {
        font-size: 14px;
        line-height: 20px;
    }

    .lector-services .sec-sub-text {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Additional icon size reductions for other sections */

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .services-svg-main {
        width: 80px;
        height: 80px;
        margin-top: -45px;
    }

    .services-svg-main img {
        width: 28px;
        height: 28px;
    }

    .lector-services .post-thumb .service-icon {
        width: 56px;
        height: 56px;
        line-height: 56px;
        font-size: 20px;
    }

    .lector-services .post-thumb .round-1 {
        width: 80px;
        height: 80px;
    }

    .lector-services .post-thumb .round-2 {
        width: 96px;
        height: 96px;
    }

    .how-to-work-circle {
        width: 96px;
        height: 96px;
    }

    .how-to-work-circle img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 575px) {
    .services-svg-main {
        width: 70px;
        height: 70px;
        margin-top: -40px;
    }

    .services-svg-main img {
        width: 24px;
        height: 24px;
    }

    .footer-med-icons {
        width: 40px;
        height: 40px;
    }

    .footer-med-icons img {
        width: 20px;
        height: 20px;
    }

    .social-icons li {
        width: 28px;
        height: 28px;
    }

    .social-icons li img {
        width: 14px;
        height: 14px;
    }
}

/*-----------------------[ 32. Lector Services Grid Layout CSS ]------------------------*/

/* Services style-2 grid layout */
.services.style-2 {
    position: relative;
    background: #f8f9fa;
    padding: 100px 0;
    overflow: hidden;
}

.services.style-2::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.05) 0%, rgba(25, 179, 182, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.services.style-2::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(25, 179, 182, 0.08) 0%, rgba(255, 107, 53, 0.08) 100%);
    border-radius: 50%;
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}

.services.style-2 .container {
    position: relative;
    z-index: 2;
}

.services.style-2 .section-wrapper {
    background: transparent;
    border: none;
    margin: 0;
    overflow: inherit;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}

@media (min-width: 768px) {
    .services.style-2 .section-wrapper {
        margin: 0 -15px;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.services.style-2 .section-wrapper .post-item {
    width: 100%;
    border: none;
    padding: 0;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .services.style-2 .section-wrapper .post-item {
        width: 100%;
        margin: 0;
        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    .services.style-2 .section-wrapper .post-item {
        width: 100%;
    }
}

.services.style-2 .section-wrapper .post-item:last-child .post-item-inner {
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .services.style-2 .section-wrapper .post-item:last-child .post-item-inner {
        margin-bottom: 0;
    }
}

.services.style-2 .section-wrapper .post-item .post-item-inner {
    display: flex;
    align-items: flex-start;
    box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.05);
    padding: 25px;
    /* Reduced from 30px */
    border-radius: 15px;
    margin: 15px 0;
    text-align: left;
    /* Always left align */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-direction: column;
    /* Stack content vertically */
    height: auto;
    /* Changed from fixed height to auto */
    /* min-height: 280px; - REMOVED to eliminate dead space */
    overflow: hidden;
}

/* Create a flex container for icon and heading */
.services.style-2 .section-wrapper .post-item .post-item-inner .content-header {
    display: flex;
    align-items: center;
    gap: -2px;
    /* Negative gap to make them overlap slightly */
    margin-bottom: 12px;
    /* Reduced from 15px */
}

/* Move icon styling into the content area */
.services.style-2 .section-wrapper .post-item .post-item-inner .post-thumb {
    padding: 0;
    width: auto;
    /* Auto width for icon */
    margin: 0 -4px 0 0;
    /* Negative right margin to pull heading closer */
    text-align: center;
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.services.style-2 .section-wrapper .post-item .post-item-inner .post-thumb svg {
    width: 32px;
    /* Increased from 28px to 32px */
    height: 32px;
    /* Increased from 28px to 32px */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: none;
}

.services.style-2 .section-wrapper .post-item .post-item-inner:hover .post-thumb svg {
    transform: scale(1.1);
}

.services.style-2 .section-wrapper .post-item .post-item-inner .post-content h5 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 10px;
    /* Reduced from 15px */
    margin-left: -2px;
    /* Negative left margin to move heading closer to icon */
    transition: all 0.3s ease-in-out;
    position: relative;
    flex: 1;
    /* Take remaining space */
}

.services.style-2 .section-wrapper .post-item .post-item-inner .post-content {
    text-align: left;
    flex: 0 0 auto;
    /* Changed from flex: 1 to prevent stretching */
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    /* Reduced from 20px */
}

/* New wrapper for icon and heading */
.services.style-2 .section-wrapper .post-item .post-item-inner .content-header {
    display: flex;
    align-items: center;
    gap: 0px;
    /* Reduced to 0px on tablets */
    margin-bottom: 15px;
}

/* Move icon styling into the content area */
.services.style-2 .section-wrapper .post-item .post-item-inner .post-thumb {
    padding: 0;
    width: auto;
    /* Auto width for icon */
    margin: 0 -4px 0 0;
    /* Negative right margin to pull heading closer */
    text-align: center;
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.services.style-2 .section-wrapper .post-item .post-item-inner .post-content h5 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 0;
    margin-left: -2px;
    /* Negative left margin to move heading closer to icon */
    transition: all 0.3s ease-in-out;
    position: relative;
    flex: 1;
}

/* Hover effects matching Section 2 */
.services.style-2 .section-wrapper .post-item .post-item-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: -1;
}

.services.style-2 .section-wrapper .post-item .post-item-inner:hover::before {
    width: 300px;
    height: 300px;
}

.services.style-2 .section-wrapper .post-item .post-item-inner:hover {
    transform: translateY(-8px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 25px 70px rgba(0, 0, 0, 0.08),
        0 35px 100px rgba(255, 107, 53, 0.15);
    background: rgba(255, 255, 255, 1);
}

.services.style-2 .section-wrapper .post-item .post-item-inner .post-thumb {
    padding: 0;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .services.style-2 .section-wrapper .post-item .post-item-inner .post-thumb {
        width: 25%;
        padding-right: 20px;
        margin-bottom: 0;
        min-height: auto;
    }
}

.services.style-2 .section-wrapper .post-item .post-item-inner .post-thumb img {
    display: inline-block;
    max-width: 64px;
    max-height: 64px;
    width: auto;
    height: auto;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: grayscale(0.2);
}

.services.style-2 .section-wrapper .post-item .post-item-inner:hover .post-thumb img {
    transform: scale(1.1) rotate(5deg);
    filter: grayscale(0);
}

.services.style-2 .section-wrapper .post-item .post-item-inner .post-content {
    text-align: center;
    flex: 1;
}

@media (min-width: 992px) {
    .services.style-2 .section-wrapper .post-item .post-item-inner .post-content {
        width: 75%;
        text-align: left;
    }
}

.services.style-2 .section-wrapper .post-item .post-item-inner .post-content h5 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.services.style-2 .section-wrapper .post-item .post-item-inner .post-content h5::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B35, #19b3b6);
    transition: all 0.4s ease;
}

@media (min-width: 992px) {
    .services.style-2 .section-wrapper .post-item .post-item-inner .post-content h5::after {
        left: 0;
        transform: translateX(0);
    }
}

.services.style-2 .section-wrapper .post-item .post-item-inner:hover .post-content h5 {
    color: #FF6B35;
}

.services.style-2 .section-wrapper .post-item .post-item-inner:hover .post-content h5::after {
    width: 60px;
}

.services.style-2 .section-wrapper .post-item .post-item-inner .post-content p {
    color: #222;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.services.style-2 .section-wrapper .post-item .post-item-inner:hover .post-content p {
    color: #333;
    transform: translateY(-2px);
}

/* Enhanced section header for style-2 */
.services.style-2 .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services.style-2 .section-header .cap-text {
    display: inline-block !important;
    padding: 5px 12px !important;
    background-color: #D4E3E3 !important;
    color: #4A7C7C !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 50px !important;
    margin-bottom: 10px !important;
    white-space: nowrap !important;
    line-height: normal !important;
}

.services.style-2 .section-header .cap-text::after {
    display: none;
}

.services.style-2 .section-header .sec-text {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #1f2e2e !important;
    margin-bottom: 12px !important;
    line-height: 1.1 !important;
    padding-bottom: 0 !important;
}

.services.style-2 .section-header .sec-text .highlight-orange {
    background: linear-gradient(90deg, #FF6B35, #ff8a65, #FF6B35);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.services.style-2 .section-header .sec-text .highlight-orange::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 107, 53, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.services.style-2 .section-header .sec-sub-text {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #5f6c7b;
    margin-bottom: 8px;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive adjustments for services style-2 */

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .services.style-2 .section-header .cap-text {
        font-size: 14px !important;
        padding: 6px 14px !important;
    }
    
    .services.style-2 .section-header .sec-text {
        font-size: 2.5rem !important;
    }
    
    .services.style-2 .section-header .sec-sub-text {
        font-size: 1.1rem;
        max-width: 900px;
    }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .services.style-2 .section-header .cap-text {
        font-size: 13px !important;
    }
    
    .services.style-2 .section-header .sec-text {
        font-size: 2.2rem !important;
    }
    
    .services.style-2 .section-header .sec-sub-text {
        font-size: 1rem;
    }
}

/* Tablet/Small Desktop (992px - 1199px) */
@media (max-width: 1199px) {
    .services.style-2 .section-header .sec-text {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (max-width: 991px) {
    .services.style-2 {
        padding: 80px 0;
    }
    
    .services.style-2 .section-header .cap-text {
        font-size: 12px !important;
        padding: 5px 11px !important;
    }

    .services.style-2 .section-header .sec-text {
        font-size: 1.9rem !important;
        line-height: 1.2 !important;
    }
    
    .services.style-2 .section-header .sec-sub-text {
        font-size: 0.9rem;
    }

    .services.style-2 .section-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner {
        padding: 25px;
        margin: 10px 0;
        flex-direction: column;
        text-align: left;
        min-height: 250px;
        align-items: flex-start;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .content-header {
        gap: -2px;
        /* Keep negative gap on tablets */
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .post-thumb {
        width: 100%;
        margin-bottom: 15px;
        padding-right: 0;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .post-content {
        width: 100%;
        text-align: center;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .post-content h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .services.style-2 {
        padding: 70px 0;
    }
    
    .services.style-2 .section-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .services.style-2 .section-header .cap-text {
        font-size: 11px !important;
        padding: 4px 10px !important;
        letter-spacing: 0.8px !important;
    }

    .services.style-2 .section-header .sec-text {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }
    
    .services.style-2 .section-header .sec-sub-text {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .post-thumb svg {
        width: 28px;
        height: 28px;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .content-header {
        gap: -1px;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .post-thumb img {
        max-width: 56px;
        max-height: 56px;
    }
}

@media (max-width: 575px) {
    .services.style-2 {
        padding: 60px 0;
    }

    .services.style-2 .section-header .cap-text {
        font-size: 10px !important;
        padding: 4px 10px !important;
        letter-spacing: 0.5px !important;
    }
    
    .services.style-2 .section-header .sec-text {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    .services.style-2 .section-header .sec-sub-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner {
        padding: 20px;
        margin: 5px 0;
        min-height: 220px;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .post-content h5 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .services.style-2 .section-wrapper .post-item .post-item-inner .post-content p {
        font-size: 14px;
        line-height: 20px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .services.style-2 {
        padding: 50px 0;
    }
    
    .services.style-2 .section-header {
        margin-bottom: 40px;
    }
    
    .services.style-2 .section-header .cap-text {
        font-size: 9px !important;
        padding: 3px 8px !important;
        letter-spacing: 0.3px !important;
    }
    
    .services.style-2 .section-header .sec-text {
        font-size: 1.3rem !important;
        line-height: 1.2 !important;
        margin-bottom: 10px !important;
    }
    
    .services.style-2 .section-header .sec-sub-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .services.style-2 .section-wrapper {
        gap: 12px;
    }
    
    .services.style-2 .section-wrapper .post-item .post-item-inner {
        padding: 18px;
        min-height: 200px;
    }
    
    .services.style-2 .section-wrapper .post-item .post-item-inner .post-content h5 {
        font-size: 16px;
        line-height: 22px;
    }
    
    .services.style-2 .section-wrapper .post-item .post-item-inner .post-content p {
        font-size: 13px;
        line-height: 18px;
    }
}

/* Additional utility classes for services sections */
.padding-tb {
    padding: 100px 0;
}

.pb-sm-0 {
    padding-bottom: 0;
}

@media (max-width: 575px) {
    .padding-tb {
        padding: 60px 0;
    }

    .pb-sm-0 {
        padding-bottom: 0;
    }
}

/* Enhanced animation classes */
@keyframes cardFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.services.style-2 .post-item {
    animation: cardFadeInUp 0.8s ease-out both;
}

.services.style-2 .post-item:nth-child(1) {
    animation-delay: 0.1s;
}

.services.style-2 .post-item:nth-child(2) {
    animation-delay: 0.2s;
}

.services.style-2 .post-item:nth-child(3) {
    animation-delay: 0.3s;
}

.services.style-2 .post-item:nth-child(4) {
    animation-delay: 0.4s;
}

.services.style-2 .post-item:nth-child(5) {
    animation-delay: 0.5s;
}

.services.style-2 .post-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* Brand Protection card orange background - Updated selector */
.services.style-2 .section-wrapper .post-item:nth-child(2) .post-item-inner {
    background: linear-gradient(135deg, #FF6B35 0%, #ff8556 100%) !important;
    color: #fff !important;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3), 0 15px 50px rgba(255, 107, 53, 0.2) !important;
    border: 1px solid rgba(255, 107, 53, 0.3) !important;
}

.services.style-2 .section-wrapper .post-item:nth-child(2) .post-item-inner .post-content h5 {
    color: #fff !important;
}

.services.style-2 .section-wrapper .post-item:nth-child(2) .post-item-inner .post-content p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.services.style-2 .section-wrapper .post-item:nth-child(2) .post-item-inner .post-thumb svg path,
.services.style-2 .section-wrapper .post-item:nth-child(2) .post-item-inner .post-thumb svg circle,
.services.style-2 .section-wrapper .post-item:nth-child(2) .post-item-inner .post-thumb svg rect {
    fill: #fff !important;
    stroke: #fff !important;
}

.services.style-2 .section-wrapper .post-item:nth-child(2) .post-item-inner:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4), 0 25px 60px rgba(255, 107, 53, 0.3) !important;
    background: linear-gradient(135deg, #FF6B35 0%, #ff7a45 100%) !important;
}

/* Ensure the title underline effect works with white text */
.services.style-2 .section-wrapper .post-item:nth-child(2) .post-item-inner .post-content h5::after {
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8)) !important;
}

/* ====================================== Our Associations Carousel Section ===================================== */
.associations-carousel-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.associations-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZmlsdGVyIGlkPSJub2lzZSI+PGZlVHVyYnVsZW5jZSB0eXBlPSJmcmFjdGFsTm9pc2UiIGJhc2VGcmVxdWVuY3k9IjAuOSIgbnVtT2N0YXZlcz0iNCIgc3RpdGNoVGlsZXM9InN0aXRjaCIvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNub2lzZSkiIG9wYWNpdHk9IjAuMDUiLz48L3N2Zz4=');
    background-size: 200px 200px;
    opacity: 0.04;
    pointer-events: none;
}

.associations-carousel-section .container {
    position: relative;
    z-index: 1;
}

.associations-carousel-section .section-header {
    margin-bottom: 40px;
    text-align: center;
}

/* Badge Pill - Matching About/Services Section */
.associations-carousel-section .badge-pill-assoc {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--ip-teal-light);
    color: var(--ip-teal);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 10px;
}

/* Main Heading - Matching About/Services Section */
.associations-carousel-section .main-heading-assoc {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ip-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Orange Highlight with Underline - Matching About Section */
.associations-carousel-section .highlight-text-assoc {
    color: var(--ip-orange);
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.associations-carousel-section .highlight-text-assoc::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(255, 107, 53, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.associations-intro {
    max-width: 900px;
    margin: 0 auto 0 auto;
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
}

/* Marquee Wrapper */
.associations-marquee-wrapper {
    margin: 60px 0 50px;
    position: relative;
}

.marquee-row {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

/* Fade edges for marquee */
.marquee-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.marquee-row::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.marquee-track {
    display: flex;
    width: fit-content;
}

/* Scroll Right Animation */
@keyframes marquee-scroll-right {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Scroll Left Animation (Reverse) */
@keyframes marquee-scroll-left {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.marquee-scroll-right {
    animation: marquee-scroll-right 40s linear infinite;
}

.marquee-scroll-left {
    animation: marquee-scroll-left 45s linear infinite;
}

/* Pause on hover */
.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 20px;
}

.association-marquee-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px 25px;
    width: 240px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.association-marquee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 124, 124, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.association-marquee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 137, 123, 0.12);
    border-color: rgba(0, 137, 123, 0.2);
}

.association-marquee-card:hover::before {
    opacity: 1;
}

.association-marquee-card img {
    width: 100%;
    height: 100%;
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
    object-position: center;
    filter: grayscale(30%) brightness(1.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    mix-blend-mode: multiply;
}

.association-marquee-card:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.08);
    mix-blend-mode: normal;
}

/* Footer Text */
.associations-footer-text {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    color: var(--text-grey);
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 400;
    font-style: italic;
}

/* Responsive Design */
/* Extra Large Desktops (1920px and above) */
@media (min-width: 1920px) {
    .associations-carousel-section {
        padding: 100px 0;
    }

    .associations-intro {
        font-size: 18px;
        line-height: 32px;
    }

    .association-marquee-card {
        padding: 20px 30px;
        width: 280px;
        height: 120px;
    }

    .association-marquee-card img {
        max-width: 210px;
        max-height: 85px;
    }

    .associations-footer-text {
        font-size: 17px;
        line-height: 30px;
    }
}

/* Large Desktops (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .associations-intro {
        font-size: 17px;
        line-height: 30px;
    }

    .association-marquee-card {
        padding: 18px 28px;
        width: 260px;
        height: 110px;
    }

    .association-marquee-card img {
        max-width: 195px;
        max-height: 78px;
    }
}

/* Standard Desktops & Laptops (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .association-marquee-card {
        padding: 16px 26px;
        width: 250px;
        height: 105px;
    }

    .association-marquee-card img {
        max-width: 188px;
        max-height: 73px;
    }
}

/* Tablets & Small Laptops (992px - 1199px) */
@media (max-width: 1199px) {
    .associations-intro {
        font-size: 15px;
        line-height: 26px;
    }

    .association-marquee-card {
        padding: 15px 22px;
        width: 220px;
        height: 95px;
    }

    .association-marquee-card img {
        max-width: 170px;
        max-height: 65px;
    }

    .associations-marquee-wrapper {
        margin: 50px 0 40px;
    }
}

/* Tablets Portrait (768px - 991px) */
@media (max-width: 991px) {
    .associations-carousel-section {
        padding: 70px 0;
    }

    .association-marquee-card {
        padding: 14px 20px;
        width: 200px;
        height: 90px;
    }

    .association-marquee-card img {
        max-width: 155px;
        max-height: 60px;
    }

    .marquee-item {
        padding: 0 15px;
    }

    .marquee-row::before,
    .marquee-row::after {
        width: 100px;
    }

    .associations-footer-text {
        font-size: 14px;
        line-height: 24px;
    }

    .marquee-scroll-right {
        animation: marquee-scroll-right 35s linear infinite;
    }

    .marquee-scroll-left {
        animation: marquee-scroll-left 38s linear infinite;
    }
}

/* Mobile Landscape & Small Tablets (576px - 767px) */
@media (max-width: 767px) {
    .associations-carousel-section {
        padding: 60px 0;
    }

    .association-marquee-card {
        padding: 13px 18px;
        width: 180px;
        height: 85px;
    }

    .association-marquee-card img {
        max-width: 140px;
        max-height: 55px;
    }

    .marquee-item {
        padding: 0 12px;
    }

    .marquee-row::before,
    .marquee-row::after {
        width: 80px;
    }

    .associations-intro,
    .associations-footer-text {
        font-size: 14px;
        line-height: 24px;
        padding: 0 15px;
    }

    .associations-carousel-section .section-header {
        margin-bottom: 40px;
    }

    .associations-carousel-section .section-header h2 {
        font-size: 32px;
    }

    .marquee-row {
        margin-bottom: 20px;
    }

    .marquee-scroll-right {
        animation: marquee-scroll-right 30s linear infinite;
    }

    .marquee-scroll-left {
        animation: marquee-scroll-left 33s linear infinite;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .associations-carousel-section {
        padding: 50px 0;
    }

    .association-marquee-card {
        padding: 12px 15px;
        width: 160px;
        height: 75px;
    }

    .association-marquee-card img {
        max-width: 125px;
        max-height: 50px;
    }

    .marquee-item {
        padding: 0 10px;
    }

    .marquee-row::before,
    .marquee-row::after {
        width: 60px;
    }

    .associations-intro,
    .associations-footer-text {
        font-size: 13px;
        line-height: 22px;
        padding: 0 15px;
    }

    .associations-carousel-section .section-header h2 {
        font-size: 28px;
    }
    .associations-carousel-section .main-heading-assoc {
        white-space: normal;
        font-size: 1.5rem;
        line-height: 1.3;
    }
    .associations-carousel-section .badge-pill-assoc {
        font-size: 10px;
        padding: 4px 10px;
        letter-spacing: 0.5px;
    }

    .associations-marquee-wrapper {
        margin: 40px 0 30px;
    }

    .marquee-row {
        margin-bottom: 18px;
    }

    .marquee-scroll-right {
        animation: marquee-scroll-right 25s linear infinite;
    }

    .marquee-scroll-left {
        animation: marquee-scroll-left 28s linear infinite;
    }

    .association-marquee-card:hover {
        transform: translateY(-5px) scale(1.03);
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .association-marquee-card {
        padding: 10px 12px;
        width: 140px;
        height: 70px;
    }

    .association-marquee-card img {
        max-width: 110px;
        max-height: 48px;
    }

    .marquee-item {
        padding: 0 8px;
    }

    .associations-carousel-section .section-header h2 {
        font-size: 22px;
    }
    .associations-carousel-section .main-heading-assoc {
        white-space: normal;
        font-size: 1.35rem;
        line-height: 1.3;
    }
    .associations-carousel-section .badge-pill-assoc {
        font-size: 9px;
        padding: 3px 8px;
        letter-spacing: 0.3px;
    }

    .associations-intro,
    .associations-footer-text {
        font-size: 12px;
        line-height: 20px;
    }
}

/* Header Get in Touch Button - Match Slider Button Style */
.btn-get-in-touch {
    background-color: #4A7C7C;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(74, 124, 124, 0.2);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-get-in-touch:hover {
    background-color: #3a6565;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(74, 124, 124, 0.3);
    color: white;
}

/* Mobile Get in Touch Button */
.btn-mobile-get-in-touch {
    background-color: #4A7C7C !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(74, 124, 124, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-mobile-get-in-touch:hover {
    background-color: #3a6565 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(74, 124, 124, 0.3);
    color: white !important;
}