

@font-face {
    font-family: 'Helvetica-Neue';
    src: url('../fonts/HelveticaNeueMedium.otf') format('opentype');
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;;
}

h1, h2, h3, h4, h5, h6, .highlight, .hero-highlight, .platform-section-heading{
    font-family: "Helvetica-Neue", sans-serif;
}

input, textarea, section, button{
    outline: none;
}

textarea{
    resize: none;
}

button{
    cursor: pointer;
}

:root {
    --bg-primary: #f8f9fa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f3f5;
    --text-primary: #212529;
    --text-secondary: #495057;
    --text-muted: #868e96;
    --accent-color: #7c3aed;
    --accent-hover: #6d28d9;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.08);
    --success-color: #2e7d32;
    --error-color: #d32f2f;
    --warning-color: #ed6c02;
    --info-color: #1976d2;
    /*--font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;*/
    --font-family: "Helvetica-Neue", sans-serif;
}


a{
    text-decoration: none;
}

a, img{
    user-select: none;
}

section{
    padding: 0 200px;
}

body {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    min-height: 100vh;
}


/* ========= START => HEADER ========= */

header {
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    align-items: center;
    padding: 20px 200px;
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(0);
    transition: all 0.3s ease;
}

header:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--bg-primary), #818181, var(--bg-primary));
    opacity: 0;
    transition: all 0.3s ease;
}

header.active{
    backdrop-filter: blur(20px);
}

header.active:before{
    opacity: 0.5;
}

header .logo img{
    width: 120px;
}

header nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

header nav ul li{
    list-style: none;
}

header nav ul li a {
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-weight: 600;
}

header nav ul li a:hover{
    color: var(--text-secondary);
}


.header-get-started-box{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.header-get-started-box .login{
    color: var(--text-primary);
    transition: text-shadow 0.3s ease;
    font-weight: 600;
}


.header-get-started-box .login:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
}

.header-get-started-box .get-started{
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-get-started-box .get-started{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 10px;
    transition: all 0.3s ease;
}

.header-get-started-box .get-started:hover{
    color: var(--text-secondary);
}

.header-get-started-box .get-started svg{
    height: 20px;
    fill: var(--bg-primary);
    background-color: var(--text-primary);
    border-radius: 20px;
    border: 1px solid var(--text-primary);
}


/* ========= START => HOME PAGE ========= */

.hero_section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    position: relative;
}

.hero_section *{
    z-index: 1;
}

canvas#grid {
    position: absolute;
    height: 100vh;
    width: 100%;
    z-index: 0;
}



.chart-container {
    background-color: var(--bg-primary);
    width: 600px;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #ccc;
    box-shadow: 0 9px 50px rgba(255, 255, 255, 0.2);
}

.header h2 { color: var(--text-primary); margin: 0; font-size: 1.2rem; }
.header p { color: #888888; margin: 4px 0 20px 0; font-size: 0.85rem; }

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 20px;
}

.stat-label { color: #888888; font-size: 0.8rem; }
.stat-value { color: var(--text-primary); font-size: 1.4rem; font-weight: bold; }

.percentage {
    color: #00ff88;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.hero-search {
    background-color: var(--bg-primary);
    border-radius: 10px;
    width: 450px;
    padding: 20px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 9px 50px rgba(0, 0, 0, 0.2);
}
.hero-input:focus::-webkit-input-placeholder {
    -webkit-transform: translateY(-125%);
    font-size: 75%;
    opacity: 0.05
}

.hero-input.imitatefocus::-webkit-input-placeholder {
    -webkit-transform: translateY(-125%);
    opacity: 0.05
}

.hero-input {
    display: block;
    color: #666;
    width: 100%;
    border-radius: 6px;
    padding: 5px 10px;
    background-color: var(--bg-secondary);
    outline: none;
    border: 1px solid #ccc;
}

.hero_section_box.letf-part{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 610px;
    height: 420px;
}

.hero-section-headline{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hero-highlight {
    border-bottom: 4px solid #1d62f7;
}

.hero-search .search_button{
    background-color: #1d62f7;
    padding: 5px 10px;
    border-radius: 6px;
    outline: none;
    border: 1px solid #1d62f7;
    color: #FFFFFF;
    font-weight: bold;
}

.hero-search .search_button svg{
    width: 20px;
    /*height: 20px;*/
    fill: #FFFFFF;
}

.hero_section_box.right-part{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.hero-box-img{
    width: 600px;
}




.platform-section{
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.platform-section-heading{
    font-size: 32px;
    font-weight: 600;
    border-bottom: 4px solid #1d62f7;
    margin-bottom: 20px;
}

.platform-section p{
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 60px;
}

@keyframes slides {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 30px 0px;
    white-space: nowrap;
    position: relative;
    width: 1500px;
}

.logos:before, .logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logo_items {
    display: inline-block;
    animation: 85s slides infinite linear;
}

.logos:hover .logo_items {
    animation-play-state: paused;
}

.logo_items img{
    height: 100px;
}

.feature-section {
    padding: 80px 0;
}

.feature-container {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 50px 0;
}

.feature-left-wrapper {
    width: 40%;
    position: relative;
    height: 450px;
}

.feature-left-wrapper::before,
.feature-left-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 5;
}

.feature-left-wrapper::before {
    top: 0;
    background: linear-gradient(
            to bottom,
            #fff 0%,
            rgba(255,255,255,0) 100%
    );
}

.feature-left-wrapper::after {
    bottom: 0;
    background: linear-gradient(
            to top,
            #fff 0%,
            rgba(255,255,255,0) 100%
    );
}

.feature-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    height: 450px;
    scrollbar-width: none;
    padding: 50px 30px;
}

.feature-left::-webkit-scrollbar {
    display: none;
}


.feature-box {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 20px;
}

.feature-box img{
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.feature-box p{
    color: #818181;
}


.feature-box:hover {
    background: #f8f8f8;
}

.feature-box.active {
    background: #111;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.feature-box.active img{
    border: 1px solid #fff;
}

.feature-box.active p{
    color: #FFFFFF;
}

.feature-right {
    width: 60%;
    position: relative;
    min-height: 450px;
}

.feature-right:after{
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    left: 0;
    top: 0;
    background: radial-gradient(#cccccc, transparent);
}

.feature-image {
    position: absolute;
    inset: 0;
    padding: 40px;
    border-radius: 20px;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    opacity: 0;
    transition: all 0.5s ease;
}

.feature-image.active {
    opacity: 1;
}


.feature-image img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.feature-image h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 0;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #818181;
}


/*.swiper.vertical {*/
/*    width: 100%;*/
/*    height: 100vh;*/
/*}*/

/*.swiper.vertical .swiper-slide {*/
/*    text-align: center;*/
/*    font-size: 18px;*/
/*    background: #ffffff;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

/*.swiper.vertical .swiper-slide img {*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*}*/

.timeline-section-title{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin: 100px auto 30px;
}

.timeline-section-title h2{
    border-bottom: 4px solid #1d62f7;
}

.timeline-section-title p{
    text-align: center;
    width: 900px;
    color: #818181;
}


.timeline {
    position: relative;
    max-width: 900px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--bg-primary), var(--text-primary), var(--bg-primary));
    border-radius: 3px;
    opacity: 0.5;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-right: calc(50% + 30px);
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    padding-left: calc(50% + 30px);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #000000;
    border: 4px solid white;
    box-shadow: 0 0 0 4px #818181, 0 4px 12px rgba(0,20,40,0.2);
    z-index: 3;
    transition: 0.2s;
}

.timeline-item:hover .timeline-dot {
    background: #1d62f7;
    box-shadow: 0 0 0 6px rgba(27, 49, 249, 0.3);
}

.timeline-content {
    background: var(--card-white);
    padding: 28px;
    border-radius: 10px;
    border: 1px solid #dddddd;
    box-shadow: 0 20px 30px -12px rgba(0,40,70,0.15);
    width: 100%;
    max-width: 850px;
    transition: transform 0.25s ease, box-shadow 0.3s;
    backdrop-filter: blur(2px);
}

.timeline-content:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 28px 34px -12px rgba(10,75,122,0.25);
    border-color: #1d62f7;
}

.timeline-year {
    display: inline-block;
    background: #000000;
    color: white;
    padding: 6px 20px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.timeline-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-title i {
    color: var(--accent);
    font-size: 1.6rem;
}

.timeline-text {
    color: #818181;
    line-height: 1.6;
    font-size: 1rem;
}

.timeline-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.3, 1), transform 0.6s ease;
}

.timeline-item.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}



.idea-box{
    margin: 200px 0;
}

.idea-section-title{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin: 100px auto 30px;
}

.idea-section-title h2{
    border-bottom: 4px solid #1d62f7;
}

.idea-section-title p{
    text-align: center;
    width: 900px;
    color: #818181;
}

.idea-section{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 50px;
}

.idea-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 350px;
    gap: 20px;
    position: relative;
    padding: 0 50px;
}

.idea-items:before{
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    background: radial-gradient(#cccccc, transparent);
}

.idea-items:last-child::before {
    content: none;
}

.idea-items i{
    color: #1d62f7;
    font-size: 20px;
}

.idea-items p {
    color: #818181;
    line-height: 1.6;
    font-size: 1rem;
    text-align: center;
}

.button-box{
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-box a{
    margin: auto;
    text-align: center;
}
.button1 {
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: transparent;
    color: #000;
    border-radius: 10rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    padding-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}

.button1:hover{
    color: #818181;
}

.button1__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: #fff;
    background-color: #000;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.button1__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.button1:hover .button1__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.button1:hover .button1__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}


.cards-box-section{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0;
}

.active-slide-view{
    width: 35%;
    height: 450px;
    align-content: center;
    position: relative;
    padding: 20px;
}

.active-slide-view:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    right: 0;
    top: 0;
    background: radial-gradient(#cccccc, transparent);
}

.card-slider-box{
    width: 65%;
    height: 450px;
}

.swiper.cardSlideView {
    width: 100%;
    height: 450px;
}

.swiper.cardSlideView .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    scale: 0.6;
    opacity: 0.4;
    color: #333;
    height: 300px;
    position: relative;
}

.swiper.cardSlideView .swiper-slide .slide-image{
    width: 60px;
    height: 60px;
    position: absolute;
    background-color: #FFFFFF;
    border: 1px solid #ccc;
    border-radius: 5px;
    top: -30px;
    left: 30px;
    overflow: hidden;
}

.swiper.cardSlideView .swiper-slide .slide-image img{
    border: 0;
}

.swiper.cardSlideView .swiper-slide .bouncing-box-big,
.swiper.cardSlideView .swiper-slide .bouncing-box-medium,
.swiper.cardSlideView .swiper-slide .bouncing-box-small{
    background-color: #FFFFFF;
    border-radius: 5px;
    border: 1px solid #ccc;
    position: absolute;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    transform: scale(2);
    opacity: 0;
    transition: transform 1s ease-in-out, opacity 0.7s ease-in-out;
}

.swiper.cardSlideView .swiper-slide-active .bouncing-box-big,
.swiper.cardSlideView .swiper-slide-active .bouncing-box-medium,
.swiper.cardSlideView .swiper-slide-active .bouncing-box-small{
    opacity: 1;
}

.swiper.cardSlideView .swiper-slide .bouncing-box-big{
    width: 30px;
    height: 30px;
    bottom: 20px;
    right: -10px;
    animation: bounce 1.9s ease infinite alternate;
}

.swiper.cardSlideView .swiper-slide .bouncing-box-medium{
    width: 20px;
    height: 20px;
    bottom: -10px;
    right: 20px;
    animation: bounce 1.7s ease infinite alternate;
}

.swiper.cardSlideView .swiper-slide .bouncing-box-small{
    width: 15px;
    height: 15px;
    bottom: -10px;
    right: -10px;
    animation: bounce 1.5s ease infinite alternate;
}

@keyframes bounce {
    0%   { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-10px) scale(1); }
}


.swiper.cardSlideView .swiper-slide-active{
    background-color: var(--bg-primary);
    color: var(--text-primary);
    scale: 1;
    opacity: 1;
    box-shadow: 0 9px 30px rgba(0, 0, 0, 0.2);
}

.swiper.cardSlideView .swiper-slide-prev{
    scale: 0.8;
    opacity: 0.6;
}

.swiper.cardSlideView .swiper-slide-next{
    scale: 0.8;
    opacity: 0.6;
}

.swiper.cardSlideView .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper.cardSlideView .swiper-wrapper{
    margin: 30px;
}


.characteristics__list {
    max-width: 920px;
}

.characteristics__item {
    /*margin-bottom: 15px;*/
    list-style: none;
    border-bottom: 1px solid #ddd;
}

.characteristics__item:last-child {
    border-bottom: 0;
}



.characteristics__title {
    position: relative;
    width: 100%;
    padding: 12px 30px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 80px;
}

.characteristics__title:hover{
    background-color: #f8f8f8;
}


.characteristics__description {
    margin-top: -2px;
    height: 0;
    overflow: hidden;
    transition: height .4s ease-in-out;
}

.characteristics__description.active {
    height: auto;
}

.characteristics__item-description {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.characteristics__item-description p {
    margin: 0 15px;
}

.characteristics__item-description p:last-child {
    text-align: right;
}

.characteristics__item-description:first-child {
    padding-top: 30px;
}

.characteristics__item-description:last-child {
    padding-bottom: 30px;
}


/* ========= END => HOME PAGE ========= */



/* ========= START => ABOUT PAGE ========= */

.hero-section {
    padding: 100px 20px;
    text-align: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 8px 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 30px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.badge i{
    margin-right: 10px;
    color: #1d62f7;
}

.hero-h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.highlight { color: var(--orange); }

.hero-p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.btn-dark {
    background: var(--dark-blue);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.logo-section { margin-top: 80px; text-align: center; }
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto 0;
    align-items: center;
}
.logo-item { font-weight: 800; opacity: 0.7; }
.case-study {
    font-size: 0.7rem; color: var(--orange);
    background: #fff5eb; padding: 2px 10px; border-radius: 10px;
}

.main-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 25px;
    width: 100%;
    margin-bottom: 25px;
}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #ddd;
}

.text-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.title-label {
    color: #818181;
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 20px;
    display: block;
}

.title-label:before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #1d62f7c7;
    margin-right: 10px;
    animation: inout 1s ease infinite;
}

.dream-box h2{
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
}

@keyframes inout {
    0% {
        -webkit-box-shadow: 0 0 0 0px rgba(0, 50, 255, 0.4);
        -moz-box-shadow: 0 0 0 0px rgba(0, 50, 255, 0.4);
        box-shadow: 0 0 0 0px rgba(0, 50, 255, 0.4);
    }
    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(0, 50, 255,0);
        -moz-box-shadow: 0 0 0 5px rgba(0, 50, 255,0);
        box-shadow: 0 0 0 5px rgba(0, 50, 255,0);
    }
}

.description {
    color: #818181;
    line-height: 1.7;
    font-size: 1rem;
    width: 600px;
    margin-bottom: 50px;
}

.visual-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-wrapper {
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, #cbdcf7 0%, #a1c4fd 100%);
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.9;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.stat-card {
    padding: 30px;
    position: relative;
}

.stat-card:first-child:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background: linear-gradient(to right, var(--bg-primary), rgba(129, 129, 129, 0.53), #818181);
}

.stat-card:first-child:after{
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, var(--bg-primary), rgba(129, 129, 129, 0.53), #818181);
}

.stat-card:last-child:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    left: -1px;
    top: 0;
    background: linear-gradient(
            to bottom,
            #818181,
            rgba(129, 129, 129, 0.53),
            var(--bg-primary)
    );
}

.stat-card:last-child:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    right: 0;
    top: -1px;
    background: linear-gradient(
            to right,
            #818181,
            rgba(129, 129, 129, 0.53),
            var(--bg-primary)
    );
}

.stat-card h2 {
    height: 3rem;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 800;
    overflow: hidden;
    position: relative;
}

.stat-card h2:before{
    content: attr(data-count);
    font-size: 3rem;
    transform: translateY(100%);
    position: absolute;
    transition: all 0.5s ease-in-out;
}

.stat-card h2.active:before{
    transform: translateY(0);
}

.stat-card p {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 100%;
    margin: 100px auto;
}

.mv-card {
    padding: 50px;
}

.mv-card h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 1.2;
}


/* --- STICKY FEATURE SCROLL SECTION --- */
.sticky-wrapper {
    max-width: 1300px;
    margin: 100px auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    padding: 0 40px;
    position: relative;
}

.sticky-left {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sticky-left h2 { font-size: 3.5rem; margin-bottom: 40px; }

.image-display {
    width: 100%;
    height: 450px;
    border-radius: 25px;
    overflow: hidden;
    background: #ddd;
    position: relative;
}

.image-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-display img.active {
    opacity: 1;
    visibility: visible;
}

.feature-item {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.icon-box {
    width: 50px;
    height: 50px;
    border: 1px solid #eee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: white;
    color: #1d62f7;
    font-size: 1.5rem;
}

.feature-item h3 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
.feature-item p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.6; }

/* ========= END => ABOUT PAGE ========= */

/* ========= START => CONTACT US PAGE ========= */

.contact-us-hero{
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 150px auto;
}

.contact-us-hero h1{
    margin-bottom: 30px;
    text-align: center;
}

.contact-us-hero p{
    text-align: center;
    color: #818181;
}

.contact-us-section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
}

.section-title-description{
    text-align: center;
}

.field{
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}

.field .error-message{
    color: red;
    font-size: small;
}

.form-row{
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-row .field{
    flex: 1;
}

.field input, .field textarea, .field select{
    padding: 5px 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

.field label{
    transition: all 0.3s ease;
    color: #818181;
    font-size: small;
    font-weight: 600;
    margin-left: 10px;
}

.field label{
    transition: all 0.3s ease;
    color: #818181;
}

.field:focus-within label{
    color: #1d62f7;
}

.field:focus-within input{
    border: 1px solid #1d62f7;
}


.field:focus-within textarea{
    border: 1px solid #1d62f7;
}

.submit-btn{
    width: 100%;
    text-align: center;
    align-content: center;
    padding: 5px 10px;
    font-weight: 600;
    background-color: #1a1a1a;
    color: #FFFFFF;
    border-radius: 5px;
    border: 0;
}

.submit-btn.disable{
    color: rgba(255, 255, 255, 0.58);
}

.submit-btn.disable .send-icon{
    display: none;
}

.submit-btn i{
    width: 20px;
    height: 20px;
    align-content: center;
}

.submit-btn .load{
    width: 20px;
    display: none;
    height: 20px;
    align-content: center;
    animation: rotate 1s linear infinite;
}


.submit-btn.disable .load{
    display: inline-block;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.contact-box-items {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.contact-box-items .contact-item{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
    gap: 20px;
}

.contact-box-items .contact-item i{
    color: #FFFFFF;
    margin-right: 10px;
    background-color: #1a1a1a;
    width: 30px;
    height: 30px;
    text-align: center;
    align-content: center;
    border-radius: 5px;
}

.contact-label-link{
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.contact-label-link h5{
    margin-bottom: 10px;
    color: #818181;
}

.contact-label-link a, .contact-label-link span{
    font-size: small;
}

.contact-label-link i, .contact-label-link a{
    color: #1d62f7;
    font-weight: 500;
}

.contact-label-link i{
    background-color: transparent !important;
    color: #1d62f7 !important;
    width: 20px !important;
}

.form-wrapper form{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}

.form-wrapper h2{
    margin-bottom: 30px;
}

.form-wrapper {
    position: relative;
    background: #ffffff;
    padding: 3rem;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(221, 221, 221, 1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 4. The "Extended Border" Crosshairs */
.form-wrapper::before,
.form-wrapper::after,
.crosshair-h::before,
.crosshair-h::after {
    content: "";
    position: absolute;
    background: radial-gradient(#ddd, #fff);
    transition: background-color 0.3s ease;
}

/* Vertical Lines (Left and Right) */
.form-wrapper::before { top: -50px; bottom: -50px; left: -1px; width: 1px; }
.form-wrapper::after { top: -50px; bottom: -50px; right: -1px; width: 1px; }

/* Horizontal Lines (Top and Bottom) */
.crosshair-h::before { left: -50px; right: -50px; top: -1px; height: 1px; }
.crosshair-h::after { left: -50px; right: -50px; bottom: -1px; height: 1px; }

.contact-info-mail-box{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    width: 100%;
}

/* ========= END => CONTACT US PAGE ========= */



/* ========= START => LOGIN REGISTER FORGOT PASS PAGES ========= */

.register-login-section{
    height: 100vh;
    align-content: center;
    z-index: 1;
    position: relative;
}

.form-box{
    max-width: 500px;
    margin: auto;
    backdrop-filter: blur(2px);
    border-radius: 10px;
    border: 1px solid #1d62f7;
    padding: 50px;
    box-shadow: 0 0 0 3px rgba(0, 50, 255,0.2);
}

.form-box form .login-options{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.form-box form .login-options a{
    color: #1d62f7;
    font-weight: 500;
    font-size: smaller;
}

.form-box form .login-options .remember-me{
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-box form .login-options .remember-me label{
    color: #818181;
    font-size: small;
    font-weight: 600;
}

.form-box form{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}

.form-box .form-heading{
    text-align: center;
}

.form-box .form-heading h1{
    margin-bottom: 20px;
}

.form-box .form-heading p {
    margin-bottom: 50px;
    color: #818181;
}

.form-box .form-heading p a{
    color: #1d62f7;
    font-weight: 500;
}


/* ========= END => LOGIN REGISTER FORGOT PASS PAGES ========= */


/* ========= START => DASHBOARD PAGE ========= */

.dashboard-body *{
    scrollbar-width: none;
}

.dashboard-body{
    display: flex;
    align-items: flex-start;
}

.aside-box{
    padding: 20px;
    width: 300px;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    position: sticky;
    top: 0;
    overflow-y: auto;
}

.aside-box:before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100vh;
    background: linear-gradient(to bottom, transparent, #dddddd, transparent);
}

.aside-box .aside-links{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 50px;
}

.aside-links-list li{
    list-style: none;
    margin-bottom: 5px;
}

.aside-links-list li a{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
    width: calc(300px - 40px);
    transition: all 0.3s ease;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0);
    border-radius: 5px;
}

.aside-links-list li a:hover{
    color: #818181;
}
.aside-links-list li a:hover svg:nth-child(1) {
    fill: #1d62f7;
}

.aside-links-list li a .dashboard-arrow-right{
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: all 0.3s ease;
    margin-left: auto;
}

.aside-links-list li a:hover .dashboard-arrow-right{
    opacity: 1;
}

.aside-links-list li a:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.aside-links-list li a svg{
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.aside-box .logout{
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all .3s ease;
}
.aside-box .logout:hover{color: darkred}

.aside-box .logout svg{
    width: 20px;
    height: 20px;
    fill: darkred;
}

.dashboard-main-container {
    width: calc(100% - 300px);
    height: 100vh;
    overflow-y: auto;
}

/* ========= END => DASHBOARD PAGE ========= */


/* ========= START => FOOTER ========= */

footer{
    margin-top: 200px;
    position: relative;
    padding: 50px 200px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

footer:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    background: linear-gradient(to right, var(--bg-primary), #818181, var(--bg-primary));
    opacity: 0.5;
}

.footer-top-box{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-top-items{
    width: 300px;
}

.footer-top-items p{
    margin-top: 30px;
    color: #818181;
    line-height: 1.6;
}


.footer-top-items h3{
    border-bottom: 2px solid #1d62f7;
    width: max-content;
    margin-bottom: 30px;
}

.footer-top-items ul li{
    list-style: none;
    margin-bottom: 10px;
}

.footer-top-items ul li a{
    color: #000000;
    font-weight: 500;
    transition: all 0.3s ease;
}
.footer-top-items ul li a:hover{
    color: #1d62f7;
}

.footer-top-items ul li a i{
    margin-right: 20px;
    width: 10px;
}

.footer-bottom-box{
    position: relative;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-box .copyright a{
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-bottom-box .copyright a:hover{
    color: #1d62f7;
}


.footer-bottom-box .terms-policy-cookie a{
    margin-left: 15px;
    color: #000000;
}

.footer-bottom-box:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    left: 0;
    top: 0;
    background: linear-gradient(to right, var(--bg-primary), #818181, var(--bg-primary));
    opacity: 0.5;
}

/* ========= END => FOOTER ========= */



/*filter: drop-shadow(46px 36px 24px #4090b5) drop-shadow(-55px -40px 25px #9e30a9);*/
/*animation: blinkShadowsFilter 8s ease-in infinite;*/

/*@keyframes blinkShadowsFilter {*/
/*    0% {*/
/*        filter: drop-shadow(46px 36px 28px rgba(64, 144, 181, 0.3411764706))*/
/*        drop-shadow(-55px -40px 28px #9e30a9);*/
/*    }*/

/*    25% {*/
/*        filter: drop-shadow(46px -36px 24px rgba(64, 144, 181, 0.8980392157))*/
/*        drop-shadow(-55px 40px 24px #9e30a9);*/
/*    }*/

/*    50% {*/
/*        filter: drop-shadow(46px 36px 30px rgba(64, 144, 181, 0.8980392157))*/
/*        drop-shadow(-55px 40px 30px rgba(159, 48, 169, 0.2941176471));*/
/*    }*/

/*    75% {*/
/*        filter: drop-shadow(20px -18px 25px rgba(64, 144, 181, 0.8980392157))*/
/*        drop-shadow(-20px 20px 25px rgba(159, 48, 169, 0.2941176471));*/
/*    }*/

/*    to {*/
/*        filter: drop-shadow(46px 36px 28px rgba(64, 144, 181, 0.3411764706))*/
/*        drop-shadow(-55px -40px 28px #9e30a9);*/
/*    }*/
/*}*/