@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.flip-box {
    background-color: transparent;
    width: 300px;
    height: 200px;
    border: 1px solid #f1f1f1;
    perspective: 1000px;
}

.flip-box-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-box-front {
    background-color: #bbb;
    color: black;
}

.flip-box-back {
    background-color: #555;
    color: white;
    transform: rotateY(180deg);
}

:root {
    --color1: #0A5573;
    /*blue*/
    --color2: #AEB9B7;
    /*gray*/
    --color3: white;
    --color4: #000;
}

.bg-color {
    background: var(--color1);
}

.star {
    position: fixed;
    pointer-events: none;
}

.star:before,
.star:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '\2726';
    font-size: 15px;
}

.star:before {
    color: transparent;
    text-shadow: 0 0 3px rgb(250, 250, 174);
}

.star:after {
    background: var(--color1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*cursor effects*/
/*.swipe{*/
/*    position: fixed;*/
/*    width: 3rem;*/
/*    height: 3rem;*/
/*    border-radius: 50%;*/
/*    border: solid 0.2rem white;*/

/*    box-shadow: */
/*    0.1rem 0.1rem 0.4rem black,*/
/*    inset*/
/*    0.1rem 0.1rem 1rem black;*/

/*    animation: roll 0.6s linear forwards;*/
/*}*/

/*@keyframes roll{*/
/*    0%{ */
/*        border: solid 0.1rem black;*/
/*        transform: scale(0.1);}*/

/*    50%{ */
/*        border: solid 0.25rem white;*/
/*        transform: scale(1.4);}*/

/*    100%{ */
/*        border: solid 0.1rem gray;*/
/*        transform: scale(0.1);}*/
/*}*/

/*end here*/
.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
    transition-duration: 300ms;
}

.animate-bounce2 {
    animation: bounce 4s ease-in-out infinite;
}

@keyframes bounce {
    0% {
        transform: translateY(2%);
    }

    50% {
        transform: translateY(-2%);
    }

    100% {
        transform: translateY(2%);
    }
}

.fluid_container {
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
}

.fluid_container {
    margin: 0 auto;
    /* aling centered */
    width: 100%;
    max-width: 900px;
    overflow: hidden;
}

/* Blogger CSS Conflict Fix */

.camera_pag_ul {
    border: none !important;
    background: none !important;
}

.camera_pag_ul li {
    float: inherit !important;
    padding: inherit !important;
}

.camera_pag_ul {
    margin: 0 !important;
    border: 0 !important;
}

/*For Form*/
.modal-dialog {
    display: block;
    width: 100%;
    position: relative;
    background-clip: padding-box;
    outline: 0;
    text-align: left;
    padding: 50px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: auto;
    position: relative;
    top: 20px;
}

.pop-form {
    background: #98602e;
    display: flex;
    flex-direction: column;
    padding: 10px 10px;
    /*width: 100%;*/
    margin-left: auto;
    margin-right: auto;

}

form.pop-form input {
    padding: 10px 10px;
    margin-bottom: 14px;
    font-size: 14px;
    border-radius: 5px;
    border: 0;
}

form.pop-form select {
    background-color: white;
    color: gray;
    height: 50px;
    padding: 10px 10px;
    margin-bottom: 14px;
    font-size: 14px;
    border-radius: 5px;
    border: 0;
}

form.pop-form button {
    border: 0;

    font-size: 25px;
    border-radius: 5px;
}

/*end here*/
/*pop up form css*/
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00361E;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
    z-index: 100;
    display: none;
}

.cnt223 a {
    text-decoration: none;
}

.popup {
    width: 100%;
    margin: 0 auto;
    display: none;
    position: fixed;
    z-index: 101;
    background: #0000005e;
    height: 100%;
}

.cnt223 {
    /*min-width: 400px;*/
    width: 850px;
    min-height: 150px;
    margin: 100px auto;
    background: #98602e;
    position: relative;
    top: 40px;
    z-index: 103;
    /*padding: 15px 35px;*/
    border-radius: 5px;
    box-shadow: 0 2px 5px #98602e;
    border: 1px solid white;
}

.cnt223 form h3 {
    font-size: 27px;
}

.cnt223 form {
    display: flex;
    flex-direction: column;
}

.cnt223 .close {
    position: relative;
    background: #fff;
    color: #00361E;
    padding: 8px 14px;
    border-radius: 22px;
    position: absolute;
    right: -12px;
    top: -9px;
}

.cnt223 form input {
    padding: 10px 10px;
    margin-bottom: 17px;
    color: #00361E;
}


.cnt223 form textarea {
    padding: 10px 10px;
    margin-bottom: 20px;
}

.cnt223 form button {
    font-weight: 800;
    color: #98602e;
    height: 48px;
    font-size: 22px;
    border: 0;
}

/*end here*/
.tech-heading {
    text-transform: uppercase;
    font-size: 40px;
    font-weight: 600;
    color: var(--color1);

}

.lux-color {
    /*text-shadow:2px 2px #fff;*/
    color: #C08830;
}

.lux-bgcolor {
    border-radius: 10px;
    color: white;
    background-color: #012538;
}

.lux-bgcolor:hover {
    /*color:#C08830;*/
    background-color: #000;
}

.primary-color {
    color: #0dcaf0;
}

.primary-bgcolor {
    background: #0dcaf0;
    ;
}

/*.white-shadow{*/
/*    text-shadow:2px 2px #fff;*/
/*}*/
/* navbar css */
.navbar {
    color: white;
    background-color: var(--color1);
    position: sticky;
    top: 0px;
    font-weight: 600;
    z-index: 300;
    box-shadow: 0px 1px 5px white;
}

.headerT {
    display: flex;
    align-items: center;
}

.navbar .offcanvas-lg {
    flex-grow: 0 !important;
}

.navbar .nav-logo-image {
    width: 84px;
    height: auto;
    transition: transform 0.3s ease;
}

.navbar .nav-logo:hover .nav-logo-image {
    transform: scale(1.04);
}

.navbar-toggler {
    background-color: var(--color3);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.bg-dark {
    background-color: black !important;
}

.navbar-nav .nav-item {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 70px;
}

.navbar-nav .nav-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    min-width: 84px;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.15;
    font-weight: 500;
    transition: color 0.25s ease, transform 0.25s ease;
}

.navbar-nav .nav-link .nav-text {
    display: inline-block;
}

.navbar-nav .nav-link .nav-icon {
    font-size: 17px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.94);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), color 0.35s ease, text-shadow 0.35s ease;
}

.navbar-nav .nav-item:hover .nav-link .nav-icon,
.navbar-nav .nav-item.active .nav-link .nav-icon,
.navbar-nav .nav-link:focus-visible .nav-icon {
    color: #ffd07a;
    transform: translateY(-2px) scale(1.12) rotate(-6deg);
    text-shadow: 0 8px 15px rgba(192, 136, 48, 0.52);
    animation: navIconHoverPop 0.45s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--color3) !important;
    transform: translateY(-1px);
}

@keyframes navIconHoverPop {
    0% {
        transform: translateY(6px) scale(0.65) rotate(-14deg);
    }

    55% {
        transform: translateY(-3px) scale(1.16) rotate(4deg);
    }

    100% {
        transform: translateY(-2px) scale(1.12) rotate(-6deg);
    }
}

@keyframes mobileMenuItemSlide {
    from {
        opacity: 0;
        transform: translateX(-14px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media only screen and (max-width: 991.98px) {
    .headerT {
        min-height: 72px;
    }

    .navbar .offcanvas {
        width: min(82vw, 320px);
        color: #fff;
        background: linear-gradient(180deg, #012538 0%, #0A5573 100%);
        border-right: 1px solid rgba(255, 255, 255, 0.18);
    }

    .navbar .offcanvas-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .navbar .offcanvas-title {
        font-size: 14px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 700;
    }

    .navbar .offcanvas-body {
        padding: 14px 18px 20px;
    }

    .navbar .offcanvas .navbar-nav {
        align-items: flex-start;
        gap: 3px;
    }

    .navbar .offcanvas .nav-item {
        width: 100%;
        min-height: auto;
        justify-content: flex-start;
        align-items: center;
        background: none !important;
        border-radius: 10px;
        transform: translateX(-14px);
        opacity: 0;
    }

    .navbar .offcanvas.show .nav-item {
        animation: mobileMenuItemSlide 0.32s ease forwards;
    }

    .navbar .offcanvas.show .nav-item:nth-child(1) {
        animation-delay: 0.05s;
    }

    .navbar .offcanvas.show .nav-item:nth-child(2) {
        animation-delay: 0.08s;
    }

    .navbar .offcanvas.show .nav-item:nth-child(3) {
        animation-delay: 0.11s;
    }

    .navbar .offcanvas.show .nav-item:nth-child(4) {
        animation-delay: 0.14s;
    }

    .navbar .offcanvas.show .nav-item:nth-child(5) {
        animation-delay: 0.17s;
    }

    .navbar .offcanvas.show .nav-item:nth-child(6) {
        animation-delay: 0.2s;
    }

    .navbar .offcanvas.show .nav-item:nth-child(7) {
        animation-delay: 0.23s;
    }

    .navbar .offcanvas .nav-item:hover,
    .navbar .offcanvas .nav-item:focus-within {
        background-color: rgba(255, 255, 255, 0.09);
    }

    .navbar .offcanvas .nav-link {
        width: 100%;
        min-width: 0;
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        text-align: left;
        font-size: 15px;
        letter-spacing: 0.04em;
        padding: 10px 8px;
    }

    .navbar .offcanvas .nav-link .nav-icon {
        width: 24px;
        font-size: 16px;
        text-align: center;
        flex-shrink: 0;
    }
}

/* Home page css */
/*banner section css*/
/*......................*/
.banner-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: clamp(620px, 85vh, 760px);
    background:
        radial-gradient(circle at 12% 20%, rgba(13, 202, 240, 0.22) 0%, rgba(13, 202, 240, 0) 45%),
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 38%),
        linear-gradient(135deg, #031c2c 0%, #094864 42%, #0a5573 70%, #042638 100%);
}

.banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(1, 15, 24, 0.35), rgba(8, 64, 89, 0.22), rgba(1, 15, 24, 0.5));
    animation: heroTintPulse 8s ease-in-out infinite;
}

.banner-section::after {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    left: -220px;
    bottom: -320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 202, 240, 0.42), rgba(13, 202, 240, 0));
    z-index: 1;
    pointer-events: none;
    animation: heroOrbDrift 12s ease-in-out infinite;
}

.hero-shell__bg {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-shell__grid {
    position: absolute;
    inset: -35% -28%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 54px 54px;
    background-position: 0 0, 0 0;
    opacity: 0.32;
    transform: perspective(900px) rotateX(67deg) translateY(26%);
    transform-origin: center top;
    mask-image: radial-gradient(circle at center 28%, rgba(0, 0, 0, 0.92), transparent 74%);
    animation: heroGridPan 18s linear infinite;
    will-change: background-position;
}

.hero-shell__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: heroOrbDrift 10s ease-in-out infinite;
}

.hero-shell__orb--one {
    width: 260px;
    height: 260px;
    right: 18%;
    top: 10%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}

.hero-shell__orb--two {
    width: 190px;
    height: 190px;
    right: 8%;
    bottom: 16%;
    background: radial-gradient(circle, rgba(13, 202, 240, 0.38), rgba(13, 202, 240, 0));
    animation-delay: 1.8s;
}

.hero-shell__orb--three {
    width: 140px;
    height: 140px;
    left: 38%;
    top: 18%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    animation-delay: 3.4s;
}

.hero-shell__line {
    position: absolute;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.74), transparent);
    opacity: 0.58;
    animation: heroLineSweep 8s linear infinite;
}

.hero-shell__line--one {
    top: 27%;
    right: 19%;
    width: 220px;
}

.hero-shell__line--two {
    top: 62%;
    right: 9%;
    width: 280px;
    animation-delay: 2.4s;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(760px, 100%);
    margin-left: clamp(20px, 6vw, 90px);
    margin-right: auto;
    padding: clamp(88px, 11vh, 124px) clamp(16px, 3vw, 24px) clamp(78px, 9vh, 102px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
}

.hero-badge i {
    color: #0dcaf0;
    text-shadow: 0 0 16px rgba(13, 202, 240, 0.55);
    animation: heroBadgeFlicker 2.8s ease-in-out infinite;
}

.hero-content h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    margin-bottom: 16px;
    font-weight: 700;
    max-width: 11.5ch;
}

.hero-content p {
    max-width: 610px;
    font-size: clamp(15px, 2vw, 19px);
    margin-bottom: 26px;
}

.hero-content__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-content .project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.hero-outline-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 202, 240, 0.9);
    background: rgba(13, 202, 240, 0.22);
    color: #fff;
}

.hero-content__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    width: min(700px, 100%);
}

.hero-content__stat {
    min-width: 175px;
    max-width: 220px;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(3px);
    animation: heroStatPulse 5s ease-in-out infinite;
}

.hero-content__stat:nth-child(2) {
    animation-delay: 1.4s;
}

.hero-content__stat:nth-child(3) {
    animation-delay: 2.8s;
}

.hero-content__stat strong {
    display: block;
    font-size: 1.02rem;
    line-height: 1.25;
}

.hero-content__stat span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-floating-card {
    position: absolute;
    right: clamp(20px, 5vw, 72px);
    z-index: 3;
    width: min(300px, calc(100% - 2rem));
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(2, 26, 40, 0.62);
    box-shadow: 0 18px 36px rgba(2, 15, 24, 0.28);
    backdrop-filter: blur(6px);
    animation: heroCardFloat 6.5s ease-in-out infinite;
}

.hero-floating-card--one {
    top: 20%;
}

.hero-floating-card--two {
    top: 54%;
    animation-delay: 2.1s;
}

.hero-floating-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 202, 240, 0.22);
    color: #fff;
    flex-shrink: 0;
}

.hero-floating-card h6 {
    margin: 0 0 0.12rem;
    font-size: 0.95rem;
    color: #fff;
}

.hero-floating-card p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.4;
}

@keyframes heroTintPulse {

    0%,
    100% {
        opacity: 0.82;
    }

    50% {
        opacity: 0.58;
    }
}

@keyframes heroOrbDrift {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -18px, 0) scale(1.08);
    }
}

@keyframes heroGridPan {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: -28px 54px, -28px 54px;
    }
}

@keyframes heroLineSweep {
    0% {
        transform: translateX(-10px);
        opacity: 0;
    }

    20%,
    80% {
        opacity: 0.65;
    }

    100% {
        transform: translateX(34px);
        opacity: 0;
    }
}

@keyframes heroCardFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -12px, 0);
    }
}

@keyframes heroStatPulse {

    0%,
    100% {
        transform: translateY(0);
        border-color: rgba(255, 255, 255, 0.3);
    }

    50% {
        transform: translateY(-3px);
        border-color: rgba(13, 202, 240, 0.46);
    }
}

@keyframes heroBadgeFlicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.74;
    }
}

@media only screen and (max-width: 1199px) {
    .hero-floating-card {
        right: 20px;
        width: min(270px, calc(100% - 1.5rem));
    }
}

@media only screen and (max-width: 991px) {
    .banner-section {
        min-height: 640px;
    }

    .hero-content {
        margin: 0 auto;
        align-items: center;
        text-align: center;
        padding: 92px 24px 78px;
    }

    .hero-content h1 {
        max-width: 13ch;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-content__actions,
    .hero-content__stats {
        justify-content: center;
    }

    .hero-content__stat {
        max-width: 240px;
    }

    .hero-floating-card,
    .hero-shell__line {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    .banner-section {
        min-height: 580px;
    }

    .hero-content {
        padding: 82px 20px 62px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 7px 12px;
    }

    .hero-content h1 {
        font-size: clamp(28px, 9vw, 38px);
    }

    .hero-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .hero-content__actions {
        width: 100%;
    }

    .hero-content .project-btn,
    .hero-outline-btn {
        width: min(100%, 240px);
    }

    .hero-content__stats {
        gap: 0.6rem;
    }

    .hero-content__stat {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero-shell__orb--three {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .banner-section::before,
    .banner-section::after,
    .hero-shell__grid,
    .hero-shell__orb,
    .hero-shell__line,
    .hero-badge i,
    .hero-content__stat,
    .hero-floating-card {
        animation: none !important;
    }

    .hero-outline-btn,
    .hero-content__stat,
    .hero-floating-card {
        transition: none !important;
    }

    .hero-outline-btn:hover {
        transform: none;
    }
}

.project-btn {
    text-decoration: none;
    border-radius: 25px;
    background-color: var(--color1);
    padding: 16px 20px;
    color: #fff;
    font-size: 16px;
    font-family: Montserrat-SemiBold;
    font-weight: 600;
    text-transform: uppercase;
    border: 0;
    outline: 0;
    -webkit-box-shadow: inset 0 0 #fff;
    box-shadow: inset 0 0 #fff;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
}

.project-btn:hover {
    -webkit-box-shadow: inset 15em 0 white;
    box-shadow: inset 15em 0 var(--color4);
    cursor: pointer;
    color: var(--color3);
}

/*banner content css*/

.text-box {
    width: 90%;
    color: #fff;
    position: absolute;
    bottom: 0PX;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.text-box a {
    margin-top: 1rem;
}

.text-box h1 {
    font-size: 35px;
    letter-spacing: 2px;
}

/*highlights section css*/
.overview-showcase {
    position: relative;
    isolation: isolate;
    padding: clamp(1rem, 2.3vw, 1.8rem) 0 clamp(1rem, 2.5vw, 2rem);
}

.overview-showcase::before {
    content: "";
    position: absolute;
    top: 70px;
    left: -80px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 202, 240, 0.24), rgba(13, 202, 240, 0));
    pointer-events: none;
    z-index: -1;
    animation: overviewFloat 9s ease-in-out infinite;
}

.overview-showcase::after {
    content: "";
    position: absolute;
    right: -74px;
    bottom: 18px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 85, 115, 0.2), rgba(10, 85, 115, 0));
    pointer-events: none;
    z-index: -1;
    animation: overviewFloat 9s ease-in-out infinite;
    animation-delay: 2.5s;
}

.overview-showcase__header {
    position: relative;
    z-index: 2;
}

.overview-showcase__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: #0a5573;
}

.overview-showcase__lead {
    max-width: 620px;
    color: #375064;
    line-height: 1.75;
}

.overview-showcase__btn {
    box-shadow: 0 12px 24px rgba(10, 85, 115, 0.2);
}

.overview-showcase__panel-wrap.highlights {
    position: relative;
    z-index: 2;
    margin-top: clamp(0.5rem, 1.5vw, 1rem);
    border-radius: 32px;
    border: 1px solid rgba(10, 85, 115, 0.14);
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(4, 30, 44, 0.16);
    background-image:
        linear-gradient(125deg, rgba(3, 29, 43, 0.84), rgba(8, 60, 83, 0.82)),
        url(../images/pattern.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.overview-showcase__panel-wrap.highlights::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    top: -90px;
    right: -80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    pointer-events: none;
    animation: overviewFloat 8s ease-in-out infinite;
}

.overview-showcase__panel-wrap.highlights::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -60px;
    bottom: -70px;
    border-radius: 50%;
    background: rgba(13, 202, 240, 0.16);
    pointer-events: none;
    animation: overviewFloat 8s ease-in-out infinite;
    animation-delay: 2.2s;
}

.overview-showcase__media {
    position: relative;
    height: 100%;
    min-height: 340px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(2, 18, 29, 0.3);
}

.overview-showcase__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 17, 27, 0.04), rgba(3, 17, 27, 0.28));
    z-index: 1;
}

.overview-showcase__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
}

.overview-showcase__media-glow {
    position: absolute;
    top: -35%;
    left: -45%;
    width: 45%;
    height: 170%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.52), transparent);
    transform: rotate(12deg);
    z-index: 2;
    pointer-events: none;
    transition: left 0.8s ease;
}

.overview-showcase__media:hover img {
    transform: scale(1.08);
    filter: saturate(1.06);
}

.overview-showcase__media:hover .overview-showcase__media-glow {
    left: 130%;
}

.overview-sec {
    position: relative;
}

.overview-showcase__content {
    position: relative;
    z-index: 3;
    height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(3, 26, 39, 0.12));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    color: #fff;
    padding: clamp(1.1rem, 2.4vw, 1.8rem);
}

.overview-showcase__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.42rem 0.82rem;
    margin-bottom: 0.9rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.1);
}

.overview-showcase__badge i {
    color: #0dcaf0;
}

.overview-showcase__content p {
    margin-bottom: 0.88rem;
    line-height: 1.72;
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.94);
}

.overview-showcase__content p:last-of-type {
    margin-bottom: 1.1rem;
}

.overview-showcase__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.overview-showcase__chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.45rem 0.82rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    line-height: 1.35;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.overview-showcase__chips span:hover {
    transform: translateY(-2px);
    background: rgba(13, 202, 240, 0.24);
}

.overview-showcase__chips i {
    color: #0dcaf0;
}

@keyframes overviewFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -12px, 0);
    }
}

@media only screen and (max-width: 991px) {
    .overview-showcase__lead {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .overview-showcase__panel-wrap.highlights {
        border-radius: 24px;
    }

    .overview-showcase__media {
        min-height: 300px;
    }

    .overview-showcase__content {
        margin-top: 0.3rem;
    }
}

@media only screen and (max-width: 575px) {

    .overview-showcase::before,
    .overview-showcase::after,
    .overview-showcase__panel-wrap.highlights::before,
    .overview-showcase__panel-wrap.highlights::after {
        display: none;
    }

    .overview-showcase__panel-wrap.highlights {
        border-radius: 18px;
    }

    .overview-showcase__media {
        min-height: 245px;
        border-radius: 18px;
    }

    .overview-showcase__content {
        border-radius: 18px;
        padding: 1rem;
    }

    .overview-showcase__chips span {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    .overview-showcase::before,
    .overview-showcase::after,
    .overview-showcase__panel-wrap.highlights::before,
    .overview-showcase__panel-wrap.highlights::after {
        animation: none !important;
    }

    .overview-showcase__media img,
    .overview-showcase__media-glow,
    .overview-showcase__chips span {
        transition: none !important;
    }
}

/*end here*/

/* home-about css */
.about-btn:hover {
    color: #fff;
    background-color: #0dcaf0;
}

/* end here */

.home-services .card {
    border-radius: 0 0 20px 20px;
}

.home-services .card-body {
    /*color: white;*/
    color: black;
    border-radius: 0 0 20px 20px;
    /*background-color: #012538;*/
    background-color: #8080802e;

}

.home-services .card {
    height: 100%;
    box-shadow: 5px 5px 10px black;
}

.home-services img {
    height: 250px;
}

/*end here*/

/* Home page contact page */
.connect {
    box-shadow: 0 1px 9px var(--color1);
    height: 100%;
    background-image: url('../images/contact-home.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.connect-main #form-container {
    box-shadow: 0 2px 10px var(--color1);
    border-radius: 20px;
    overflow: hidden;
}

/*home page blog*/
.blog a {
    text-decoration: none;
    color: var(--color1);
}

.blog .card {
    box-shadow: 0 2px 10px var(--color1);
    border-radius: 30px;
}

.blog img {
    border-radius: 30px 30px 0px 0px;
}

/* home blog showcase */
.home-blog-showcase {
    position: relative;
    isolation: isolate;
    padding: clamp(1.2rem, 2.4vw, 2rem) 0 clamp(0.8rem, 2vw, 1.4rem);
}

.home-blog-showcase::before,
.home-blog-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: homeBlogFloat 10s ease-in-out infinite;
}

.home-blog-showcase::before {
    width: 220px;
    height: 220px;
    left: -66px;
    top: 52px;
    background: rgba(13, 202, 240, 0.16);
}

.home-blog-showcase::after {
    width: 170px;
    height: 170px;
    right: -52px;
    bottom: 26px;
    background: rgba(10, 85, 115, 0.15);
    animation-delay: 2.3s;
}

.home-blog-showcase__intro {
    position: relative;
    z-index: 2;
}

.home-blog-showcase__title-wrap {
    position: relative;
}



.home-blog-showcase__eyebrow {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: #0a5573;
}

.home-blog-showcase__lead {
    max-width: 620px;
    color: #375064;
    line-height: 1.72;
    font-size: 0.98rem;
}

.home-blog-showcase a.home-blog-showcase__btn {
    color: #fff;
    box-shadow: 0 10px 24px rgba(10, 85, 115, 0.2);
}

.home-blog-showcase__grid {
    position: relative;
    z-index: 2;
}

.home-blog-showcase .home-blog-card__link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.home-blog-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 14px 30px rgba(5, 31, 46, 0.18);
    background: #04263a;
    min-height: 300px;
    transition: transform 0.45s cubic-bezier(0.2, 0.65, 0.2, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.home-blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 25, 38, 0.06) 20%, rgba(3, 25, 38, 0.88) 100%);
    z-index: 1;
}

.home-blog-card__media {
    position: absolute;
    inset: 0;
}

.home-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s ease, filter 0.75s ease;
}

.home-blog-card__shine {
    position: absolute;
    top: -130%;
    left: -70%;
    width: 55%;
    height: 280%;
    background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.42) 50%, transparent 85%);
    transform: rotate(8deg);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 2;
}

.home-blog-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 1.08rem 1rem 1rem;
    color: #fff;
    transform: translateY(5px);
    transition: transform 0.45s ease;
}

.home-blog-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    border-radius: 999px;
    padding: 0.35rem 0.72rem;
    margin-bottom: 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(13, 202, 240, 0.19);
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

.home-blog-card__content h4 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    line-height: 1.45;
}

.home-blog-card--featured {
    min-height: 360px;
}

.home-blog-card--featured .home-blog-card__content h4 {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 0.45rem;
}

.home-blog-card__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    line-height: 1.58;
}

.home-blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(13, 202, 240, 0.5);
    box-shadow: 0 22px 40px rgba(5, 31, 46, 0.28);
}

.home-blog-card:hover .home-blog-card__media img {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.home-blog-card:hover .home-blog-card__shine {
    left: 132%;
}

.home-blog-card:hover .home-blog-card__content {
    transform: translateY(0);
}

@keyframes homeBlogFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -14px, 0);
    }
}

@media only screen and (max-width: 991px) {
    .home-blog-showcase__lead {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .home-blog-showcase__title-wrap::after {
        width: 180px;
        height: 180px;
        right: clamp(12px, 3vw, 26px);
        top: -24px;
    }

    .home-blog-card--featured {
        min-height: 330px;
    }
}

@media only screen and (max-width: 575px) {

    .home-blog-showcase::before,
    .home-blog-showcase::after {
        display: none;
    }

    .home-blog-showcase__title-wrap::after {
        width: 144px;
        height: 144px;
        right: 8px;
        top: -14px;
    }

    .home-blog-card {
        min-height: 275px;
        border-radius: 18px;
    }

    .home-blog-card--featured {
        min-height: 300px;
    }

    .home-blog-card__content {
        padding: 0.95rem 0.88rem 0.9rem;
    }

    .home-blog-card__content h4 {
        font-size: 0.95rem;
    }

    .home-blog-card--featured .home-blog-card__content h4 {
        font-size: 1.06rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .home-blog-showcase::before,
    .home-blog-showcase::after,
    .home-blog-showcase__title-wrap::after,
    .home-blog-card,
    .home-blog-card__media img,
    .home-blog-card__shine,
    .home-blog-card__content {
        animation: none !important;
        transition: none !important;
    }

    .home-blog-card:hover {
        transform: none;
    }
}

/*services css*/

.home-services-showcase {
    position: relative;
    isolation: isolate;
    padding: clamp(1.2rem, 2.5vw, 2rem) 0 clamp(0.8rem, 2vw, 1.2rem);
}

.home-services-showcase::before,
.home-services-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: homeServicesDrift 10s ease-in-out infinite;
}

.home-services-showcase::before {
    width: 220px;
    height: 220px;
    top: 30px;
    right: -60px;
    background: rgba(13, 202, 240, 0.18);
}

.home-services-showcase::after {
    width: 170px;
    height: 170px;
    left: -45px;
    bottom: 10px;
    background: rgba(10, 85, 115, 0.16);
    animation-delay: 2.6s;
}

.home-services-showcase__intro {
    position: relative;
    z-index: 2;
}

.home-services-showcase__eyebrow {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: #0a5573;
}

.home-services-showcase__lead {
    max-width: 540px;
    margin-left: auto;
    color: #375064;
    line-height: 1.7;
    font-size: 0.98rem;
}

.home-services-showcase__btn {
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(10, 85, 115, 0.22);
}

.home-services-showcase__btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.home-services-showcase__grid {
    position: relative;
    z-index: 2;
}

.home-services-showcase__link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.home-service-tile {
    position: relative;
    min-height: 320px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.34);
    box-shadow: 0 14px 32px rgba(5, 31, 46, 0.18);
    background: #04263a;
    transition: transform 0.45s cubic-bezier(0.2, 0.65, 0.2, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.home-service-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 25, 38, 0.16) 10%, rgba(3, 25, 38, 0.76) 70%, rgba(3, 25, 38, 0.93) 100%);
    z-index: 1;
}

.home-service-tile::after {
    content: "";
    position: absolute;
    top: -35%;
    left: -75%;
    width: 42%;
    height: 170%;
    background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.42) 50%, transparent 85%);
    transform: rotate(12deg);
    transition: left 0.85s ease;
    z-index: 2;
    pointer-events: none;
}

.home-service-tile__media {
    position: absolute;
    inset: 0;
}

.home-service-tile__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s ease, filter 0.75s ease;
}

.home-service-tile__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 1.2rem 1rem 1.1rem;
    color: #fff;
    transform: translateY(4px);
    transition: transform 0.45s ease;
}

.home-service-tile__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    padding: 0.3rem 0.7rem;
    margin-bottom: 0.6rem;
    border-radius: 999px;
    background: rgba(13, 202, 240, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.home-service-tile__content h4 {
    margin: 0 0 0.35rem;
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-service-tile__content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.94);
}

.home-service-tile--offset {
    margin-top: 56px;
}

.home-service-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 42px rgba(5, 31, 46, 0.28);
    border-color: rgba(13, 202, 240, 0.55);
}

.home-service-tile:hover::after {
    left: 132%;
}

.home-service-tile:hover .home-service-tile__media img {
    transform: scale(1.1);
    filter: saturate(1.08);
}

.home-service-tile:hover .home-service-tile__content {
    transform: translateY(0);
}

.home-service-tile:hover .home-service-tile__tag {
    background: rgba(13, 202, 240, 0.3);
}

@keyframes homeServicesDrift {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -14px, 0);
    }
}

@media only screen and (max-width: 1199px) {
    .home-service-tile--offset {
        margin-top: 28px;
    }
}

@media only screen and (max-width: 991px) {
    .home-services-showcase__intro {
        row-gap: 0.7rem;
    }

    .home-services-showcase__lead {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .home-service-tile {
        min-height: 300px;
    }

    .home-service-tile--offset {
        margin-top: 0;
    }
}

@media only screen and (max-width: 575px) {

    .home-services-showcase::before,
    .home-services-showcase::after {
        display: none;
    }

    .home-service-tile {
        min-height: 285px;
        border-radius: 22px;
    }

    .home-service-tile__content {
        padding: 1rem 0.9rem;
    }

    .home-service-tile__content p {
        font-size: 0.86rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .home-services-showcase::before,
    .home-services-showcase::after,
    .home-service-tile,
    .home-service-tile::after,
    .home-service-tile__media img,
    .home-service-tile__content {
        animation: none !important;
        transition: none !important;
    }

    .home-service-tile:hover {
        transform: none;
    }
}

/* home portfolio showcase */
.home-portfolio-showcase {
    position: relative;
    isolation: isolate;
    padding: clamp(1.2rem, 2.5vw, 2rem) 0 clamp(1rem, 2.2vw, 1.7rem);
}

.home-portfolio-showcase::before,
.home-portfolio-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: homePortfolioDrift 10s ease-in-out infinite;
}

.home-portfolio-showcase::before {
    width: 210px;
    height: 210px;
    top: 30px;
    left: -60px;
    background: rgba(13, 202, 240, 0.16);
}

.home-portfolio-showcase::after {
    width: 160px;
    height: 160px;
    right: -42px;
    bottom: 18px;
    background: rgba(10, 85, 115, 0.15);
    animation-delay: 2.5s;
}

.home-portfolio-showcase__intro {
    position: relative;
    z-index: 2;
}

.home-portfolio-showcase__eyebrow {
    margin: 0;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: #0a5573;
}

.home-portfolio-showcase__lead {
    max-width: 620px;
    color: #375064;
    line-height: 1.72;
    font-size: 0.98rem;
}

.home-portfolio-showcase__title-wrap {
    position: relative;
}

.home-portfolio-showcase__title-wrap::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    right: clamp(10px, 5vw, 50px);
    top: -38px;
    background: rgba(13, 202, 240, 0.2);
    z-index: -1;
    pointer-events: none;
    animation: homePortfolioDrift 10s ease-in-out infinite;
}

.home-portfolio-showcase__btn {
    box-shadow: 0 10px 24px rgba(10, 85, 115, 0.2);
}

.home-portfolio-showcase__grid {
    position: relative;
    z-index: 2;
}

.home-portfolio-card__link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.home-portfolio-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 14px 32px rgba(5, 31, 46, 0.2);
    background: #04263a;
    min-height: 360px;
    transition: transform 0.45s cubic-bezier(0.2, 0.65, 0.2, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.home-portfolio-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 25, 38, 0.08) 24%, rgba(3, 25, 38, 0.88) 100%);
    z-index: 1;
}

.home-portfolio-card__media {
    position: absolute;
    inset: 0;
}

.home-portfolio-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s ease, filter 0.75s ease;
}

.home-portfolio-card__shine {
    position: absolute;
    top: -135%;
    left: -68%;
    width: 55%;
    height: 280%;
    background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.42) 50%, transparent 85%);
    transform: rotate(8deg);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 2;
}

.home-portfolio-card__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 1.2rem 1rem 1.1rem;
    color: #fff;
    transform: translateY(6px);
    transition: transform 0.45s ease;
}

.home-portfolio-card__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    border-radius: 999px;
    padding: 0.34rem 0.7rem;
    margin-bottom: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(13, 202, 240, 0.19);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
}

.home-portfolio-card__content h4 {
    margin: 0 0 0.38rem;
    font-size: 1.25rem;
    line-height: 1.3;
    color: #fff;
}

.home-portfolio-card__content p {
    margin: 0 0 0.72rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
}

.home-portfolio-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #0dcaf0;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.home-portfolio-card__cta i {
    font-size: 0.78rem;
}

.home-portfolio-card:hover {
    transform: translateY(-10px);
    border-color: rgba(13, 202, 240, 0.55);
    box-shadow: 0 24px 42px rgba(5, 31, 46, 0.28);
}

.home-portfolio-card:hover .home-portfolio-card__media img {
    transform: scale(1.1);
    filter: saturate(1.08);
}

.home-portfolio-card:hover .home-portfolio-card__shine {
    left: 130%;
}

.home-portfolio-card:hover .home-portfolio-card__content {
    transform: translateY(0);
}

@keyframes homePortfolioDrift {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -14px, 0);
    }
}

@media only screen and (max-width: 991px) {
    .home-portfolio-showcase__lead {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .home-portfolio-showcase__title-wrap::after {
        width: 190px;
        height: 190px;
        right: clamp(10px, 3vw, 24px);
        top: -28px;
    }

    .home-portfolio-card {
        min-height: 330px;
    }
}

@media only screen and (max-width: 575px) {

    .home-portfolio-showcase::before,
    .home-portfolio-showcase::after {
        display: none;
    }

    .home-portfolio-showcase__title-wrap::after {
        width: 150px;
        height: 150px;
        right: 8px;
        top: -18px;
    }

    .home-portfolio-card {
        min-height: 300px;
        border-radius: 18px;
    }

    .home-portfolio-card__content {
        padding: 1rem 0.9rem;
    }

    .home-portfolio-card__content p {
        font-size: 0.86rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .home-portfolio-showcase::before,
    .home-portfolio-showcase::after,
    .home-portfolio-card,
    .home-portfolio-showcase__title-wrap::after,
    .home-portfolio-card__media img,
    .home-portfolio-card__shine,
    .home-portfolio-card__content {
        animation: none !important;
        transition: none !important;
    }

    .home-portfolio-card:hover {
        transform: none;
    }
}

/*.myproject{*/
/*        background:linear-gradient(rgba(10,85,115,0.7),rgba(10,85,115,0.7),rgba(10,85,115,0.7));*/
/*}*/
/*.myproject p{*/
/*    display:none;*/
/*}*/

.top-city-item {
    position: relative;

    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .18);
    margin-bottom: 20px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.top-city-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 28px rgba(10, 85, 115, .28);
}

.top-city-img::before {
    opacity: 1;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
}

.portfolio-thumb {
    /*background:linear-gradient(rgba(10,85,115,0.6),rgba(10,85,115,0.6),rgba(10,85,115,0.6));*/
    background: rgba(0, 0, 0, 0.4);
}

.portfolio-thumb img {
    position: relative;
    z-index: -100;
    overflow: hidden;
    object-fit: cover;
}

.top-city-item:hover .top-city-img::before {
    opacity: 1;
    background: radial-gradient(44.97% 44.97% at 50% 55.03%, rgba(10, 85, 115, .5) 1%, rgba(10, 85, 115, .8) 72.92%);
    position: absolute;
    content: "";
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .5s;
}

.top-city-item:hover .myproject p {
    display: block;
}

/*.top-city-item .top-city-text{*/
/*    position: absolute;*/
/*    bottom: 15px;*/
/*    width: 100%;*/
/*    text-align: center;*/
/*    transition: all .5s;*/
/*}*/
.top-city-item .top-city-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    transition: all .5s;
}

.top-city-item:hover .top-city-text {
    /*bottom: 43%;*/
    padding: 10px;
}

.top-city-item .top-city-text h4 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 28px;
    transition: all .5s;
}

.box-down {
    margin-top: 60px;
}

/* start portfolio */
#portfolio .portfolio-thumb {
    border-radius: 40px;
    height: 90%;
    overflow: hidden;
    margin: 0;
    position: relative;
    box-shadow: 0 2px 10px var(--color1);
}

#portfolio .portfolio-thumb .portfolio-overlay {
    background: #0A5573;
    color: #ffffff;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

#portfolio .portfolio-thumb:hover .portfolio-overlay {
    opacity: 0.9;
}

#portfolio .portfolio-thumb .portfolio-overlay .fa {
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    margin-right: 6px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

#portfolio .portfolio-thumb .portfolio-overlay .fa:hover {
    background: #55acee;
    border-color: #55acee;
}

#portfolio .portfolio-thumb .portfolio-overlay h4 {
    padding-bottom: 10px;
}

.portfolio-description {
    padding-left: 15px;
    padding-right: 15px;
}

#portfolio .portfolio-thumb:hover .myproject {
    display: none;
}

/*filter css*/
.filter-wrapper {
    width: 100%;
    margin: 0 0 24px 0;
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.filter-wrapper li {
    display: inline-block;
    margin: 4px;
    transition: all 0.3s ease;
}

.filter-wrapper li:hover {
    background: #55acee;
}

.filter-wrapper li:hover a {
    color: #fff;
}

.filter-wrapper li a {
    border: 1px solid #f2f2f2;
    color: #999;
    padding: 8px 17px;
    display: block;
    text-decoration: none;
}

/*Bottom form*/

form.bottom-form {
    color: black !important;
    padding: clamp(1.2rem, 3vw, 2rem);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0 0 20px 20px;
}

form.bottom-form .col-12,
form.bottom-form .col-md-10 {
    padding-left: 0.45rem;
    padding-right: 0.45rem;
}

form.bottom-form input,
form.bottom-form textarea {
    background: #f8fbfd;
    width: 100%;
    padding: 0.95rem 1rem;
    margin-bottom: 0.35rem;
    font-size: 15px;
    border-radius: 12px;
    border: 1px solid #c8dae2;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

form.bottom-form textarea {
    min-height: 150px;
    resize: vertical;
}

form.bottom-form input:focus,
form.bottom-form textarea:focus {
    border-color: #0a5573;
    box-shadow: 0 0 0 0.18rem rgba(10, 85, 115, 0.16);
    background: #fff;
}

form.bottom-form button {
    background-color: var(--color1);
    color: var(--color3);
    width: min(100%, 220px);
    border: 0;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0.2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 8px 18px rgba(10, 85, 115, 0.35);
}

form.bottom-form button:hover {
    background-color: #0c6a8f;
    transform: translateY(-1px);
}

form.bottom-form button:focus-visible {
    outline: 3px solid rgba(10, 85, 115, 0.3);
    outline-offset: 2px;
}

form.bottom-form .commonerror {
    display: block;
    min-height: 1.15rem;
    margin-bottom: 0.8rem;
    font-size: 0.82rem;
}

.messageshow04 {
    min-height: 1.2rem;
    margin-top: 0.35rem;
}

@media only screen and (max-width: 991px) {
    .connect {
        background-attachment: scroll;
    }

    .connect .row {
        min-height: auto;
    }

    .connect-main {
        padding-top: 2rem !important;
        padding-bottom: 2.5rem !important;
    }

    .connect-main #form-container {
        border-radius: 16px;
    }

    .connect-heading {
        border-radius: 16px 16px 0 0;
    }
}

@media only screen and (max-width: 575px) {
    .connect-main {
        padding-left: 0.9rem !important;
        padding-right: 0.9rem !important;
    }

    .connect-heading {
        font-size: 1.55rem;
    }

    .connect-subtitle {
        font-size: 0.9rem;
        padding: 0.7rem 0.75rem;
    }

    form.bottom-form {
        padding: 1rem 0.85rem 1.15rem;
    }

    form.bottom-form input,
    form.bottom-form textarea {
        font-size: 14px;
    }
}

.btn-close {
    font-size: 30px;
    background: white !important;
    /* padding-bottom: 15px!important; */
    padding: 0px 5px 12px 5px;
    border-radius: 22px;
    position: absolute;
    right: -22px;
    top: -23px;
}

.form-heading {
    font-size: 1.8rem;
}

/* About page css */
.about-banner {
    background: linear-gradient(rgba(10, 85, 115, 0.7), rgba(10, 85, 115, 0.7), rgba(10, 85, 115, 0.7)), url('../images/ab-1.webp')no-repeat center/cover;
    background-attachment: fixed;
}

.about-content {
    text-align: center;
    padding: 180px 0;
    color: white;
}

.about-content h3 {
    font-size: 55px;
}

.about-content p {
    font-size: 20px;
}

.first-letter-big {
    font-style: normal !important;
    font-size: 75px;
    float: left;
    position: relative;
    margin-top: -8px;
    line-height: 1;
    margin-right: 15px;
}

.ip-about-section-3 {
    position: relative;
    margin-bottom: 105px;
}

.ip-about-s3-accent {
    position: absolute;
    background: var(--color1);
    width: 33px;
    height: 839px;
    top: 0;
}

.ip-about-s3-accent.accent-left {
    left: 0;
}

.ip-about-s3-accent.accent-right {
    right: 0;
}

.ip-about-s3-row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 auto;
    max-width: 1042px;
}

.ip-about-s3-img {
    width: 386px;
    width: 37.1%;
}

.ip-about-s3-img img {
    display: block;
}

.ip-about-s3-text {
    width: 62.9%;
    padding-left: 7.4%;
}

#content .ip-about-s3-text.ip-about-text p:first-child {
    margin-top: 0;
}

#content .ip-about-s3-text.ip-about-text p {
    margin-bottom: 24px;
}

.ip-about-s3-text.ip-about-text .first-letter-big {
    margin-left: -20px;
    margin-top: -10px;
    margin-right: 5px;
}

.ip-about-section-4 {
    position: relative;
    padding: 74px 0 0;
}

.ip-about-section-4:before {
    content: '';
    position: absolute;
    bottom: 107px;
    right: 0;
    top: 0;
    background: var(--color1);
    width: 580px;

}

.ip-aboout-s4-box {
    position: relative;
    background: linear-gradient(rgba(10, 85, 115, 0.8), rgba(10, 85, 115, 0.8)), url(../images/tech-ban4.webp) center/cover no-repeat;
    margin-right: 74px;
    /*filter:grayscale(1);*/
    padding: 172px 0 180px;
}

.ip-aboout-s4-text {
    font-size: 60px;
    line-height: 1.2;
    color: #fff;
    font-style: italic;
    margin-left: 18.4%;
    max-width: 755px;

}

.ip-about-section-5 {
    position: relative;
    margin-bottom: 105px;
}

.ip-about-s5-accent {
    position: absolute;
    background: var(--color1);
    width: 33px;
    height: 839px;
    top: 0;
}

.ip-about-s5-accent.accent-left {
    left: 0;
}

.ip-about-s5-accent.accent-right {
    right: 0;
}

.ip-about-s5-row {
    display: flex;
    flex-flow: row wrap;
    margin: 0 auto;
    max-width: 1042px;
}

.ip-about-s5-img {
    width: 386px;
    width: 37.1%;
}

.ip-about-s5-img img {
    display: block;
}

.ip-about-s5-text {
    width: 62.9%;
    padding-left: 7.4%;
}

#content .ip-about-s5-text.ip-about-text p:first-child {
    margin-top: 0;
}

#content .ip-about-s5-text.ip-about-text p {
    margin-bottom: 24px;
}

.ip-about-s5-text.ip-about-text .first-letter-big {
    margin-left: -20px;
    margin-top: -10px;
    margin-right: 5px;
}

.ip-about-s5-text {
    padding-right: 7.4% !important;
    padding-left: 0;
}

/*---------------------------------------
  CALL TO ACTION              
-----------------------------------------*/
.call-to-action {
    padding: 100px 0;
    position: relative;
}

.call-to-action--enhanced {
    padding: clamp(72px, 8vw, 112px) 0;
    isolation: isolate;
}

.call-to-action--enhanced .call-to-action__shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: clamp(1.4rem, 3.3vw, 2.6rem);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 18px 42px rgba(4, 30, 44, 0.24);
    background-image:
        linear-gradient(130deg, rgba(4, 34, 50, 0.94), rgba(8, 64, 89, 0.88), rgba(13, 202, 240, 0.38)),
        url('../images/pattern-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.call-to-action--enhanced .call-to-action__shell::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    top: -200px;
    right: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.call-to-action--enhanced .call-to-action__shell::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(105deg, rgba(255, 255, 255, 0.06), transparent 45%);
}

.call-to-action--enhanced .row {
    position: relative;
    z-index: 2;
}

.call-to-action__kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    margin-bottom: 1rem;
    padding: 0.45rem 0.86rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    letter-spacing: 0.08em;
    font-size: 0.76rem;
    text-transform: uppercase;
    font-weight: 700;
}

.call-to-action__title {
    font-size: clamp(1.85rem, 4vw, 2.6rem);
}

.call-to-action__text {
    max-width: 680px;
    margin-bottom: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
}

.call-to-action__points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.call-to-action__points span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.46rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.35;
}

.call-to-action__points i {
    color: #0dcaf0;
}

.call-to-action--enhanced .custom-btn.call-to-action__btn {
    border: 0;
    border-radius: 999px;
    padding: 0.95rem 1.6rem;
    min-width: 190px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #072435;
    background: linear-gradient(135deg, #ffffff, #dff9ff);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.call-to-action--enhanced .custom-btn.call-to-action__btn:hover {
    transform: translateY(-3px);
    color: #fff;
    background: linear-gradient(135deg, #0dcaf0, #0a5573);
    box-shadow: 0 18px 34px rgba(6, 41, 56, 0.28);
}

.call-to-action__note {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
}

.call-to-action__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: ctaOrbFloat 9s ease-in-out infinite;
}

.call-to-action__orb--one {
    width: 170px;
    height: 170px;
    right: 8%;
    bottom: -50px;
    background: rgba(255, 255, 255, 0.14);
}

.call-to-action__orb--two {
    width: 120px;
    height: 120px;
    left: 34%;
    top: -45px;
    background: rgba(13, 202, 240, 0.28);
    animation-delay: 2.2s;
}

@keyframes ctaOrbFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -12px, 0);
    }
}

@media only screen and (max-width: 991px) {
    .call-to-action--enhanced .call-to-action__shell {
        border-radius: 24px;
    }

    .call-to-action__kicker {
        margin-left: auto;
        margin-right: auto;
    }

    .call-to-action__text {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .call-to-action__points {
        justify-content: center;
    }

    .call-to-action__note {
        text-align: center;
    }
}

@media only screen and (max-width: 575px) {
    .call-to-action--enhanced {
        padding: 58px 0;
    }

    .call-to-action--enhanced .call-to-action__shell {
        border-radius: 18px;
        padding: 1.05rem;
    }

    .call-to-action__points span {
        width: 100%;
        justify-content: center;
    }

    .call-to-action--enhanced .custom-btn.call-to-action__btn {
        width: 100%;
        max-width: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .call-to-action__orb,
    .call-to-action--enhanced .custom-btn.call-to-action__btn {
        animation: none !important;
        transition: none !important;
    }

    .call-to-action--enhanced .custom-btn.call-to-action__btn:hover {
        transform: none;
    }
}

/*client logo css */
.clients-showcase {
    position: relative;
    padding: clamp(2rem, 4vw, 3.5rem) 0;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(13, 202, 240, 0.2), rgba(13, 202, 240, 0) 38%),
        radial-gradient(circle at 86% 82%, rgba(10, 85, 115, 0.16), rgba(10, 85, 115, 0) 42%),
        linear-gradient(138deg, #f7fdff 0%, #edf5f8 56%, #f7fbff 100%);
}

.clients-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(10, 85, 115, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 85, 115, 0.07) 1px, transparent 1px);
    background-size: 44px 44px;
}

.clients-showcase::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    left: -160px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
}

.clients-showcase__shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(10, 85, 115, 0.12);
    border-radius: 26px;
    padding: clamp(1.2rem, 3vw, 2.2rem);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(242, 249, 252, 0.94));
    box-shadow: 0 24px 54px rgba(16, 38, 51, 0.15);
}

.clients-showcase__shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(118deg, rgba(255, 255, 255, 0.56), transparent 46%);
}

.clients-showcase__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(6px);
    opacity: 0.45;
    animation: clientsGlowFloat 7s ease-in-out infinite;
}

.clients-showcase__glow--one {
    width: 130px;
    height: 130px;
    right: 10%;
    top: 6%;
    background: radial-gradient(circle, rgba(13, 202, 240, 0.6), rgba(13, 202, 240, 0));
}

.clients-showcase__glow--two {
    width: 170px;
    height: 170px;
    left: 40%;
    bottom: -70px;
    animation-delay: 1.8s;
    background: radial-gradient(circle, rgba(10, 85, 115, 0.48), rgba(10, 85, 115, 0));
}

.clients-showcase__header {
    margin-bottom: clamp(0.75rem, 2vw, 1.2rem);
    position: relative;
    z-index: 2;
}

.clients-showcase__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.85rem;
    margin-bottom: 0.65rem;
    border-radius: 999px;
    background: rgba(10, 85, 115, 0.1);
    color: var(--color1);
    font-family: Montserrat-SemiBold;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(10, 85, 115, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.clients-showcase__subtitle {
    color: #243746;
    font-size: clamp(1.02rem, 2vw, 1.3rem);
    line-height: 1.45;
}

.clients-showcase__subtitle span {
    color: var(--color1);
}

.clients-showcase__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.82rem;
}

.clients-showcase__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.38rem 0.74rem;
    border-radius: 999px;
    border: 1px solid rgba(10, 85, 115, 0.16);
    background: rgba(10, 85, 115, 0.08);
    color: #1d4960;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1.4;
}

.clients-showcase__meta i {
    color: var(--color1);
}

.clients-showcase__btn {
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 14px 28px rgba(7, 47, 65, 0.2);
}

.clients-showcase__btn:hover {
    transform: translateY(-2px);
}

.clients-showcase__slider-wrap {
    position: relative;
    z-index: 2;
    margin-top: 0.45rem;
    border-radius: 22px;
    border: 1px solid rgba(10, 85, 115, 0.14);
    background: linear-gradient(168deg, rgba(255, 255, 255, 0.95), rgba(236, 247, 252, 0.9));
    padding: 0.8rem;
}

.clients-showcase__slider-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px dashed rgba(10, 85, 115, 0.14);
    pointer-events: none;
}

.clients-showcase__item {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0.35rem;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.clients-showcase__logo {
    position: relative;
    overflow: hidden;
    height: 124px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.95rem;
    border-radius: 18px;
    border: 1px solid rgba(10, 85, 115, 0.14);
    background: linear-gradient(164deg, #ffffff 0%, #ecf7fb 72%, #ffffff 100%);
    box-shadow: 0 8px 18px rgba(10, 85, 115, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.clients-showcase__logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 120%;
    height: 100%;
    transform: skewX(-20deg);
    background: linear-gradient(100deg, transparent 25%, rgba(255, 255, 255, 0.85) 50%, transparent 72%);
    transition: left 0.6s ease;
}

.games-sl img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 145px;
    max-height: 72px;
    aspect-ratio: 3/2;
    object-fit: contain;
    mix-blend-mode: normal;
    /* filter: grayscale(95%); */
    opacity: 0.84;
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.clients-showcase__name {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.42rem;
    padding: 0.18rem 0.62rem;
    min-height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(10, 85, 115, 0.14);
    background: rgba(10, 85, 115, 0.08);
    color: #1f4f67;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.clients-showcase__item:hover .clients-showcase__logo,
.clients-showcase__item:focus-visible .clients-showcase__logo {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(10, 85, 115, 0.34);
    box-shadow: 0 16px 30px rgba(10, 85, 115, 0.2);
}

.clients-showcase__item:hover .clients-showcase__logo::after,
.clients-showcase__item:focus-visible .clients-showcase__logo::after {
    left: 125%;
}

.clients-showcase__item:hover img,
.clients-showcase__item:focus-visible img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
}

.clients-showcase__item:hover .clients-showcase__name,
.clients-showcase__item:focus-visible .clients-showcase__name {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, #0a5573, #0d84ad);
}

.clients-showcase__item:focus-visible {
    outline: 2px solid rgba(10, 85, 115, 0.55);
    outline-offset: 3px;
}

.clients .owl-nav {
    display: none;
}

.clients .owl-dots {
    margin-top: 1rem;
    text-align: center;
}

.clients .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    margin: 4px 4px;
    border-radius: 999px;
    background: rgba(10, 85, 115, 0.24) !important;
    transition: width 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.clients .owl-dots .owl-dot.active span,
.clients .owl-dots .owl-dot:hover span {
    width: 28px;
    transform: translateY(-1px);
    background: var(--color1) !important;
}

@media only screen and (max-width: 767px) {
    .clients-showcase {
        padding: 1.6rem 0;
    }

    .clients-showcase__shell {
        border-radius: 18px;
    }

    .clients-showcase__glow {
        display: none;
    }

    .clients-showcase__eyebrow {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .clients-showcase__subtitle {
        text-align: center;
    }

    .clients-showcase__meta {
        justify-content: center;
    }

    .clients-showcase__slider-wrap {
        padding: 0.55rem;
    }

    .clients-showcase__btn {
        width: 100%;
        max-width: 260px;
    }

    .clients-showcase__logo {
        height: 120px;
    }

    .games-sl img {
        max-width: 120px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .clients-showcase__glow,
    .clients-showcase__logo,
    .games-sl img,
    .clients .owl-dots .owl-dot span {
        animation: none !important;
        transition: none !important;
    }

    .clients-showcase__logo::after {
        display: none;
    }

    .clients-showcase__item:hover .clients-showcase__logo,
    .clients-showcase__item:focus-visible .clients-showcase__logo,
    .clients-showcase__item:hover img,
    .clients-showcase__item:focus-visible img {
        transform: none;
    }
}

@keyframes clientsGlowFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -12px, 0);
    }
}

/*---------------------------------------
  VENUE               
-----------------------------------------*/
.venue {
    color: black;
    background: #f0f8ff;
}

.venue-thumb {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.venue-info-title,
.venue-info-body {
    padding: 40px;
}

.venue-info-title {
    background: #000;
    padding: 20px 40px;
}

.google-map {
    border-radius: 20px;
}

.venue a {
    text-decoration: none;
    font-size: 24px;
    color: #717275;
}

.venue a:hover {
    color: #0dcaf0;
}

/* ---- All Pages CSS ---- */

.full-title {
    padding: 200px 0px 0px 0px;
    position: relative;
}

.full-title:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    top: 0px;
    left: 0px;
    position: absolute;
    width: 100%;
    height: 100%;
}

.full-title h5 {
    position: relative;
    color: #ffffff;
    font-size: 50px;
    text-align: center;
}

.breadcrumb-main {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
}

.breadcrumb-main .breadcrumb {
    background: #000;
    border-radius: 100px 100px 0px 0px;
    display: block;
}

.breadcrumb-main .breadcrumb li a {
    color: #ffbd59;
    font-size: 20px;
}

.breadcrumb-main .breadcrumb li {
    color: #fff;
    display: inline-block;
    font-size: 20px;
}

.breadcrumb-main .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

/* end here */

/* contact page css */
/*....................*/


/*contact page css*/
/*..................*/

.contact-shell {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f4fbff 0%, #eef8ff 52%, #f9fcff 100%);
}

.contact-shell>* {
    position: relative;
    z-index: 1;
}

.contact-shell::before,
.contact-shell::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.contact-shell::before {
    width: 420px;
    height: 420px;
    right: -150px;
    top: -120px;
    background: radial-gradient(circle, rgba(13, 202, 240, 0.55) 0%, rgba(13, 202, 240, 0) 70%);
    animation: contactOrbFloat 10s ease-in-out infinite;
}

.contact-shell::after {
    width: 360px;
    height: 360px;
    left: -130px;
    bottom: 80px;
    background: radial-gradient(circle, rgba(4, 73, 106, 0.45) 0%, rgba(4, 73, 106, 0) 72%);
    animation: contactOrbFloat 13s ease-in-out infinite reverse;
}

.contact-page {
    position: relative;
    min-height: clamp(540px, 80vh, 760px);
    background:
        linear-gradient(120deg, rgba(2, 36, 55, 0.88) 0%, rgba(10, 85, 115, 0.82) 48%, rgba(4, 73, 106, 0.88) 100%),
        url('../images/contact-bg.webp') center/cover no-repeat;
    overflow: hidden;
}

.contact-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.35;
    animation: contactGridMove 20s linear infinite;
    pointer-events: none;
}

.contact-page::after {
    content: '';
    position: absolute;
    inset: auto -25% -52% auto;
    width: 72%;
    height: 72%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.contact-page .row {
    position: relative;
    z-index: 1;
    min-height: inherit;
}

.contact-page__visual {
    padding: clamp(2rem, 5vw, 4rem);
}

.contact-page__intro {
    max-width: 560px;
    color: #fff;
    animation: contactFadeRise 0.8s ease-out both;
}

.contact-page__eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.78rem;
    color: #ffda8c;
}

.contact-page__intro h1 {
    font-size: clamp(1.9rem, 4.4vw, 3.15rem);
    line-height: 1.14;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-page__intro>p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.03rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.contact-page__highlights {
    display: grid;
    gap: 0.8rem;
}

.contact-page__highlight {
    padding: 0.95rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(3px);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    animation: contactFadeRise 0.9s ease-out both;
}

.contact-page__highlight:nth-child(2) {
    animation-delay: 0.12s;
}

.contact-page__highlight:nth-child(3) {
    animation-delay: 0.24s;
}

.contact-page__highlight h3 {
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
    color: #fff;
}

.contact-page__highlight p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.contact-page__highlight:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.09));
}

.contact-wraper {
    padding: clamp(1rem, 3.7vw, 3rem);
}

.contact-container {
    position: relative;
    z-index: 2;
}

form.contact-foorm {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    flex-direction: column;
    padding: 1.9rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 22px;
    border: 1px solid rgba(4, 73, 106, 0.14);
    box-shadow: 0 22px 55px rgba(1, 31, 48, 0.24);
    overflow: hidden;
    animation: contactFormReveal 0.65s ease-out both;
}

form.contact-foorm::before {
    content: '';
    position: absolute;
    top: 0;
    left: -25%;
    width: 42%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color1), transparent);
    animation: contactSweep 2.8s ease-in-out infinite;
}

form.contact-foorm h6 {
    text-align: center;
    color: var(--color1);
    font-family: 'AntipastoPro-Thin', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.05rem);
    letter-spacing: 1.6px;
    margin-bottom: 0.4rem;
}

.contact-form__subtitle {
    color: #4e6472;
    font-weight: 500;
    margin-bottom: 0.9rem;
}

form.contact-foorm input,
form.contact-foorm select {
    width: 100%;
    padding: 0.78rem 0.95rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    border: 1px solid #cde0eb;
    border-radius: 11px;
    background: #f8fcff;
    color: #223140;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

form.contact-foorm textarea {
    padding: 0.78rem 0.95rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    border: 1px solid #cde0eb;
    border-radius: 11px;
    background: #f8fcff;
    color: #223140;
    min-height: 125px;
    resize: vertical;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background-color 0.22s ease;
}

form.contact-foorm input:focus,
form.contact-foorm select:focus,
form.contact-foorm textarea:focus {
    border-color: #0b8dbf;
    outline: 0;
    box-shadow: 0 0 0 3px rgba(11, 141, 191, 0.16);
    background: #fff;
    transform: translateY(-1px);
}

form.contact-foorm button {
    background: linear-gradient(135deg, #0a4f74 0%, #0d86b8 100%);
    color: #fff;
    border: 0;
    min-height: 48px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 0.7rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

form.contact-foorm button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(4, 73, 106, 0.3);
    filter: brightness(1.02);
}

form.contact-foorm button:active {
    transform: translateY(0);
}

form.contact-foorm .messageshow02 {
    min-height: 1.2rem;
    margin-top: 0.7rem;
    text-align: center;
    font-size: 0.88rem;
}

/*end here*/

/*contact us page css*/
.contactImg {
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url("../images/beautiful-city.webp") no-repeat center/cover;
    filter: grayscale(1);
}

.contact-form {
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: -100px;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("../images/bg-contact.webp") no-repeat center/cover;
}

.contact-form input {
    background: transparent;
    border: none;
    border-bottom: 2px solid white;
}

.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid white;
}

.contact-form .form-control:focus {
    color: white;
    background-color: transparent;
    border-color: white;
}

.contactI {
    background: #3b3b3b;
}

.contact-page-title h3,
.builder-page-title h3 {
    text-transform: uppercase;
    margin: 90px;
    font-weight: 600;
    font-size: 32px;
}

.contact-btnsend {
    background: var(--color1);
    border: 0;
    padding: 12px 34px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
}

.contact-map__frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #d0e4f1;
    box-shadow: 0 18px 40px rgba(2, 36, 55, 0.16);
    background: #fff;
    transform: translateY(0);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.contact-map__frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(2, 36, 55, 0.2);
}

.contact-map__frame iframe {
    display: block;
}

.contact-page-address {
    position: relative;
    z-index: 1;
}

.address-contact {
    background: linear-gradient(150deg, #04496a 0%, #0a6f9d 100%);
    text-align: center;
    padding: 46px 22px 22px;
    border-radius: 16px;
    position: relative;
    height: 100%;
    box-shadow: 0 16px 36px rgba(2, 36, 55, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.Phone-contact {
    background-color: var(--color1);
    text-align: center;
    padding: 46px 22px 22px;
    border-radius: 16px;
    position: relative;
    height: 100%;
    box-shadow: 0 16px 36px rgba(2, 36, 55, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.email-contact {
    background: linear-gradient(150deg, #04496a 0%, #0a6f9d 100%);
    text-align: center;
    padding: 46px 22px 22px;
    border-radius: 16px;
    position: relative;
    height: 100%;
    box-shadow: 0 16px 36px rgba(2, 36, 55, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.address-contact:hover,
.Phone-contact:hover,
.email-contact:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(2, 36, 55, 0.25);
}

.address-contact h3,
.Phone-contact h3,
.email-contact h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.address-contact p,
.Phone-contact p,
.email-contact p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}

.address-contact a,
.Phone-contact a,
.email-contact a {
    transition: color 0.2s ease;
}

.address-contact a:hover,
.Phone-contact a:hover,
.email-contact a:hover {
    color: #ffd787 !important;
}

.call-points {
    padding: 30px 30px 20px 30px;
    text-align: center;
}

.address-img {
    box-shadow: 0 8px 24px rgba(2, 36, 55, 0.3);
    background: linear-gradient(145deg, #ffffff, #0a6398);
    border-radius: 50%;
    position: absolute;
    top: 0;
    padding: 12px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.address-img img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .contact-page {
        min-height: auto;
    }

    .contact-page__visual {
        padding-bottom: 0.4rem;
    }

    .contact-wraper {
        padding-top: 0;
    }
}

@media (max-width: 767.98px) {
    .contact-page__intro h1 {
        font-size: clamp(1.65rem, 8vw, 2.25rem);
    }

    form.contact-foorm {
        padding: 1.5rem 1.1rem;
        border-radius: 16px;
    }

    form.contact-foorm h6 {
        font-size: 1.55rem;
    }
}

@media (prefers-reduced-motion: reduce) {

    .contact-shell::before,
    .contact-shell::after,
    .contact-page::before,
    .contact-page__intro,
    .contact-page__highlight,
    form.contact-foorm,
    form.contact-foorm::before {
        animation: none !important;
        transition: none !important;
    }
}

@keyframes contactGridMove {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(56px, 56px, 0);
    }
}

@keyframes contactFadeRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactFormReveal {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes contactSweep {

    0%,
    100% {
        left: -30%;
    }

    50% {
        left: 100%;
    }
}

@keyframes contactOrbFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -16px, 0);
    }
}

.fa-whatsapp {
    border-radius: 100%;
    font-size: 20px;
    color: #1ea20e;
    padding: 3px;
}

.contact-last {
    background-color: #c59247;
    color: #fff;
    padding: 20px;
    font-size: 21px;
    margin: 0;
}

.gurgaon-himachal-1 {
    background-color: #e5e5e5;
}

.detail {
    background: black;
    padding: 10px 0 10px 0;
}

/*end here*/
/* services page css */
.services-page-shell {
    background: linear-gradient(180deg, #f5fbff 0%, #eef6ff 38%, #f8fcff 100%);
}

.services-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(5rem, 10vw, 7.5rem) 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(13, 202, 240, 0.45), transparent 46%),
        radial-gradient(circle at 78% 18%, rgba(29, 91, 121, 0.55), transparent 40%),
        linear-gradient(120deg, #022437 0%, #0a5573 50%, #08273f 100%);
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.14) 100%);
    animation: servicesGradientShift 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.services-hero::after {
    content: '';
    position: absolute;
    inset: -42% -28%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 54px 54px;
    background-position: 0 0, 0 0;
    transform: perspective(1000px) rotateX(62deg);
    transform-origin: center top;
    animation: servicesHeroGridMove 22s linear infinite;
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    will-change: background-position;
}

.services-hero__floating {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.services-hero__float {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #08324a;
    font-size: 1rem;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(214, 243, 255, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    animation: servicesFloatIcon 6.5s ease-in-out infinite;
}

.services-hero__float--one {
    top: 18%;
    left: clamp(1rem, 5vw, 4rem);
}

.services-hero__float--two {
    top: 17%;
    right: clamp(1rem, 5vw, 4rem);
    animation-delay: 0.9s;
}

.services-hero__float--three {
    bottom: 20%;
    right: 22%;
    animation-delay: 1.8s;
}

.services-hero__float--four {
    bottom: 18%;
    left: 20%;
    animation-delay: 2.7s;
}

.services-hero__content {
    position: relative;
    z-index: 3;
}

.services-hero__eyebrow {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
}

.services-hero__title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.2;
}

.services-hero__lead {
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.93);
}

.services-hero__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
}

.services-hero__chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    color: #f2fbff;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    animation: servicesChipPulse 3.4s ease-in-out infinite;
}

.services-hero__chips span:nth-child(2) {
    animation-delay: 0.35s;
}

.services-hero__chips span:nth-child(3) {
    animation-delay: 0.7s;
}

.services-hero__chips i {
    color: #8eeeff;
}

.services-hero__actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.services-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.72rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.services-hero__btn--primary {
    color: #08324a;
    background: linear-gradient(140deg, #ffffff, #d8f4ff);
    box-shadow: 0 10px 26px rgba(4, 26, 38, 0.28);
}

.services-hero__btn--ghost {
    color: #ecfbff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.services-hero__btn:hover {
    transform: translateY(-3px);
}

.services-hero__btn--primary:hover {
    box-shadow: 0 14px 30px rgba(4, 26, 38, 0.3);
}

.services-hero__btn--ghost:hover {
    color: #0b425f;
    background: rgba(255, 255, 255, 0.9);
}

.services-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
    animation: servicesOrbFloat 8s ease-in-out infinite;
    z-index: 1;
}

.services-hero__orb--one {
    width: 120px;
    height: 120px;
    left: clamp(0.5rem, 3vw, 2rem);
    top: 28%;
    background: rgba(255, 255, 255, 0.26);
}

.services-hero__orb--two {
    width: 180px;
    height: 180px;
    right: clamp(1rem, 4vw, 3rem);
    top: 18%;
    background: rgba(13, 202, 240, 0.35);
    animation-delay: 1.2s;
}

.services-hero__orb--three {
    width: 140px;
    height: 140px;
    right: 28%;
    bottom: -35px;
    background: rgba(255, 255, 255, 0.2);
    animation-delay: 2.4s;
}

.services-showcase {
    position: relative;
}

.services-intro {
    max-width: 780px;
}

.services-intro__eyebrow {
    color: #0a5573;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
}

.services-intro__title {
    font-size: clamp(1.6rem, 3.8vw, 2.6rem);
    color: #062437;
}

.services-intro__text {
    color: #3b5567;
    line-height: 1.75;
    font-size: 1.02rem;
}

.services-grid {
    display: grid;
    gap: clamp(1.2rem, 2.5vw, 2rem);
}

.service-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 340px) 1fr;
    align-items: stretch;
    gap: clamp(1.2rem, 3vw, 2.6rem);
    padding: clamp(1.1rem, 2.2vw, 1.8rem);
    border-radius: 24px;
    border: 1px solid rgba(10, 85, 115, 0.16);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 248, 255, 0.94));
    box-shadow: 0 14px 34px rgba(5, 31, 46, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -48%;
    width: 30%;
    height: 140%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-18deg);
    transition: left 0.8s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px rgba(5, 31, 46, 0.14);
    border-color: rgba(13, 202, 240, 0.35);
}

.service-card:hover::after {
    left: 126%;
}

.service-card--reverse .service-card__media {
    order: 2;
}

.service-card--reverse .service-card__content {
    order: 1;
}

.service-card__media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 240px;
    background: #0a5573;
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.service-card:hover .service-card__media img {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.service-card__shine {
    position: absolute;
    top: -130%;
    left: -68%;
    width: 55%;
    height: 280%;
    background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.42) 50%, transparent 85%);
    transform: rotate(8deg);
    transition: left 0.8s ease;
    pointer-events: none;
}

.service-card:hover .service-card__shine {
    left: 130%;
}

.service-card__content {
    align-self: center;
}

.service-card__heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.55rem;
}

.service-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: #0a5573;
    font-size: 1.05rem;
    background: linear-gradient(145deg, rgba(13, 202, 240, 0.2), rgba(10, 85, 115, 0.14));
    box-shadow: inset 0 0 0 1px rgba(10, 85, 115, 0.2);
}

.service-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    border-radius: 999px;
    padding: 0.42rem 0.82rem;
    margin-bottom: 0.85rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #0a5573;
    background: rgba(10, 85, 115, 0.12);
}

.service-card__title {
    margin: 0;
    color: #072435;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.25;
}

.service-card__summary {
    margin-bottom: 1rem;
    color: #375064;
    line-height: 1.75;
    font-size: 1rem;
}

.service-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.service-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: #1f384b;
    line-height: 1.55;
    font-size: 0.95rem;
}

.service-card__list li i {
    color: #0a8fb6;
    margin-top: 0.22rem;
}

.service-card__list li span {
    flex: 1;
}

.service-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.65, 0.2, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.service-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-contact {
    padding: 50px;
    background-image: linear-gradient(rgba(10, 85, 115, 0.67), rgba(10, 85, 115, 0.67), rgba(10, 85, 115, 0.67)), url('../images/pattern-bg.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.service-contact--enhanced {
    position: relative;
    overflow: hidden;
    margin: clamp(2.5rem, 6vw, 4rem) auto clamp(3rem, 7vw, 5rem);
    max-width: min(1200px, calc(100% - 2rem));
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 16px 38px rgba(4, 30, 44, 0.25);
    background-image: linear-gradient(130deg, rgba(5, 48, 68, 0.9), rgba(10, 85, 115, 0.84), rgba(13, 202, 240, 0.45)), url('../images/pattern-bg.png');
}

.service-contact--enhanced::before {
    content: '';
    position: absolute;
    width: 260px;
    height: 260px;
    right: -65px;
    bottom: -110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    animation: servicesOrbFloat 9s ease-in-out infinite;
}

.service-contact--enhanced .container {
    position: relative;
    z-index: 2;
}

.service-btn a {
    display: inline-block;
    background-color: #fff;
    font-size: 15px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    text-transform: capitalize;
    padding: 12px 25px;
    border-radius: 23px;
    letter-spacing: 0.25px;
    transition: all 0.3s;
}

.service-contact--enhanced .service-btn a {
    background: linear-gradient(135deg, #ffffff, #dff6ff);
    color: #07344b;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 24px rgba(3, 18, 27, 0.2);
}

.service-contact--enhanced .service-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(3, 18, 27, 0.24);
}

@keyframes servicesGradientShift {
    0% {
        transform: translateX(-2%) scale(1);
    }

    100% {
        transform: translateX(2%) scale(1.03);
    }
}

@keyframes servicesHeroGridMove {
    0% {
        background-position: 0 0, 0 0;
    }

    100% {
        background-position: 0 54px, 0 54px;
    }
}

@keyframes servicesOrbFloat {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -22px, 0) scale(1.08);
    }
}

@keyframes servicesFloatIcon {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -14px, 0);
    }
}

@keyframes servicesChipPulse {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }

    50% {
        transform: translateY(-2px);
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06);
    }
}

@media only screen and (max-width: 991px) {
    .services-hero {
        padding: 4.5rem 0 4rem;
    }

    .services-hero__float--three,
    .services-hero__float--four {
        display: none;
    }

    .service-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .service-card--reverse .service-card__media,
    .service-card--reverse .service-card__content {
        order: initial;
    }

    .service-card__media {
        min-height: 220px;
    }

    .service-contact--enhanced {
        max-width: calc(100% - 1.2rem);
        border-radius: 20px;
        padding: 40px 22px;
    }
}

@media only screen and (max-width: 575px) {
    .services-hero__floating {
        display: none;
    }

    .services-hero__eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }

    .services-hero__lead {
        line-height: 1.7;
    }

    .services-hero__chips span {
        font-size: 0.76rem;
        padding: 0.4rem 0.72rem;
    }

    .services-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .services-hero__btn {
        width: min(100%, 250px);
    }

    .service-card {
        padding: 1rem;
        border-radius: 18px;
    }

    .service-card__media {
        min-height: 190px;
    }

    .service-card__summary {
        font-size: 0.95rem;
    }

    .service-contact--enhanced {
        padding: 32px 16px;
    }

    .service-contact--enhanced .service-btn a {
        width: 100%;
        max-width: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .services-hero::before,
    .services-hero::after,
    .services-hero__float,
    .services-hero__chips span,
    .services-hero__orb,
    .service-card::after,
    .service-card__shine,
    .service-contact--enhanced::before {
        animation: none !important;
        transition: none !important;
    }

    .service-reveal {
        opacity: 1;
        transform: none;
        transition: none !important;
    }

    .service-card:hover,
    .service-contact--enhanced .service-btn a:hover {
        transform: none;
    }
}

/* footer section css */
.footer-section {
    text-transform: uppercase;
}

.footer-icon {
    font-size: 20px;
}

footer li {
    list-style: none;
}

.site-footer {
    position: relative;
    margin-top: 60px;
    padding: 56px 0 30px;
    color: #f2f7fb;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 48%),
        radial-gradient(circle at 85% 10%, rgba(13, 202, 240, 0.24) 0%, rgba(13, 202, 240, 0) 45%),
        linear-gradient(135deg, #08475f 0%, #0a5573 45%, #062f41 100%);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.55), transparent);
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.site-footer__top {
    padding-bottom: 30px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-footer-panel {
    height: 100%;
    padding: 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 40px rgba(3, 22, 31, 0.25);
    backdrop-filter: blur(4px);
}

.site-footer-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.95);
}

.newsletter-popup .newsletter-popup-container h3 {
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.newsletter-popup .newsletter-popup-container h3 i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.newsletter-popup .newsletter-popup-container p {
    margin: 0;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.newsletter-popup .newsletter-popup-container form {
    width: 100%;
    max-width: 540px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0 6px;
}

.newsletter-popup .newsletter-popup-container form input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    outline: none;
    color: #083247;
}

.newsletter-popup .newsletter-popup-container form input:focus {
    border-color: #7be6ff;
    box-shadow: 0 0 0 3px rgba(13, 202, 240, 0.25);
}

.newsletter-popup .newsletter-popup-container form input::placeholder {
    color: #7f95a0;
}

.newsletter-popup .newsletter-popup-container form button {
    width: 170px;
    height: 46px;
    appearance: none;
    border: 0;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: #ffffff;
    background: linear-gradient(135deg, #0dcaf0 0%, #09a8ca 100%);
    box-shadow: 0 10px 24px rgba(9, 130, 157, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.newsletter-popup .newsletter-popup-container form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(9, 130, 157, 0.4);
    filter: brightness(1.05);
}

.newsletter-popup .newsletter-popup-container .newsletter-msg {
    min-height: 22px;
    margin-top: 6px;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
}

.site-footer-contact-title {
    margin: 0 0 16px;
    font-size: clamp(22px, 2.1vw, 28px);
    font-weight: 600;
    color: #ffffff;
}

.site-footer-contact-list {
    margin: 0 0 20px;
    padding: 0;
}

.site-footer-contact-list li+li {
    margin-top: 10px;
}

.site-footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.94);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-contact-link i {
    width: 20px;
    color: #c9f6ff;
}

.site-footer-contact-link:hover {
    color: #7de8ff;
}

.site-footer-social-wrap {
    padding-top: 8px;
}

.site-footer-social-label {
    display: inline-block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.social-icon {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.social-icon li {
    list-style: none;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #093145;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(8, 42, 58, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.social-icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(8, 42, 58, 0.32);
    color: #ffffff;
    background: #0dcaf0;
}

.site-footer .copyright-text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
}

.footer-menu {
    margin: 0;
    padding: 0;
    gap: 10px 18px;
}

.footer-menu-item {
    list-style: none;
}

.footer-menu-link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    position: relative;
    transition: color 0.2s ease;
}

.footer-menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: #7ceaff;
    transition: transform 0.2s ease;
}

.footer-menu-link:hover {
    color: #7ceaff;
}

.footer-menu-link:hover::after {
    transform: scaleX(1);
}

.copyright-text-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.footer-back-to-top {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #082f40;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(8, 42, 58, 0.25);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer-back-to-top:hover {
    transform: translateY(-2px);
    background: #0dcaf0;
    color: #ffffff;
}

@media only screen and (max-width: 991px) {
    .site-footer {
        padding: 48px 0 28px;
    }

    .site-footer-panel {
        padding: 24px;
    }

    .copyright-text-wrap {
        justify-content: flex-start;
    }
}

@media only screen and (max-width: 767px) {
    .site-footer {
        padding: 42px 0 24px;
    }

    .site-footer-panel {
        padding: 22px 20px;
    }

    .newsletter-popup .newsletter-popup-container form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-popup .newsletter-popup-container form button {
        width: 100%;
    }

    .footer-menu {
        gap: 8px 14px;
    }

    .copyright-text-wrap {
        margin-top: 6px;
    }
}

/*Career page css*/
.boxN .card {
    color: var(--color3);
    background: var(--color1);
}

.career-hero .container {
    position: relative;
    z-index: 1;
}

.career-hero-content {
    max-width: 900px;
    padding: 150px 0 135px;
}

.career-kicker {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 8px 16px;
    letter-spacing: 0.9px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: rgba(255, 255, 255, 0.12);
}

.career-hero-content h1 {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.career-hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
}

.career-hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 30px;
    font-weight: 600;
    color: var(--color1);
    background: var(--color3);
    transition: all 0.3s ease;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.career-hero-cta:hover {
    color: var(--color3);
    background: var(--color4);
    transform: translateY(-2px);
}

.career-application-section {
    position: relative;
    z-index: 2;
    margin-top: -58px;
    background: linear-gradient(180deg, #f3f9fc 0%, #ffffff 58%);
}

.career-highlights-card,
.career-form-card {
    background: #fff;
    border: 1px solid rgba(10, 85, 115, 0.16);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(10, 85, 115, 0.12);
}

.career-highlights-card {
    padding: 34px 28px;
}

.career-highlights-card h2 {
    margin-bottom: 12px;
    color: var(--color1);
    font-size: 31px;
    font-weight: 700;
}

.career-highlights-card p {
    color: #26414b;
    line-height: 1.7;
}

.career-highlight-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.career-highlight-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #213b45;
    line-height: 1.55;
}

.career-highlight-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--color1);
}

.career-hiring-steps {
    margin-top: 26px;
    border-radius: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(10, 85, 115, 0.2);
    background: rgba(10, 85, 115, 0.06);
}

.career-hiring-steps h3 {
    margin-bottom: 8px;
    color: var(--color1);
    font-size: 20px;
    font-weight: 700;
}

.career-form-card {
    padding: 34px 30px;
    scroll-margin-top: 96px;
}

.career-form-card h2 {
    color: var(--color1);
    font-size: 34px;
    font-weight: 700;
}

.career-alert {
    border-radius: 10px;
    padding: 12px 14px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 18px;
}

.career-alert-error {
    color: #8e1d2c;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.career-alert-success {
    color: #0f5132;
    background: rgba(25, 135, 84, 0.16);
    border: 1px solid rgba(25, 135, 84, 0.3);
}

.career-form .form-label {
    color: #203945;
    font-weight: 600;
    margin-bottom: 7px;
}

.career-form .form-control,
.career-form .form-select {
    border-radius: 10px;
    border: 1px solid rgba(10, 85, 115, 0.28);
    padding: 11px 14px;
    min-height: 46px;
}

.career-form .form-control:focus,
.career-form .form-select:focus {
    border-color: var(--color1);
    box-shadow: 0 0 0 0.2rem rgba(10, 85, 115, 0.16);
}

.career-file-hint {
    display: block;
    margin-top: 7px;
    font-size: 14px;
    color: #57666d;
}

.career-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: none;
    padding: 12px 24px;
    font-weight: 700;
    background: var(--color1);
    color: var(--color3);
    transition: all 0.3s ease;
}

.career-btn:hover {
    background: var(--color4);
    color: var(--color3);
    transform: translateY(-1px);
}

.career-form .career-btn {
    width: 100%;
}

.career-btn:focus-visible {
    outline: 3px solid rgba(10, 85, 115, 0.35);
    outline-offset: 1px;
}

@media (max-width: 991px) {
    .career-hero-content {
        padding: 122px 0 106px;
    }

    .career-application-section {
        margin-top: -34px;
    }
}

@media (max-width: 575px) {
    .career-hero-content {
        padding: 98px 0 82px;
    }

    .career-kicker {
        font-size: 12px;
    }

    .career-hero-text {
        font-size: 16px;
    }

    .career-highlights-card,
    .career-form-card {
        padding: 24px 20px;
    }

    .career-highlights-card h2,
    .career-form-card h2 {
        font-size: 28px;
    }
}

/*thank you page css*/

.thannks {
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0.67)), url(../images/image-6.webp) no-repeat top/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 146px 0px;
}

.thannks a {
    border-radius: 10px;
}

.thannks h2 {
    font-size: 50px;
    color: white;
}

/*end here*/
/* Team section homepage css */
.team-container .box {
    position: relative;
    /* width: 30rem; */
    /* width:100%; */
    height: 20rem;
    /* margin: 4rem; */
}

.team-container .box:hover .imgBox {
    transform: translate(-3.5rem, -3.5rem);
}

.team-container .box:hover .content {
    transform: translate(3.5rem, 3.5rem);
}

.imgBox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: all 0.5s ease-in-out;
}

.imgBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    resize: both;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    /* background-color: #fff; */
    z-index: 1;
    align-items: flex-end;
    text-align: center;
    transition: 0.5s ease-in-out;
}

.content h2 {
    display: block;
    font-size: 2rem;
    /* color: #111; */
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: 1px;
}

.content span {
    /* color: #555; */
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 2px;
}

/* end here */

@media (max-width: 600px) {
    .team-container .box:hover .content {
        transform: translate(0, 3.5rem);
    }

    .team-container .box:hover .imgBox {
        transform: translate(0, -3.5rem);
    }

    .carousel-item {
        height: 50vh !important;
    }

    .carousel-item img {
        height: 100% !important;
        ;
    }

    .carousel-item .carousel-caption h5 {
        font-size: 25px !important;
    }

    .carousel-item .carousel-caption p {
        font-size: 16px !important;
    }

    .tech-heading {
        font-size: 28px !important;
    }
}

/*end here*/

/* Tech-stack page css */
.tech-page {
    background: linear-gradient(rgba(10, 85, 115, 0.7), rgba(10, 85, 115, 0.7), rgba(10, 85, 115, 0.7)), url('../images/slider-01.webp')no-repeat top/cover;
    background-attachment: fixed;
}

.tech-container .card1 .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color1);
}

.tech-container .card1 .icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: #fff;
}

.tech-container .card1 .slide {
    width: 100%;
    height: 200px;
    transition: 0.5s;
}

.tech-container .card1 .slide.slide1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: .7s;
    transform: translateY(100px)
}

.tech-container .card1:hover .slide.slide1 {
    transform: translateY(0px);
}

.tech-container .card1 .slide.slide2 {
    position: relative;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    transition: .8s;
    transform: translateY(-100px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.tech-container .card1:hover .slide.slide2 {
    transform: translateY(0);
}

.tech-container .card1 .slide.slide2::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 4px;
    bottom: 15px;
    left: 50%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color1);
}

.tech-container .card1 .slide.slide2 .para p {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #414141;
}

.tech-container .card1 .slide.slide2 .para h3 {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 24px;
    text-align: center;
    color: #414141;
}


/*....................*/
/*job Update post css*/
/*.....................*/
.job-page {
    background: linear-gradient(rgba(10, 85, 115, 0.7), rgba(10, 85, 115, 0.7), rgba(10, 85, 115, 0.7)), url('../images/banner-tech1.webp')no-repeat center/cover;
    background-attachment: fixed;
}

.job-here .card {
    background: var(--color1);
    color: var(--color3);
    height: 100%;
    box-shadow: 0px 3px 15px #000;
    border: 2px solid gray;
    border-radius: 20px;
}

.job-here .card:hover {
    background: var(--color2);
    color: var(--color4);
}

.blog-btn1 {
    background: var(--color3);
    color: var(--color4);
    border-radius: 10px;
    width: 100%;
    font-weight: bold;

}

.job-here .card:hover button {
    background: var(--color4);
    color: var(--color3);
}

@media only screen and (max-width:768px) {
    .nav-logo {
        margin: auto !important;
    }

    .box-down {
        margin-top: 0px;
    }


}

/*testimonials*/

#inner-page-wrapper {
    margin-bottom: 0;
}

#inner-page-wrapper>.container {
    width: 100%;
    padding: 0;
}

#content-full {
    margin-top: 0;
}

.ip-banner .entry-title {
    padding: 50px 0 0;
}

#content p#breadcrumbs {
    margin-bottom: 21px;
}

#ip-testimonials {
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.ip-testi-item-1,
.ip-testi-item-4,
.ip-testi-item-7 {
    position: relative;
    padding: 80px 15px 100px;
    overflow: hidden;
}

.ip-testi-item-1 .ip-testi-photo,
.ip-testi-item-4 .ip-testi-photo,
.ip-testi-item-7 .ip-testi-photo {
    margin-bottom: 75px;
}

.ip-testi-with-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url(../images/logo-monogram.webp) top center/auto no-repeat;
    width: 100%;
    opacity: .03;
    z-index: 2;
    pointer-events: none;
}

.ip-testi-with-bg {
    background: #EDEDED;
    background: -webkit-linear-gradient(to right, #EDEDED 0%, #ffffff 100%);
    background: -moz-linear-gradient(to right, #EDEDED 0%, #ffffff 100%);
    background: linear-gradient(to right, #EDEDED 0%, #ffffff 100%);
}

article#content {
    position: relative;
    padding-bottom: 167px;
}

article#content:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: url(../images/about/about-footer-bg.jpg) center/cover no-repeat;
    width: 100%;
}

.ip-prop-arrow-holder {
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    position: relative;
    width: 100%;
    z-index: 5;
    margin-top: 57px;
}

.ip-prop-arrow-holder i {
    font-style: normal;
    background-image: url('../images/arrow-icon-dark.png');
    background-size: 9px 8px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom: solid 2px #a3a3a3;
    padding: 20.5px 24.5px;
    margin: 0 7px;
    display: inline-block;
    vertical-align: middle;
}

.ip-prop-arrow-holder .ip-prop-arrow.next i {
    display: inline-block;
    transform: rotateY(180deg);
}

.ip-prop-arrow-holder .ip-prop-arrow {
    font-size: 12px;
    text-transform: uppercase;
    color: #8c8c8c;
    letter-spacing: 0.2em;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    pointer-events: auto;
}

.ip-prop-arrow-holder .ip-prop-arrow:hover,
.ip-prop-arrow-holder .ip-prop-arrow:hover i {
    color: #8b171e;
}

.ip-prop-arrow-holder .ip-prop-arrow:hover i {
    border-bottom: solid 2px #8b171e;
}

.ip-prop-count {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 50px;
}

.ip-prop-line {
    width: 1px;
    height: 64px;
    background: #b1b1b1;
    margin: 0 20px;
}

.ip-prop-count span {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: #7f7f7f;
}

.ip-prop-count span.prev-page {
    font-weight: 700;
    color: #000;
}

.ip-testi-text {
    max-width: 715px;
    margin: 0 auto;
}

.ip-testi-text p {
    position: relative;
    font-size: 15px;
    color: #454545;
    text-align: left;
    line-height: 1.7 !important;
    letter-spacing: .3px;
    font-family: var(--font-family-default);
    margin: 0 0 !important;
    padding-bottom: 25px;
}

.ip-testi-text p::before {
    content: attr(data-first-letter);
    font-family: var(--font-family-secondary);
    font-size: 75px;
    color: #000;
    pointer-events: none;
    float: left;
    line-height: 1;
    margin-right: 7px;
    position: relative;
    top: -8px;
}

.safari-true .ip-testi-text p::before,
.mobile.android .ip-testi-text p::before {
    top: 0;
}

.ip-testi-item-1 .ip-testi-photo {
    visibility: hidden;
}

.ip-testi-photo {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.ip-testi-photo canvas {
    display: block;
    width: 100%;
}

.ip-testi-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ip-testi-author {
    font-size: 22px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5.5px;
    padding: 50px 0 0;
}

.ip-testi-author span {
    display: block;
    font-size: 11px;
    color: #555555;
    letter-spacing: 1px;
    margin-top: 22px;
}

.ip-testi-item-3 .row::before,
.ip-testi-item-6 .row::before {
    display: none;
}

.ip-testi-item-3 .row,
.ip-testi-item-6 .row {
    display: flex;
    flex-direction: row-reverse;
}

.ip-testi-item-accent-left,
.ip-testi-item-accent-right {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 31px;
    height: calc(100% - 200px);
    background: url(../images/blog/ip-blog-accent.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

.ip-testi-item-accent-left {
    left: auto;
    right: 0;
}

.ip-testi-item-2 .row,
.ip-testi-item-3 .row,
.ip-testi-item-5 .row,
.ip-testi-item-6 .row {
    display: flex;
    align-items: center;
}

.ip-testi-item-2 .row::before,
.ip-testi-item-3 .row::before,
.ip-testi-item-5 .row::before,
.ip-testi-item-6 .row::before {
    display: none;
}

.ip-testi-item-2,
.ip-testi-item-3,
.ip-testi-item-5,
.ip-testi-item-6 {
    padding: 50px 0;
}

.ip-testi-item-2,
.ip-testi-item-5 {
    /*margin-top: 50px;*/
    background: #e2edf5
}

.ip-testi-item-3,
.ip-testi-item-6 {
    /*margin-bottom: 50px;*/
    background: #e2edf5;
}

.ip-prop-arrow-holder {
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    position: relative;
    width: 100%;
    z-index: 5;
    margin-top: 57px;
}

.ip-prop-arrow-holder i {
    font-style: normal;
    background-image: url('../images/arrow-icon-dark.png');
    background-size: 9px 8px;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-bottom: solid 2px #a3a3a3;
    padding: 20.5px 24.5px;
    margin: 0 7px;
    display: inline-block;
    vertical-align: middle;
}

.ip-prop-arrow-holder .ip-prop-arrow.next i {
    display: inline-block;
    transform: rotateY(180deg);
}

.ip-prop-arrow-holder .ip-prop-arrow {
    font-size: 12px;
    text-transform: uppercase;
    color: #8c8c8c;
    letter-spacing: 0.2em;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    pointer-events: auto;
}

.ip-prop-arrow-holder .ip-prop-arrow:hover,
.ip-prop-arrow-holder .ip-prop-arrow:hover i {
    color: #8b171e;
}

.ip-prop-arrow-holder .ip-prop-arrow:hover i {
    border-bottom: solid 2px #8b171e;
}

.ip-prop-count {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 50px;
}

.ip-prop-line {
    width: 1px;
    height: 64px;
    background: #b1b1b1;
    margin: 0 20px;
}

.ip-prop-count span {
    font-size: 13px;
    letter-spacing: 0.2em;
    color: #7f7f7f;
}

.ip-prop-count span.prev-page {
    font-weight: 700;
    color: #000;
}

.page-numbers {
    margin: 0 25px;
}

span.page-numbers.current {
    font-weight: 700;
    color: #000;
}

.ios-true .ip-testi-content .ip-testi-text p:before,
.mac.safari-true .ip-testi-content .ip-testi-text p:before {
    line-height: 1;
    margin-top: 2px;
}

.mac.firefox-true .ip-testi-content .ip-testi-text p:before {
    margin-top: 10px;
}

.ip-prop-arrow-holder a {
    pointer-events: auto;
}

@media only screen and (max-width: 1199px) {

    .ip-testi-text p {
        font-size: 14px;
        line-height: 1.6 !important;
        letter-spacing: .3px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .ip-testi-text p {
        font-size: 15px;
        line-height: 1.7 !important;
        padding-bottom: 20px;
    }

    article#content {
        padding-bottom: 100px;
    }

    .ip-testi-item-2 .row,
    .ip-testi-item-3 .row,
    .ip-testi-item-5 .row,
    .ip-testi-item-6 .row {
        flex-direction: column;
    }

    .ip-testi-photo {
        margin: 0 auto 30px !important;
    }

    .ip-testi-author {
        padding: 15px 0 0;
    }

    .ip-testi-item-1,
    .ip-testi-item-4,
    .ip-testi-item-7 {
        padding: 50px 15px;
    }

    .ip-testi-item-2,
    .ip-testi-item-5 {
        margin-top: 0;
    }

    .ip-testi-item-3,
    .ip-testi-item-6 {
        margin-bottom: 0;
    }

    .ip-testi-item-accent-left,
    .ip-testi-item-accent-right {
        display: none;
    }

    .page-numbers {
        margin: 0 5px;
    }
}

@media only screen and (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }

    .ip-about-section-4:before {
        max-width: 90%;
    }

    .ip-aboout-s4-text,
    .ip-aboout-s4-texthome {
        font-size: 40px;
        text-align: center;
    }

    .high-sec-bg {
        margin-top: 30px;
    }

    .social-icon {
        text-align: left !important;
    }
}

@media only screen and (max-width: 991px) {

    .ip-about-s3-row,
    .ip-about-s5-row {
        display: block;
    }

    .ip-about-s3-img,
    .ip-about-s5-img {
        max-width: 360px;
        display: block;
        margin: 0 auto 30px;
    }

    .ip-about-s3-img,
    .ip-about-s5-img,
    .ip-about-s3-text,
    .ip-about-s5-text {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }

    .ip-aboout-s4-box {
        margin-right: 0;
        padding: 80px 0;
    }

    .ip-aboout-s4-text,
    .ip-aboout-s4-texthome {
        margin: 0 auto;
        padding: 0 15px;
    }

    .first-letter-big {
        margin-left: 0 !important;
    }

    .nav-logo {
        margin: auto;
    }
}

@media only screen and (max-width: 1199px) {

    .ip-aboout-s4-text,
    .ip-aboout-s4-texthome {
        margin-left: 10%;
        font-size: 50px;
        max-width: 650px;
    }
}

@media only screen and (max-width: 480px) {
    .ip-prop-arrow-holder {
        padding: 0;
    }

    .ip-prop-arrow-holder i {
        padding: 13px;
    }

    .ip-prop-arrow-holder .ip-prop-arrow {
        letter-spacing: 0.1em;
    }

    .ip-prop-count {
        margin: 0 20px;
    }

    .ip-prop-line {
        margin: 0 10px;
    }

}

/* Portfolio and blogs pages */
.portfolio-page-shell,
.blogs-page-shell {
    background: #f6fafc;
}

.portfolio-page-hero,
.blogs-page-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 120px 0 90px;
    background: linear-gradient(135deg, rgba(10, 85, 115, 0.97), rgba(6, 41, 56, 0.98));
}

.portfolio-page-hero::before,
.blogs-page-hero::before {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    top: -160px;
    right: -120px;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.portfolio-page-hero::after,
.blogs-page-hero::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    left: -110px;
    bottom: -90px;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.portfolio-page-hero .container,
.blogs-page-hero .container {
    position: relative;
    z-index: 1;
}

.portfolio-page-eyebrow,
.blogs-page-eyebrow {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.95;
}

.portfolio-page-title,
.blogs-page-title {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.15;
}

.portfolio-page-lead,
.blogs-page-lead {
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.95;
    font-size: 1.03rem;
}

.portfolio-page-card,
.blogs-page-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(10, 85, 115, 0.12);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(9, 63, 86, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-page-card:hover,
.blogs-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 28px rgba(9, 63, 86, 0.16);
}

.portfolio-page-card__media,
.blogs-page-card__media {
    display: block;
    width: 100%;
}

.portfolio-page-card__media img,
.blogs-page-card__media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.portfolio-page-card__body,
.blogs-page-card__body {
    padding: 22px 20px;
}

.portfolio-page-card__industry {
    color: var(--color1);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.portfolio-page-card__title,
.blogs-page-card__title {
    font-size: 1.28rem;
    line-height: 1.35;
    color: #082f41;
    margin-bottom: 12px;
}

.portfolio-page-card__summary,
.blogs-page-card__excerpt {
    color: #4d5f69;
    font-size: 0.96rem;
    line-height: 1.72;
}

.portfolio-page-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    color: var(--color1);
    font-weight: 600;
    text-decoration: none;
}

.portfolio-page-card__link:hover {
    text-decoration: underline;
}

.blogs-page-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--color1);
    margin-bottom: 10px;
}

.blogs-page-empty {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 24px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(9, 63, 86, 0.09);
    border: 1px dashed rgba(10, 85, 115, 0.28);
}

.blogs-page-empty h2 {
    font-size: 1.9rem;
    margin-bottom: 8px;
    color: #08384f;
}

@media (max-width: 767px) {

    .portfolio-page-hero,
    .blogs-page-hero {
        padding: 95px 0 72px;
    }

    .portfolio-page-card__media img,
    .blogs-page-card__media img {
        height: 220px;
    }

    .blogs-page-card__meta {
        flex-direction: column;
        gap: 4px;
    }
}

.blogs-page-card__media-link {
    overflow: hidden;
}

.blogs-page-card__media-link img {
    transition: transform 0.28s ease;
}

.blogs-page-card__media-link:hover img {
    transform: scale(1.04);
}

.blogs-page-card__title-link {
    color: inherit;
    text-decoration: none;
}

.blogs-page-card__title-link:hover {
    color: var(--color1);
    text-decoration: underline;
}

.blogs-page-card__read-more {
    display: inline-flex;
    align-items: center;
    color: var(--color1);
    font-weight: 600;
    text-decoration: none;
}

.blogs-page-card__read-more:hover {
    text-decoration: underline;
}

.blog-details-page-shell {
    background: #f6fafc;
}

.blog-details-hero {
    background: linear-gradient(135deg, rgba(10, 85, 115, 0.98), rgba(6, 41, 56, 0.98));
    color: #ffffff;
    padding: 120px 0 88px;
}

.blog-details-hero__eyebrow {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.6px;
    opacity: 0.95;
}

.blog-details-hero__title {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.16;
    max-width: 920px;
}

.blog-details-hero__meta {
    opacity: 0.92;
}

.blog-details-card {
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(10, 85, 115, 0.12);
    box-shadow: 0 12px 28px rgba(10, 85, 115, 0.1);
}

.blog-details-card__media img {
    display: block;
    width: 100%;
    max-height: 540px;
    object-fit: cover;
}

.blog-details-card__body {
    padding: 28px 24px;
}

.blog-details-card__description p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.86;
    color: #2e4654;
    white-space: normal;
}

.blog-details-gallery__title {
    font-size: 1.45rem;
    color: #093549;
    margin-bottom: 14px;
}

.blog-details-gallery__item {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(10, 85, 115, 0.14);
    box-shadow: 0 8px 22px rgba(10, 85, 115, 0.08);
}

.blog-details-gallery__item img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.26s ease;
}

.blog-details-gallery__item:hover img {
    transform: scale(1.04);
}

.blog-details-not-found__card {
    max-width: 760px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 22px;
    padding: 56px 24px;
    border: 1px dashed rgba(10, 85, 115, 0.28);
    box-shadow: 0 10px 24px rgba(9, 63, 86, 0.08);
}

.blog-details-not-found__card h1 {
    font-size: 2.1rem;
    color: #093549;
}

.blog-details-not-found__card p {
    color: #4d5f69;
    font-size: 1rem;
}

@media (max-width: 767px) {
    .blog-details-hero {
        padding: 95px 0 70px;
    }

    .blog-details-card__body {
        padding: 22px 18px;
    }

    .blog-details-gallery__item img {
        height: 200px;
    }
}

.thankyou-page {
    background:
        radial-gradient(circle at 10% 10%, rgba(36, 197, 215, 0.14), transparent 38%),
        radial-gradient(circle at 85% 15%, rgba(0, 168, 255, 0.14), transparent 42%),
        linear-gradient(135deg, #f6fbff 0%, #ecf6ff 100%);
}

.thankyou-page__hero {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    padding: 92px 0 80px;
}

.thankyou-page__card {
    max-width: 760px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(9, 63, 86, 0.1);
    box-shadow: 0 16px 42px rgba(9, 63, 86, 0.14);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
}

.thankyou-page__card::before,
.thankyou-page__card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.thankyou-page__card::before {
    width: 160px;
    height: 160px;
    right: -52px;
    top: -52px;
    background: rgba(36, 197, 215, 0.18);
}

.thankyou-page__card::after {
    width: 130px;
    height: 130px;
    left: -44px;
    bottom: -44px;
    background: rgba(0, 121, 255, 0.16);
}

.thankyou-page__icon {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #ffffff;
    background: linear-gradient(135deg, #00bca8 0%, #0f7df7 100%);
    box-shadow: 0 14px 28px rgba(15, 125, 247, 0.28);
}

.thankyou-page__eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: #0f7df7;
}

.thankyou-page__title {
    font-size: 2.05rem;
    font-weight: 700;
    color: #073246;
}

.thankyou-page__desc {
    font-size: 1.05rem;
    color: #3f5d6d;
    line-height: 1.75;
}

.thankyou-page__redirect {
    font-size: 1.05rem;
    color: #10364a;
}

.thankyou-page__redirect strong {
    color: #0f7df7;
    font-size: 1.35rem;
    min-width: 24px;
    display: inline-block;
}

.thankyou-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #0f7df7 0%, #00a99d 100%);
    color: #ffffff;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 12px 24px rgba(15, 125, 247, 0.24);
}

.thankyou-page__btn:hover {
    opacity: 0.95;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(15, 125, 247, 0.3);
}

.thankyou-page__btn:focus-visible {
    outline: 3px solid rgba(15, 125, 247, 0.32);
    outline-offset: 2px;
}

@media (max-width: 991px) {
    .thankyou-page__hero {
        min-height: auto;
        padding: 80px 0 68px;
    }
}

@media (max-width: 767px) {
    .thankyou-page__card {
        padding: 40px 22px;
        border-radius: 20px;
    }

    .thankyou-page__icon {
        width: 78px;
        height: 78px;
        font-size: 2rem;
    }

    .thankyou-page__title {
        font-size: 1.62rem;
    }

    .thankyou-page__desc,
    .thankyou-page__redirect {
        font-size: 1rem;
    }
}