@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&display=swap');

@font-face {
    font-family: IRANSans;
    src: url('../fonts/IRANSans/IRANSansWeb_UltraLight.woff') format('woff');
    font-weight: 200;
}

@font-face {
    font-family: IRANSans;
    src: url('../fonts/IRANSans/IRANSansWeb_Light.woff') format('woff');
    font-weight: 300;
}

@font-face {
    font-family: IRANSans;
    src: url('../font/IRANSans/IRANSansWeb.woff') format('woff');
    font-weight: 400;
}

@font-face {
    font-family: IRANSans;
    src: url('../font/IRANSans/IRANSansWeb_Medium.woff') format('woff');
    font-weight: 500;
}

@font-face {
    font-family: IRANSans;
    src: url('../font/IRANSans/IRANSansWeb_Bold.woff') format('woff');
    font-weight: 600;
}

:root {
    --light-blue: #09aff4;
    --dark-blue: #060922;
    --mid-blue: #0c5adb;
    --new-blue: #02095C;
    --high-blue: #042143;
    --white: #fff;
    --main-green: #2ED573;
    --main-red: #F43F5E;
}

html {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Jost', sans-serif;
}

body.dark-theme {
    color: var(--white);
    background: var(--dark-blue);
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-thumb {
    background: var(--light-blue);
    border-radius: 20px;
}

body::-webkit-scrollbar-track {
    background: var(--high-blue);
}

/* Tag Styles */
a {
    text-decoration: none;
}

ul {
    list-style-type: none;
    margin-bottom: 0;
    padding: 0;
}

/* ------ */

.post-button {
    display: block;
    width: 100%;
    background: var(--mid-blue);
    color: var(--white);
    text-align: center;
    margin: 10px 0;
    padding: 5px 12px;
    border-radius: 6px;
    border: none;
    outline: none;
}

.dark-canvas {
    background: rgba(6, 9, 34, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(12px);
}

.canvas-menu:not(.child) {
    padding: 0 10px;
}

.canvas-item {
    margin: 10px 0;
}

.canvas-item a {
    position: relative;
    display: block;
    padding: 6px 8px;
    border-radius: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(9, 174, 244, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
}

.canvas-item.parent>a:before {
    content: '+';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    right: 10px;
    transform: translateY(calc(-50% - 2px));
    width: 5px;
    height: 5px;
}

.canvas-menu.child {
    display: none;
    overflow: hidden;
    padding-left: 20px;
}


.canvas-menu.child .canvas-item {
    margin: 0;
    margin-top: 10px;
}

.canvas-float-btn {
    display: block;
    position: fixed;
    top: calc(100% - 70px);
    left: 30px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    padding: 0;
    background: var(--mid-blue);
    color: var(--white);
    opacity: 1;
    z-index: 14;
    transition: all 0.3s ease;
    animation: light 1.1s linear infinite;
}

.canvas-float-btn.move {
    top: calc(100% - 70px);
    left: 15px;
}

@keyframes light {
    0% {
        box-shadow: 0 0 0 0 rgba(9, 174, 244, 0.3);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(9, 174, 244, 0.3);
    }

    100% {
        box-shadow: 0 0 0 8px rgba(9, 174, 244, 0);
    }
}

.dark-modal {
    background: rgba(6, 9, 34, 0.5);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(12px);
}

.dark-modal .modal-content {
    background: rgba(4, 33, 67, 0.5);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(9, 174, 244, 0.3);
}

.dark-modal .modal-header {
    border: none;
}

.bi.vertical-center::before {
    vertical-align: middle;
}

.button {
    padding: 5px 10px;
    text-align: center;
    border-radius: 5px;
}

.midblue-button {
    background: var(--mid-blue);
    color: var(--white);
}

.lightblue-button {
    background: var(--light-blue);
    color: var(--white);
}

.block-button {
    display: block;
    width: 100%;
}

.main-section {
    padding: 50px 0;
}

.mini-title {
    display: inline-block;
    color: var(--light-blue);
    border: 2px solid var(--light-blue);
    padding: 0px 6px;
    margin-bottom: 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.main-subtitle {
    opacity: 0.5;
    font-size: 1rem;
    font-weight: 400;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 35px;
}

.highlight {
    color: var(--light-blue);
}

.custom-button {
    background: transparent;
    color: var(--light-blue);
    border: 2px solid var(--light-blue);
    border-radius: 5px 15px 5px 15px;
    padding: 10px 40px;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s background ease, 0.3s color ease;
}

.custom-button:hover {
    background: var(--light-blue);
    color: var(--white);
}

.custom-button.reverse {
    background: var(--light-blue);
    color: var(--white);
}

.custom-button.reverse:hover {
    background: transparent;
    color: var(--light-blue);
}

.custom-button-sm {
    padding: 5px 20px;
    font-size: 1rem;
}

.anim {
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s ease, visibility 1s ease;
}

.anim.show {
    visibility: visible;
    opacity: 1;
}

.wow {
    visibility: hidden;
}

/* ------ */

.load-screen {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--light-blue);
    z-index: 15;
}

.load-progress {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 100%;
    font-size: 40px;
    font-weight: 700;
    overflow: hidden;
    background: var(--dark-blue);
    transition: width 2s ease-out;
}

.load-progress.loading {
    width: 100%;
}

.load-progress::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    transform: translateY(calc(50% + 80px));
    left: 0;
    background: var(--white);
}

.navbar {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 10;
    transition: all 0.3s ease;
}

.navbar.active {
    background: var(--high-blue);
    padding: 5px 0;
    box-shadow: 0 4px 20px 0 rgba(12, 91, 219, 0.2);
}

.navbar .logo {
    font-weight: 700;
    font-size: 34px;
    letter-spacing: 1px;
    transition: font-size 0.3s ease;
}

.navbar .logo img {
    width: 100px;
    transition: all 0.3s ease;
}

.navbar.active .logo img {
    width: 150px;
}

.navbar-items {
    flex: 1;
    display: none;
    justify-content: space-between;
    width: auto;
    margin: 0 auto;
}

.navbar-items .navbar-item a {
    position: relative;
    color: var(--light-blue);
    padding: 5px;
}

.navbar-items .navbar-item a:before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    transform-origin: center;
    background: var(--light-blue);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.navbar-items .navbar-item a:hover:before {
    transform: scale(0.01);
}

.navbar-items .navbar-item a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    top: calc(100% + 1px);
    left: 0;
    transform: translateY(-50%);
    background: var(--light-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-items .navbar-item a:hover:after {
    width: 100%;
}

.navbar .search-action {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: 10px;
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    margin-left: auto;
}

.navbar .account-actions {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 5px;
    background: var(--mid-blue);
    color: var(--white);
    height: 40px;
    border-radius: 10px;
    background: var(--high-blue);
    transition: all 0.3s ease;
    overflow: hidden;
}

.navbar .account-actions:before {
    content: '';
    position: absolute;
    width: 300%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background: linear-gradient(125deg, var(--high-blue) 49.5%, var(--mid-blue) 50%);
    transition: all 0.4s ease;
}

.navbar.active .account-actions:before {
    background: linear-gradient(125deg, var(--dark-blue) 49.5%, var(--mid-blue) 50%);
}

.navbar .account-actions:has(.account-signin:hover)::before {
    left: 125%;
}

.navbar .account-actions:has(.account-signup:hover)::before {
    left: -25%;
}

.navbar .account-actions .account-signin,
.navbar .account-actions .account-signup {
    display: flex;
    align-items: center;
    padding: 5px;
    color: var(--white);
    z-index: 2;
}

.switch-lang {
    position: relative;
    margin-left: 20px;
    border: 1px solid rgba(9, 174, 244, 0.1);
    border-radius: 50px;
    background: var(--high-blue);
    box-shadow: inset -1px 2px 10px 0px #000;
    padding: 0;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
}

.switch-langs {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3px;
    z-index: 1;
}

.switch-lang-item {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.switch-lang-ball {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background: var(--mid-blue);
    box-shadow: inset 0px 0px 4px 0 #000;
    z-index: 0;
    transition: left 0.3s ease;
}

.switch-lang.changed .switch-lang-ball {
    left: calc(100% - 30px);
}

.header-slot {
    height: 100vh;
    background: transparent;
}

.header {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.header-overlay {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: center / cover no-repeat url('../img/pattern-bg-1.jpg');
    opacity: 0.2;
    z-index: 1;
}

.header .particles-layer {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}

.header-content {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.header-text {
    display: flex;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.header-image {
    display: flex;
    height: 100%;
    justify-content: center;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    font-size: 26px;
    color: var(--white);
}

.animated-button-sm {
    width: 60px;
    height: 60px;
}

.animated-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.animated-button .spinner {
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    width: 100%;
    height: 100%;
    /* transform: translate(-50%, -50%); */
    border-radius: 50%;
    border: 8px solid var(--white);
    border-left-color: transparent;
    border-right-color: transparent;
    animation: spin 10s infinite alternate linear, glow 5s infinite alternate linear;
}

.animated-button-sm .spinner {
    border-width: 5px;
}

.animated-button .spinner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 12px solid var(--light-blue);
    border-top-color: transparent;
    border-bottom-color: transparent;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    animation: spin2 5s infinite alternate linear, glow 3s infinite alternate linear;
}

.animated-button-sm .spinner::before {
    border-width: 8px;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

/* @keyframes glow {
    0% {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    50% {
        -webkit-box-shadow: 10px -10px 30px #0c5adb, -10px 10px 30px #0c5adb, inset 10px -10px 30px #0c5adb, inset -10px 10px 30px #0c5adb;
        box-shadow: 10px -10px 30px #0c5adb, -10px 10px 30px #0c5adb, inset 10px -10px 30px #0c5adb, inset -10px 10px 30px #0c5adb;
    }

    100% {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
} */

@keyframes spin2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: polygon(50% 100%, 100% 0%, 100% 100%, 0 100%);
    background: rgba(0, 5, 109, 0.7);
    z-index: 2;
}

.general-content {
    position: relative;
    display: block;
    width: 100%;
    z-index: 6;
    background: var(--dark-blue);
}

.flipbox {
    perspective: 1000px;
    position: relative;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    z-index: 1;
}

.flipbox .flipbox-font,
.flipbox .flipbox-back {
    min-height: 250px;
    height: auto;
    box-shadow: 0px 1px 51.3px 5.7px rgba(137, 143, 156, .15);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: rotateX(0);
    -webkit-transform: rotateX(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: transform .7s ease, -webkit-transform .7s ease;
    position: relative;
}

.flipbox .flipbox-inner {
    text-align: center;
    padding: 0 25px;
    border-radius: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    perspective: inherit;
    -webkit-perspective: inherit;
    outline: transparent solid 1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    z-index: 2;
}

.flipbox-font {
    border: 1px solid #0c5adb;
    border-radius: 8px;
}

.flipbox .flipbox-font {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
    border: 0;
}

.flipbox .flipbox-font {
    background: #181b2d;
}

.flipbox .flipbox-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 2px;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.flipbox .flipbox-back {
    background: #0c5adb;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
}

.flipbox:hover .flipbox-font {
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}

.flipbox:hover .flipbox-back {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.flipbox-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 30px;
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 41% 59% 26% 74% / 56% 60% 40% 44%;
    margin: 0 auto 40px;
}

.flipbox-title h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.flipbox-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    gap: 40px;
}


/* about us section */
.aboutus-item {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

.aboutus-item-icon {
    min-width: 55px;
    width: 55px;
    height: 55px;
    border-radius: 39% 61% 39% 61% / 69% 40% 60% 31%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--high-blue);
    color: var(--light-blue);
    font-size: 26px;
    transition: background 0.5s ease,
        transform 0.5s ease,
        color 0.5s ease;
}

.aboutus-item-icon:hover {
    background: var(--mid-blue);
    color: var(--white);
    transform: translateY(-10px)
}

.aboutus-item-text h6 {
    font-size: 22px;
}

.aboutus-item-text p {
    opacity: 0.5;
}

/* animated banner of about us*/

.single_banner_thumb_inner img {
    width: 100%;
}

.banner_shape {
    position: relative;
}

.banner_shape_inner1 {
    position: absolute;
    top: 156px;
    left: 24%;
}

.section-inner-content p {
    font-size: 18px;
    margin: 0;
}

.banner_shape_inner2 {
    position: absolute;
    top: 220px;
    left: 56%;
}

.banner_shape_inner3 {
    position: absolute;
    top: 162px;
    left: 92%;
}

.banner_shape_inner4 {
    position: absolute;
    top: 371px;
    left: 190px;
}

.banner_shape_inner5 {
    position: absolute;
    right: -140px;
    top: 342px;
}

.banner_shape_inner6 {
    position: absolute;
    right: 55px;
    bottom: -77px;
}

.bounce-animate {
    animation-name: floating;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: floating;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: floating;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: floating;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bounce-animate2 {
    animation-name: floating2;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: floating2;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: floating2;
    -ms-animation-duration: 3s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: floating2;
    -o-animation-duration: 3s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bounce-animate3 {
    animation-name: floating3;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: floating3;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: floating3;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: floating3;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.bounce-animate5 {
    animation-name: floating5;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: floating5;
    -moz-animation-duration: 6s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: floating5;
    -ms-animation-duration: 6s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: floating5;
    -o-animation-duration: 6s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

.rotating {
    -webkit-animation-name: rotating;
    animation-name: rotating;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes floating {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes floating2 {
    0% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }
}

@keyframes floating3 {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    50% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }

    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes floating5 {
    0% {
        -webkit-transform: translateY(-75px);
        transform: translateY(-75px);
    }

    50% {
        -webkit-transform: translateY(-35px);
        transform: translateY(-35px);
    }

    100% {
        -webkit-transform: translateY(-75px);
        transform: translateY(-75px);
    }
}

@keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.service2-item {
    position: relative;
    background: transparent;
    border: 1px solid rgba(9, 174, 244, 0.35);
    border-radius: 10px;
    padding: 20px 30px;
    overflow: hidden;
}

.service2-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: auto;
    right: 0;
    transform: scaleX(0);
    transform-origin: right;
    border-radius: 10px;
    background: var(--light-blue);
    transition: transform 0.5s ease;
    z-index: -1;
}

.service2-item:hover::before {
    left: 0;
    right: auto;
    transform: scaleX(1);
    transform-origin: left;
}

.service2-item>i {
    display: block;
    color: var(--light-blue);
    font-size: 50px;
    margin-bottom: 10px !important;
    transition: color 0.5s ease;
}

.service2-item:hover>i {
    color: var(--white) !important;
}

.service2-item>h4 {
    font-weight: 600;
    margin-bottom: 20px !important;
}

.service2-item>p {
    opacity: 0.75;
    font-size: 18px;
    margin-bottom: 20px;
}

.service2-item>a {
    color: var(--light-blue) !important;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    transition: color 0.5s ease;
}

.service2-item:hover>a {
    color: var(--white) !important;
}

.service2-item>a>i {
    font-size: 24px;
    margin-left: 5px;
    transition: margin 0.5s ease;
}

.service2-item>a:hover>i {
    margin-left: 10px;
}

.aboutus2-item {
    display: flex;
    align-items: start;
    gap: 25px;
    margin-bottom: 50px;
}

.aboutus2-item span {
    display: inline;
    margin-top: -18px;
    font-size: 52px;
    font-weight: 700;
    color: var(--light-blue);
}

.aboutus2-item h5 {
    font-size: 1.5rem;
}

.aboutus2-item p {
    opacity: 0.75;
}

#search-modal .modal-body form {
    display: flex;
    justify-content: center;
    align-items: center;
}

#search-modal .search-modal-input-wrapper {
    position: relative;
    width: 90%;
    max-width: 700px;
}

#search-modal .search-modal-input {
    outline: none;
    border: none;
    width: 100%;
    padding: 10px 15px;
    border-bottom: 2px solid var(--light-blue);
    background: transparent;
    /* background: var(--dark-blue); */
    font-size: 24px;
}

#search-modal .search-modal-input-wrapper>i {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: var(--light-blue);
    font-size: 24px;
}

.carousel-section {
    padding-bottom: 60px;
}

.carousel-section .owl-item {
    border: 2px solid rgba(9, 174, 244, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.carousel-section .carousel-section-item {
    position: relative;
    display: block;
}

img.post-image,
.post-image img,
.carousel-section-item img,
.other-posts-item-head img {
    filter: grayscale(100%) sepia(100%) hue-rotate(178deg) saturate(320%) brightness(0.75) contrast(1.05);
}

.carousel-section .carousel-section-item img {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.carousel-section .carousel-section-item-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 174, 244, 0);
    transition: all 0.5s ease;
}

.carousel-section .carousel-section-item:hover .carousel-section-item-overlay {
    background: rgba(9, 174, 244, 0.7);
}

.carousel-section .carousel-section-item-content {
    background: var(--mid-blue);
    padding: 25px 30px;
    text-align: center;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(200px);
    transition: all 0.5s ease;
}

.carousel-section .carousel-section-item:hover .carousel-section-item-content {
    opacity: 1;
    transform: translateY(0);
}

.carousel-section .carousel-section-item-content h4 {
    color: var(--white);
}

.carousel-section .carousel-section-item-content p {
    color: var(--white);
    margin: 0;
    opacity: 0.6;
}

.carousel-section .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.carousel-section .owl-dot {
    width: 50px;
    height: 8px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
}

.carousel-section .owl-dot.active {
    width: 65px;
    background: var(--light-blue) !important;
}

/* footer styles */
.footer {
    position: relative;
    width: 100%;
    background-color: var(--dark-blue) !important;
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: center / cover no-repeat url('../img/footer-bg-1.jpg');
    opacity: .25;
    z-index: 2;
}

.footer-content {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 3;
    padding: 60px 0 !important;
}

.footer-section>h2 {
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.footer-subscribe .footer-logo {
    margin-bottom: 25px;
    width: 100px;
}

.footer-subscribe>p {
    font-size: 15px;
    text-align: justify;
    font-weight: 500;
}

.footer-subscribe-form label.subscribe {
    display: inline-block;
    padding: 0;
    margin-bottom: 0;
    text-transform: capitalize;
    color: var(--clr-white);
}

.footer-subscribe-form sub {
    opacity: 0.5;
}

.footer-subscribe-form-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 50px;
}

.footer-subscribe-form-input-wrapper>input {
    font-size: 1.1rem;
    width: 100%;
    padding: 0.75rem;
    outline: none !important;
    border: none;
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
    margin-bottom: 0;
    text-align: left;
    border-radius: 0.25rem 0 0 0.25rem;
}

.footer-subscribe-form-input-wrapper>input::placeholder {
    color: var(--white);
}

.footer-subscribe-form-input-wrapper>a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    width: 110px;
    text-align: center;
    background: var(--light-blue);
    height: 100%;
    border-radius: 0 0.25rem 0.25rem 0;
    color: var(--white);
    font-weight: 500;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-item {
    display: block;
    position: relative;
    padding-bottom: 1rem;
}

.footer-menu-item>i {
    font-size: 0.75rem;
    width: 1.5rem;
    text-align: right;
    margin-right: 0.5rem;
    vertical-align: middle;
    color: var(--light-blue);
}

.footer-menu-item>a {
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: capitalize;
    text-decoration: none;
    color: var(--clr-semi-dark);
    display: inline-block;
    transition: all 0.25s ease-in-out 0s;
}

.footer-menu-item>a:hover {
    color: var(--light-blue);
    transform: translateX(3px);
}

.footer-socials {
    display: flex;
    justify-content: start;
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}

.footer-socials>li>a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--light-blue);
    min-width: 32px;
    min-height: 32px;
    border-radius: 5px;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-socials>li>a:hover {
    transform: translateY(-5px);
    background: var(--white);
    color: var(--light-blue);
}

.footer-copyright {
    position: relative;
    display: flex;
    z-index: 3;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright a {
    color: var(--white);
}