* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

@font-face {
    font-family: 'Hilden';
    font-style: normal;
    font-weight: normal;
    src: local('Hilden'), url('../font/Hilden/Hilden/Hilden.woff2') format('woff2');
}

@font-face {
    font-family: 'Impact';
    font-style: normal;
    font-weight: normal;
    src: local('Impact'), url('../font/impact/Impacted.woff') format('woff');
}

:root {
    --blue: #0798AD;
    /* --blue: #0695a6; */
    /* --blue: #0794a6; */
    /* --blue: #619bb6; */
    --white: #fff;
    --black: #000;
    --light-blue: #bad7e1;
    --gradient: linear-gradient(135deg, #009cad 0%, #191933 100%);
}

:root {
    /* --title-font: 'norger';
    font-family: var(--title-font);
    --para-font: 'Cormorant Garamond';
    font-family: var(--para-font);
    --sub-title-font: 'milcora';
    font-family: var(--sub-title-font); */
    --banner-font: "Sora", sans-serif;
    /* --banner-font: "Sora", sans-serif; */
    /* --banner-font: "Hilden", sans-serif; */
    font-family: var(--banner-font);
    --para-font: "Montserrat", sans-serif;
    font-family: var(--para-font);
}

a:focus {
    outline: thin dotted #333;
    outline: none;
    outline-offset: -2px;
}

a {
    text-decoration: none !important;
}

/* .row {
    align-items: center;
} */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* @font-face {
    font-family: 'norger';
    src: local('norger'), url('../fonts/norger/Norger.woff') format('woff');
}

@font-face {
    font-family: 'Cormorant Garamond';
    src: local('Cormorant Garamond'), url('../fonts/cormorant_garamond/static/CormorantGaramond-Regular.ttf') format('ttf');
}

@font-face {
    font-family: 'Milcora';
    src: local('Milcora'), url('../fonts/milcora/Milcora.woff') format('woff');
} */


/* ============== COMMON =============== */
body {
    overflow-x: hidden;
    margin: 0;
    background-color: var(--light);
    font-family: var(--para-font);
}

.title-style {
    font-family: var(--banner-font);
    font-size: 50px;
    font-weight: 600;
    /* letter-spacing: 7px; */
    color: var(--blue);
    /* color: #619bb6; */
    /* line-height: 67px; */
    padding-bottom: 15px;
    text-transform: uppercase;
}

.para-style {
    font-family: var(--para-font);
    font-size: 17px;
    line-height: 29px;
    color: #000;
    text-align: justify;
    hyphens: auto;
}

.title-bottom-line {
    width: auto;
    height: 11px;
    margin-bottom: 25px;
    filter: contrast(0.5);
}

/* ============ NAVBAR STYLING ================== */

/* =============== HEADER STYLES =============== */

.sujalaam-header {
    width: 100%;
    background: var(--blue);
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ============== Learn & Engage Dropdown (hover) ============== */
.nav {
    position: relative;
}

.nav .menu li.dropdown {
    position: relative;
}

.nav .menu li.dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    padding: 10px 0;

    list-style: none;
    margin: 0;

    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 1200;
}



.nav .menu li.dropdown .dropdown-menu li {
    margin: 0;
    padding: 0;
}

.nav .menu li.dropdown .dropdown-menu li a {
    display: block;
    width: 100%;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 500;
    color: var(--blue) !important;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
    border-radius: 6px;
}

.nav .menu li.dropdown .dropdown-menu li a:hover {
    background: rgba(97, 155, 182, 0.15);
    color: var(--blue) !important;
}

.dropdown-toggle::after {
    display: none !important;
}




.sujalaam-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 73px;
    width: auto;
    display: block;
    padding: 9px;
}

.nav .menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.nav .menu li a {
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 6px 10px;
    transition: 0.5s ease-in-out;
    font-family: var(--para-font);
    /* border-radius: 5px; */
}

.nav .menu li a:hover {
    background: var(--white);
    padding: 6px 10px;
    border-radius: 5px;
    color: var(--blue);
    transition: 0.5s ease-in-out;
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-overlay {
    display: none;
}

.dropdown-menu {
    display: none;
}

.dropdown.open .dropdown-menu {
    display: block;
}

/* 
@media (min-width: 901px) {

    .nav .menu li.dropdown:hover>.dropdown-menu,
    .nav .menu li.dropdown:focus-within>.dropdown-menu {
        display: block !important;
    }
}

@media (max-width: 900px) {

    .nav .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav .menu li {
        width: 100%;
    }

    .nav .menu li.dropdown .dropdown-menu {
        position: static;
        width: 100%;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding-left: 15px;
        background: transparent;

        display: none;
    }

    .nav .menu li.dropdown.open .dropdown-menu {
        display: block !important;
    }

    .dropdown-toggle {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }
}

 */
@media (max-width: 900px) {

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #0c4a6e;
        padding: 100px 20px 30px;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav .menu li {
        width: 100%;
    }

    .nav .menu li a {
        display: flex;
        width: 100%;
        padding: 14px 0;
        color: #fff;
    }

    /* DROPDOWN */
    .nav .menu li.dropdown .dropdown-menu {
        position: static;
        width: 100%;
        min-width: 100%;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        border-radius: 8px;
        padding: 8px 10px;
        margin-top: 5px;
        display: none;
    }

    .nav .menu li.dropdown.open .dropdown-menu {
        display: block !important;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        cursor: pointer;
    }

    /* OVERLAY */
    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        z-index: 999;
        display: block;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* HAMBURGER */
    .hamburger {
        display: flex;
    }
}

/* ============== WEBSITE PRELOADER STYLES ============== */
#website-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
}

.preloader-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#preloader-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.preloader-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Fallback gradient background - visible when no video is set */
    /* background: linear-gradient(135deg, #009cad 0%, #191933 100%); */
}

.preloader-logo-container {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255,255,255,0.95); */
    /* padding: 20px; */
    /* border-radius: 10px; */
    /* backdrop-filter: blur(10px); */
}

.preloader-logo {
    width: 300px;
    height: auto;
    animation: preloaderLogoPulse 2s ease-in-out;
    /* filter: brightness(1.3) drop-shadow(0 2px 10px rgba(255,255,255,0.8)); */
    opacity: 1 !important;
    border-radius: 5px;
}

/* Logo pulse animation */
@keyframes preloaderLogoPulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#website-preloader.preloader-hide {
    animation: preloaderFadeOut 0.5s ease-out forwards;
}

@keyframes preloaderFadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

#website-preloader.preloader-hidden {
    display: none;
}

@media (max-width: 768px) {
    .preloader-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .preloader-logo {
        max-width: 120px;
    }
}

/* Mobile Menu */
@media (max-width: 900px) {
    .sujalaam-container {
        height: 74px;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85%;
        height: 100vh;
        background: var(--golden);
        z-index: 1050;
        padding: 0px;
        transition: right 0.35s ease;
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.12);
        background: var(--blue);
        height: fit-content;
        display: block !important;
    }

    .nav.active {
        right: 0;
        margin-top: 19%;
    }

    .nav .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav .menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav .menu li a {
        display: block;
        width: 100%;
        padding: 16px 0;
        font-size: 17px;
        text-align: center;
        color: #fff !important;
    }

    .nav .menu li.dropdown .dropdown-menu li a {
        color: #fff !important;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0);
        z-index: 1040;
        display: none;
    }

    .menu-overlay.active {
        display: block;
    }

    .nav .menu li a:hover {
        background: #0798ad;
        padding: 6px 10px;
        border-radius: 5px;
        color: var(--blue);
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    body.menu-open {
        overflow: hidden;
    }

    .sujalaam-container {
        max-width: 100%;
    }

    .logo img {
        max-height: 66px;
    }

}




@media (min-width: 901px) {

    .nav .menu li.dropdown:hover>.dropdown-menu,
    .nav .menu li.dropdown:focus-within>.dropdown-menu {
        display: block !important;
    }

    .nav .menu li.dropdown .dropdown-menu li a {
        color: var(--blue) !important;
    }
}

@media (max-width: 900px) {
    .nav .menu li.dropdown .dropdown-menu {
        display: none !important;
    }

    .nav .menu li.dropdown:hover>.dropdown-menu,
    .nav .menu li.dropdown:focus-within>.dropdown-menu {
        display: block !important;
    }
}











/* ============== SUJALAAM BANNER SLIDER ============== */


.sujalaam-banner- {
    position: relative;
    width: 100vw;
    min-height: 930px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-blue);
}

.sujalaam-banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.sujalaam-banner-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(25, 25, 51, 0.5); */
    z-index: 1;
}

.sujalaam-banner-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    z-index: 2;
}

.sujalaam-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.sujalaam-banner-slider {
    position: relative;
    width: 100%;
    text-align: center;
    align-items: center;
}

.sujalaam-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-in-out;
}

.sujalaam-banner-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.sujalaam-banner-title {
    font-family: var(--banner-font);
    font-size: 14rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-letter {
    display: inline-block;
    min-width: 0.3em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sujalaam-banner-subtitle {
    /* font-family: var(--sub-title-font); */
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-family: var(--banner-font);
}

.sujalaam-banner-dots {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.sujalaam-banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.sujalaam-banner-dot.active {
    background: var(--blue);
    transform: scale(1.3);
    border-color: var(--white);
}

.sujalaam-banner-dot:hover {
    background: var(--blue);
}

@media (max-width: 1024px) {
    .sujalaam-banner-title {
        font-size: 2.8rem;
    }

    .sujalaam-banner-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .sujalaam-banner-title {
        font-size: 2.2rem;
    }

    .sujalaam-banner-subtitle {
        font-size: 1.1rem;
    }

    .sujalaam-banner- {
        min-height: 530px;
    }
}

@media (max-width: 480px) {
    .sujalaam-banner-title {
        font-size: 1.8rem;
    }

    .sujalaam-banner-subtitle {
        font-size: 1rem;
    }
}


/* ================== ABOUT US VIDEO BACKGROUND =================== */

.sujalaam-about-us {
    position: relative;
    width: 100%;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-blue);
}

.sujalaam-about-us-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.sujalaam-about-us-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(25, 25, 51, 0.6); */
    z-index: 1;
}

.sujalaam-about-us .row {
    position: relative;
    z-index: 2;
}


/* ================== HOME - ABOUT US =================== */

.fix-padding {
    max-width: 80%;
    margin: 0 auto;
}

.whole-body {
    z-index: 1;
}

/* ================== FULL PAGE BACKGROUND IMAGE =================== */
.page-body-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* background-image: url('../images/rain.png'); */
    background-repeat: repeat;
    background-size: cover;
    background-position: center center;
    pointer-events: none;
}

/* Water dropping/falling animation */
/* .page-body-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/rain.png');
    background-repeat: repeat;
    background-size: 500px 500px;
    animation: rainDrops 5.5s linear infinite;
        opacity: 0.2;
    pointer-events: none;
} */

@keyframes rainDrops {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0;
    }
}

.page-body-image img {
    display: none;
}

/* ================== COUNTER SECTION STYLING ================== */

.sujalaam-counter-section {
    width: 100%;
    padding: 100px 5%;
    /* background-color: #f9f9f9; */
}

.counter-box {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* align-items: center; */
    margin: 0 -15px;
}

.counter-div {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    border: 1px solid #0798ad12;
    height: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.counter-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 337px;
    padding: 30px 20px;
    /* background-color: #ffffff; */
    border-radius: 15px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.counter-text.counter-bg-image {
    /* background-image: url(../images/home/counter-bg.png); */
    /* background-size: contain; */
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    /* width: 250px; */
    height: 150px;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    text-align: center;
    /* margin-bottom: 30px; */
    /* background-color: var(--blue); */
    border-radius: 0px;
    margin-bottom: 58px;
    gap: 20px;
    padding: 0px;
    padding-top: 60px;
}

/* .counter-text.counter-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0798ad;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
} */

.counter-text img {
    /* position: relative;
    padding-bottom: 20px;
    background: var(--blue);
    padding: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    position: relative;
    padding-bottom: 20px;
    background: #fff;
    padding: 5px;
    object-fit: none;
    border-radius: 50%;
    height: 99px;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
    border-bottom: 2px solid var(--blue);
}

.counter-text.counter-bg-image h1,
.counter-text.counter-bg-image span {
    position: relative;
    z-index: 2;
    color: #191930;
    font-weight: 900;
    font-size: 43px;
    font-family: "Impact", sans-serif;
    font-family: var(--banner-font);
}

.counter-text h1 {
    font-size: 6rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    font-family: var(--banner-font);
}

.counter-div p {
    font-weight: 600;
    font-family: var(--banner-font);
    /* color: #619bb6; */
    color: var(--blue);
    /* letter-spacing: 3px; */
    font-size: 27px;

}

.counter-text h1 span {
    font-size: 2rem;
    color: var(--blue);
    vertical-align: super;
}

.counter-text p {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    margin: 10px 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* .bubble-1 {
    animation: bubble-top-bottom 3s linear infinite;
}

.bubble-2 {
    animation: bubble-top-bottom 5s linear infinite;
}

.bubble-3 {
    animation: bubble-top-bottom 6s linear infinite;
}

.bubble-4 {
    animation: bubble-top-bottom 4s linear infinite;
} */

@keyframes bubble-top-bottom {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media(max-width:1700px) {
    .sujalaam-counter-section {
        padding: 150px 0% 60px 15px;
    }

    .counter-div p {
        font-size: 24px;
    }
}

@media(max-width:1200px) {
    .counter-div p {
        font-size: 18px;
    }

    .sujalaam-counter-section {
        padding: 50px 0% 60px 15px;
    }

    .counter-text.counter-bg-image {
        min-height: 232px;
    }

    .counter-text.counter-bg-image h1,
    .counter-text.counter-bg-image span {
        font-size: 35px;
    }

    .counter-text.counter-bg-image h1,
    .counter-text.counter-bg-image span {
        font-size: 34px;
    }

    .counter-text.counter-bg-image {
        margin-bottom: 5px;
        padding-top: 0px;
    }

    .sujalaam-counter-section {
        padding: 0px 0% 50px 20px;
    }
}

@media (max-width: 1024px) {
    .sujalaam-counter-section {
        padding: 0px 0% 50px;
    }

    .counter-text {
        max-width: 220px;
        padding: 25px 15px;
    }

    .counter-text h1 {
        font-size: 2.5rem;
    }

    .counter-text h1 span {
        font-size: 1.8rem;
    }

    .counter-text.counter-bg-image {
        min-height: 227px;
    }

    .counter-text.counter-bg-image h1,
    .counter-text.counter-bg-image span {
        font-size: 39px;
    }

    .counter-div p {
        font-size: 18px;
        padding-top: 20px;
    }
}


@media(max-width:900px) {
    .counter-div p {
        font-size: 15px;
    }


    .counter-div {
        padding: 20px 0px;
    }

    .counter-text.counter-bg-image h1,
    .counter-text.counter-bg-image span {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .sujalaam-counter-section {
        padding: 50px 3% 40px;
    }

    .counter-box {
        justify-content: center;
    }

    .counter-div {
        padding: 15px 10px;
    }

    .counter-text {
        max-width: 100%;
        padding: 20px 15px;
    }

    .counter-text h1 {
        font-size: 2rem;
    }

    .counter-text h1 span {
        font-size: 1.5rem;
    }

    .counter-text p {
        font-size: 0.9rem;
    }

    .counter-text.counter-bg-image {
        min-height: fit-content;
        margin-bottom: 0px;
        padding-top: 0px;
    }

}


@media(max-width:714px) {
    .counter-text.counter-bg-image {
        min-height: fit-content;
        margin-bottom: 0px;
        padding-top: 0px;
    }

    .counter-div {
        padding: 15px 0px;
    }
}

@media (max-width: 576px) {
    .sujalaam-counter-section {
        padding: 30px 15px;
    }

    .counter-div {
        padding: 10px;
    }

    .counter-text {
        padding: 20px 10px;
        min-height: auto;
    }

    .counter-text h1 {
        font-size: 1.8rem;
    }

    .counter-text h1 span {
        font-size: 1.3rem;
    }

    .counter-text p {
        font-size: 0.8rem;
        margin-top: 8px;
    }

    .counter-text.counter-bg-image h1,
    .counter-text.counter-bg-image span {
        font-size: 40px;
    }

}

@media(max-width:462px) {
    .counter-div {
        padding: 20px 50px;
    }

    .counter-text.counter-bg-image {
        min-height: fit-content;
    }

    .sujalaam-counter-section {
        padding: 0px 10px;
        /* margin-top: -35%; */
    }
}

@media (max-width: 480px) {
    .sujalaam-counter-section {
        padding: 25px 10px;
    }

    .counter-text {
        padding: 15px 10px;
    }

    .counter-text h1 {
        font-size: 1.5rem;
    }

    .counter-text h1 span {
        font-size: 1.1rem;
    }

    .counter-text p {
        font-size: 0.75rem;
    }

    .counter-box {
        flex-direction: column;
    }

    .counter-box .col-md-3 {
        width: 100%;
    }
}


@media(max-width:346px) {
    .counter-div {
        padding: 0px 25px;
    }
}

@media(max-width:250px) {
    .counter-div {
        padding: 0px 0px;
    }

    .counter-text.counter-bg-image {
        min-height: 234px;
    }
}


.sujalaam-video-section {
    position: relative;
}


.sujalaam-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.sujalaam-banner-,
.sujalaam-about-us {
    position: relative;
    z-index: 1;
}

.sujalaam-banner-video-overlay,
.sujalaam-about-us-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}


.sujalaam-banner-container,
.sujalaam-about-us .container {
    position: relative;
    z-index: 2;
}


/* ===================== STORY STYLE ==================== */

.story-bg {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background-image: url('../images/home/counter-bottom.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.home-tagline img {
    padding: 50px;
    height: 550px;
    margin-bottom: 60px;
}

.story-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home-story-tagline-box {
    padding: 50px;
}

.home-story-tagline-box img {
    width: 100%;
}

.home-story-tagline-box video {
    width: 100%;
    border: 10px solid #f2f7fa;
    box-shadow: rgb(149 157 165 / 93%) 0px 8px 24px;
}

.story-text {
    position: relative;
    z-index: 2;
    text-align: center;
    /* max-width: 60%; */
    margin: 10% auto auto auto;
    color: #000000;
}

/* .story-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    font-family: var(--banner-font);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.story-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
    font-weight: 500;
} */

.story-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .story-bg {
        min-height: 550px;
        padding: 60px 4%;
    }

    /* .story-text {
        max-width: 75%;
    } */

    .story-text h1 {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .story-text p {
        font-size: 1.15rem;
    }

    /* .story-text {
        max-width: 70%;
    } */
}

@media (max-width: 768px) {
    .story-bg {
        min-height: 400px;
        padding: 50px 3%;
    }

    /* .story-text {
        max-width: 85%;
    } */

    .story-text h1 {
        font-size: 36px;
        letter-spacing: 1px;
        /* margin-bottom: 20px; */
    }

    .story-text p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

}

@media (max-width: 576px) {
    .story-bg {
        min-height: 450px;
        padding: 40px 15px;
    }

    .story-text {
        max-width: 100%;
        margin: 19% auto auto auto;
    }

    .story-text h1 {
        font-size: 30px;
        padding-bottom: 0px;
    }

    .story-text p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .story-bg {
        min-height: 400px;
        padding: 35px 12px;
    }

    .story-text h1 {
        font-size: 29px;
        margin-bottom: 12px;
    }

    .story-text p {
        font-size: 10px;
        line-height: 1.7;
        margin-bottom: 12px;
    }

    .story-text {
        margin: 19% auto auto auto;
    }
}

/* ============= FEATURE SECTION =================== */

.sujalaam-feature-section {
    width: 100%;
    padding: 80px 5%;
    background: radial-gradient(circle at center, #ffffff 0%, #feffff 60%, #e5f0f7c7 100%);
}

.feature-container {
    margin: 0 auto;
    padding-top: 60px;
}

.feature-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 30px; */
    margin-bottom: 30px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-card {
    position: relative;
    flex: 1;
    min-width: 500px;
    max-width: 570px;
    height: 376px;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.1;
}



/* Content Overlay */
.feature-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 30px 20px;
    text-align: center;
    max-width: 77%;
    margin: 0 auto;
}

/* Icon Styles */
.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border-radius: 50%;
    /* margin-bottom: 20px; */
    transition: background 0.3s ease, transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 30px;
    color: var(--white);
}

/* Title Styles */
.feature-year {
    font-size: 52px;
    font-weight: bold;
    color: var(--blue);
    margin-bottom: 0px;
    font-family: var(--banner-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-title {
    font-size: 38px;
    font-weight: bold;
    font-family: var(--banner-font);
    letter-spacing: 2px;
    color: var(--blue);
}

.feature-text {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    font-family: var(--para-font);
    font-size: 15px;
    line-height: 29px;
    color: #000;
}

.feature-card-wide {
    flex: 1;
    min-width: 500px;
    max-width: 570px;
}

/* ============ RESPONSIVE STYLES ============ */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .sujalaam-feature-section {
        padding: 60px 4%;
    }

    .feature-row {
        gap: 20px;
    }

    .feature-card {
        min-width: 250px;
        height: 280px;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 26px;
    }
}

/* Large Mobile (768px) */
@media (max-width: 768px) {
    .sujalaam-feature-section {
        padding: 50px 3%;
    }

    .feature-row {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 100%;
        max-width: 100%;
        height: 260px;
    }

    .feature-card-wide {
        max-width: 100%;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .feature-text {
        font-size: 0.95rem;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .feature-icon i {
        font-size: 24px;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    .sujalaam-feature-section {
        padding: 40px 15px;
    }

    .feature-row {
        margin-bottom: 20px;
    }

    .feature-card {
        height: 240px;
        border-radius: 12px;
    }

    .feature-content {
        padding: 20px 15px;
    }

    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .feature-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .feature-icon i {
        font-size: 22px;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .sujalaam-feature-section {
        padding: 30px 12px;
    }

    .feature-card {
        height: 220px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-text {
        font-size: 0.85rem;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .feature-icon i {
        font-size: 20px;
    }
}

/* ============= APPROCH SECTION =================== */


.approch-container {
    margin: 0 auto;
    padding: 70px 5%;
    background: radial-gradient(circle at center, #ffffff 0%, #feffff 60%, #e5f0f7c7 100%);
}

.approch-row-box {
    padding: 70px 0px 0px 0px;
    align-items: center;
}

.approch-points-box {
    display: flex;
    gap: 32px;
    justify-content: left;
    padding-top: 24px;
    border-bottom: 1px solid #000;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #ffffff, #71aed0) 1;
    background-image: url('../images/home/approch-bg.png');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: 100px auto;
}

.approch-icon {
    font-family: var(--banner-font);
}

.approch-icon i {
    font-size: 60px;
    color: var(--white);
}

.approch-text-box h2 {
    font-size: 28px;
    font-weight: 500;
    font-family: var(--banner-font);
    color: var(--blue);
}

.approch-text-box p {
    font-size: 15px;
}



@media(max-width:1500px) {
    .approch-container {

        padding: 70px 2%;

    }

    .approch-text-box p {
        font-size: 13px;
    }

    .approch-text-box h2 {
        font-size: 23px;
    }

    .cloud-approch {
        width: 430px;
    }
}

@media(max-width:1200px) {
    .cloud-approch {
        width: 350px;
    }

    .approch-text-box p {
        font-size: 11px;
        line-height: 22px;
    }

}

@media(max-width:1000px) {
    .approch-text-box h2 {
        font-size: 23px;
    }
}

@media(max-width:950px) {
    .approch-row-box {
        flex-direction: column;
    }

    .approch-row-box .col-md-4 {
        width: 90%;
    }

    .approch-row-box {
        padding: 0px 0px 0px 0px;
    }
}

@media(max-width:500px) {
    .approch-row-box .col-md-4 {
        width: 96%;
    }

    .approch-text-box h2 {
        font-size: 22px;
    }
}

/* ============= FOOTER STYLES ============= */



footer {
    /* background: linear-gradient(135deg, #191933 0%, #2e3b55 100%); */
    color: #fff;
    padding: 100px 0 0px;
    /* box-shadow: 0 -4px 20px rgba(0,0,0,0.3); */
}

.footer-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}

/* .footer-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
} */

.footer-logo-box {
    text-align: left;
    margin-bottom: 20px;

}

.footer-logo-box img {
    max-height: 227px;
    /* max-height: 80px; */
    width: auto;
    /* filter: brightness(0) invert(1); */
}

.footer-title {
    font-family: var(--banner-font);
    font-size: 26px;
    font-weight: 500;
    color: #000000;
    /* text-transform: uppercase; */
    /* letter-spacing: 2px; */
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--blue);
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-ul li {
    padding: 8px 0;
    font-size: 20px;
    transition: color 0.3s ease;
    color: var(--blue);
    font-weight: 500;
    font-family: var(--para-font);
    font-size: 17px;
}

.footer-ul li a {
    color: var(--blue);
}

.footer-ul li:hover {
    color: var(--blue);
}

.footer-contact-list li {
    padding: 5px 0px;
    font-size: 16px;
}

.footer-contact-list li i {
    color: var(--blue);
    margin-right: 12px;
    font-size: 18px;
    width: 25px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--blue);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(97, 155, 182, 0.4);
}

.footer-contact-list {
    padding: 8px 0;
    font-size: 20px;
    transition: color 0.3s ease;
    color: var(--blue);
    font-weight: 500;
    font-family: var(--para-font);

}

.footer--bottom-img {
    width: 100vw;
    z-index: -2;
    position: relative;
    margin-top: -12%;
}

.copyright-text {
    font-size: 14px;
}

@media(max-width:1500px) {
    .footer-container {
        max-width: 98%;
    }
}

@media(max-width:1200px) {
    .footer-container {
        max-width: 100%;
    }

    .footer-logo-box img {
        max-height: 180px;
    }
}

@media(max-width:1200px) {
    .footer-ql-pages {
        width: 20% !important;
    }

    .footer-ql-contact {
        width: 35% !important;
    }

    .footer-title {
        font-size: 22px;
    }

    .social-icons {
        margin-bottom: 20px;
    }
}

@media(max-width:900px) {
    .footer-logo-box img {
        max-height: 150px;
    }

    .footer-contact-list li {
        font-size: 14px;
    }

    .footer-ul li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .footer-box {
        padding: 30px 20px;
    }

    .footer-container .row>div {
        margin-bottom: 30px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-logo-box img {
        max-height: 100px;
    }

    .footer-ul li {
        font-size: 15px;
    }

    .social-icons {
        justify-content: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .footer-box .row {
        flex-direction: column;
    }

    .footer-ql-pages {
        width: 100% !important;
    }

    .footer-ql-contact {
        width: 100% !important;
    }

    footer {
        padding: 10px 0 0px;
    }

    .copyright-text {
        font-size: 10px;
    }

    .footer--bottom-img {
        margin-top: -8%;
    }

    .footer-contact-list li {
        font-size: 13px;
    }

    .footer-container {
        padding: 0 0px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0 20px;
    }

    .footer-box {
        padding: 25px 15px;
        margin: 0 10px;
    }

    .footer-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-logo-box img {
        max-height: 100px;
    }

    .footer-ul li {
        font-size: 14px;
        padding: 6px 0;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .social-icons {
        gap: 10px;
    }

    .footer--bottom-img {
        margin-top: -19%;
    }
}


/* ============= CLIENTS LOGO SECTION =============== */


.logo-container {
    padding: 70px 0px 70px;
    position: relative;
    z-index: 100;
    background: radial-gradient(circle at center, #ffffff 0%, #feffff 60%, #e5f0f7c7 100%);
}

.logo-slider {
    padding-top: 50px;
}

.track {
    display: flex;
    width: max-content;
    gap: 40px;
}

.clients-slider-left {
    padding-bottom: 40px;
}

.track img {
    width: auto;
    height: 130px;
    padding: 10px 15px;
    border-radius: 12px;
    object-fit: contain;
    flex-shrink: 0;
    /* padding: 30px; */
    /* border: 1px solid #619bb652; */
    width: 200px;
}

.left .track {
    animation: scroll-left 30s linear infinite;
}

.right .track {
    animation: scroll-right 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-30%);
    }

    100% {
        transform: translateX(0);
    }
}

@media(max-width:1600px) {
    .logo-container {
        padding: 70px 0px 0px;
    }
}

@media(max-width:1200px) {
    .logo-container {
        padding: 40px 40px 30px;
    }

    .logo-slider {
        padding-top: 28px;
    }

    .clients-slider-left {
        padding-bottom: 27px;
    }
}

@media(max-width:767px) {
    .track {
        gap: 0px;
    }

    .clients-slider-left {
        padding-bottom: 0px;
    }

    .logo-slider {
        padding-top: 0px;
    }
}

/* ================ NEW IMPACT SECTION ============= */
.os-story-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, #ffffff 0%, #feffff 60%, #e5f0f7c7 100%);
}

.os-story-container {
    max-width: 75%;
    margin: 0 auto;
    padding: 0 20px;
}

.os-story-header {
    text-align: center;
    margin-bottom: 50px;
}

.os-story-header .home-about-heading {
    font-size: 48px;
}

.os-tabs-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 50px;
}

.os-tabs-nav {
    display: flex;
    justify-content: center;
    background: var(--blue);
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 35px;
}

.os-tab-btn {
    flex: 1;
    padding: 25px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 23px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Host Grotesk", sans-serif;
    position: relative;
    font-family: "Hilden", sans-serif;
    font-style: italic;
    font-family: var(--banner-font);
    letter-spacing: 3px;
    line-height: 19px;
}

.os-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #fff;
    transition: width 0.3s ease;
}

.os-tab-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.os-tab-btn.active {
    background: rgba(255, 255, 255, 0.15);
}

.os-tab-btn.active::after {
    width: 80%;
}

.os-tab-content {
    display: none;
    padding: 50px;
    animation: fadeIn 0.5s ease;
    background: linear-gradient(0deg, #619bb67d 0%, rgb(97 155 182 / 35%) 13%, rgb(238 249 255) 65%);
}

.os-tab-content.active {
    display: block;
}

.os-content-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.story-img-box {
    width: fit-content;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-img-box img {
    width: 100%;
    border-radius: 10px;
}

.os-image-box {
    flex: 0 0 45%;
    position: relative;
}

.os-image-box img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.os-image-box img:hover {
    transform: scale(1.02);
}

.os-image-box::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-radius: 15px;
    z-index: -1;
}

.os-text-box {
    flex: 1;
    text-align: left;
}

.os-text-box h3 {
    font-size: 41px;
    color: var(--blue);
    margin-bottom: 20px;
    font-weight: 500;
    /* letter-spacing: 2px; */
    font-family: var(--banner-font);
}

.os-text-box p {
    font-family: var(--para-font);
    font-size: 15px;
    line-height: 29px;
    color: #000;
}

.os-text-box .os-year {
    display: inline-block;
    /* color: #619bb6; */
    color: var(--blue);
    font-family: var(--banner-font);
    font-size: 44px;
    font-style: italic;
    font-weight: 600;
    padding: 10px 0px;
}

.founder-container {
    padding: 100px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 30px;
    color: var(--white);
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .os-story-header .home-about-heading {
        font-size: 32px;
    }

    .os-tabs-nav {
        flex-wrap: wrap;
    }

    .os-tab-btn {
        flex: 0 0 50%;
        font-size: 14px;
        padding: 8px !important;
    }

    .os-tab-content {
        padding: 10px;
    }

    .os-content-inner {
        flex-direction: column;
        gap: 30px;
    }

    .os-image-box {
        flex: 0 0 100%;
    }

    .os-text-box h3 {
        font-size: 24px;
    }

    .os-text-box p {
        font-size: 13px;
        text-align: justify;
        hyphens: auto;
    }
}

@media (max-width: 480px) {
    .os-tab-btn {
        flex: 0 0 100%;
    }
}

@media(max-width:500px) {
    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 22px;
    }

    .approch-points-box {
        background-size: 76px auto;
    }
}


@media(max-width:1200px) {
    .os-story-container {
        max-width: 95%;
    }
}

@media(max-width:1000px) {
    .os-story-container {
        max-width: 100%;
    }

    .os-tab-content {
        padding: 30px;
    }

    .os-content-inner {
        gap: 20px;
    }

    .os-text-box .os-year {
        font-size: 38px;
    }

    .os-text-box h3 {
        font-size: 29px;
    }
}

@media(max-width:767px) {
    .os-story-container {
        max-width: 100%;
    }

    .os-tabs-wrapper {
        margin-top: 26px;
    }

    .os-story-section {
        padding: 50px 0;
    }

    .os-tab-content {
        padding: 10px;
    }
}

/* ============== NEW HEEADER ============= */


/* ============================ ABOUT US PAGE STYLING =========================== */

/* -------- ALL PAGE HEADER --------- */

.all-page-header-img-box video {
    width: 100vw;
    height: 800px;
    object-fit: cover;
    margin-top: 50px;
}

@media(max-width:1200px) {
    .all-page-header-img-box video {
        height: 500px;
    }
}

@media(max-width:1500px) {
    .all-page-header-img-box video {
        height: 500px;
    }
}

@media(max-width:767px) {
    .all-page-header-img-box video {
        height: 200px;
    }
}

/* ----------------- ABOUT  US ------------------- */

.sujalaam-home-about {
    max-width: 93% !important;
}

.home-about-section {
    position: relative;
    height: 100vh;
    padding: 50px 0px;
    background: radial-gradient(circle at center, #ffffff 0%, #feffff 60%, #e5f0f7c7 100%);
}

.home-about-container {
    position: sticky;
    top: 0;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 120px;
}

.home-about-left {
    width: 48%;
    position: relative;
    margin-top: 50px;
}

.home-about-content {
    position: relative;
    height: 200px;
}

.home-about-item {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s ease;
}

.home-about-item.active {
    opacity: 1;
    transform: translateY(0);
}

.home-about-circle {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px solid #ddd;
    overflow: hidden;
    position: relative;
}

.home-about-rotator {
    width: 100%;
    height: 100%;
    position: relative;
}

.home-about-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.home-about-image.active {
    opacity: 1;
}

.about-us-heading-box {
    text-align: center;
    margin-top: 6%;
}

.home-about-item h3 {
    color: #000000;
    font-weight: bold;
    font-family: 'Roboto Slab';
    font-size: 30px;
}


.aboutus-bottom-img {
    display: block;
    margin-left: auto;
    margin-right: 0;
    opacity: 0.2;
    margin-top: -20%;
    z-index: -2;
    position: relative;
    width: 900px;
}

@media(max-width:1500px) {
    .sujalaam-bg-video {
        width: 100vw;
        height: 100%;
    }

    /* .sujalaam-about-us {
        margin-top: -32%;
    } */
    .home-about-left {
        margin-top: 0px;
    }

    .home-about-item .title-style {
        font-size: 40px;
    }

    .home-about-item .para-style {
        font-size: 15px;
    }
}

@media(max-width:1200px) {
    .sujalaam-bg-video {
        width: 100vw;
        height: 80%;
    }

    .sujalaam-about-us {
        margin-top: -32%;
    }

    .home-about-container {
        gap: 30px;
    }

    .para-style {
        font-size: 15px;
    }

    .home-about-circle {
        width: 460px;
        height: 460px;
    }

    .home-about-circle {
        width: 460px;
        height: 460px;
        margin-top: 29%;
    }

    .home-about-left {
        margin-top: 0px;
    }
}

@media(max-width:1100px) {
    .home-about-item .para-style {
        font-size: 13px;
        line-height: 25px;
    }

    .home-about-item .title-style {
        font-size: 30px;
    }

    .home-about-item .para-style {
        font-size: 10px;
        line-height: 23px;
    }
}

@media(max-width:900px) {
    .home-about-circle {
        width: 300px;
        height: 300px;
        margin-top: 53%;
    }
}

@media(max-width:768px) {
    .home-about-container {
        gap: 0px;
    }

    .home-about-left {
        width: 97%;
        margin: 0 auto;
    }

    .aboutus-bottom-img {
        display: none;
    }

    .home-about-circle {
        width: 300px;
        height: 300px;
        margin-top: 99%;
        margin-left: 74%;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {

    .home-why-section {
        height: 350vh;
    }

    .home-why-container {
        gap: 100px;
    }

    .home-why-circle-wrapper {
        width: 480px;
        height: 480px;
    }

    .home-why-circle {
        width: 460px;
        height: 460px;
    }

}


@media (min-width: 769px) and (max-width: 1024px) {

    .home-why-section {
        height: 300vh;
    }

    .home-why-container {
        gap: 80px;
    }

    .home-why-circle-wrapper {
        width: 450px;
        height: 450px;
    }

    .home-why-circle {
        width: 430px;
        height: 430px;
    }
}

@media(max-width:900px) {
    .home-about-curve {
        display: none;
    }

    .home-why-numbers {
        display: none;
    }

    .home-why-right {
        margin-top: -12%;
    }

    .home-about-container {
        flex-direction: column;
    }

    .home-about-left {
        width: 90%;
        text-align: center;
    }

    /* .sujalaam-bg-video {
        width: 100vw;
        height: 64%;
    } */
    .sujalaam-bg-video {
        width: 100vw;
        height: 78%;
    }

    .sujalaam-about-us {
        margin-top: -50%;
    }

    .sujalaam-about-us .container {
        max-width: 94%;
    }
}

@media(max-width:800px) {

    /* .sujalaam-bg-video {
        width: 128vw;
        height: 95%;
        margin-top: 60px;
    }
        .sujalaam-banner- {
        min-height: auto;
    }
        .sujalaam-banner- {
        min-height: 300px;
    }
        .sujalaam-about-us {
        margin-top: -50%;
        padding-top: 128% !important;
    }
        .sujalaam-bg-video {
        width: 100vw;
        height: 64%;
    } */
    .sujalaam-bg-video {
        width: 123vw;
        height: 100%;
        position: relative;
        margin-top: 61px;
    }

    .sujalaam-banner- {
        min-height: 530px;
        display: none;
    }

    .sujalaam-about-us {
        margin-top: -19%;
    }

    .para-style {
        font-size: 16px;
    }
}

@media(max-width:700px) {
    .sujalaam-home-about {
        max-width: 93% !important;
        margin-top: 20%;
        margin-bottom: 0%;
    }
}

@media (min-width: 481px) and (max-width: 768px) {

    .home-why-section {
        height: auto;
        padding: 50px 5%;
    }

    .home-why-container {
        flex-direction: column;
        gap: 60px;
        height: auto;
    }

    .home-why-left,
    .home-why-right {
        width: 100%;
    }

    .home-why-circle-wrapper {
        width: 300px;
        height: 300px;
    }

    .home-why-circle {
        width: 280px;
        height: 280px;
    }

    .home-why-item h3 {
        font-size: 24px;
    }

    .home-why-item p {
        font-size: 16px;
    }
}



@media (max-width: 480px) {

    .home-why-section {
        height: auto;
        padding: 40px 5%;
    }

    .home-why-container {
        flex-direction: column;
        gap: 40px;
        height: auto;
    }

    .home-why-left,
    .home-why-right {
        width: 100%;
    }

    .home-why-circle-wrapper {
        width: 250px;
        height: 250px;
    }

    .home-why-circle {
        width: 230px;
        height: 230px;
        margin-top: -21%;
    }

    .home-why-item h3 {
        font-size: 20px;
    }

    .home-why-item p {
        font-size: 14px;
    }

    .why-us-heading-box {
        margin-top: 2%;
    }

    .sujalaam-bg-video {
        /* width: 123vw; */
        /* height: 100%; */
        /* position: relative; */
        /* margin-top: 61px; */
        object-fit: cover;
        object-position: 62% 50%;
        width: 100vw;
        max-width: none;
        height: 510px;
        position: relative;
        inset: 0%;
    }
}

@media(max-width:500px) {
    .para-style {
        font-size: 12px;
        line-height: 25px;
    }
}

/* ----------------- STORY - SECTION ------------------ */

.sujalaam-story-box {
    padding-bottom: 10%;
    background: radial-gradient(circle at center, #ffffff 0%, #feffff 60%, #e5f0f7c7 100%);
    padding-top: 6%;
}

.second-story-box .about-story-box {
    justify-content: flex-end;
}

.about-story-box {
    display: flex;
    align-items: center;
    /* margin-top: 20%; */
}

.about-story-box-right {
    margin-top: 46%;
}

.new-story-box-container {
    padding: 0% 8%;
}

.about-story-year-box {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    /* margin-top: 39%; */
}

.about-story-img-box {
    height: 568px;
    width: 500px;
}

.about-story-img-box img {
    height: 100%;
    width: 100%;
    border: 10px solid #f2f7fa;
    box-shadow: rgb(149 157 165 / 93%) 0px 8px 24px;
    position: relative;
    z-index: 2;
}

.about-story-content-box {
    background: #000;
    margin-left: -70px;
    padding: 50px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    background-color: #fff;
    width: 500px;

    border: 4px solid #f0f6f9;
    position: relative;
    z-index: 3;
}

.about-story-title {
    text-align: center;
}

.about-story-year-box h1 {
    color: #d1e5ee;
    font-weight: 900;
    font-size: 100px;
    font-family: "Impact", sans-serif;
    margin-left: -17%;
    -webkit-text-stroke: 2px var(--blue);
    /* -webkit-text-stroke: 2px #619bb6; */
    opacity: 0.4;
    position: relative;
    z-index: -1;
}

.about-story-box-bottom {
    margin-left: 31%;
    margin-top: 26%;
}

.about-story-content-box h1 {
    font-size: 30px;
    font-weight: 500;
    font-family: var(--banner-font);
    color: var(--blue);
}

.about-story-content-box p {
    font-family: var(--para-font);
    font-size: 15px;
    line-height: 29px;
    color: #000;
    text-align: left;
}

.story-bottom-box {
    background: radial-gradient(circle at center, #ffffff 0%, #feffff 60%, #e5f0f7c7 100%);
    margin-top: -7%;
}

.story-bottom-row {
    align-items: top;
}

.story-bottom-img {
    opacity: 0.2;
    /* margin-top: -10%; */
    margin-bottom: -9%;
}

@media(max-width:1600px) {
    .story-bottom-img {
        height: 500px;
    }

    .about-story-box-bottom {
        margin-top: 30%;
    }

    .about-story-img-box img {
        object-fit: cover;
    }

    .sujalaam-story-box .sujalaam-container {
        max-width: 100%;
    }
}

@media(max-width:1400px) {
    .about-story-content-box {
        padding: 20px;
    }

    .about-story-content-box p {
        font-size: 13px;
        line-height: 21px;
    }
}

@media(max-width:1300px) {
    .about-story-img-box {
        height: 463px;
        width: 500px;
    }

}

@media(max-width:1200px) {
    .sujalaam-container {
        max-width: 100%;
    }

    .about-story-content-box h1 {
        font-size: 23px;
    }

    .about-story-content-box p {
        font-size: 12px;
        line-height: 20px;
    }
}


@media (max-width: 1199px) {

    .about-story-img-box {
        width: 420px;
        height: auto;
    }

    .about-story-content-box {
        width: 420px;
        padding: 20px;
    }

    .about-story-year-box h1 {
        font-size: 80px;
    }

    .about-story-box-bottom {
        margin-left: 20%;
        margin-top: 9%;
    }

    /* .about-story-content-box p {
        font-size: 14px;
        line-height: 25px;
    } */

    .story-bottom-box {
        padding-top: 3%;
        margin-top: 0%;
    }

    .story-bottom-img {
        height: 369px;
    }
}


@media (max-width: 991px) {

    .sujalaam-story-box {
        padding-top: 10%;
        padding-bottom: 12%;
    }

    .about-story-box {
        flex-direction: column;
        position: relative;
    }

    .about-story-year-box {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
        margin-top: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-story-year-box h1 {
        font-size: 70px;
        margin-left: 0;
        margin-bottom: -33%;
    }

    .about-story-img-box {
        width: 100%;
        max-width: 500px;
        height: 400px;
    }

    .about-story-img-box img {
        height: 100%;
        object-fit: cover;
    }

    .about-story-content-box {
        width: 90%;
        max-width: 500px;
        margin-left: 0;
        margin-top: -40px;
        padding: 35px;
    }

    .about-story-box-bottom {
        margin-top: 14%;
        padding-top: 40%;
    }

    .story-bottom-img {
        margin-top: 0;
        text-align: center;
    }

    .about-story-box {
        flex-direction: column;
        position: relative;
        /* padding-top: 90%; */
    }
}


@media (max-width: 767px) {

    .sujalaam-story-box {
        padding-top: 14%;
        padding-bottom: 14%;
    }

    .about-story-box {
        padding: 0 15px;
    }

    .about-story-year-box h1 {
        font-size: 102px;
        -webkit-text-stroke: 1px var(--blue);
        /* -webkit-text-stroke: 1px #619bb6; */
        margin-bottom: -37%;
    }

    .about-story-img-box {
        width: 100%;
        height: 500px;
    }

    .about-story-img-box img {
        border-width: 6px;
    }

    .about-story-content-box {
        width: 100%;
        padding: 25px;
        margin-top: -25px;
    }

    .about-story-content-box h1 {
        font-size: 24px;
        line-height: 34px;
    }

    .about-story-content-box p {
        font-size: 14px;
        line-height: 26px;
    }

    .about-story-box-bottom {
        margin-top: 40px;
    }

    .story-bottom-img {
        width: 100%;
        opacity: 0.15;
    }

    .about-story-box-bottom {
        margin-left: 0%;
        /* margin-top: 15%;
        padding-top: 84% !important; */
    }

    .sujalaam-container {
        max-width: 100%;
        height: auto;
    }

    /* .story-bottom-img {
        margin-bottom: -45%;
    } */

    .story-bottom-img {
        margin-bottom: -45%;
        display: none;
    }

    .about-story-box {
        padding: 0 15px;
        padding-bottom: 10%;
    }

    .about-story-box-bottom {
        padding: 0 30px;
        margin-top: -18%;
        /* max-width: 97%; */
    }

    .about-story-box-right {
        margin-top: 0%;
    }
}


@media (max-width: 480px) {

    .about-story-year-box h1 {
        font-size: 40px;
    }

    .about-story-content-box {
        padding: 20px;
    }

    .about-story-content-box h1 {
        font-size: 22px;
    }

    .about-story-content-box p {
        font-size: 13px;
        line-height: 24px;
    }

    .about-story-img-box {
        width: 100%;
        height: auto;
    }

    .about-story-year-box h1 {
        font-size: 100px;
        margin-bottom: -30%;
    }
}

/* 
@media(max-width:1500px) {
    .sujalaam-container {
        max-width: 100%;
    }

    .about-story-img-box {
        height: 470px;
        width: 500px;
    }

    .about-story-year-box h1 {
        font-size: 74px;
    }

    .about-story-content-box {
        padding: 40px;
    }

    .story-bottom-img {
        opacity: 0.2;
        height: 373px;
    }
}

@media(max-width:1200px) {
    .about-story-content-box {
        padding: 20px;
    }

    .about-story-img-box {
        height: 400px;
        width: 498px;
    }

    .about-story-content-box p {
        font-size: 12px;
        line-height: 24px;
    }
}


@media(max-width:1010px) {
    .about-story-year-box h1 {
        font-size: 40px;
    }

    .about-story-content-box {
        width: 468px;
    }

    .about-story-content-box p {
        font-size: 11px;
        line-height: 20px;
    }
}

@media(max-width:964px) {
    .sujalaam-container .row {
        display: block;
    }

    .sujalaam-container .row .col-md-6 {
        width: 70%;
        margin: 0 auto;
    }

    .story-bottom-img {
        opacity: 0.2;
        height: 474px;
    }

    .about-story-year-box h1 {
        font-size: 65px;
    }

    .about-story-img-box {
        height: 450px;
        width: 498px;
    }

    .story-bottom-box .row {
        display: block;
    }

    .story-bottom-box .row .col-md-8 {
        width: 85%;
        margin: 0 auto;
    }

    .story-bottom-box .row .col-md-4 {
        display: none;
    }

    .story-bottom-box {
        padding-top: 36%;
    }


    .about-story-box-bottom {
        margin-left: 13%;
        margin-top: 20%;
    }
}


@media(max-width:770px) {
    .sujalaam-container .row .col-md-6 {
        width: 75%;
        margin: 0 auto;
        margin-left: 0%;
    }

    .story-bottom-box .row .col-md-8 {
        width: 90%;
    }

    .about-story-box-bottom {
        margin-left: 0%;
        margin-top: 28%;
    }
}

@media(max-width:716px) {
    .about-story-img-box {
        height: 407px;
        width: 445px;
    }
}

@media(max-width:688px) {
    .about-story-img-box {
        height: 407px;
        width: 399px;
    }

    .story-bottom-box .row .col-md-8 {
        width: 93%;
    }


    .about-story-box {
        margin-top: 20px;
    }


    .about-story-box-bottom {
        margin-left: 0%;
        margin-top: 22%;
    }
} */

/* ============= FOUNDER SECTION ================== */
/* .founder-box {
    padding-top: 10%;
    padding-bottom: 5%;
    background: radial-gradient(circle at center, #ffffff 0%, #feffff 60%, #e5f0f7c7 100%);
}

.founder-slider-box.founder-slide {
    max-width: 90%;
    margin: 3% auto;
}

.founder-slider-box.founder-slide .owl-stage {
    display: flex;
    align-items: flex-end;
}

.founder-slider-box.founder-slide {
    padding-left: 20px;
    padding-right: 20px;
}

.founder-slider-box a {
    text-decoration: none;
    color: inherit;
}


.founder-slider-box .founder-details-box .founder-image-box {
    height: 380px;
    display: flex;
    max-height: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(254, 255, 255) 60%, rgba(229, 240, 247, 0.78) 100%);
}

.founder-slider-box .founder-details-box img {
    position: absolute;
    top: 56%;
    left: 50%;
    width: inherit;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: transform 1s ease-in, filter 1s ease-in;
}

.founder-details-box:hover .founder-slider-box .founder-details-box img,
.founder-slider-box .founder-details-box:hover img {
    transform: translate(-50%, -50%) scale(1.03);
    filter: saturate(1.05);
}


.pv-content p {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in;
}

.pv-content p {
    font-family: var(--para-font);
    font-size: 14px;
    line-height: 23px;
    color: #000;
    text-align: center;
    margin: 0 auto;
    max-width: 90%;
    border-top: 5px solid #619bb6;
}

.founder-details-box:hover {
    background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(254, 255, 255) 60%, rgba(229, 240, 247, 0.78) 100%);
}

.pv-content h1 {
    font-family: var(--banner-font);
    font-size: 30px;
    font-weight: 600;
    color: #619bb6;
    padding-bottom: 15px;
    text-align: center;
    padding-top: 22px;
}

.founder-details-box .pv-content p {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1s ease-in, max-height 1s ease-in;
}

.founder-details-box:hover .pv-content p {
    opacity: 1;
    max-height: 500px;
}



.founder-text {
    margin-top: 16%;
    align-items: baseline;
}

.founder-designation {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-top: 85%;
    align-items: baseline;
    font-size: 30px;
    -webkit-text-stroke: 2px #619bb6;
    display: none;
    padding-right: 30px;
}

.founder-details-box:hover .founder-designation {
    display: block;
}




@media (min-width: 1200px) {
    .founder-slider-box .owl-item {
        padding: 0 5px;
    }

    .founder-slider-box .founder-details-box .founder-image-box {
        max-height: 600px;
        width: unset;
    }

    .founder-slider-box .founder-details-box {
        width: calc((((calc(100vw - 18px)) - (5px * 2)) / 5));
    }
} */

@media(max-width:1400px) {
    .home-about-container {
        gap: 20px;
    }

    .home-about-circle {
        margin-top: 24%;
        width: 500px;
        height: 500px;
    }

    .aboutus-bottom-img {
        width: 500px;
    }
}

@media(max-width:1400px) {
    .home-about-circle {
        width: 400px;
        height: 400px;
        margin-top: 14%;
    }

    .home-about-left {
        margin-top: 0%;
    }

    .para-style {
        font-size: 13px;
        line-height: 19px;
    }
}

@media(max-width:1300px) {
    .para-style {
        font-size: 13px;
        line-height: 25px;
    }
}

@media(max-width:1100px) {
    .home-about-circle {
        width: 400px;
        height: 400px;
    }

    .home-about-item .para-style {
        font-size: 12px;
        line-height: 23px;
    }
}


@media(max-width:900px) {
    .home-about-left {
        width: 97%;
        text-align: center;
        margin: 0 auto;
    }

    .home-about-circle {
        width: 300px;
        height: 300px;
        margin-top: 69%;
        margin-left: 100%;
    }

    .home-about-item .title-style {
        font-size: 23px;
    }

    .home-about-item .para-style {
        font-size: 10px;
        line-height: 20px;
    }
}

@media(max-width:767px) {
    .home-about-circle {
        width: 300px;
        height: 300px;
        margin-top: 40%;
        margin-left: 44%;
    }

    .home-about-item .para-style {
        font-size: 9px;
        line-height: 18px;
    }
}

@media(max-width:500px) {
    .home-about-item .title-style {
        font-size: 15px;
    }

    .home-about-circle {
        width: 250px;
        height: 250px;
        margin-top: 65%;
        margin-left: 40%;
    }
}

@media(max-width:450px) {
    .home-about-item .para-style {
        font-size: 10px;
        line-height: 15px;
    }

    .home-about-item .title-style {
        padding-bottom: 0px;
        font-size: 18px;
        padding-top: 10px;
        padding-bottom: 0px;
    }

    .home-about-item .title-bottom-line {
        width: 71px;
        height: auto;
        margin-bottom: 6px;
        filter: contrast(0.5);
    }

    .home-about-circle {
        width: 250px;
        height: 250px;
        margin-top: 89%;
        margin-left: 28%;
    }
}


@media(max-width:300px) {
    .home-about-circle {
        width: 200px;
        height: 200px;
        margin-top: 107%;
    }
}

/* ================ FOUNDER - NEW ================== */

.founder-box {
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #ffffff 0%, #feffff 60%, #e5f0f7c7 100%);
    overflow: hidden;
    padding: 7% 0%;
}



.founder-carousel-container {
    width: 100%;
    max-width: 1200px;
    height: 450px;
    position: relative;
    perspective: 1000px;
    margin-top: 20px;
}

.founder-carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 20%;
}

.founder-card {
    position: absolute;
    width: 280px;
    height: 380px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.founder-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.founder-card.center {
    z-index: 10;
    transform: scale(1.1) translateZ(0);
}

.founder-card.center img {
    filter: none;
}

.founder-card.left-2 {
    z-index: 1;
    transform: translateX(-450px) scale(0.8) translateZ(-200px);
    opacity: 0.7;
}

/* .founder-card.left-2 img {
    filter: grayscale(100%);
} */
/* 
.founder-card.left-1 {
    z-index: 5;
    transform: translateX(-250px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
} */

/* .founder-card.left-1 img {
    filter: grayscale(100%);
} */

.founder-card.right-1 {
    z-index: 5;
    transform: translateX(250px) scale(1) translateZ(-59px);
    opacity: 1;
}

/* .founder-card.right-1 img {
    filter: grayscale(100%);
} */

.founder-card.right-2 {
    z-index: 1;
    transform: translateX(450px) scale(0.9) translateZ(-169px);
    opacity: 1;
}

.founder-card.right-3 {
    z-index: 1;
    transform: translateX(705px) scale(1) translateZ(-500px);
    opacity: 1;
}

/* 
.founder-card.right-2 img {
    filter: grayscale(100%);
} */

.founder-card.hidden {
    opacity: 0;
    pointer-events: none;
}

.founder-member-info {
    text-align: center;
    margin-top: 40px;
    transition: all 0.5s ease-out;
    max-width: 70%;
}

.founder-member-name {
    color: var(--blue);
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-family: var(--banner-font);

}

.founder-member-name::before,
.founder-member-name::after {
    content: "";
    position: absolute;
    top: 100%;
    width: 100px;
    height: 2px;
    background: var(--blue);
}

.founder-member-name::before {
    left: -120px;
}

.founder-member-name::after {
    right: -120px;
}

.founder-member-role {
    color: var(--blue);
    /* color: #619bb6; */
    font-size: 22px;
    font-weight: 500;
    opacity: 0.8;
    /* text-transform: uppercase; */
    letter-spacing: 0.1em;
    padding: 10px 0;
    margin-top: -15px;
    position: relative;
    font-family: var(--para-font);
    /* text-transform: uppercase;    */
    font-style: italic;
}

.founder-member-desctiption {
    /* color: var(--black);
    font-size: 10px;
    font-weight: 500;
    opacity: 0.8;
    letter-spacing: 0.1em;
    padding: 10px 0;
    margin-top: -15px;
    position: relative;
    font-family: var(--para-font); */

    /* font-size: 16px; */
    /* font-weight: 500; */
    /* opacity: 0.8; */
    /* letter-spacing: 0.1em; */
    /* padding: 10px 0; */
    /* margin-top: -15px; */
    /* position: relative; */
    font-family: var(--para-font);
    font-size: 15px;
    max-width: 80%;
    line-height: 29px;
    margin: 0 auto;
    color: #000;
}

.founder-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    display: none;
}

.founder-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(8, 42, 123, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.founder-dot.active {
    background: var(--blue);
    transform: scale(1.2);
}

.founder-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    border: none;
    outline: none;
    padding-bottom: 4px;
}

.founder-nav-arrow:hover {
    background: var(--blue);
    transform: translateY(-50%) scale(1.1);
}

.founder-nav-arrow.founder-left {
    left: 20px;
    padding-right: 3px;
}

.founder-nav-arrow.founder-right {
    right: 20px;
    padding-left: 3px;
}

@media (max-width: 768px) {
    .founder-about-title {
        font-size: 4.5rem;
    }

    .founder-card {
        width: 200px;
        height: 280px;
    }

    .founder-card.left-2 {
        transform: translateX(-250px) scale(0.8) translateZ(-300px);
    }

    .founder-card.left-1 {
        transform: translateX(-120px) scale(0.9) translateZ(-100px);
    }

    .founder-card.right-1 {
        transform: translateX(120px) scale(0.9) translateZ(-100px);
    }

    .founder-card.right-2 {
        transform: translateX(250px) scale(0.8) translateZ(-300px);
    }

    .founder-member-name {
        font-size: 2rem;
    }

    .founder-member-role {
        font-size: 1.2rem;
    }

    .founder-member-name::before,
    .founder-member-name::after {
        width: 50px;
    }

    .founder-member-name::before {
        left: -70px;
    }

    .founder-member-name::after {
        right: -70px;
    }
}

@media(max-width:1200px) {
    .founder-carousel-track {
        margin-left: 14%;
    }

    .founder-nav-arrow.founder-left {
        left: 6%;
    }

    .founder-nav-arrow.founder-right {
        right: 9%;
        padding-left: 3px;
    }

    .founder-card {
        width: 250px;
        height: 350px;
    }
}

@media(max-width:1000px) {

    .founder-card.right-1 {

        transform: translateX(210px) scale(1) translateZ(-59px);

    }

    .founder-card.right-2 {

        transform: translateX(410px) scale(0.9) translateZ(-169px);

    }

    .founder-card.right-3 {

        transform: translateX(550px) scale(1) translateZ(-500px);

    }

    .founder-card.right-2 {

        transform: translateX(350px) scale(0.9) translateZ(-169px);

    }

    .founder-card.right-1 {

        transform: translateX(168px) scale(1) translateZ(-59px);

    }


    .founder-member-name {
        font-size: 40px;
    }

    .founder-member-role {
        font-size: 20px;
    }

}

@media(max-width:800px) {
    .founder-member-desctiption {
        font-size: 13px;
    }

    .founder-member-name {
        font-size: 37px;
    }

    .founder-member-role {
        font-size: 14px;
    }

    .founder-card.right-3 {
        z-index: 1;
        transform: translateX(420px) scale(0.8) translateZ(-500px);
        opacity: 1;
    }

    .founder-card.right-2 {
        transform: translateX(262px) scale(0.8) translateZ(-300px);
    }


    .founder-card.right-1 {
        transform: translateX(139px) scale(0.9) translateZ(-100px);
    }

    .founder-member-name {
        font-size: 38px;
    }

    .founder-member-role {
        font-size: 16px;
    }

    .founder-member-desctiption {
        font-size: 13px;
    }

    .founder-box {
        padding: 15% 0%;
    }

}

@media(max-width:600px) {

    .founder-card {
        width: 130px;
        height: 220px;
    }


    .founder-carousel-container {
        height: 320px;
    }


    .founder-nav-arrow {
        width: 30px;
        height: 30px;
    }

    .founder-member-info {
        margin-top: 18px;
    }

    .founder-carousel-track {
        margin-left: 17%;
    }

    .founder-card.right-1 {
        transform: translateX(89px) scale(0.9) translateZ(-100px);
    }

    .founder-card.right-2 {
        transform: translateX(179px) scale(0.8) translateZ(-300px);
    }

    .founder-card.right-3 {
        z-index: 1;
        transform: translateX(279px) scale(0.8) translateZ(-500px);
        opacity: 1;
    }

    .founder-nav-arrow.founder-right {
        right: 1%;
        padding-left: 4px;
    }

    .founder-member-desctiption {
        font-size: 11px;
        max-width: 100%;
        line-height: 21px;
    }

    .founder-carousel-container {
        height: 260px;
    }

    .founder-member-name {
        font-size: 25px;
    }

    .title-style {
        padding-bottom: 7px;
    }

}


@media(max-width:400px) {
    .founder-carousel-track {
        margin-left: 9%;
    }

}

/* ================ COMMON MEDIA QUERY ================= */

@media(max-width:1200px) {
    .title-style {
        font-size: 35px;
    }
}


@media(max-width:600px) {
    .title-style {
        font-size: 24px;
    }
}

@media (max-width: 768px) {


    .title-bottom-line {
        width: 71px;
        height: auto;
        margin-bottom: 25px;
        filter: contrast(0.5);
    }
}


/* ================ NEWS AND ARTICLES PAGE STYLING ================ */

.na-box {
    padding: 200px 50px 100px;
    max-width: 80%;
    margin: 0 auto;
}

.na-details-img-box {
    width: 100%;
}

.na-details-img-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 5px;
}

.na-details-box {
    border: 1px solid var(--blue);
    /* border: 1px solid #619bb6; */
    padding: 20px;
    border-radius: 5px;
    background: linear-gradient(0deg, rgb(97 155 182 / 10%) 0%, rgb(97 155 182 / 0%) 100%);
    height: 100%;
}

.na-title-box h1 {
    font-family: var(--banner-font);
    font-size: 21px;
    font-weight: 600;
    color: var(--blue);
    /* color: #619bb6; */
    padding-bottom: 15px;
    padding-top: 29px;
    /* text-align: center; */
    border-top: 1px solid;
    line-height: 32px;
}

.read-more-btn {
    color: #000;
    font-size: 17px;
    font-family: var(--para-font);
    text-align: center;
    margin: 0 auto;
}

.read-more-btn span {
    color: var(--blue);
    /* color: #619bb6; */
    font-weight: bold;
}

.na-container {
    padding-top: 50px;
}

.na-details .col-md-4 {
    margin-bottom: 2%;
}

.na-details-link {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.na-download-pdf-btn {
    margin-top: 3%;
}

.na-download-pdf-btn a {
    color: #ffffff;
    padding: 10px 22px;
    font-size: 19px;
    background: var(--blue);
    /* background: #619bb6; */
    border-radius: 10px;
    border: 1px solid #ffffff;
    font-family: var(--banner-font);
    font-weight: 600;
    box-shadow: rgb(97 155 182 / 31%) 0px 4px 12px;
}

.na-download-pdf-btn a span {
    padding-left: 10px;
}

@media(max-width:1800px) {
    .na-box {
        padding: 200px 10px 100px;
        max-width: 100%;
        margin: 0 auto;
    }
}

@media(max-width:1300px) {
    .na-box {
        padding: 200px 0px;
        max-width: 99%;
    }

    .na-details-img-box img {
        height: 230px;
    }
}

@media(max-width:900px) {
    .na-details-img-box img {
        height: 250px;
    }

    .na-box {
        padding: 100px 30px;
        max-width: 99%;
    }

    .na-container {
        padding-top: 10px;
    }

    .na-details-box {
        padding: 8px;
    }
}

/* ================ IMPACT PAGE STYLING ================== */
/* 
.img-project-details-box {
    display: flex;
    align-items: center;
    padding: 25px;
    justify-content: center;
}

.impact-image-box {
    border-right: 1px solid var(--blue);
    border-radius: 20px;
}


.impact-image-box img {
    border: 2px solid var(--blue);
    width: 900px;
    border-radius: 20px;
}

.impact-details-title {
    background: radial-gradient(circle at center, #ffffff 0%, #feffff 60%, #e5f0f7c7 100%);
    height: 500px;
    width: 100%;
    padding: 70px 40px;
    border-radius: 20px;
    margin: 50px 50px 50px 50px;
}

.impact-details-title h1 {
    font-family: var(--banner-font);
    font-size: 31px;
    font-weight: 600;
    color: var(--blue);
    padding-bottom: 15px;
}

.impact-details-title p {
    font-family: var(--para-font);
    font-size: 15px;
    line-height: 29px;
    color: #000;
}

.impact-other-images {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}


.other-img-project-details-box {
    display: block;
}

.other-impact-image-box img {
    width: 100%;
}

.other-impact-details-title {
    margin: 0px 0px 10px 0px;
    padding: 50px 20px;
    height: 250px;
    border-radius: 0px 0px 20px 20px;
    border: 1px solid var(--blue);
    border-top: none;
}

.other-impact-image-box img {
    border-radius: 20px 20px 0px 0px;
    border: 1px solid var(--blue);
    border-bottom: none;
}

.impact-readmore-icon svg {
    color: #619bb6;
    font-size: 20px;
    float: right;
    border: 1px solid var(--blue);
    padding: 5px 10px;
    border-radius: 50%;
    margin-top: 1%;
}

@media(max-width:1700px) {
    .impact-container {
        padding: 200px 10px 100px;
    }
}

@media(max-width:1600px) {
    .impact-image-box img {
        width: 700px;
        height: 450px;
    }

    .impact-container {
        padding: 200px 10px 150px;
    }

    .impact-details-title h1 {
        font-size: 26px;
    }

    .impact-details-title p {
        font-size: 15px;
    }

    .impact-details-title {
        padding: 36px 40px;
        height: 450px;
    }

    .impact-other-images {
        gap: 0px;
    }

    .other-impact-image-box img {
        width: 100%;
        height: 100%;
    }

    .other-impact-details-title {
        height: 250px;
    }

    .other-impact-details-title h1 {
        font-size: 21px !important;
    }

}

@media(max-width:1500px) {
    .impact-details-title p {
        font-size: 14px;
        line-height: 20px;
    }
}

@media(max-width:1400px) {
    .impact-details-title {
        padding: 20px 19px;
    }

    .other-impact-details-title h1 {
        font-size: 22px !important;
        line-height: 31px !important;
    }

    .other-impact-details-title {
        height: 185px;
    }
}

@media(max-width:1300px) {
    .impact-container {
        padding: 200px 10px 150px;
    }

    .impact-image-box img {
        width: 600px;
    }

    .impact-details-title {
        padding: 30px 30px;
    }

    .impact-details-title p {
        font-size: 13px;
    }

    .other-impact-image-box img {
        width: 100%;
    }
}

@media(max-width:1200px) {
    .other-impact-details-title h1 {
        font-size: 16px !important;
        line-height: 25px !important;
    }
}

@media(max-width:1150px) {
    .impact-container {
        padding: 200px 0px 150px;
    }

    .impact-image-box img {
        width: 550px;
    }

    .impact-details-title p {
        font-size: 14px;
        line-height: 27px;
    }

    .impact-details-title {
        margin: 50px 10px 50px 10px;
    }

    .impact-details-title p {
        font-size: 12px;
        line-height: 22px;
    }

}

@media(max-width:1050px) {
    .other-impact-details-title {
        margin: 0px !important;
    }

    .impact-image-box img {
        width: 100%;
    }

    .impact-other-images {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:982px) {
    .impact-container {
        padding: 130px 10px 150px;
    }

    .impact-image-box img {
        width: 500px;
    }

    .impact-details-title p {
        font-size: 13px;
        line-height: 23px;
    }

    .other-impact-image-box img {
        width: 100%;
    }

    .img-project-details-box {
        padding: 25px 0px;
    }
}

@media(max-width:800px) {
    .img-project-details-box {
        flex-direction: column;
    }

    .impact-details-title {
        margin: 10px 50px 10px 50px;
    }

    .impact-image-box img {
        width: 100%;
    }

    .impact-other-images {
        grid-template-columns: 1fr;
    }

}

@media(max-width:767px) {
    .impact-details-title {
        padding: 50px 50px;
        height: auto;
    }

    .other-impact-details-title {
        height: auto;
    }

    .impact-image-box img {
        width: 100%;
        height: auto;
    }

}

@media(max-width:500px) {
    .impact-details-title {
        margin: 10px 0px 10px 0px;
    }

    .img-project-details-box {
        padding: 5px;
    }

    .impact-details-title p {
        font-size: 12px;
        line-height: 21px;
    }

    .impact-details-title {
        padding: 20px 20px;
    }

    .impact-readmore-icon svg {
        margin-top: -4%;
    }

    .impact-details-title h1 {
        font-size: 16px;
    }
} */

.new-impact-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 15px; */
    margin-top: -6%;
}

.impact-past-box .new-impact-image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* border-radius: 15px; */
    margin-top: 0%;
}

.new-impage-details-box {
    border: 1px solid #0798ad;
    /* padding: 10px; */
    /* border-radius: 20px; */
    height: 100%;
    /* background: linear-gradient(to bottom, #191933 22%, #ffffff 60%,#191933 22%); */
    /* background: linear-gradient(
    to bottom, 
    #191933 0%, 
    #191933 22%, 
    #ffffff 60%, 
    #191933 100%
); */
    /* background: linear-gradient(to bottom,
                #191933 0%,
                #191933 17%,
                #ffffff 32%,
                #ffffff 80%); */
    background-color: #191930;
}

.new-impact-text-box {
    /* margin-top: 20px;
    padding: 30px 10px 30px 30px; */
    /* margin-top: -54px;
    position: relative;
    background: linear-gradient(to bottom, #32323200 0%, #191933ed 17%, #191933 32%, #191933 80%);
    z-index: 2; */



    /* background: radial-gradient(circle at center, #ffffff 0%, #feffff 60%, #e5f0f7c7 100%); */
    margin-top: 20px;
    /* border-radius: 20px; */
    padding: 30px 10px 30px 30px;
    /* height: 180px; */
    margin-top: -136px;
    position: relative;
    /* background: linear-gradient(0deg, rgb(25 25 51) 0%, rgb(25 25 51) 55%, rgb(255 255 255 / 0%) 100%); */
    z-index: 2;
}



.top-title-box {
    padding: 50px 30px 0px;
    position: relative;
    /* background: linear-gradient(0deg, rgb(25 25 51 / 0%) 0%, rgb(25 25 51) 29%, rgb(25 25 51) 100%); */
    z-index: 2;
    margin-bottom: -1px;
}

.impact-new-heading {
    font-family: var(--banner-font);
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    /* color: #619bb6; */
    /* padding-bottom: 15px; */
    text-align: center;
}

.impact-new-location-box {
    /* font-family: var(--para-font);
    font-size: 22px;
    font-weight: 400;
    color: var(--blue); */
    font-family: var(--para-font);
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    bottom: -54%;
    position: relative;
    z-index: 20;
    /* top: 38px; */
    /* background: #191933; */
    width: fit-content;
    /* margin-top: -50px; */
    padding: 5px 10px;
    font-weight: bold;
    background: linear-gradient(90deg, rgb(25 25 51) 0%, rgb(25 25 51) 50%, rgb(255 255 255 / 0%) 100%);
}


.impact-new-locationicon-box {
    color: #0798ad;
    font-size: 24px;
    padding-right: 11px;
}

.pointer-icon-box img {
    height: 60px;
    padding-bottom: 2px;
}

.pointer-box {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    display: grid;
    padding-top: 12px;
}

.pointer-inner-box {
    /* display: flex; */
    gap: 20px;
    align-items: center;
    padding: 0px;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    padding-right: 10px;
    /* padding-top: 50px; */
    color: #fff;
    margin-bottom: 20px;
}

.impact-latest-box {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    /* grid-template-columns: 1fr 1fr; */
    gap: 20px;
    padding-top: 30px;
}

.pointer-box {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    display: grid;
}

.pointer-inner-box {
    display: flex;
    /* gap: 20px; */
    align-items: center;
    padding: 0px;
    justify-content: center;
    /* flex-direction: column; */
    text-align: center;
    padding-right: 10px;
    /* padding-top: 50px; */
    color: #fff;
}

.pointer-num-box {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-top: 10px;
}


.pointer-num-box h2 {
    font-family: var(--banner-font) !important;
    font-size: 27px !important;
    font-weight: 500 !important;
    color: var(--blue) !important;
    /* padding-bottom: 15px !important; */
    line-height: 36px !important;
}

.pointer-num-box h4 {
    font-family: var(--para-font);
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    padding: 0 10px;
}

.pointer-icon-box {
    /* margin: 0 auto; */
    text-align: center;
}

.impact-past-box {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}


.new-impact-text-box p {
    font-family: var(--para-font);
    font-size: 22px;
    font-weight: 500;
    color: #000;

}

.impact-past-box .new-impact-text-box {
    padding: 70px 10px 0px 30px;
}

.impact-past-box .new-impact-text-box p {
    font-size: 18px;
    color: #000;
}

.impact-past-box .pointer-box {
    display: block;
}

.impact-past-box .pointer-icon-box img {
    height: 50px;
    padding-bottom: 2px;
}

.impact-past-box .pointer-num-box h4 {
    font-family: var(--para-font);
    font-size: 17px;
    font-weight: 500;
    text-align: left;
    color: #ffffff;
}

.impact-past-box .pointer-inner-box {
    display: flex;
    /* gap: 20px; */
    align-items: baseline;
    padding: 0px;
    justify-content: left;
    flex-direction: row;
    text-align: left;
    padding-right: 10px;
    gap: 5px;
    padding-bottom: 0px;
}

.impact-past-box .new-impact-text-box h1 {
    font-size: 25px;
    font-family: var(--banner-font);
    font-weight: 600;
    color: #fff;
    /* color: #619bb6; */
    padding-bottom: 15px;
}

.pointer-num-box h4 {
    font-family: var(--para-font);
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    color: #fff;
}

.impact-past-box .pointer-box {
    padding-top: 0px;
    display: flex;
}

.impact-past-box .pointer-icon-box {
    margin: 0;
}

/* ---- Testi section ------- */


.text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 25px;
}

.responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
}

.responsive-container-block.bg {
    flex-direction: column;
    align-items: center;
    height: auto;
    max-width: 1500px;
}


.container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: block;
}

.testi-slider-slide {
    text-align: center;
    font-size: 18px;
    background-color: rgb(255, 255, 255);
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin: 0px 10px 0px 0px;
    padding: 0px 0px 0px 40px;
}

.quotes {
    color: rgb(153, 153, 153);
}

.testi-slider-slide img {
    display: block;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
    border: 2px solid #fff;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.responsive-container-block.content {
    flex-direction: column;
    align-items: flex-start;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
    position: relative;
    /* margin-top: 40px; */
    margin-right: 20px;
    margin-left: 20px;
    border-radius: 35px;
    border: 2px solid var(--blue);
    /* border: 2px solid rgb(97 155 182); */
    padding: 10px 100px 10px 100px;
    max-width: 50vw;
    height: 100%;
    padding-top: 200px;
    background: var(--blue);
}

.text-blk.name {
    font-size: 29px;
    line-height: 27.28px;
    font-weight: 900;
    text-align: left;
    padding: 0px 10px 0px 10px;
    margin: 0px 0px 0px 0px;
    font-family: var(--banner-font);
    font-weight: 600;
    color: #fff;
    padding-bottom: 15px;
    text-align: center;
}

.text-blk.info {
    line-height: 30px;
    text-align: left;
    color: rgb(0, 0, 0);
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 25px;
    margin-left: 0px;
    font-family: var(--para-font);
    font-size: 20px;
    line-height: 29px;
    color: #fff;
    text-align: center;
}

.text-blk.quotes {
    position: absolute;
    left: auto;
    font-size: 288px;
    line-height: 392.83px;
    top: -140px;
    font-weight: 900;
    color: #d9b44a;
    margin: 0px 0px 0px 0px;
    right: 20px;
}

.responsive-container-block.person {
    margin: 0px 0px 30px 0px;
}

.profile-image {
    color: black;
    width: 300px;
    height: 300px;
    position: absolute;
    top: -120px;
    left: 35%;
    z-index: 2;
}

.testi-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testi-slider-slide {
    box-sizing: border-box;
    padding: 20px;
    padding-top: 150px;
}

.slider-arrows {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-arrows button {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 5px;
}

.testimonial-slider {
    position: relative;
    width: 100%;
}

.testimonial-slides {
    position: relative;
    width: 100%;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.is-active {
    display: block;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    border: none;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    pointer-events: auto;
}


.testimonial-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.testimonial-prev {
    left: 10px;
}

.testimonial-next {
    right: 10px;
}

@media(max-width:1200px) {
    .responsive-container-block.content {
        margin-top: 0px;
    }

    .responsive-container-block.content {
        max-width: 80vw;
    }
}

@media(max-width:1000px) {
    .text-blk.info {
        font-size: 14px;

    }
}

@media (max-width: 768px) {

    .swiper-container {
        min-width: 95%;
    }

    .swiper-slide {
        min-width: 100%;
    }

    .swiper-wrapper {
        min-width: 100%;
    }

    .text-blk.heading {
        font-size: 18px;
    }

    .text-blk.title {
        font-size: 32px;
        line-height: 40px;
    }

    .text-blk.desc {
        font-size: 17px;
        line-height: 25.1px;
        max-width: 600px;
    }

    .text-blk.info {
        font-size: 14px;
        line-height: 25px;
    }

    .text-blk.name {
        font-size: 23px;
        margin-top: 40px;
        line-height: 32px;
        padding-bottom: 0px;
    }
}

@media(max-width:600px) {
    .text-blk.info {
        font-size: 12px;
        line-height: 19px;
    }

    .testi-slider-slide {
        padding: 0px 29px;
    }

    .slider-arrows {
        margin-top: 30px;
    }
}

@media (max-width: 500px) {

    .responsive-container-block.content {
        padding: 10px;
        width: 100%;
        margin: 40px 0px 0px 0px;
    }

    .swiper-container {
        min-width: 90%;
    }

    .swiper-slide {
        min-width: 100%;
    }

    .swiper-wrapper {
        min-width: 100%;
    }

    .profile-image {
        width: 75px;
        height: 75px;
        left: -40px;
    }

    .responsive-container-block.content {
        padding: 10px 10px 10px 35px;
    }

    .text-blk.info {
        margin: 10px 0px 25px -25px;
        font-size: 13px;
        line-height: 24px;
    }

    .responsive-container-block.bg {
        max-width: 100vw;
    }

    .text-blk.name {
        margin: 80px 0px 0px 10px;
    }

    .text-blk.desig {
        margin: 0px 0px 0px 10px;
    }

    .text-blk.desc {
        font-size: 16px;
        line-height: 24px;
        margin: 0px 0px 60px 0px;
    }

    .text-blk.heading {
        font-size: 18px;
        line-height: 28px;
    }

    .text-blk.title {
        font-size: 26px;
        line-height: 36px;
    }

}

@media(max-width:400px) {
    .text-blk.info {
        margin: 10px 0px 25px -25px;
        font-size: 12px;
        line-height: 24px;
    }

    .responsive-container-block.bg {
        max-width: 100vw;
    }
}

/* ---------------------- IMPACT CLIENTS ------------------ */

.impact-clients-box {
    max-width: 90%;
    margin: 0 auto;
    padding: 100px;
}

.impact-clients-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
    gap: 20px;
    padding-top: 50px;
}

.impact-clients-img-box {
    border: 1px solid var(--blue);
    /* border: 1px solid #619bb6; */
    padding: 35px;
    border-radius: 2px;
    height: 155px;
    text-align: center;
}

.impact-clients-img-box img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    /* border: 1px solid #619bb6;     */
}

.client-1 {
    animation: zoom-in-out 5s ease-in-out infinite;
}

.client-2 {
    animation: zoom-in-out 3s ease-in-out infinite;
}

.client-3 {
    animation: zoom-in-out 7s ease-in-out infinite;
}

.client-4 {
    animation: zoom-in-out 4s ease-in-out infinite;
}

.client-5 {
    animation: zoom-in-out 6s ease-in-out infinite;
}

@keyframes zoom-in-out {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@media(max-width:1500px) {
    .impact-clients-box {
        max-width: 90%;
        padding: 0px;
    }

    .impact-clients-img-box {
        padding: 10px;
        height: 150px;
    }
}

@media(max-width:1452px) {
    .impact-clients-box {
        max-width: 90%;
        padding: 50px 0px 0px 0px;
    }

    .impact-clients-container {
        padding-top: 35px;
    }

    .impact-clients-img-box img {
        height: 100%;
        width: 133px;
        object-fit: contain;
        /* border: 1px solid #619bb6; */
    }

    .impact-clients-container {
        padding-top: 10px;
    }
}

@media(max-width:1000px) {
    .impact-clients-container {
        grid-template-columns: repeat(auto-fit, minmax(202px, 1fr));
    }

    .impact-clients-img-box img {
        height: 100%;
        width: 131px;
        object-fit: contain;
        /* border: 1px solid #619bb6; */
    }

    .impact-clients-img-box {
        padding: 20px;
        height: 137px;
    }
}

@media(max-width:900px) {
    .impact-clients-container {
        grid-template-columns: repeat(auto-fit, minmax(166px, 1fr));
    }
}

@media(max-width:400px) {
    .impact-clients-img-box {
        padding: 10px;
        height: 66px;
    }

    .impact-detailed-title-box h1 {
        font-size: 38px;
        padding-bottom: 3px;
        max-width: 100%;
    }

    .impact-clients-container {
        grid-template-columns: repeat(auto-fit, minmax(143px, 1fr));
    }
}


/* ==================== CONTACT US PAGE ======================= */

.contact-container {
    padding: 150px 0px 30px 0px;
}

.contact-us-box {
    max-width: 80%;
    margin: 0 auto;
}

.contact-details-info {
    display: flex;
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
}

.contact-details-box {
    border: 1px solid var(--blue);
    border-radius: 5px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.icon-box img {
    height: 89px;
    padding: 20px;
    border-radius: 7px;
}

.contact-form-box {
    padding-top: 190px;
}

.info-box {
    font-family: var(--para-font);
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    padding-right: 20px;
}

.info-box a {
    color: #000;
}

.info-box:hover a {
    color: var(--blue);
}

.form2 {
    background: #fff;
    border: 1px solid rgb(97 155 182 / 28%);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.06);
    margin: 50px;
    max-width: 65%;
    margin: 0 auto;
}

.form2 .messages {
    min-height: 20px;
}

.form2 .form-group {
    width: 100%;
}

.form2 input,
.form2 select,
.form2 textarea {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    border: 1px solid rgb(97 155 182 / 44%);
    background: #619bb60d;
    padding: 0 16px;
    font-family: var(--para-font);
    color: #222;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-size: 15px;
    margin-bottom: 20px;
}

.form2 textarea {
    height: auto;
    padding: 14px 16px;
}

.form2 input:focus,
.form2 select:focus,
.form2 textarea:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 4px rgb(241 246 249);
}

.form2 select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--maroon) 50%),
        linear-gradient(135deg, var(--maroon) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.butn {
    border: 1px solid rgb(97 155 182) !important;
    background: #f7fafb !important;
    color: var(--blue) !important;
    border-radius: 30px !important;
    padding: 14px 26px !important;
    font-family: var(--sub-title-font);
    font-size: 23px;
    transition: 0.25s ease;
    width: 100%;
    font-weight: 600;
    font-family: var(--banner-font);
}

.butn:hover {
    background: var(--blue) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

.contact-form-message {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    border: 1px solid;
}

.contact-form-message.success {
    color: #0d6efd;
}

.contact-form-message.error {
    color: #dc3545;
}

.contact-title-heading {
    font-family: var(--banner-font);
    font-size: 37px;
    font-weight: 600;
    color: var(--blue);
    padding-bottom: 15px;
    padding-top: 29px;
}

.contact-bimage-box {
    padding-left: 90px;
}

.contact-top-img-box {
    width: 600px;
    border: 10px solid #f2f7fa;
    box-shadow: rgb(149 157 165 / 93%) 0px 8px 24px;
    margin-bottom: 20px;
}

.contact-top-img-box img {
    width: 100%;
}

.contact-top-img-box-2 {
    float: right;
}

.map-image iframe {
    width: 100vw;
    height: 500px;
    margin-top: -208px;
    position: relative;
    z-index: -1;
}

.lable {
    font-family: var(--para-font);
    font-size: 21px;
    font-weight: 500;
    text-align: left;
    padding-right: 20px;
    color: var(--blue);
}

@media(max-width:1600px) {
    .contact-us-box {
        max-width: 90%;
    }

    .info-box {
        font-size: 16px;
    }
}

@media(max-width:1300px) {
    .info-box {
        font-size: 15px;
    }
}

@media(max-width:1300px) {
    .contact-details-info {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .icon-box img {
        height: 72px;
    }

    .form2 {
        padding: 40px;
        margin: 30px 30px 0px 30px;
    }

    .contact-us-box {
        max-width: 97%;
    }

    .form2 {
        padding: 40px;
        margin: 30px 0px 0px 30px;
    }
}


@media(max-width:1030px) {
    .contact-details-box {
        margin: 10px 0px;
        padding: 30px 10px;
    }

    .form2 h1 {
        font-size: 30px;
    }
}

@media(max-width:800px) {
    .contact-us-box .row {
        flex-direction: column;
    }

    .contact-us-box .row .col-md-5 {
        width: 100%;
    }

    .contact-us-box .row .col-md-7 {
        width: 100%;
    }

    .form2 {
        padding: 40px;
        margin: 0px;
    }

    .form2 h1 {
        font-size: 24px;
        font-weight: 600;
        padding-bottom: 0px;
        padding-top: 20px;
    }

    .form2 {
        padding: 16px;
    }
}

/* give proper media query for this section that works on all screen sizes */
/* ========== HOME - NEW TIMELINE ============= */


.new-timeline-box {
    background: radial-gradient(circle at center, #ffffff 0%, #feffff 60%, #e5f0f7c7 100%);
    padding: 100px 0px 50px 0px;
}

.timeline {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    position: relative;
    max-width: 70%;
}

.timeline__event {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    margin: 20px 0;
    border-radius: 6px;
    align-self: center;
    width: 50vw;
    align-self: flex-start;
}

.timeline__event:nth-child(2n+1) {
    flex-direction: row-reverse;
    align-self: flex-end;
}

.timeline__event:nth-child(2n+1) .timeline_icon {
    border-radius: 0 6px 6px 0;
}

.timeline__event:nth-child(2n+1) .timeline_content {
    border-radius: 6px 0 0 6px;
}

.timeline__event:nth-child(2n+1) .timeline__event__icon:before {
    content: "";
    width: 2px;
    height: 100%;
    background: var(--blue);
    position: absolute;
    top: 0%;
    left: 50%;
    right: auto;
    z-index: -1;
    transform: translateX(-50%);
    animation: fillTop 0.1s forwards 0.1s ease-in-out;
}

.timeline__event:nth-child(2n+1) .timeline__event__icon:after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--blue);
    position: absolute;
    right: 0;
    z-index: -1;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    animation: fillLeft 0.1s forwards 0.1s ease-in-out;
}

.timeline_title_box {
    /* font-size: 1.2rem;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 1.5px; */
}

.timeline_title_box h3 {
    font-size: 28px;
    font-weight: 500;
    font-family: var(--banner-font);
    color: var(--blue);
}

.timeline_content {
    padding: 20px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    background: #fff;
    width: calc(40vw - 84px);
    border-radius: 0 6px 6px 0;
}

.timeline_icon {
    color: #fff;
    font-size: 44px;
    /* font-weight: 600; */
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 20px;
    border-radius: 6px 0 0 6px;
    font-family: "Impact", sans-serif;
}

.timeline__event__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    padding: 20px;
    align-self: center;
    margin: 0 20px;
    background: var(--blue);
    border-radius: 100%;
    width: 40px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    padding: 40px;
    height: 40px;
    position: relative;
}

.timeline__event__icon i {
    font-size: 32px;
    color: #fff;
}

.timeline__event__icon:before {
    content: "";
    width: 2px;
    height: 100%;
    background: var(--blue);
    position: absolute;
    top: 0%;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    animation: fillTop 0.1s forwards 0.1s ease-in-out;
    display: none;
}

.timeline__event__icon:after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--blue);
    position: absolute;
    left: 0%;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    animation: fillLeftOdd 0.1s forwards 0.1s ease-in-out;
}

.timeline_para {
    font-family: var(--para-font);
    font-size: 15px;
    line-height: 29px;
    color: #000;
}

.timeline__event--type2:after {
    background: var(--blue);
}

.timeline__event--type2 .timeline_icon {
    color: #fff;
    background: var(--blue);
}

.timeline__event--type2:nth-child(2n+1) .timeline__event__icon:before,
.timeline__event--type2:nth-child(2n+1) .timeline__event__icon:after {
    background: var(--blue);
}

.timeline__event--type2 .timeline__event__icon {
    background: var(--blue);
    color: #fff;
}

.timeline__event--type2 .timeline__event__icon:before,
.timeline__event--type2 .timeline__event__icon:after {
    background: var(--blue);

}

.timeline__event--type2 .timeline_title_box {
    color: var(--blue);
}

.timeline__event--type3:after {
    background: var(--blue);
}

.timeline__event--type3 .timeline_icon {
    color: #fff;
    background-color: var(--blue);
}

.timeline__event--type3:nth-child(2n+1) .timeline__event__icon:before,
.timeline__event--type3:nth-child(2n+1) .timeline__event__icon:after {
    background: var(--blue);
}

.timeline__event--type3 .timeline__event__icon {
    background: var(--blue);
    color: var(--blue);
}

.timeline__event--type3 .timeline__event__icon:before,
.timeline__event--type3 .timeline__event__icon:after {
    background: var(--blue);
}

.timeline__event--type3 .timeline_title_box {
    color: var(--blue);
}

.timeline__event:last-child .timeline__event__icon:before {
    content: none;
}

@media(max-width:1400px) {
    .timeline {
        max-width: 87%;
    }
}

@media(max-width:1200px) {
    .timeline {
        max-width: 98%;
    }

    .timeline_title_box h3 {
        font-size: 22px;
    }

    .timeline__event {
        width: 80vw;
    }

    .timeline_para {
        font-size: 13px;
        line-height: 22px;
    }
}

@media(max-width:765px) {
    .timeline__event:nth-child(2n+1) .timeline__event__icon {
        display: none;
    }

    .timeline__event--type2 .timeline__event__icon {
        display: none;
    }

    .timeline__event__icon {
        display: none;
    }
}


@media (max-width: 786px) {
    .timeline__event {
        flex-direction: column;
        align-self: center;
    }

    .timeline_content {
        width: 100%;
    }

    .timeline__event__icon {
        border-radius: 6px 6px 0 0;
        width: 100%;
        margin: 0;
        box-shadow: none;
    }

    .timeline__event__icon:before,
    .timeline__event__icon:after {
        display: none;
    }

    .timeline_icon {
        border-radius: 0;
        padding: 20px;
    }

    .timeline__event:nth-child(2n+1) {
        flex-direction: column;
        align-self: center;
    }

    .timeline__event:nth-child(2n+1) .timeline_icon {
        border-radius: 0;
        padding: 20px;
    }

    .timeline__event:nth-child(2n+1) .timeline__event__icon {
        border-radius: 6px 6px 0 0;
        margin: 0;
    }

    .na-download-pdf-btn a {
        padding: 7px 14px;
        font-size: 11px;
    }
}

@keyframes fillLeft {
    100% {
        right: 100%;
    }
}

@keyframes fillTop {
    100% {
        top: 100%;
    }
}

@keyframes fillLeftOdd {
    100% {
        left: 100%;
    }
}







/* .dropdown-menu {
    display: none;
}

.dropdown.open .dropdown-menu {
    display: block;
} */





/* ================= IMPACT PAGE HEADER ================== */

.imapct-top-section-img-box {
    width: 100%;
    height: 500px;
    padding-left: 50px;
}

.imapct-top-section-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-page-header {
    height: 750px;
    object-fit: contain;
    text-align: center;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100vw;
    /* margin-left: -10px; */
    margin-top: -5px;
    background-size: cover;
}

.impact-top-bg-title {
    position: relative;
    margin: auto;
    top: 42%;
    left: 52%;
    transform: translate(-50%, -50%);
}

.impact-top-bg-title h1 {
    font-family: var(--banner-font);
    font-size: 60px;
    font-weight: 600;
    /* letter-spacing: 7px; */
    color: #0798ad;
    text-align: left;
}

@media(max-width:1200px) {
    .impact-page-header {
        height: 500px;
    }
}

@media(max-width:600px) {
    .impact-page-header {
        height: 450px;
    }

    .impact-top-bg-title h1 {
        font-size: 41px;
    }
}

@media(max-width:450px) {
    .impact-page-header {
        height: 300px;
    }

    .impact-top-bg-title h1 {
        font-size: 33px;
    }

}


/* ==================== MYTH FACT ======================== */

.myth-fact-container {
    padding: 150px 100px 70px;
}

.myth-table-box {
    padding: 70px 0px 0px;
}

.myth-title {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    font-family: var(--banner-font);
    color: var(--blue);
    width: 50%;
    text-transform: uppercase;
}

.myth-points-box {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: left;
    padding-top: 44px;
    padding-bottom: 20px;
    border-bottom: 2px solid #000;
    border-bottom: 1px solid;
    border-image: linear-gradient(to right, #ffffff, #0798ad, #ffffff) 1;
    padding-right: 100px;
    padding-left: 100px;
    height: 150px;
}

.right-botder-myth {
    border-right: 1px solid #0798ad42;
}

.myth-icon-box img {
    height: 60px;
}

.myth-text-box p {
    font-family: var(--para-font);
    font-size: 17px;
    line-height: 29px;
    color: rgb(0, 0, 0);
    hyphens: auto;
}


/* -- Calcluter -- */

.note-calc {
    text-align: center;
    padding-top: 35px;
    font-family: var(--para-font);
    font-size: 17px;
}

.rainwatercalcluter {
    padding: 100px;
}

.cal-rain-water-container {
    max-width: 80%;
    margin: auto;
    /* background: #fff; */
    padding: 25px;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.cal-rain-water-title {
    text-align: center;
    margin-bottom: 20px;
}

.cal-rain-water-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cal-rain-water-col {
    flex: 1;
}

.cal-rain-water-label {
    display: block;
    margin-bottom: 5px;
    font-family: var(--para-font);
    font-size: 20px;
    line-height: 29px;
    color: #000;
    text-align: justify;
    hyphens: auto;
    font-weight: 500;
}

.cal-rain-water-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 17px;
    font-family: var(--banner-font);
    box-shadow: rgb(100 100 111 / 8%) 0px 7px 29px 0px;
    border: 1px solid #0798ad;
    margin-top: 8px;
}

.cal-rain-water-btn {
    width: 100%;
    padding: 12px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

.cal-rain-water-btn:hover {
    background: var(--blue);
}

.cal-rain-water-result {
    /* margin-top: 50px; */
    background: #ffffff;
    /* padding: 20px; */
    border-radius: 8px;
}

.cal-rain-water-result-title {
    margin-top: 0;
    margin-bottom: 15px;
    display: block;
    margin-bottom: 5px;
    font-family: var(--para-font);
    font-size: 20px;
    line-height: 29px;
    color: #000;
    text-align: justify;
    hyphens: auto;
    font-weight: 500;
    margin-top: 50px;
}

.cal-rain-water-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: rgb(100 100 111 / 8%) 0px 7px 29px 0px;
    border: 1px solid #0798ad;
    padding: 13px;
    font-family: var(--para-font);
    font-size: 14px;
    margin-top: 11px;
}

.calc {
    padding: 70px;
    /* border: 2px solid #000; */
    margin-top: 50px;
    border: 10px solid #f2f7fa;
    box-shadow: rgb(181 189 197 / 93%) 0px 8px 24px;
}

.count-bold {
    font-weight: bold;
}

.contact-form-box h1 {
    font-family: var(--banner-font);
    font-size: 37px;
    font-weight: 600;
    color: var(--blue);
    padding-bottom: 15px;
    padding-top: 29px;
}

@media(max-width:768px) {

    .cal-rain-water-row {
        flex-direction: column;
    }

}


/* ---------------- FAQ SECTION ----------------- */
.faq-section-box {
    padding: 0px 70px;
}

.faq-img-box {
    width: 600px;
}

.faq-img-box img {
    width: 100%;
    padding-top: 40px;
}

.faq-section {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 0px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 15px rgba(82, 194, 255, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    color: #000;
    font-size: 17px;
    transition: all 0.3s ease;
    background: transparent;
    width: 100%;
    border: none;
    text-align: left;
    font-family: var(--banner-font);
}

.faq-question:hover {
    color: var(--blue);
}

.faq-question.active {
    color: #ffffff;
    background: var(--blue);
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 5px;
}

.faq-question.active .faq-icon {
    background: #000000;
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(255, 255, 255, 0.6);
}

.faq-answer.open {
    max-height: 500px;
    padding: 16px 25px 16px 25px;
    font-size: 20px;
}

.faq-answer p {
    color: #000000;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    font-weight: 400;
    font-family: var(--para-font);
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 0px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
    border: 1px solid #0798ad;
}


@media(max-width:1024px) {

    .faq-question {
        font-size: 13px;
        padding: 10px 10px;
    }

    .faq-answer.open {
        padding: 15px 20px 35px 20px;
    }

    .faq-answer p {
        font-size: 18px;
    }
}

@media(max-width:768px) {
    .faq-section {
        margin-top: 25px;
    }

    .faq-question {
        font-size: 14px;
        padding: 10px 10px;
    }

    .faq-icon {
        width: 25px;
        height: 25px;
        font-size: 16px;
    }

    .faq-answer.open {
        padding: 12px 15px 25px 15px;
    }

    .faq-answer p {
        font-size: 15px;
    }
}

@media(max-width:576px) {
    .faq-section {
        margin-top: 20px;
    }

    .faq-item {
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .faq-question {
        font-size: 12px;
        padding: 10px 12px;
    }

    .faq-icon {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }

    .faq-answer.open {
        padding: 10px 12px 20px 12px;
    }

    .faq-answer p {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* ================= HOME NEW SERVICES SECTION ============== */

.service-home-pointer-box {
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    height: 100px;
}

.service-home-pointer-box h1 {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    font-family: var(--para-font);
}

.service-home-pointer-box .pointer {
    font-size: 21px;
    font-weight: 500;
    font-family: var(--banner-font);
    color: #000000;
    text-align: right;
}

.service-home-pointer-box .pointer img {
    height: 40px;
}

.service-home-details-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.border-right {
    border-right: 1px solid #0798ad30;
}

.border-bottomm {
    border-bottom: 1px solid #0798ad30;
}

.services-home-section {
    margin: 0 auto;
    padding: 100px 5%;
    background: radial-gradient(circle at center, #ffffff 0%, #feffff 60%, #e5f0f7c7 100%);
}

.services-home-section-left-para {
    margin-right: 80px;
}

.services-bottom-image {
    margin-top: -16%;
    width: 100vw;
}

@media(max-width:1450px) {
    .service-home-pointer-box {
        padding: 0px 10px;
        height: 120px;
    }

    .service-home-pointer-box h1 {
        font-size: 14px;
    }
}

@media(max-width:1310px) {
    .service-home-details-box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(207px, 1fr));
    }
}

@media(max-width:1160px) {
    .service-home-details-box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(182px, 1fr));
    }

    .services-home-section {
        margin: 0 auto;
        padding: 100px 2%;
    }
}

@media(max-width:950px) {
    .service-home-pointer-box {
        padding: 0px 0px 0px 10px;
        height: 120px;
    }

    .service-home-details-box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(157px, 1fr));
    }

    .service-home-pointer-box {
        gap: 11px;
    }
}

@media(max-width:767px) {
    .services-home-section {
        margin: 0 auto;
        padding: 0px 2%;
    }

    .service-home-details-box {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }

    .services-home-section-left-para {
        margin-right: 0px;
    }

    .service-home-pointer-box {
        padding: 15px 10px 15px 10px;
        height: fit-content;
    }

    .blank-pointer {
        display: none;
    }

    .border-bottomm {
        border-right: 1px solid #ffffff00;
    }

    .services-bottom-image {
        margin-top: -29%;
    }
}


/* ========================= NEW SOLUTIONS PAGE ===================== */

.solutions-page-box {
    padding: 0px 100px;
}

.solutions-top-title-box h1 {
    font-family: var(--banner-font);
    font-size: 37px;
    font-weight: 600;
    /* letter-spacing: 7px; */
    color: var(--blue);
    /* color: #619bb6; */
    /* line-height: 67px; */
    padding-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

.solutions-top-title-box p {
    font-family: var(--para-font);
    font-size: 17px;
    line-height: 29px;
    color: #000;
    text-align: center;
    hyphens: auto;
}



.impact-solution-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 50px 0px 0px;
}

.impact-solutions-vector-box {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 50px;
}

.impact-vector-image-box img {
    height: 170px;
}

.impact-vector-image-box h2 {
    font-family: var(--banner-font);
    font-size: 25px;
    font-weight: 600;
    /* letter-spacing: 7px; */
    color: var(--blue);
    /* color: #619bb6; */
    /* line-height: 67px; */
    padding-bottom: 15px;
    padding-top: 20px;
}

.impact-vector-right-image-box img {
    height: 30px;
}

.solutions-top-title-box {
    padding-top: 100px;
}

.all-sol-details-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(385px, 1fr));
    gap: 30px;
    padding-top: 30px;
}

.sol-detailed-box {
    text-align: center;
    border: 1px solid #d8b44a7d;
    border-radius: 5px;
    padding: 20px 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sd-img-box {
    text-align: center;
}

.sd-img-box img {
    height: 370px;
    width: 100%;
    object-fit: contain;
}

.sd-text-box {
    padding-top: 20px;
}

.sd-text-box h1 {
    font-family: var(--banner-font);
    font-size: 25px;
    font-weight: 600;
    color: var(--blue);
}

.sd-text-box p {
    font-family: var(--para-font);
    font-size: 17px;
    line-height: 29px;
    color: #000;
    hyphens: auto;
}

/* ------- Sol- Approch -------- */

.sol-approch-box {
    padding: 150px 0px 70px 0px;
}

.sol-approch-details-box h1 {
    font-family: var(--banner-font);
    font-size: 35px;
    font-weight: 600;
    /* letter-spacing: 7px; */
    color: #fff;
    /* color: #619bb6; */
    /* line-height: 67px; */
    padding-bottom: 15px;
}

.sol-approch-pointer-box {
    margin-bottom: 20px;
}

.sol-approch-pointer-box img {
    height: 30px;
    margin-right: 10px;
}

.sol-approch-pointer-box span {
    font-family: var(--para-font);
    font-size: 17px;
    line-height: 29px;
    color: #fff;
    hyphens: auto;
    font-weight: 600;
}

.sol-approch-icon-center img {
    height: 500px;
    /* margin-left: 20%; */
    margin-top: -11%;
    margin-bottom: -11%;
}

.sol-apprroch-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, rgb(11 168 191) 0%, rgb(0 94 120) 100%);
    max-width: 87%;
    margin: 0 auto;
    padding: 0px 50px;
    border-radius: 20px;
}

/* .sol-approch-right {
    margin-left: 7%;
} */

.sol-approch-details-box {
    padding: 30px 0px;
}

.bottom-wave-image {
    width: 100vw;
    margin-top: -43%;
    position: relative;
    z-index: -1;
}

.sol-ind-details-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 81%;
    margin: 0 auto;
    padding-top: 60px;
}

.sol-detail-box img {
    margin-bottom: 20px;
    height: 100px;
}

.sol-detail-box {
    text-align: center;
    border: 1px solid #ffffff45;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sol-detail-box h3 {
    font-family: var(--para-font);
    font-size: 16px;
    /* line-height: 29px; */
    color: #000;
    /* text-align: justify; */
    /* hyphens: auto; */
}

.cta-details-box {
    text-align: center;
    /* margin-right: 13%; */
    padding: 150px;
}

.cta-details-box h3 {
    font-family: var(--banner-font);
    font-size: 45px;
    color: #fff;
    font-weight: bold;
    padding-bottom: 20px;
}

.cta-details-box p {
    font-family: var(--para-font);
    font-size: 17px;
    color: #fff;
    font-weight: 500;
}

/* ============== Solutions  Details ==================== */

.solution-details-box {
    padding-top: 145px;
}

.solution-top-pointer-details-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sol-top-img-box img {
    height: 65px;
}

.sol-cta-box {
    margin-top: 100px;
}

/* ======================= STICKY ICONS =============== */

.sticky-icon {
    z-index: 10000000000;
    position: fixed;
    top: 50%;
    right: 0%;
    width: 220px;
    display: flex;
    flex-direction: column;
}

.sticky-icon a {
    transform: translate(160px, 0px);
    border-radius: 5px 0px 0px 5px;
    text-align: left;
    margin: 2px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
    font-size: 22px;
    transition: all 0.8s;
}

.sticky-icon a:hover {
    color: #FFF;
    transform: translate(0px, 0px);
}

.sticky-icon a:hover i {
    transform: rotate(360deg);
}

/*.search_icon a:hover i  {
	transform:rotate(360deg);}*/
.Facebook {
    background-color: var(--blue);
    color: #FFF;
}

.Youtube {
    background-color: var(--blue);
    color: #FFF;
}

.Twitter {
    background-color: var(--blue);
    color: #FFF;
}

.Instagram {
    background-color: var(--blue);
    color: #FFF;
}

.Google {
    background-color: var(--blue);
    color: #FFF;
}

.whatsapp {
    background-color: var(--blue);
    color: #FFF;
}

.linkedin {
    background-color: var(--blue);
    color: #FFF;
}

.form {
    background-color: var(--blue);
    color: #FFF;
}

.sticky-icon a i {
    background-color: #FFF;
    height: 40px;
    width: 40px;
    color: #000;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 0.5s;
}

.sticky-icon a i {
    background-color: #FFF;
    color: var(--blue);
}

#myBtn {
    height: 50px;
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    text-align: center;
    padding: 10px;
    text-align: center;
    line-height: 40px;
    border: none;
    outline: none;
    background-color: #1e88e5;
    color: white;
    cursor: pointer;
    border-radius: 50%;
}

.fa-arrow-circle-up {
    font-size: 30px;
}

#myBtn:hover {
    background-color: #555;
}

@media(max-width:767px) {
    .sticky-icon a {
        transform: translate(160px, 0px);
        border-radius: 5px 0px 0px 5px;
        text-align: left;
        margin: 2px;
        text-decoration: none;
        text-transform: uppercase;
        padding: 5px;
        font-size: 13px;
        transition: all 0.8s;
    }

    .sticky-icon a i {
        background-color: #FFF;
        height: 24px;
        width: 24px;
        text-align: center;
        line-height: 26px;
        border-radius: 50%;
        margin-right: 20px;
        transition: all 0.5s;
    }

    .sticky-icon {
        z-index: 10000000000;
        position: fixed;
        top: 50%;
        right: 0%;
        width: 200px;
        display: flex;
        flex-direction: column;
    }

}

@media(max-width:1800px) {
    .all-sol-details-box {
        grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    }
}

@media(max-width:1700px) {
    .about-story-img-box {
        height: 500px;
        width: 500px;
    }

    .story-bottom-img {
        margin-bottom: -26%;
    }

    .first-story-box {
        max-width: 60%;
    }

    .second-story-box {
        max-width: 60%;
        margin-left: 40%;
    }

    .about-story-content-box {
        padding: 20px;
    }

    .about-story-content-box p {
        font-size: 13px;
        line-height: 22px;
    }

    .new-story-box-container {
        padding: 0% 2%;
    }

    .cal-rain-water-container {
        max-width: 100%;
    }

    .sol-ind-details-container {
        max-width: 98%;
    }
}

@media(max-width:1500px) {
    .impact-container {
        padding: 150px 50px 50px;
    }

    .pointer-icon-box img {
        height: 46px;
        padding-bottom: 2px;
    }

    .pointer-inner-box {
        gap: 5px;
    }

    .pointer-num-box h4 {
        font-size: 20px;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    .responsive-container-block.content {
        padding: 100px 50px 50px 50px;
    }

    .text-blk.info {
        font-size: 14px;
        margin-bottom: 0px;
    }

    .myth-fact-container {
        padding: 150px 0px 70px;
    }

    .myth-points-box {
        padding-right: 50px;
        padding-left: 50px;

    }

    .solutions-page-box {
        padding: 0px 20px;
    }

    .all-sol-details-box {
        gap: 10px;
    }

    .sol-apprroch-container {
        max-width: 97%;
    }

    .sol-approch-icon-center img {
        height: 300px;
    }
}

@media(max-width:1300px) {
    .home-tagline img {
        height: 450px;
    }


    .home-story-tagline-box {
        padding: 30px;
    }

    .impact-container {
        padding: 150px 100px 50px;
    }

    .impact-container {
        padding: 150px 30px 50px;
    }

    .impact-past-box .pointer-num-box h4 {
        font-size: 12px;
    }

    .impact-past-box .pointer-icon-box img {
        height: 40px;
    }

    .faq-img-box {
        width: 460px;
    }

    .faq-section-box {
        padding: 0px 0px;
    }

    .all-sol-details-box {
        grid-template-columns: repeat(auto-fit, minmax(364px, 1fr));
    }

    .sol-ind-details-container {
        gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
    }
}

@media(max-width:1175px) {
    .services-home-section {
        margin: 0 auto;
        padding: 100px 2%;
    }

    .top-title-box {
        display: none;
    }

    .myth-fact-container {
        padding: 50px 0px 0px;
    }

    .faq-img-box {
        width: 404px;
    }

    .sol-apprroch-container {
        padding: 0px 10px;
    }

    .sol-approch-icon-center img {
        height: 200px;
    }

    .sol-approch-pointer-box span {
        font-size: 13px;
        line-height: 20px;
    }

    .sol-ind-details-container {
        gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(147px, 1fr));
    }

    .sol-detail-box img {
        margin-bottom: 10px;
        height: 84px;
    }
}

@media(max-width:1000px) {
    .service-home-details-box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
    }

    .services-home-section-left-para {
        margin-right: 10px;
    }

    .impact-past-box {
        grid-template-columns: 1fr;
    }

    .impact-past-box .pointer-box {
        padding-top: 0px;
        display: flex;
        justify-content: center;
    }

    .pointer-icon-box img {
        height: 40px;
        padding-bottom: 2px;
    }

    .pointer-num-box h4 {
        font-size: 12px;
    }

    .impact-new-location-box {
        font-size: 15px;

    }

    .impact-new-locationicon-box {
        color: #0798ad;
        font-size: 19px;
        padding-right: 4px;
    }

    .text-blk.name {
        font-size: 25px;
    }

    .responsive-container-block.content {
        padding: 100px 30px 30px 30px;
    }

    .myth-points-box {
        height: 200px;
    }

    .myth-points-box {
        padding-right: 10px;
        padding-left: 10px;
    }

    .rainwatercalcluter {
        padding: 50px 20px;
    }
}


@media(max-width:800px) {
    .home-tagline img {
        height: 350px;
    }

    .all-sol-details-box {
        width: 81%;
        margin: 0 auto;
    }
}

@media(max-width:767px) {
    .home-tagline img {
        height: auto;
        margin-top: 16%;
        padding: 0px;
        width: 100%;
        margin-bottom: 0px;
    }

    .service-home-details-box {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(355px, 1fr));
    }

    .track img {
        width: auto;
        height: 100px;
        padding: 10px 15px;
        border-radius: 12px;
        object-fit: contain;
        flex-shrink: 0;
        /* padding: 30px; */
        /* border: 1px solid #619bb652; */
        width: 147px;
        margin-right: 20px;
    }

    .about-story-img-box {
        height: auto;
        width: 100%;
    }

    .first-story-box {
        max-width: 100%;
    }

    .second-story-box {
        max-width: 100%;
        margin-left: 0%;
    }

    .pointer-box {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        display: grid;

    }

    .new-impact-text-box {
        margin-top: 20px;
        padding: 30px 10px 0px 30px;
        margin-top: -112px;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .responsive-container-block.content {
        padding: 50px 10px 10px 10px;
    }

    .text-blk.name {
        font-size: 20px;
        margin-top: 2px;
    }

    .myth-points-box {
        display: block;
        height: 252px;
        padding: 20px 10px;
    }

    .myth-text-box p {
        font-family: var(--para-font);
        font-size: 11px;
        line-height: 20px !important;
    }

    .myth-points-box {
        height: 200px;
    }

    .myth-icon-box img {
        height: 40px;
    }

    .myth-table-box {
        padding: 20px 0px 0px;
    }

    .myth-title {
        font-size: 24px;
    }

    .calc {
        margin-top: 0px;
        padding: 40px;
    }

    .cal-rain-water-label {
        font-size: 16px;
    }

    .cal-rain-water-input {
        margin-top: 0px;
    }

    .cal-rain-water-result-title {
        margin-top: 20px;
        font-size: 16px;
    }

    .cal-rain-water-result-row {
        margin-top: 0px;
    }

    .note-calc {
        padding-top: 10px;
        font-size: 14px;
    }

    .faq-section-box {
        padding: 0px 0px;
    }

    .faq-img-box {
        width: 100%;
    }

    .cal-rain-water-input {
        font-size: 10px;
    }

    .faq-img-box img {
        padding-top: 0px;
    }

    .impact-solutions-vector-box {
        gap: 5px;
    }

    .impact-solution-icons {
        gap: 5px;
    }

    .solutions-page-box {
        padding: 0px 10px;
    }

    .impact-vector-image-box img {
        height: 80px;
    }

    .impact-vector-image-box h2 {
        font-size: 14px;
        padding-top: 9px;
    }

    .impact-vector-right-image-box img {
        height: 10px;
    }

    .impact-solution-icons {
        padding: 20px 0px 0px;
    }

    .solutions-top-title-box {
        padding-top: 70px;
    }

    .solutions-top-title-box h1 {
        font-size: 26px;
    }

    .solutions-top-title-box p {
        font-size: 15px;
        line-height: 22px;
    }

    .sol-apprroch-container {
        flex-direction: column;
    }

    .sol-approch-details-box h1 {
        font-size: 17px;
        padding-top: 20px;
    }

    .sol-approch-pointer-box span {
        font-size: 11px;
    }

    .sol-approch-pointer-box img {
        height: 21px;
        margin-right: 5px;
    }

    .sol-approch-box {
        padding: 50px 0px 70px 0px;
    }

    .cta-details-box {
        padding: 150px 0px;
    }

    .sol-cta-box {
        margin-top: 60px;
    }

    .impact-container {
        padding: 20px 5px 50px;
    }

}



@media(max-width:500px) {
    .track img {
        width: auto;
        height: 80px;
        padding: 10px 15px;
        border-radius: 12px;
        object-fit: contain;
        flex-shrink: 0;
        /* padding: 30px; */
        /* border: 1px solid #619bb652; */
        width: 100px;
        margin-right: 20px;
    }

    .impact-container {
        padding: 20px 5px 50px;
    }

    .impact-latest-box {
        padding-top: 0px;
    }

    .impact-new-location-box {
        font-size: 10px;
    }

    .impact-new-locationicon-box {
        color: #0798ad;
        font-size: 10px;
        padding-right: 4px;
    }

    .pointer-icon-box img {
        height: 20px;
        padding-bottom: 0px;
    }

    .pointer-num-box h4 {
        font-size: 8px;
    }

    .new-impage-details-box {
        border: 1px solid #fff;
        width: 97vw;
    }

    .pointer-box {
        padding-top: 33px;
    }

    .impact-past-box {
        margin-top: 15px;
    }

    .impact-past-box .pointer-icon-box img {
        height: 20px;
    }

    .impact-past-box .pointer-num-box h4 {
        font-size: 8px;
    }

    .impact-past-box .new-impact-text-box {
        padding: 70px 0px 0px 0px;
    }

    .new-impact-text-box {
        padding: 70px 0px 0px 0px;
    }

    .pointer-num-box h4 {
        padding: 0px;
    }

    .impact-past-box .pointer-inner-box {
        padding-right: 2px;
    }

    .solutions-top-title-box h1 {
        font-size: 20px;
    }

    .solutions-top-title-box p {
        font-size: 13px;
    }

    .cta-details-box h3 {
        font-size: 30px;
    }
}

@media(max-width:500px) {
    .testi-slider-container {
        overflow: visible;
        position: relative;
        width: 100%;
    }

    .text-blk.quotes {
        position: absolute;
        left: auto;
        font-size: 129px;
        line-height: 392.83px;
        top: -174px;
        font-weight: 900;
        color: #d9b44a;
        margin: 0px 0px 0px 0px;
        right: 20px;
    }

    .profile-image {
        left: 60px;
        top: -54px;
    }

    .responsive-container-block.content {
        padding: 100px 0px 0px 0px;
    }

    .text-blk.info {
        font-size: 14px;
        margin-bottom: 0px;
        padding: 10px;
        text-align: justify;
        hyphens: auto;
        width: 97%;
        margin: 0 auto;
    }

    .testi-slider-slide {
        padding: 0px 10px;
        margin: 0px 0px 0px 0px;
    }

    .responsive-container-block.content {
        width: 98vw;
    }

    .cal-rain-water-container {
        padding: 0px;
    }

    .calc {
        margin-top: 0px;
        padding: 10px;
        border: 5px solid #f2f7fa;
    }

    .rainwatercalcluter {
        padding: 50px 5px;
    }

    .all-sol-details-box {
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .sol-detailed-box {
        margin-bottom: 20px;
    }

    .sd-img-box img {
        height: auto;
    }

    .sd-text-box h1 {
        font-size: 20px;
    }

    .sd-text-box p {
        font-size: 14px;
        line-height: 22px;
        padding-top: 10px;
    }
}

/* ==========================
   Large Screens (1600px+)
========================== */
@media (min-width: 1601px) {
    .contact-us-box {
        max-width: 80%;
    }
}

/* ==========================
   Desktop (1200px - 1600px)
========================== */
@media (max-width: 1600px) {
    .contact-us-box {
        max-width: 90%;
    }

    .info-box {
        font-size: 16px;
    }

    .contact-top-img-box {
        width: 100%;
        max-width: 550px;
    }
}

/* ==========================
   Laptop (992px - 1200px)
========================== */
@media (max-width: 1200px) {

    .contact-container {
        padding: 120px 0 30px;
    }

    .contact-us-box {
        max-width: 95%;
    }

    .contact-details-info {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .contact-form-box {
        padding-top: 120px;
    }

    .form2 {
        max-width: 80%;
        padding: 40px;
        margin: 0 auto;
    }

    .contact-bimage-box {
        padding-left: 40px;
    }

    .contact-top-img-box {
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 991px) {

    .contact-container {
        padding: 100px 0 20px;
    }

    .contact-us-box .row {
        flex-direction: column;
    }

    .contact-us-box .row .col-md-5,
    .contact-us-box .row .col-md-7 {
        width: 100%;
    }

    .contact-form-box {
        padding-top: 60px;
    }

    .contact-bimage-box {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }

    .contact-top-img-box {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 20px;
    }

    .contact-top-img-box-2 {
        float: none;
    }

    .form2 {
        max-width: 96%;
        padding: 30px;
        margin: 0 auto;
    }

    .contact-title-heading {
        font-size: 30px;
    }

    .lable {
        font-size: 18px;
    }

    .info-box {
        font-size: 15px;
    }

    .icon-box img {
        height: 70px;
        padding: 15px;
    }

    .map-image iframe {
        height: 400px;
        margin-top: -120px;
    }

    .contact-details-box {
        padding: 0px 10px;
    }
}

@media (max-width: 767px) {

    .contact-container {
        padding: 80px 0 20px;
    }

    .contact-details-info {
        grid-template-columns: 1fr;
    }

    .contact-details-box {
        gap: 15px;
        padding: 10px 5px;
    }

    .contact-title-heading {
        font-size: 26px;
        text-align: center;
    }

    .form2 {
        padding: 20px;
        border-radius: 12px;
    }

    .form2 input,
    .form2 select,
    .form2 textarea {
        font-size: 14px;
    }

    .butn {
        font-size: 18px;
        padding: 12px 20px !important;
    }

    .lable {
        font-size: 16px;
    }

    .map-image iframe {
        height: 300px;
        margin-top: -80px;
    }
}

@media (max-width: 575px) {

    .contact-container {
        padding: 70px 0 20px;
    }

    .contact-details-box {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .info-box {
        text-align: center;
        padding: 0 10px 15px;
        font-size: 17px;
    }

    .icon-box img {
        height: 60px;
        padding: 10px;
    }

    .contact-title-heading {
        font-size: 22px;
    }

    .form2 {
        padding: 15px;
    }

    .form2 h1 {
        font-size: 22px;
    }

    .butn {
        font-size: 16px;
    }

    .map-image iframe {
        height: 250px;
        margin-top: -50px;
    }
}