* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'helvetica';
}

html.lenis {
    height: auto
}

.lenis.lenis-smooth {
    scroll-behavior: auto
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain
}

.lenis.lenis-stopped {
    overflow: hidden
}

.lenis.lenis-scrolling iframe {
    pointer-events: none
}

.no-scroll {
    width: 100%;
    height: 100vh;
}

nav {
    position: relative;
    z-index: 9999;
    width: 100%;
    background: linear-gradient( 135deg, #0A3131, #0a737aab);
    backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

nav.nav_fixed {
    position: fixed;
    top: 0;
    left: 0;
    animation: navSlideDown 0.35s ease-in-out;
}

.image-width {
    width: 100%;
}

.pad-x-150 {
    padding-left: 150px;
    padding-right: 150px;
}

@media (max-width:1700px) {
    .pad-x-150 {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (max-width:1400px) {
    nav {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (max-width:1200px) {
    .pad-x-150 {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (max-width:991px) {
    .pad-x-150 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width:991px) {
    nav {
        padding-left: 0px;
        padding-right: 00px;
    }
}


/* .br-10 {
    border-radius: 10px;
} */

.header-top {
    background-color: #13b070;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: auto;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-align: center;
    height: 40px;
}

.header-top-res {
    background-color: #13b070;
    width: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    margin: auto;
    justify-content: center;
    overflow: hidden;
    position: relative;
    text-align: center;
    height: 40px;
}

.drop-in,
.drop-two {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(-100%);
    left: 0;
    right: 0;
}

.drop-in {
    animation: dropIn 10s infinite;
}

.drop-two {
    animation: dropTwo 10s infinite;
}

.link-clr {
    color: #ffffff;
    text-decoration: none;
}

@keyframes dropIn {
    0%,
    45%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }
    50%,
    95% {
        opacity: 0;
        transform: translateY(100%);
    }
}

@keyframes dropTwo {
    0%,
    45%,
    50% {
        opacity: 0;
        transform: translateY(-100%);
    }
    55%,
    95% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

.pad-top {
    padding-top: 90px;
}

@media screen and (max-width:1600px) {
    .pad-top {
        padding-top: 75px;
    }
}

@media screen and (max-width:1300px) {
    .pad-top {
        padding-top: 65px;
    }
}

@media screen and (max-width:1150px) {
    .pad-top {
        padding-top: 55px;
    }
}

@media screen and (max-width:970px) {
    nav .wrapper {
        height: 70px;
    }
}

@media screen and (max-width:850px) {
    .header-top {
        display: none;
    }
}

@media screen and (max-width:575px) {
    .header-top-res {
        display: flex;
    }
    .header-top {
        display: none;
    }
}

@media screen and (min-width:575px) {
    .header-top-res {
        display: none;
    }
    .header-top {
        display: flex;
    }
}

nav .wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 70%;
    margin: 0 auto;
    transition: padding 0.3s ease;
    padding-top: 20px;
    padding-bottom: 20px;
}

.wrapper-cmn {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 70%;
    margin: 0 auto;
}

nav .wrapper.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
}

.image-width {
    width: 100%;
}

.wrapper .logo a {
    width: 249px;
}

.wrapper .nav-links {
    display: inline-flex;
    gap: 10px;
}

@media (max-width:1400px) {
    .wrapper .nav-links {
        display: inline-flex;
        gap: 0px;
    }
}

@media (max-width:1250px) {
    .wrapper .nav-links {
        gap: 0px;
    }
}


/* .nav-links li {
    list-style: none;
}

.nav-links li a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
 
} */

.nav-links li {
    position: relative;
    display: inline-block;
}

.nav-links li a {
    color: #D9D9D9;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 9px 15px;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    display: inline-block;
    /* important for transform */
    transition: transform 0.35s ease-in-out, color 0.35s ease-in-out;
}

.nav-links li a:hover {
    transform: scale(1.12);
    /* smooth zoom */
    color: #ffffff;
    /* optional highlight */
}

@media (max-width:1800px) {
    .nav-links li a {
        padding: 9px 10px;
    }
    .nav-links li::after {
        content: "";
        position: absolute;
        left: 10px;
        bottom: 0;
        width: 0;
        height: 2px;
        background-color: #000000;
        transition: width 0.3s ease;
    }
}

@media (max-width:1150px) {
    .nav-links li a {
        padding: 9px 10px;
    }
}

@media (max-width:1400px) {
    .nav-links li a {
        font-size: 16px;
    }
}

@media (max-width:1050px) {
    .nav-links li a {
        font-size: 14px;
    }
}

@media (max-width:970px) {
    .nav-links li {
        list-style: none;
    }
    .nav-links li a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600 !important;
        font-size: 16px;
        padding: 9px 0px;
        border-radius: 5px;
        transition: all 0.3s ease;
        font-family: "Poppins", sans-serif;
    }
    .nav-links li {
        position: relative;
        display: list-item;
    }
    .nav-links li:hover::after {
        width: 0%;
    }
    .wrapper .nav-links {
        padding: 50px 10px;
        line-height: 20px;
    }
    .nav-links li a {
        padding: 9px 0px;
    }
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background-color: #000000 !important;
    width: 202px;
    line-height: 45px;
    padding-left: 0px;
    top: 32px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.13);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 26px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.drop-menu li a:hover {
    background-color: #00000054;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #242526;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
    width: calc(25% - 30px);
    line-height: 45px;
}

.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
}

.content .row .mega-links {
    margin-left: -40px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
    padding: 0 20px;
}

.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .btn {
    color: #FFC828 !important;
    font-size: 20px;
    cursor: pointer;
    display: none;
}


/* dropdown */

.fa-angle-down:before {
    content: "\f107";
    font-size: 12px;
}

.drop-menu {
    position: relative;
    padding-top: 10px;
    /* Adds spacing so the border sits nicely */
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.drop-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    /* background-image: url("./images/drop-line.png"); */
    background-repeat: no-repeat;
    background-size: cover;
}

.gl-pb-cus-big {
    padding-bottom: 80px;
}

@media screen and (min-width: 1401px) and (max-width: 1426px) {
    .nav-links li a {
        padding: 9px 13px;
    }
}

@media screen and (min-width: 1151px) and (max-width: 1171px) {
    .nav-links li a {
        padding: 9px 13px;
    }
}

@media screen and (min-width: 971px) and (max-width: 1018px) {
    .nav-links li a {
        padding: 9px 7px;
    }
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 11px;
    background-color: #0f4d4d;
    border-radius: 50%;
    padding: 0px 8px !important;
}

@media screen and (max-width: 970px) {
    .wrapper .btn {
        display: block;
    }
    /* .wrapper .nav-links {
        position: fixed;
        height: 38vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        right: 0;
        background: #BB9525;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #menu-btn:checked~.nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    } */
    .wrapper .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 38vh;
        width: 350px;
        max-width: 100%;
        background: #BB9525;
        padding: 50px 10px 20px 20px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        /* 🔥 CLIP-PATH ANIMATION */
        clip-path: inset(0 0 0 100%);
        opacity: 0;
        pointer-events: none;
        transition: clip-path 0.35s ease, opacity 0.25s ease;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #menu-btn:checked~.nav-links {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        pointer-events: auto;
    }
    .wrapper .nav-links {
        gap: 20px;
    }
    /* CLOSE */
    #close-btn:checked~.nav-links {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    /* custom scroll bar */
     ::-webkit-scrollbar {
        width: 10px;
    }
     ::-webkit-scrollbar-track {
        background: #ffffff;
    }
     ::-webkit-scrollbar-thumb {
        background: #ffffff;
    }
    #menu-btn:checked~.nav-links {
        transform: translateX(0);
        /* 🔥 slide in */
    }
    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }
    #close-btn:checked~.btn.menu-btn {
        display: block;
    }
    .nav-links li {
        margin: 15px 10px;
    }
    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }
    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }
    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }
    #showDrops:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }
    .nav-links .desktop-item {
        display: none;
    }
    .nav-links .mobile-item {
        display: block;
        color: #000;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    /* .nav-links .mobile-item:hover {
        background: #3A3B3C;
    } */
    .drop-menu li {
        margin: 0;
    }
    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }
    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }
    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }
    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }
    .row .mega-links li {
        margin: 0;
    }
    .content .row header {
        font-size: 19px;
    }
    .yellow-btn {
        display: none !important;
    }
}

nav input {
    display: none;
}

.body-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

.body-text div {
    font-size: 45px;
    font-weight: 600;
}

.nav-links {
    margin-bottom: 0px;
}

.icon-color {
    color: #FFC828;
}

.drp-dwn-clr {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 400;
}

.btn-cls {
    display: flex;
    flex-direction: row;
    gap: 20px;
}


/* .active-line {
    position: relative;
    color: #BF0000 !important;
} */

@media (max-width:970px) {
    .btn-cls {
        display: none;
    }
}

.refferel-btn {
    width: fit-content;
    background: linear-gradient(90deg, rgba(41, 176, 223, 1) 0%, rgba(129, 135, 154, 1) 48%, rgba(233, 89, 80, 1) 100%);
    font-size: 14px;
    font-family: Poppins;
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: all ease-in-out .5s;
}

@media (max-width:1150px) {
    .refferel-btn {
        font-size: 12px;
        padding: 10px 12px;
        margin: auto;
    }
}

.call-sec {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.call-icon {
    width: 40px;
    display: flex;
}

.call-num {
    display: flex;
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    margin: auto;
    text-decoration: none;
}

@media (max-width:1150px) {
    .call-num {
        font-size: 12px;
    }
}

.center-img {
    margin: auto;
}

.top-line {
    width: 100%;
    background-color: #0E4E80;
    padding: 5px;
}

@media (max-width:1600px) {
    .logo {
        width: 175px;
    }
    .gl-pb-cus-big {
        padding-bottom: 50px;
    }
}

@media (max-width:1300px) {
    .logo {
        width: 145px;
    }
}

@media (max-width:1150px) {
    .logo {
        width: 120px;
    }
}

@media (max-width:970px) {
    .logo {
        width: 145px;
    }
}

@media screen and (max-width:970px) {
    .drp-dwn-clr {
        color: black!important;
    }
    .nav-links .drop-menu {
        background-color: white!important;
    }
}


/* Initial state: arrow pointing down */

.mobile-item i,
.desktop-item i {
    transition: transform 0.3s ease;
    /* Smooth transition for rotation */
}


/* Rotate the arrow when hovering over the label or link */

.mobile-item:hover i,
.desktop-item:hover i {
    transform: rotate(180deg);
    /* Rotate the arrow to point upwards */
}


/* When the dropdown is open (checkbox is checked), rotate the arrow up */

#showDrop:checked+label i,
#showDrops:checked+label i {
    transform: rotate(180deg);
    /* Arrow remains rotated when open */
}


/* When the checkbox is unchecked, the arrow goes back to normal */

#showDrop:not(:checked)+label i,
#showDrops:not(:checked)+label i {
    transform: rotate(0deg);
    /* Reset the arrow to point downwards */
}


/* nav-smooth----------------------------------- */

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}


/* Wrapper padding animation */

nav .wrapper {
    transition: padding 0.35s ease-in-out;
    padding: 20px 0;
}

nav.nav_fixed .wrapper {
    padding: 10px 0;
}


/* grid-section----------------------------------------- */

.yellow-btn {
    width: fit-content;
    background-color: #EFE55F;
    color: #0F4D4D !important;
    text-decoration: none;
    padding: 8px 18px;
    font-size: 16px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
    will-change: transform, box-shadow;
}

.yellow-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(239, 229, 95, 0.55), 0 0 18px rgba(239, 229, 95, 0.75);
}

.list-mar {
    margin: auto;
}

.bg-comn-clr {
    background: #21A3A3;
    background: linear-gradient(180deg, rgba(33, 163, 163, 1) 0%, rgba(0, 0, 0, 1) 100%);
}


/* banner-area-------------------------------------------- */

.banner-big-text {
    font-size: 90px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -2%;
    line-height: 90px;
}

.banner-big-italic {
    font-size: 90px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: -2%;
    font-style: italic;
    line-height: 90px;
}

.gap-cus {
    gap: 20px;
}

.help-text {
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.start-btn {
    width: fit-content;
    background-color: #EFE55F;
    padding: 12px 16px;
    border-radius: 18px;
    color: #0F4D4D;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    /* smooth animation */
    transition: all 0.35s ease;
    cursor: pointer;
}

.start-btn:hover {
    background-color: #e6db4f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 77, 77, 0.25);
}

.start-btn-two {
    width: fit-content;
    background-color: transparent;
    padding: 12px 16px;
    border: 2px solid #EFE55F;
    border-radius: 18px;
    color: #EFE55F;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    /* smooth animation */
    transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.start-btn-two:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 229, 95, 0.35);
}

.gap-cus-btn {
    gap: 80px;
}

.quote-text {
    font-family: "Rock Salt", cursive;
    font-size: 16px;
    font-weight: 400;
    color: #d9d9d9;
    opacity: 80%;
    width: 100%;
    display: flex;
}

.quote-name {
    font-family: "Rokkitt", serif;
    font-size: 12px;
    font-weight: 400;
    color: #d9d9d9;
    opacity: 80%;
    width: 95%;
    display: flex;
    justify-content: end;
    letter-spacing: 2px;
}

.qoute-sec {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 66%;
}


/* smooth transition */

.quote-text,
.quote-name {
    transition: color 0.4s ease, transform 0.4s ease;
}


/* hover effect */

.qoute-sec:hover .quote-text,
.qoute-sec:hover .quote-name {
    color: #EFE55F;
    transform: scale(1.08);
}


/* .anim-smooth:hover {
    animation:
        floatUpDown 6s ease-in-out infinite,
        saturationWave 2s ease-in-out infinite;
}





@keyframes floatUpDown {
    0% {
        transform: translateY(20px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(20px);
    }
} */

.float-wrap {
    display: inline-block;
    animation: floatUpDown 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(20px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(20px);
    }
}

.sat-hover-img {
    display: block;
    filter: saturate(100%);
    will-change: filter;
}

.float-wrap:hover .sat-hover-img {
    animation: saturationWave 2s ease-in-out infinite;
}

@keyframes saturationWave {
    0% {
        filter: saturate(100%) contrast(110%) hue-rotate(0deg) sepia(0%) brightness(1);
    }
    /* warm / orange-red */
    25% {
        filter: saturate(170%) contrast(150%) hue-rotate(-20deg) sepia(25%) brightness(1.08);
    }
    /* strong red peak */
    50% {
        filter: saturate(220%) contrast(180%) hue-rotate(-35deg) sepia(40%) brightness(1.12);
    }
    /* ease back */
    75% {
        filter: saturate(170%) contrast(150%) hue-rotate(-20deg) sepia(25%) brightness(1.08);
    }
    100% {
        filter: saturate(100%) contrast(110%) hue-rotate(0deg) sepia(0%) brightness(1);
    }
}


/* what-we-do-section---------------------- */

.wht-we-hd {
    font-size: 90px;
    font-weight: 700;
    color: #ffffff;
    line-height: 90px;
    font-family: "Poppins", sans-serif;
}

.wht-we-do-head {
    font-size: 12px;
    font-weight: 400;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    letter-spacing: 4px;
}

.wht-we-do-para {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.bg-comn-clr-second {
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 55%, rgba(0, 98, 107, 1) 100%);
}

.secn-qt {
    font-family: "Rock Salt", cursive;
    font-size: 21px;
    font-weight: 400;
    color: #d9d9d9;
    opacity: 0.8;
    text-align: end;
    /* initial state */
    display: inline-block;
    transform: rotate(-3deg) scale(1);
    transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
}

.secn-qt:hover {
    transform: rotate(0deg) scale(1.08);
    color: #EFE55F;
}

.area-head-cmn {
    font-size: 92px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}


/* Fixed layout container */


/* Layout */


/* Layout */

.brand-row {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}


/* Number (font-size zoom) */

.brand-number {
    font-size: 52px;
    font-weight: 600;
    color: #00626B;
    min-width: 64px;
    /* locks layout */
    line-height: 1;
    transition: font-size 0.45s ease-in-out;
    font-family: "Poppins", sans-serif;
}


/* Text (font-size zoom ONLY) */

.brand-text {
    font-size: 32px;
    font-weight: 600;
    color: #00626B;
    white-space: nowrap;
    line-height: 1;
    transition: font-size 0.45s ease-in-out;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}


/* Gradient line */

.brand-line-wrap {
    flex: 1;
    overflow: hidden;
}

.brand-line {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient( 90deg, rgba(0, 170, 170, 1), rgba(0, 170, 170, 0.25), transparent);
    transform-origin: left center;
    transition: transform 0.5s ease-in-out;
}


/* Hover states */

.brand-row:hover .brand-number {
    font-size: 64px;
    color: #00a1af;
}

.brand-row:hover .brand-text {
    font-size: 48px;
    color: #00a1af;
    /* ← CLEAR zoom */
}

.brand-row:hover .brand-line {
    transform: scaleX(0.6);
}

.gap-list-cus {
    gap: 30px;
}

.creat-magic-text {
    background: linear-gradient(93deg, rgba(217, 217, 217, 1) 0%, rgba(83, 192, 161, 1) 100%);
    -webkit-background-clip: text;
    /* for Safari and Chrome */
    -webkit-text-fill-color: transparent;
    /* for Safari and Chrome */
    background-clip: text;
    /* standard */
    color: transparent;
    /* fallback */
    font-size: 56px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}

.magic-text {
    font-size: 18px;
    font-weight: 400;
    display: flex;
    color: #D9D9D9;
    justify-content: center;
    font-family: "Poppins", sans-serif;
}

.let-talk-second {
    width: fit-content;
    padding: 10px 66px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #000000 !important;
    background-color: #FFC828;
    text-decoration: none;
    border-radius: 13px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 28px;
    /* Smooth animation */
}


/* Hover effect */

.let-talk-second:hover {
    background-color: #ffb800;
    /* Slightly darker yellow */
    transform: scale(1.05);
    /* Slight zoom effect */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    /* Optional shadow */
}

.gradient-line {
    height: 2px;
    /* thickness of the line */
    width: 100%;
    /* full width, change as needed */
    background: linear-gradient( to right, #00626B00, /* transparent start */
    #53C0A1, /* solid middle */
    #00626B00/* transparent end */
    );
}


/* footer-section------------------------------------ */

.footer-wrapper {
    color: #ffffff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}


/* Left */

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    font-size: 24px;
    line-height: 25px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    color: #ffffff;
}

.footer-text {
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    line-height: 18px;
    color: #ffffff;
    opacity: 80%;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.4s ease-in-out;
}

.social-icon:hover {
    transform: translateY(-8px);
}


/* Middle */

.footer-middle {
    margin: auto;
}

.footer-item {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #ffffff;
    opacity: 80%;
    font-family: "Inter", sans-serif;
    text-decoration: none;
    transition: ease-in-out.5s;
}

.footer-item:hover {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #ffffff;
    opacity: 100%;
    font-family: "Inter", sans-serif;
    text-decoration: none;
}


/* Right */

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-icon {
    margin: 0 0 auto;
}

.contact-us-ftr {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

.extra-line {
    text-decoration: underline;
}

.extra-line:hover {
    text-decoration: underline !important;
}

.anim-scroll,
.anim-scroll-two {
    opacity: 0;
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.anim-scroll {
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-scroll-two {
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.in-view {
    opacity: 1;
    transform: translate(0);
}

@media screen and (max-width:1790px) {
    .qoute-sec {
        width: 70%;
    }
}

@media screen and (max-width:1700px) {
    .qoute-sec {
        width: 73%;
    }
    .wrapper .nav-links {
        gap: 40px;
    }
}

@media screen and (max-width:1620px) {
    .qoute-sec {
        width: 77%;
    }
}

@media screen and (max-width:1550px) {
    .qoute-sec {
        width: 80%;
    }
}

@media screen and (max-width:1500px) {
    .qoute-sec {
        width: 85%;
    }
    .nav-links li a {
        padding: 9px 0px;
    }
}

@media screen and (max-width:1400px) {
    .wrapper-cmn {
        max-width: 85%;
    }
    nav .wrapper {
        max-width: 85%;
    }
    .qoute-sec {
        width: 75%;
    }
}

@media screen and (max-width:1366px) {
    .qoute-sec {
        width: 95%;
    }
}

@media screen and (max-width:1350px) {
    .banner-big-text {
        font-size: 80px;
        line-height: 80px;
    }
    .banner-big-italic {
        font-size: 80px;
        line-height: 80px;
    }
}

@media screen and (max-width:1300px) {
    .anim-smooth {
        width: 600px;
    }
    .wht-we-do-para {
        font-size: 16px;
    }
}

@media screen and (max-width:1280px) {
    .qoute-sec {
        width: 100%;
    }
    .wht-we-hd {
        font-size: 74px;
        font-weight: 700;
        color: #ffffff;
        line-height: 75px;
        font-family: "Poppins", sans-serif;
    }
}

@media screen and (max-width:1220px) {
    .help-text {
        font-size: 15px;
        font-weight: 400;
        color: #ffffff;
    }
    .quote-text {
        font-family: "Rock Salt", cursive;
        font-size: 15px;
    }
    .anim-smooth {
        width: 540px;
    }
    .brand-row:hover .brand-number {
        font-size: 55px;
        color: #00a1af;
    }
    .brand-row:hover .brand-text {
        font-size: 38px;
        color: #00a1af;
        /* ← CLEAR zoom */
    }
    .brand-number {
        font-size: 40px;
    }
    /* Text (font-size zoom ONLY) */
    .brand-text {
        font-size: 26px;
    }
    .area-head-cmn {
        font-size: 55px;
    }
    .creat-magic-text {
        font-size: 45px;
    }
}

@media screen and (max-width:1180px) {
    .banner-big-text {
        font-size: 70px;
        line-height: 70px;
    }
    .banner-big-italic {
        font-size: 70px;
        line-height: 70px;
    }
    .gap-cus-btn {
        gap: 40px;
    }
}

@media screen and (max-width:1140px) {
    .quote-name {
        justify-content: start;
    }
    .banner-big-text {
        font-size: 60px;
        line-height: 60px;
    }
    .banner-big-italic {
        font-size: 60px;
        line-height: 60px;
    }
    .anim-smooth {
        width: 467px;
    }
    .start-btn {
        width: fit-content;
        padding: 13px 18px;
        font-size: 12px;
        line-height: 15px;
        margin: auto 0;
    }
    .start-btn-two {
        width: fit-content;
        padding: 13px 18px;
        font-size: 12px;
        line-height: 15px;
        margin: auto 0;
    }
    .gap-cus-btn {
        gap: 15px;
    }
}

@media screen and (max-width:1024px) {
    .anim-smooth {
        width: 384px;
    }
    .wht-we-hd {
        font-size: 55px;
        font-weight: 700;
        color: #ffffff;
        line-height: 60px;
        font-family: "Poppins", sans-serif;
    }
    .wrapper-cmn {
        max-width: 90%;
    }
    nav .wrapper {
        max-width: 90%;
    }
    .footer-text {
        font-size: 14px;
        font-family: "Inter", sans-serif;
    }
    .footer-item {
        font-size: 14px;
        font-weight: 500;
    }
}

@media screen and (max-width:970px) {
    .nav-links li {
        margin: 5px 10px !important;
        line-height: 23px;
    }
    .nav-links li a:hover {
        transform: scale(1);
        color: #ffffff;
    }
}

@media screen and (max-width:850px) {
    .anim-smooth {
        width: 340px;
    }
    .footer-container {
        flex-direction: column;
    }
    .footer-middle {
        margin: unset;
    }
}

@media screen and (max-width:767px) {
    .wrapper-cmn {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .banner-big-text {
        text-align: center;
    }
    .help-text {
        text-align: center;
    }
    .quote-text {
        text-align: center;
        justify-content: center;
    }
    .quote-name {
        justify-content: center;
    }
}

@media screen and (max-width:767px) {
    .mob-brain {
        display: block;
    }
    .des-brain {
        display: none;
    }
    .des-btn {
        display: none !important;
    }
    .mob-btn {
        display: block;
    }
    .wht-we-do-head {
        text-align: center;
    }
    .wht-we-do-para {
        text-align: center;
    }
    .wht-we-do-head {
        padding-top: 30px;
        padding-bottom: 10px;
    }
    .area-head-cmn {
        font-size: 32px;
    }
    .creat-magic-text {
        font-size: 28px;
    }
    .magic-text {
        font-size: 14px;
    }
    .wht-we-hd {
        font-size: 42px;
        line-height: 50px;
    }
    .let-talk-second {
        width: fit-content;
        padding: 8px 32px;
        font-size: 18px;
    }
}

@media screen and (min-width:767px) {
    .mob-brain {
        display: none !important;
    }
    .des-brain {
        display: block;
    }
    .mob-btn {
        display: none !important;
    }
}

@media screen and (max-width:575px) {
    .wht-we-do-para {
        font-size: 14px;
        line-height: 29px;
    }
    .help-text {
        font-size: 18px;
        font-weight: 400;
        color: #ffffff;
    }
    .brand-number {
        display: none;
    }
    .brand-text {
        font-size: 24px;
    }
    .brand-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .brand-line-wrap {
        width: 100%;
        flex: none;
    }
    .brand-line {
        width: 100%;
    }
    .gap-list-cus {
        gap: 15px;
    }
    .brand-row {
        flex-direction: column;
        align-items: flex-end;
        gap: 15px;
    }
    .brand-text {
        color: #21A3A3;
    }
    .brand-row:hover .brand-text {
        font-size: 23px;
        color: #00a1af;
        /* ← CLEAR zoom */
    }
    .creat-magic-text {
        font-size: 21px;
    }
    .magic-text {
        text-align: center;
    }
    .wht-we-hd {
        font-size: 32px;
        line-height: 50px;
    }
    .gap-hd {
        gap: 5px;
    }
    .wht-we-do-head {
        padding-top: 20px;
        padding-bottom: 10px;
    }
    .footer-logo {
        display: none;
    }
    .footer-text {
        display: none;
    }
    .footer-item {
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        line-height: 30px;
    }
    .footer-left {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .footer-middle {
        width: 100%;
    }
    .footer-right {
        width: 100%;
    }
    .res-con {
        display: none;
    }
    .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 15px;
    }
    .des-iconss {
        display: none;
    }
    .res-iconss {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    .res-contact-head {
        font-size: 32px;
        font-weight: 600;
        justify-content: center;
        color: #ffffff;
        font-family: "Inter", sans-serif;
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .big-logo {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
    }
    .res-lins {
        display: block;
    }
    .banner-big-text {
        font-size: 54px;
        line-height: 50px;
    }
    .banner-big-italic {
        font-size: 54px;
        line-height: 50px;
    }
    .gap-cus {
        gap: 10px;
    }
    .start-btn {
        border-radius: 7px;
    }
    .start-btn-two {
        padding: 12px 17px;
    }
    .start-btn-two {
        border-radius: 8px;
    }
    .gl-pb-cus-big {
        padding-bottom: 20px;
    }
}

@media screen and (min-width:575px) {
    .res-contact-head {
        display: none;
    }
    .res-big {
        display: none;
    }
    .res-lins {
        display: none;
    }
    .res-iconss {
        display: none;
    }
}

@media screen and (max-width:400px) {
    .creat-magic-text {
        font-size: 21px;
    }
}


/* grid-section---------------------------------------------- */

.bg-blacks {
    background-color: #000000;
}

.grid-big {
    width: 100%;
    position: relative;
}

.grid-area-main {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    white-space: nowrap;
    padding-bottom: 30px;
    /* 👈 space above scrollbar */
}

.first-area-grid {
    width: 30%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.second-area-grid {
    width: 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.third-area-grid {
    width: 30%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.img-width {
    width: 100%;
    border-radius: 20px;
}

.first-area-grid,
.second-area-grid,
.third-area-grid {
    flex-shrink: 0;
}

.grid-area-main::-webkit-scrollbar {
    height: 8px;
    /* scrollbar thickness */
}

.grid-area-main::-webkit-scrollbar-track {
    background: transparent;
    /* or #111 if you want contrast */
}

.grid-area-main::-webkit-scrollbar-thumb {
    background-color: #e6db4f;
    border-radius: 10px;
}

.grid-area-main {
    scrollbar-width: auto;
    scrollbar-color: #e6db4f transparent;
}

.grid-area-main {
    cursor: grab;
}

.grid-area-main.dragging {
    cursor: grabbing;
}

.zoom-img-wrap {
    border-radius: 20px;
}

.zoom-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* same radius as wrapper */
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.45s ease;
    will-change: transform, border-radius;
}


/* .zoom-img-wrap:hover .zoom-img {
    transform: scale(1.22);
    z-index: 9999;
    position: relative;
    overflow: visible;
}

.zoom-right-bottom:hover .zoom-img {
    transform: scale(1.22) translateX(16%) translateY(10%);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
} */

.zoom-right-bottom .zoom-img {
    transform-origin: left top;
    z-index: 10;
    position: relative;
}

.zoom-right-bottom:hover .zoom-img {
    transform: scale(1.22);
    border-radius: 28px;
}


/* --------------------------------------------------------------- */

.zoom-right-top .zoom-img {
    transform-origin: left bottom;
    /* grows to right + top */
    z-index: 10;
    position: relative;
}

.zoom-right-top:hover .zoom-img {
    transform: scale(1.22);
}


/* ------------------------------------------------------------------ */

.zoom-bottom .zoom-img {
    transform-origin: center top;
    z-index: 10;
    position: relative;
    /* grow downward */
}

.zoom-bottom:hover .zoom-img {
    transform: scale(1.22);
}


/* ------------------------------------------------------------------------ */

.zoom-center .zoom-img {
    transform-origin: center center;
    /* default, but explicit */
    z-index: 10;
    position: relative;
}

.zoom-center:hover .zoom-img {
    transform: scale(1.22);
}


/* ------------------------------------------------------------------------------ */

.zoom-top .zoom-img {
    transform-origin: center bottom;
    /* grow upward */
    z-index: 10;
    position: relative;
}

.zoom-top:hover .zoom-img {
    transform: scale(1.22);
}


/* --------------------------------------------------------------- */

.zoom-left-bottom .zoom-img {
    transform-origin: right top;
    /* grows to LEFT + BOTTOM */
    z-index: 10;
    position: relative;
}

.zoom-left-bottom:hover .zoom-img {
    transform: scale(1.22);
}


/* ----------------------------------------------------- */

.zoom-left-top .zoom-img {
    transform-origin: right bottom;
    /* grows to LEFT + TOP */
    z-index: 10;
    position: relative;
}

.zoom-left-top:hover .zoom-img {
    transform: scale(1.22);
}


/* Mobile only */

@media (max-width: 575px) {
    .mobile-scrollbar {
        display: block;
        width: 100%;
        height: 6px;
        background: #f5f5f5;
        border-radius: 10px;
        margin-top: 8px;
        position: relative;
        overflow: hidden;
    }
    .mobile-scroll-thumb {
        height: 100%;
        width: 20%;
        background: #e6db4f;
        border-radius: 10px;
        position: absolute;
        left: 0;
        transition: left 0.1s linear;
    }
    /* Optional: slightly smaller grid gap on mobile */
    .grid-area-main {
        padding-bottom: 6px;
    }
    .grid-area-main {
        gap: 20px;
    }
    .zoom-img-wrap {
        border-radius: 10px;
    }
    .first-area-grid {
        width: 34%;
        justify-content: unset;
        gap: 15px;
    }
    .second-area-grid {
        width: 45%;
        justify-content: unset;
        gap: 12px;
    }
    .third-area-grid {
        width: 34%;
        justify-content: unset;
        gap: 15px;
    }
    .grid-area-main {
        gap: 12px;
    }
    .secn-qt {
        font-family: "Rock Salt", cursive;
        font-size: 13px;
    }
}


/* Mobile only */

@media (min-width: 575px) {
    .mobile-scrollbar {
        display: none;
    }
}

@media (max-width: 575px) {
    /* Chrome, Safari, Edge */
    .grid-area-main::-webkit-scrollbar {
        display: none;
    }
    /* Firefox */
    .grid-area-main {
        scrollbar-width: none;
    }
    /* IE / old Edge */
    .grid-area-main {
        -ms-overflow-style: none;
    }
}

@media (max-width: 970px) {
    .wrapper .nav-links {
        gap: 20px;
    }
}

.brain-folio-cntnt-area {
    font-family: "Rock Salt", cursive;
    font-size: 21px;
    font-weight: 400;
    color: #d9d9d9;
    opacity: 0.8;
    display: inline-block;
    transition: transform 0.6s ease-in-out, color 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.rotate-new {
    font-family: "Rock Salt", cursive;
    font-size: 21px;
    font-weight: 400;
    color: #d9d9d9;
    opacity: 0.8;
    text-align: start;
    display: inline-block;
    transform: rotate(4deg) scale(1);
    /* initial rotated state */
    transition: transform 0.6s ease-in-out, color 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.rotate-new:hover {
    transform: rotate(0deg) scale(1);
    /* straight on hover */
    color: #EFE55F;
    opacity: 1;
}

@media (max-width: 575px) {
    .rotate-new {
        font-family: "Rock Salt", cursive;
        font-size: 13px;
        padding-bottom: 25px;
    }
    .rotate-new {
        transform: rotate(2deg) scale(1);
        transition: transform 0.6s ease-in-out, color 0.6s ease-in-out, opacity 0.6s ease-in-out;
    }
    .secn-qt {
        transform: rotate(-4deg) scale(1);
        transition: transform 0.4s ease-in-out, color 0.4s ease-in-out;
    }
}

.nav-link:focus,
.nav-link:hover {
    color: #EFE55F !important;
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #EFE55F;
    color: #0F4D4D;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTop:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

#backToTop svg {
    transition: transform 0.3s ease;
}

#backToTop:hover svg {
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: #00626B;
    padding: 5px;
    /* adjust if back-to-top is on right */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    transition: all 0.35s ease;
}

.whatsapp-float:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.wsp-wid {
    width: 45px;
}

@media (max-width: 575px) {
    #backToTop {
        position: fixed;
        bottom: 20px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
    .whatsapp-float {
        position: fixed;
        bottom: 90px;
        right: 10px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        z-index: 999;
        transition: all 0.35s ease;
    }
    .wsp-wid {
        width: 35px;
    }
    .nav-links li a {
        font-weight: 600;
        font-size: 16px;
    }
    .gap-cus-btn {
        gap: 50px;
    }
    .wht-we-do-head {
        font-size: 10px;
    }
    .let-talk-second {
        border-radius: 8px;
    }
    .let-talk-second {
        width: fit-content;
        padding: 9px 32px;
        font-size: 13px;
    }
    .wrapper .nav-links {
        height: 32vh;
        max-width: 200px;
        background-color: #FFC828;
    }
    .res-575-only {
        display: block;
    }
}

@media (min-width: 575px) {
    .res-575-only {
        display: none;
    }
}

.sat-wave-img {
    display: inline-block;
    filter: saturate(100%);
}


/* run animation ONLY on hover */

.sat-wave-img:hover {
    animation: saturationWave 2s ease-in-out infinite;
}

@keyframes saturationWave {
    0% {
        filter: saturate(100%);
    }
    25% {
        filter: saturate(120%);
    }
    50% {
        filter: saturate(160%);
    }
    75% {
        filter: saturate(120%);
    }
    100% {
        filter: saturate(100%);
    }
}

@media (max-width: 575px) {
    .anim-smooth {
        animation: floatUpDown 6s ease-in-out infinite, saturationWave 2s ease-in-out infinite;
    }
    @keyframes floatUpDown {
        0% {
            transform: translateY(20px);
        }
        50% {
            transform: translateY(-20px);
        }
        100% {
            transform: translateY(20px);
        }
    }
}