@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@700&display=swap");

:root {
    --heading-color: #001f3f;
    --theme: #06a3c9;
    --title-color: #51575d;
    --white: #fff;
    --linear-bg: linear-gradient(
        rgba(248, 246, 246, 0.85),
        rgba(248, 246, 246, 0.85)
    );
    --linear-black-bg: linear-gradient(
        rgba(21, 21, 21, 0.95),
        rgba(21, 21, 21, 0.95)
    );
    --bg: #f8f6f6;
    --image-bg: #dadada;
    --text-color: #54595f;
    --sub-bg: #ebf1f3;
    --card-bg: #dff2f7;
    --black: #000000;
    --theme-bg: #dd3a3a3b;
    --header-height: 60px;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
    font-size: 14px;
    /* letter-spacing: 0.6px; */
    height: 100%;
    background-color: var(--white);
}

p {
    color: var(--text-color);
    text-align: justify;
    hyphens: auto;
    font-size: 14px;
    word-spacing: 0;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lexend", sans-serif;
    font-style: normal;
    line-height: 1.5;
    color: var(--heading-color);
}

h1 {
    font-size: clamp(28px, 4.5vw, 44px);
    font-weight: 700;
}

h2 {
    font-size: clamp(22px, 3.8vw, 32px);
    font-weight: 700;
}

h3 {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
}

h4 {
    font-size: clamp(18px, 2.6vw, 24px);
    font-weight: 500;
}

h5 {
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 500;
}

h6 {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 500;
}

section {
    overflow-x: hidden;
}

/* Add padding to body when header becomes sticky to prevent content jump */
body.header-sticky-active {
    padding-top: var(--header-height);
}

/* Scroll margin for sections - fallback for browsers that support it */
section {
    scroll-margin-top: calc(var(--header-height) + 10px);
    position: relative;
    z-index: 2;
}

@media (max-width: 576px) {
    :root {
        --header-height: 60px;
        /* Fine-tune for very small screens */
    }
}

.section-padding {
    padding: clamp(30px, 5vw, 50px) 0;
}

/* .container { */
/* max-width: clamp(300px, 85vw, 1490px); */
/* margin: 0 auto; */
/* } */

/* .negative-margin { */
/* margin-top: -42px; */
/* } */

.title {
    margin-bottom: 15px;
    font-weight: 700;
}

.box-btn {
    background-color: var(--theme);
    color: var(--white);
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.5s;
}

.box-btn span {
    white-space: nowrap;
}

.box-btn:hover {
    background-color: var(--white);
    color: var(--theme);
    border-color: var(--theme);
}

.box-btn p {
    background-color: white;
    width: 25px;
    height: 25px;
    margin: 0 !important;
    border-radius: 50px;
    border: 1px solid var(--theme);
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-btn p iconify-icon {
    transition: all 0.5s;
    color: var(--theme) !important;
}

.box-btn:hover p iconify-icon {
    color: var(--theme) !important;
}

.section-label {
    color: var(--text-color);
    font-weight: 500;
    padding: 5px 10px;
    background-color: var(--sub-bg);
    display: inline-block;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-bg {
    width: 100%;
    height: 100%;
    position: relative;
}

.section-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../image/bg2.png") center / cover no-repeat;
    opacity: 0.15;
    /* adjust opacity here */
    z-index: -1;
}

/* Header Part */
header {
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    border-bottom: 1px solid transparent;
}

/* Sticky Header Styles */
.main-header.sticky {
    position: fixed;
    top: -1px;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Add padding to body when header becomes sticky to prevent content jump */
body.header-sticky-active {
    padding-top: 60px;
    /* Adjust based on your header height */
}

.main-header .navbar-expand-lg {
    position: static;
}

.main-header .navbar-nav {
    gap: 15px;
}

.main-header .nav-link {
    color: var(--heading-color);
    font-weight: 600;
    padding: 10px !important;
    transition: all 0.3s;
    font-size: 14px;
}

.main-header .nav-item:hover .nav-link,
.main-header .nav-item.active .nav-link {
    color: var(--theme);
    text-decoration: underline;
    text-underline-offset: 5px;
}

.navbar-toggler {
    border: 0;
    padding: 0;
}

.navbar-toggler-icon {
    width: 1em;
    height: 1em;
}

.navbar-toggler:focus {
    box-shadow: unset;
}

.navbar-brand img {
    height: 40px;
}

@media (max-width: 1199px) {
    .main-header .navbar-nav {
        gap: 0;
    }

    .navbar-brand img {
        height: 35px;
    }
}

.title-theme-blue {
    color: var(--theme-blue);
}

.header .box-btn {
    padding: 5px 20px;
}

.main-header .offcanvas.offcanvas-end .offcanvas-body {
    margin: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
    padding: 10px;
    border-radius: 5px;
    background-color: white;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .offcanvas.offcanvas-end {
        width: 100%;
        backdrop-filter: blur(50px);
        background-color: #ffffff78;
    }

    .offcanvas.offcanvas-end .offcanvas-body {
        overflow-x: hidden;
    }

    .navbar-nav .nav-link,
    .login-register-btn {
        padding: 0.5rem 0 !important;
    }
}

/* Mega menu container */
.mega-dropdown {
    position: static;
}

.mega-menu {
    min-width: 100vw;
    border: none;
    margin-top: 0;
    left: 0;
    right: 0;
    background: transparent;
}

.mega-menu-row {
    background: var(--white);
    box-shadow: 0 5px 15px 0 rgba(2, 59, 109, 0.1);
    margin-top: 15px;
    padding: 30px;
    border-radius: 4px;
}

/* Mega card */
.mega-card {
    padding: 20px;
    border-radius: 5px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 95px;
}

.mega-menu-row .col-lg-4:nth-child(odd) .mega-card {
    background: #f3fdff;
}

.mega-menu-row .col-lg-4:nth-child(even) .mega-card {
    background: #fff9f9;
}

.mega-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 30px;
    margin-bottom: 10px;
}

.mega-card p {
    margin-bottom: 10px;
    text-align: center;
}

.bg-card-1 {
    background: #f3fdff;
}

/* Desktop hover behavior */
@media (min-width: 992px) {
    .mega-dropdown:hover .mega-menu {
        display: block;
    }
}

/* Mobile behavior (click only) */
@media (max-width: 991px) {
    .mega-menu {
        position: static;
        min-width: 100%;
    }

    .mega-menu-row {
        padding: 30px 10px;
    }
}

/* Header Part */

/* Hero Part */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 0;
    margin: 0 40px;
    background: url("../image/hero-bg.png") center / cover no-repeat;
    border-radius: 50px;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    /* adjust opacity */
    z-index: 1;
}

/* Keep content above overlay */
.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-logo-container {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease-out;
}

.hero-logos {
    display: flex;
    gap: 0px;
    justify-content: center;
    align-items: center;
    perspective: 900px;
    /* 3D depth */
}

.logo-badge {
    background: #fff;
    padding: 0 10px;
    border-radius: 6.43px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    /* animation: float 3s ease-in-out infinite; */
    transform-style: preserve-3d;
    width: 68px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-badge img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.badge-1 {
    transform: rotate(-16.87deg);
    animation-delay: 0s;
}

.badge-2 {
    transform: rotate(-7.22deg);
    animation-delay: 0.3s;
}

.badge-3 {
    transform: rotate(17.3deg);
    animation-delay: 0.6s;
    z-index: -1;
}

.badge-1 {
    --r: -16deg;
    animation-delay: 0s;
}

.badge-2 {
    --r: -16deg;
    animation-delay: 0.3s;
    background-color: #0097b2;
}

.badge-3 {
    --r: 16deg;
    animation-delay: 0.6s;
}

.logo-badge:hover {
    transform: translateY(-12px) scale(1.05);
    transition: 0.3s ease;
}

/* @keyframes float { */
/*  */
/* 0%, */
/* 100% { */
/* transform: translateY(0px); */
/* } */
/*  */
/* 50% { */
/* transform: translateY(-10px); */
/* } */
/* } */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-size: clamp(28px, 5vw, 50px);
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--theme);
}

.words {
    display: inline-block;
    overflow: hidden;
    height: 1.2em;
    vertical-align: bottom;
    position: relative;
}

.words span {
    display: block;
    height: 100%;
    color: var(--theme);
    animation: spin_words 14s infinite;
    text-align: left;
}

@keyframes spin_words {
    0%,
    20% {
        transform: translateY(0%);
    }

    22%,
    42% {
        transform: translateY(-100%);
    }

    44%,
    64% {
        transform: translateY(-200%);
    }

    66%,
    86% {
        transform: translateY(-300%);
    }

    88%,
    100% {
        transform: translateY(-400%);
    }

    /*  */
    /* 70%, */
    /* 82% { */
    /* transform: translateY(-500%); */
    /* } */
    /*  */
    /* 84%, */
    /* 96% { */
    /* transform: translateY(-600%); */
    /* } */
    /*  */
    /* 100% { */
    /* transform: translateY(-600%); */
    /* } */
}

.hero-section p {
    max-width: 984px;
    text-align: center;
    margin: 0 auto 25px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-section .box-btn {
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-section .box-btn:hover {
    transform: translateY(-3px);
}

.dashboard-container {
    position: relative;
    max-width: 1100px;
    margin: 25px auto 0;
    animation: scaleIn 1.2s ease-out 0.9s both;
}

.dashboard-main {
    position: relative;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0px 12px 4px 0px #00000040 inset;
    background: white;
    /* transform: perspective(1000px) rotateY(-2deg); */
    transition: transform 0.5s ease;
    border: 10px solid var(--title-color);
    max-height: 527px;
}

/* .dashboard-main:hover { */
/* transform: perspective(1000px) rotateY(0deg); */
/* } */

.dashboard-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.floating-card {
    position: absolute;
    border-radius: 10px;
    animation: floatCard 4s ease-in-out infinite;
    z-index: 1;
}

.floating-card img {
    /* max-height: 393px; */
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.floating-card.card-1 {
    max-width: 180px;
    top: 50px;
    left: -12%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    max-width: 268px;
    top: 40px;
    right: -100px;
    animation-delay: 1s;
}

.floating-card.card-3 {
    max-width: 200px;
    bottom: -10%;
    right: -10%;
    animation-delay: 2s;
}

.floating-card.card-4 {
    max-width: 253px;
    bottom: 0%;
    left: -10%;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-15px) rotate(2deg);
    }

    75% {
        transform: translateY(-5px) rotate(-2deg);
    }
}

@media (max-width: 1500px) {
    .dashboard-container {
        max-width: 950px;
    }
}

@media (max-width: 1300px) {
    .dashboard-container {
        max-width: 950px;
    }

    .floating-card.card-1 {
        display: none;
    }

    .floating-card.card-2 {
        max-width: 200px;
        top: 40px;
        right: 0px;
    }

    .floating-card.card-3 {
        display: none;
    }

    .floating-card.card-4 {
        max-width: 200px;
        bottom: 0%;
        left: 0%;
    }
}

@media (max-width: 991px) {
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0;
        margin: 0 20px;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 425px) {
    .hero-section .box-btn {
        font-size: 10px;
    }

    .hero-section .box-btn p {
        width: 20px;
        height: 20px;
    }
}

/* Hero Part */

/* About Part */
.about-top {
    margin-bottom: 20px;
}

.about-top p {
    color: var(--text-color);
}

.about-card {
    border-radius: 3px;
    padding: 35px 20px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-card-wrapper .col-md-6:nth-child(odd) .about-card {
    background-color: var(--card-bg);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--theme);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    color: var(--white);
    border: 1px solid transparent;
}

.about-card:hover .about-icon-wrapper {
    background-color: transparent;
    border-color: var(--theme);
    color: var(--theme);
}

.about-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.about-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* About Part */

/* Counter Part */
.counter-section {
    background:
        var(--linear-bg),
        url("../image/bg1.jpg") center / cover no-repeat;
    height: auto;
    overflow: hidden;
    padding-top: 100px;
    position: relative;
}

.counter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    /* adjust opacity */
    /* z-index: 1; */
}

.arc-wrapper {
    position: relative;
    /* min-height: 100vh; */
    min-height: 700px;
    height: 100%;
}

.arc-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.arc-container.arc1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: 2; */
}

.arc-container.arc2 {
    position: absolute;
    top: 10%;
    left: 40px;
    right: 40px;
    width: 80%;
    height: 100%;
    /* z-index: 1; */
}

.arc-container.arc3 {
    position: absolute;
    top: 20%;
    left: 40px;
    right: 40px;
    width: 60%;
    height: 100%;
    /* z-index: 1; */
}

.arc-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
}

.orbit-module {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    animation: slide-orbit 4s ease-in-out infinite;
    z-index: 1;
}

.orbit-module:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    z-index: 100;
    transform: scale(1.15);
}

.arc1 .orbit-module:nth-child(2) {
    top: -7%;
    left: 50%;
    transform: translateX(-50%);
    animation: slide-horizontal-top 3s ease-in-out infinite;
}

.arc1 .orbit-module:nth-child(3) {
    top: 23%;
    left: 10%;
    transform: translateX(-50%);
    animation: slide-horizontal-top-left 3.5s ease-in-out infinite;
}

.arc1 .orbit-module:nth-child(4) {
    transform: translateX(-50%);
    animation: slide-horizontal-top-right 3.5s ease-in-out infinite;
}

.arc2 .orbit-module:nth-child(2) {
    transform: translateX(-50%);
    animation: slide-vertical-left 4s ease-in-out infinite;
}

.arc3 .orbit-module:nth-child(2) {
    transform: translateX(-50%);
    animation: slide-vertical-bottom-left 4.5s ease-in-out infinite reverse;
}

.arc3 .orbit-module:nth-child(3) {
    transform: translateX(-50%);
    animation: slide-vertical-bottom-right 4.5s ease-in-out infinite;
}

@keyframes slide-horizontal-top {
    0%,
    100% {
        left: 50%;
    }

    50% {
        left: 48%;
    }
}

@keyframes slide-horizontal-top-left {
    0%,
    100% {
        top: 23%;
        left: 15%;
    }

    50% {
        top: 27%;
        left: 13%;
    }
}

@keyframes slide-horizontal-top-right {
    0%,
    100% {
        top: 5%;
        left: 73%;
    }

    50% {
        top: 7%;
        left: 75%;
    }
}

@keyframes slide-vertical-left {
    0%,
    100% {
        top: 0%;
        left: 26%;
        /*  */
    }

    50% {
        top: -3%;
        left: 31%;
    }
}

@keyframes slide-vertical-bottom-left {
    0%,
    100% {
        top: 26px;
        left: 20%;
    }

    50% {
        top: 50px;
        left: 16%;
    }
}

@keyframes slide-vertical-bottom-right {
    0%,
    100% {
        top: 26px;
        left: 78%;
    }

    50% {
        top: 50px;
        left: 82%;
    }
}

.orbit-module-img {
    padding: 10px;
}

.orbit-center-logo {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 329px;
    height: 166px;
    border-radius: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    animation: pulse 3s ease-in-out infinite;
}

.orbit-center-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@keyframes pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.tagline {
    text-align: center;
    color: var(--title-color);
    font-size: clamp(20px, 3vw, 28px);
    padding: 40px 0;
    font-weight: 400;
    animation: fadeInUp 1s ease-out;
    position: absolute;
    /* z-index: 5; */
    bottom: 20%;
    left: 0;
    border-bottom: 1px solid #1e1e1e1a;
    right: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter-wrapper {
    position: absolute;
    bottom: 0%;
    left: 0;
    /* width: 60%; */
    right: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.counter-num {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
    font-weight: 700;
    font-weight: 700;
    font-size: clamp(24px, 4vw, 36px);
}

.counter-num iconify-icon {
    background-color: var(--white);
    border-radius: 6.27px;
    box-shadow: 0px -3.14px 18.82px 0px #00000021;
    padding: 10px;
    display: inline-block;
    color: var(--theme);
    margin-right: 15px;
}

@media (max-width: 1299px) {
    .orbit-module {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 1199px) {
    .orbit-module {
        width: 80px;
        height: 80px;
    }

    @keyframes slide-horizontal-top-left {
        0%,
        100% {
            top: 23%;
            left: 10%;
        }

        50% {
            top: 20%;
            left: 12%;
        }
    }
}

@media (max-width: 991px) {
    .orbit-module {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 767px) {
    .arc-wrapper {
        min-height: 600px;
    }

    .arc-container {
        display: none;
    }

    .orbit-center-logo {
        top: 5%;
    }

    .tagline {
        bottom: 55%;
    }
}

/* Counter Part */

/* Features Part */
.feature-section {
    position: relative;
    background: url("../image/bg2.png") center / cover no-repeat;
}

.feature-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    /* adjust opacity */
    /* z-index: 1; */
}

.feature-card {
    text-align: center;
    /* margin: 20px 0; */
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 20px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-bg {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: #d9d9d9;

    /* transition: all 0.3s ease; */
}

.feature-card:hover .circle-bg {
    /* transform: scale(1.05); */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-image {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-image {
    transform: scale(1.08);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.feature-title {
    font-weight: 600;
    color: #000;
    margin-top: 15px;
    font-size: clamp(14px, 2vw, 16px);
    opacity: 0.6;
}

.feature-card:hover .feature-title {
    opacity: 1;
}

@media (max-width: 768px) {
    .feature-icon-wrapper {
        width: 180px;
        height: 180px;
    }

    .circle-bg {
        width: 180px;
        height: 180px;
    }
}

/* Features Part */

/* Management Part */
.bg-shade {
    background-color: #f7f5f5;
}

.management-img {
    width: 100%;
    height: 100%;
    box-shadow: 0px 3px 9px 0px #0000000d;
    position: relative;
    z-index: 1;
}

.management-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../image/bg3.png") center / cover no-repeat;
    opacity: 0.05;
    /* adjust opacity here */
    z-index: -1;
}

.management-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
}

.management-icon {
    width: 50px;
    height: 50px;
    background: var(--theme);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    color: var(--white);
    border: 1px solid transparent;
}

.learn-more {
    color: var(--theme);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.5s;
}

.learn-more:hover {
    color: var(--black);
}

.learn-more iconify-icon {
    transition: all 0.5s;
}

.learn-more:hover iconify-icon {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .management-item .col-md-7 {
        order: 2;
    }

    .management-item .col-md-5 {
        order: 1;
    }
}

/* Management Part */

/* Faq Part */
.faq-section {
    background-color: var(--bg);
}

.faq-section .accordion {
    border: none;
}

.faq-section .accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0;
    background: transparent;
}

.faq-section .accordion-item:last-child {
    border-bottom: none;
}

.faq-section .accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 400;
    color: var(--heading-color);
    background: transparent;
    border: none;
    padding: 25px 0;
    box-shadow: none;
    transition: color 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--theme);
    background: transparent;
    box-shadow: none;
}

.faq-section .accordion-button:hover {
    color: var(--theme);
    background: transparent;
}

.faq-section .accordion-button:focus {
    border: none;
    box-shadow: none;
}

.faq-section .accordion-button::after {
    content: "+";
    background: none;
    font-size: 25px;
    display: flex;
    align-items: center;
    color: var(--black);
}

.faq-section .accordion-button:not(.collapsed)::after {
    content: "-";
    background: none;
    transform: none;
    font-size: 30px;
    display: flex;
    align-items: center;
    color: var(--black);
}

.faq-section .accordion-body {
    color: var(--text-color);
    padding: 0 0 25px 0;
}

.faq-section .accordion-collapse {
    border: none;
}

.faq-img {
    width: 100%;
    height: 100%;
}

.faq-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Faq Part */
/* Pricing Part */
.pricing-section .swiper {
    width: 100%;
    padding: 20px 0 30px 0;
}

.pricing-section .swiper-slide {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid #78787833;
    width: 100%;
    height: 100%;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--white);
    background: var(--theme);
    color: var(--white);
}

.pricing-name {
    font-size: clamp(16px, 1.1vw, 18px);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.pricing-card:hover .pricing-name {
    color: var(--white);
}

.pricing-card p {
    font-size: clamp(16px, 1.1vw, 18px);
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
    font-weight: 300;
    /* width: 75%; */
    margin: 0 auto;
}

.pricing-card:hover p {
    color: var(--white);
}

.price-wrapper {
    margin: 20px 0;
    color: var(--heading-color);
}

.pricing-card:hover .price-wrapper {
    color: var(--white);
}

.price {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 700;
    display: inline-block;
}

.period {
    font-size: clamp(16px, 2.2vw, 20px);
    font-weight: 400;
    margin-left: 8px;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-card:hover .box-btn {
    background-color: var(--white);
    color: var(--theme);
}

.pricing-feature-item {
    padding: 12px 0;
    color: var(--text-color);
    font-size: clamp(14px, 2vw, 16px);
    display: flex;
    align-items: center;
}

.pricing-feature-item:not(:last-child) {
    border-bottom: 1px solid #ebebeb;
}

.pricing-feature-item::before {
    content: "\2713";
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.pricing-card:hover .pricing-feature-item {
    color: var(--white);
}

.pricing-card:hover .pricing-feature-item::before {
    color: var(--white);
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--theme);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 30px 25px;
    }
}

/* Pricing Part */

/* Trusted Companies Part */
.trusted-companies-section .swiper {
    width: 100%;
    padding: 20px 0;
}

.trusted-companies-section .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.client-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    /* min-height: 100px; */
    width: 100%;
    height: 100%;
    box-shadow: 0px 3px 9px 0px #0000000d;
    border-radius: 84.19px;
    background-color: var(--white);
    max-height: 122px;
}

.client-logo-wrapper:hover {
    transform: scale(1.1);
}

.client-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.trusted-companies-section .swiper-wrapper {
    margin-bottom: 25px;
}

/* Trusted Companies Part */

/* Contact Part */

.contact-section {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../image/bg4.png") center / cover no-repeat;
    opacity: 0.2;
    /* adjust opacity here */
    z-index: -1;
}

.contact-section .main-heading {
    color: var(--theme);
}

.contact-wrapper {
    background-color: #f9f9f9;
    padding: 20px 25px;
    border-radius: 6px;
}

.contact-wrapper .form-control {
    border: 0.6px solid #c5ccee;
    border-radius: 6px;
    padding: 14px 18px;
    transition: all 0.3s ease;
    background: transparent;
}

.contact-wrapper .form-control:focus {
    border-color: var(--theme);
    box-shadow: 0 0 0 3px rgba(239, 83, 80, 0.1);
    background: #fff;
}

.contact-wrapper .form-control::placeholder {
    color: var(--text-color);
}

.contact-wrapper textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--theme-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--theme);
}

.contact-info-content h4 {
    font-size: clamp(16px, 1.1vw, 18px);
    font-weight: 500;
    color: var;
    margin-bottom: 0;
}

.contact-info-content a {
    color: var(--text-color);
    margin: 0;
}

.contact-info-content a:hover {
    color: var(--theme);
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 7px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .contact-section {
        padding: 40px 0;
    }
}

/* Contact Part */

/* Footer Part */
.footer {
    background:
        var(--linear-black-bg),
        url("../image/bg5.jpg") bottom / cover no-repeat;
}

.footer-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

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

.footer-logo img {
    max-height: 40px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.footer-content p {
    color: var(--white);
    max-width: 980px;
    margin: 0 auto 35px auto;
    padding: 0 20px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--theme);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--white);
    background-color: var(--theme);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

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

@media (max-width: 768px) {
    .social-icon {
        width: 40px;
        height: 40px;
    }
}

/* Footer Part */

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    border: none;
    padding: 2rem 2rem 0;
}

.modal-body {
    padding: 1rem 2rem 2rem 2rem;
}

.modal-title {
    font-weight: 700;
    color: var(--heading-color);
}

.login-input-group {
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.login-input-group iconify-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
}

.login-input-group .form-control:focus {
    border-color: var(--theme);
    box-shadow: 0 0 0 3px rgba(239, 83, 80, 0.1);
    background: #fff;
}

.login-input-group input {
    padding-left: 45px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.modal-links {
    text-align: center;
    margin-top: 1rem;
}

.modal-links button {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
}

.modal-links button:hover {
    color: var(--theme);
}

.form-check-label {
    color: var(--text-color);
}

/* Trial Modal */

.form-side {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.image-side {
    background: linear-gradient(180deg, #0097b2 0%, #dd3a3a 100%);
    width: 100%;
    height: 100%;
}

.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.form-side .form-control {
    margin-bottom: 1rem;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.form-side .form-control:focus {
    border-color: var(--theme);
    box-shadow: 0 0 0 3px rgba(239, 83, 80, 0.1);
    background: #fff;
}

@media (min-width: 768px) {
    .trial-modal-dialog {
        min-width: max-content;
    }
}

@media (max-width: 767px) {
    .form-side {
        padding: 1.5rem;
    }
}

/* Trial Modal */
/* Modal Styles */

/* Products Part */

.products-section {
    position: relative;
    overflow: visible;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 4px 0px #0000000a;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-logo {
    height: 100%;
    width: 100%;
}

.product-card .management-icon {
    width: 40px;
    height: 40px;
}

.product-card .about-title {
    line-height: 1.2;
}

.product-logo img {
    height: 100%;
    width: 100%;
    max-height: 30px;
    object-fit: contain;
    object-position: left;
    margin-bottom: 10px;
}

.product-header p {
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.product-feature-list {
    list-style: none;
    padding: 20px 0;
    border-bottom: 0.4px dashed #b3bcc5;
    border-top: 0.4px dashed #b3bcc5;
}

.product-feature-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.product-feature-list li:before {
    content: "✓";
    color: var(--theme);
    font-weight: bold;
    margin-right: 12px;
    font-size: 16px;
}

.highlight .product-feature-list li:before {
    color: white;
}

.visit-link {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
    gap: 5px;
}

.visit-link:hover {
    color: var(--theme);
}

/* Sticky Sidebar Card */
.products-section .col-xl-3.col-lg-4.col-md-12 {
    height: fit-content;
    /* padding-bottom: 1rem; */
    position: sticky;
    z-index: 1;
    top: calc(80px + 2rem);
}

/* Ensure parent row allows sticky behavior */
.products-section .products-section-wrapper {
    align-items: flex-start;
}

@media (max-width: 991px) {
    .products-section .col-xl-3.col-lg-4.col-md-12 {
        top: calc(45px + 2rem);
    }

    .products-section .product-sidebar-card {
        padding: 1rem 0;
    }
}

@media (max-width: 767px) {
    .products-section .col-xl-3.col-lg-4.col-md-12 {
        position: relative;
        top: 0;
    }
}

/* Products Part */
