/*------------------------------------------------------------------
Project: Ciri AI
Author: The_Krishna
Last change: 21/2/2025
Primary use:
------------------------------------------------------------------ */

/* Form Message Styles */
#formMessage,
.form-message {
    display: none;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}

#formMessage.alert-success,
.form-message.alert-success {
    background-color: rgba(0, 255, 177, 0.1);
    border: 1px solid rgba(0, 255, 177, 0.3);
    color: #00FFB1;
}

#formMessage.alert-danger,
.form-message.alert-danger {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #FF6B6B;
}
/* Davetiye Kart Modal Stilleri */
#davetiyeKartModal {
    z-index: 10000;
}
#davetiyeKartModal .modal-dialog {
    max-width: 600px;
}
#davetiyeKartModal .modal-content {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
#davetiyeKartModal .form-close-btn {
    background: white;
    opacity: 1;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
#davetiyeKartModal .form-close-btn:hover {
    background: #00FFB1;
    opacity: 1;
}
#davetiyeKartImg {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
#davetiyeKartOverlay {
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
}
/* Davetiye İndirme Butonu */
#davetiyeIndirBtn {
    display: block;
    width: 100%;
    margin-top: 15px;
    animation: fadeIn 0.5s ease-in;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*-----------------------[Table of contents]------------------------
1.Default CSS
2.Preloader CSS
3.Buttons CSS
4.Header CSS
5.Section One CSS 
6.Section Two CSS
7.Section Three CSS
8.Brand Marquee Section CSS
9.Section Four CSS
10.Section Five CSS
11.Section Six CSS
12.Why Choose Us CSS
13.Section Seven CSS
14.Pricing Page CSS
15.Section Eight CSS
16.Section Subscribe CSS
17.Section Blog CSS
18.Footer CSS
19.Bottom top button CSS
20.custom-cursor
------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins';
    font-style: normal;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul {
    padding-left: 0;
}
ul li {
    list-style: none;
}
button {
    border: none;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #5C33FF;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #000000;
}
body {
    background: #000000;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
* {
    max-width: 100%;
}
/* Marquee elementlerini max-width kısıtlamasından muaf tut */
.marquee-img-main,
.marquee__content,
.logos-slide {
    max-width: none !important;
}
img, video {
    max-width: 100%;
    height: auto;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #000000;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.page-loader p {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 3px;
    padding-top: 20px;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.frex-loader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
.frex-loader-logo .loader-logo-img {
    max-width: 200px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}
.frex-loader-logo span {
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.spinner {
    width: 80px;
    height: 80px;
    animation: spinner-y0fdc1 2s infinite ease;
    transform-style: preserve-3d;
}
.spinner>div {
    background-color: #5c33ff6e;
    height: 100%;
    position: absolute;
    width: 100%;
    border: 2px solid #FFFFFF;
}
.spinner div:nth-of-type(1) {
    transform: translateZ(-40px) rotateY(180deg);
}
.spinner div:nth-of-type(2) {
    transform: rotateY(-270deg) translateX(50%);
    transform-origin: top right;
}
.spinner div:nth-of-type(3) {
    transform: rotateY(270deg) translateX(-50%);
    transform-origin: center left;
}
.spinner div:nth-of-type(4) {
    transform: rotateX(90deg) translateY(-50%);
    transform-origin: top center;
}
.spinner div:nth-of-type(5) {
    transform: rotateX(-90deg) translateY(50%);
    transform-origin: bottom center;
}
.spinner div:nth-of-type(6) {
    transform: translateZ(40px);
}
@keyframes spinner-y0fdc1 {
    0% {
        transform: rotate(45deg) rotateX(-25deg) rotateY(25deg);
    }
    50% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(25deg);
    }
    100% {
        transform: rotate(45deg) rotateX(-385deg) rotateY(385deg);
    }
}
/*-----------------------[ 3.Buttons CSS ]------------------------*/
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
    color: #FFF;
    z-index: 1;
    border-radius: 10px;
    background: linear-gradient(270deg, rgba(0, 255, 177, 0.75) 0%, rgba(0, 255, 177, 0.00) 49.65%);
    border: 2px solid transparent;
}
.button::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(90deg, #5C33FF, #00FFB1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 177, 0.4);
}
.button:hover::before {
    background: linear-gradient(90deg, #FF0000, #0066FF);
}
.button:active {
    transform: scale(0.97);
}
.hoverEffect {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    overflow: hidden;
    border-radius: 8px;
}
.hoverEffect span {
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    width: 12rem;
    height: 12rem;
    transition: 0.4s;
    filter: blur(20px);
    animation: effect infinite 3s linear;
    opacity: 0.5;
    overflow: hidden;
}
@keyframes effect {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Buttton 2 */
.button2 {
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: conic-gradient(from var(--r) at var(--x) 50%, #222 0%, #00FFB1 20%, #1A1A1A 25%);
    animation: rotateAnimation 5s linear infinite, moveX 5s ease-in-out infinite alternate;
    padding: 12px 24px;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
.button2:hover {
    color: #00FFB1;
}
.button2::after {
    content: "";
    display: block;
    position: absolute;
    background: #1A1A1A;
    inset: 2px;
    border-radius: 10px;
    z-index: 0;
    transition: opacity .3s ease;
}
.button2 span {
    position: relative;
    z-index: 2;
}
@property --r {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
@property --x {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
}
@keyframes rotateAnimation {
    0% {
        --r: 0deg;
    }
    100% {
        --r: 360deg;
    }
}
@keyframes moveX {
    0% {
        --x: 10%;
    }
    100% {
        --x: 90%;
    }
}
/*-----------------------[ 4.Header CSS ]------------------------*/
header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 500;
    padding: 20px 12px;
    overflow: visible;
}
header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    box-sizing: border-box;
}
.top-navbar.fixed {
    background: rgba(23, 27, 34, 0.3);
    backdrop-filter: blur(12.5px);
    -webkit-backdrop-filter: blur(12.5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 100%;
    gap: 30px;
    flex-wrap: nowrap;
}
.frex-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    opacity: 1;
    margin-right: 40px;
    flex-shrink: 0;
}
.frex-logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}
.frex-logo:hover .main-logo-img {
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 255, 177, 0.5));
}
.main-logo-img {
    height: auto;
    max-width: 220px;
    width: auto;
    min-width: 160px;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: brightness(1.1) contrast(1.05);
}
.frex-logo span {
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.frex-logo::before {
    display: none;
}
.header-buttons-main {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav-links li.header-buttons-desktop {
    margin-left: 0;
    display: flex;
    align-items: center;
    padding-left: 0;
}
.nav-links li.header-buttons-desktop .header-buttons-main {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 18px;
}
.header-buttons-mobile {
    display: none;
}
@media (max-width: 991px) {
    .nav-links li.header-buttons-desktop {
        display: none !important;
    }
    .header-buttons-mobile {
        display: flex !important;
        position: absolute !important;
        right: 50px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        gap: 8px !important;
        z-index: 10000 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .header-buttons-mobile .button,
    .header-buttons-mobile .button2 {
        padding: 8px 12px !important;
        font-size: 11px !important;
        white-space: nowrap !important;
        display: inline-flex !important;
    }
    .header-buttons-mobile .button2 span {
        font-size: 11px !important;
    }
}
.side-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
    display: none;
}
.side-menu-logo-img {
    height: auto;
    max-width: 200px;
    width: auto;
    max-height: 80px;
    object-fit: contain;
    display: block;
}
.menu-icon {
    display: none;
    cursor: pointer;
}
.nav-links-mn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    flex: 1;
    min-width: 0;
    flex-shrink: 1;
    overflow: visible;
    max-width: calc(100% - 200px);
    margin-left: 20px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
    overflow: visible;
}
.nav-links li {
    flex-shrink: 0;
}
.nav-links li:not(.header-buttons-desktop) {
    flex-shrink: 1;
}
.nav-links li:last-of-type:not(.header-buttons-desktop) {
    margin-right: 0;
}
.nav-links li.header-buttons-desktop {
    margin-left: 15px;
    flex-shrink: 0;
}
.nav-links li.header-buttons-desktop .header-buttons-main {
    gap: 18px;
}
.nav-links li.header-buttons-desktop .button,
.nav-links li.header-buttons-desktop .button2 {
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
    min-width: auto;
    flex-shrink: 0;
}
.nav-links li.header-buttons-desktop .button2 span {
    font-size: 13px;
}
.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}
.top-navbar .nav-links li {
    white-space: nowrap;
}
.nav-links .a-link,
.select-btn {
    color: var(--1, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.nav-links .a-link:hover {
    color: #00FFB1;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.top-navbar .nav-links .a-link {
    font-size: 14px;
    letter-spacing: 0;
    white-space: nowrap;
    display: block;
    visibility: visible;
    opacity: 1;
}
.a-link.active-link {
    color: #00FFB1 !important;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.dropdown-content.active {
    display: block;
    opacity: 1;
    visibility: visible;
}
.select-menu .options {
    position: absolute;
    top: 40px;
    overflow-y: auto;
    padding: 12px 16px;
    border-radius: 8px;
    background: #1A1A1A;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-duration: 0.35s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.35s;
    -webkit-animation-fill-mode: both;
}
.select-menu.active .options {
    opacity: 0;
    z-index: 10;
    animation-name: fadeInUp;
    -webkit-animation-name: fadeInUp;
    animation-duration: 0.4s;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    width: 190px;
    display: flex;
    flex-direction: column;
}
.options a {
    padding: 10px;
    color: var(--1, #FFF);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.select-menu .options {
    display: none;
}
@keyframes fadeInUp {
    from {
        transform: translate3d(0, 30px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes fadeInDown {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(0, 20px, 0);
        opacity: 0;
    }
}
/*-----------------------[ 5.Section One CSS  ]------------------------*/
.blue-gardient1 {
    position: absolute;
    left: 0;
    top: -110px;
    max-width: 100%;
    z-index: -1;
    max-width: 670px;
}
.blue-gardient2 {
    position: absolute;
    right: 0;
    top: -50px;
    max-width: 725px;
    z-index: -1;
}
.hero-frex {
    padding-top: 40px;
    overflow: visible;
}
.hero-frex-grid {
    margin-top: 0;
}
.hero-frex-grid .col-lg-7 {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    position: relative;
}
.hero-slider {
    background: rgba(2, 0, 11, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    height: 540px;
    margin: 0;
    border-bottom: none;
    display: flex;
    flex-direction: column;
}
.hero-slider.slick-initialized {
    height: 540px;
}
.hero-slider .slick-list {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
    flex: 1;
}
.hero-slider .slick-track {
    display: block;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    height: 100%;
    border: none;
    outline: none;
}
.hero-slider.slick-initialized .slick-track {
    display: block;
}
.hero-slider .slick-slide {
    display: none;
    outline: none;
    box-sizing: border-box;
    width: 100% !important;
    float: none;
    height: 100%;
    min-height: 1px;
}
.hero-slider.slick-initialized .slick-slide {
    display: flex;
    opacity: 0;
    transition: opacity 900ms ease-in-out;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100%;
    flex-direction: column;
}
.hero-slider.slick-initialized .slick-slide.slick-active {
    opacity: 1 !important;
    z-index: 2;
    visibility: visible !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column;
}
.hero-slider.slick-initialized .slick-slide:not(.slick-active) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
    z-index: -1;
    height: 0 !important;
    overflow: hidden !important;
}
.hero-slider .slick-slide > div {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
}
.hero-slide {
    color: #fff;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    border: none;
    outline: none;
    z-index: 1;
    background: transparent;
    visibility: visible !important;
    height: 100%;
    justify-content: space-between;
    opacity: 1 !important;
}
.hero-slider .slick-slide.slick-active .hero-slide {
    visibility: visible !important;
    opacity: 1 !important;
}
.hero-slide h1,
.hero-slide h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.2;
    margin-bottom: 24px;
    padding: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.hero-slide p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
    text-align: left;
    margin-bottom: 0;
}
.slide-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(92, 51, 255, 0.15);
    color: #00FFB1;
    font-size: 14px;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    font-weight: 600;
}
.slide-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
    align-items: flex-start;
    width: 100%;
    max-width: 280px;
}
.slide-actions .button,
.slide-actions .ghost-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
}
.ghost-btn {
    padding: 12px 24px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    color: #fff;
    font-weight: 600;
    transition: border-color .3s, color .3s;
}
.ghost-btn:hover {
    border-color: #00FFB1;
    color: #00FFB1;
}
.hero-slider .slick-dots {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    display: none !important;
    gap: 12px;
    list-style: none;
    z-index: 10;
    padding: 0;
    margin: 0;
}
/* Dots sayısını sınırla - maksimum 3 dot göster */
.hero-slider .slick-dots li:nth-child(n+4) {
    display: none !important;
}
.hero-slider .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0;
}
.hero-slider .slick-dots li button {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    padding: 0;
    font-size: 0;
    color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-slider .slick-dots li button:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}
.hero-slider .slick-dots li button:before {
    content: '';
}
.hero-slider .slick-dots li.slick-active button {
    background: #00FFB1;
    border-color: #00FFB1;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(0, 255, 177, 0.5);
}
.slide-counter {
    position: absolute;
    bottom: -70px;
    left: 50%;
    transform: translateX(-50%);
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.slide-counter .current-slide {
    color: #00FFB1;
    font-size: 16px;
    font-weight: 700;
}
.slide-counter .total-slides {
    color: rgba(255, 255, 255, 0.7);
}
.hero-media-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.media-layer {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.media-layer video,
.media-layer .media-gif {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.media-overlay {
    position: absolute;
    inset: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(5, 3, 20, 0.05) 0%, rgba(5, 3, 20, 0.9) 100%);
    gap: 10px;
}
.media-overlay p {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 13px;
    color: #00FFB1;
}
.media-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FFFFFF;
}
.small-btn {
    padding: 10px 18px;
}
.countdown-card {
    background: rgba(2, 0, 11, 0.8);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.countdown-header span {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: #FFFFFF;
}
.countdown-header p {
    font-size: 20px;
    font-weight: 600;
    margin-top: 6px;
    color: #FFFFFF;
}
.countdown-digits {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(70px, 1fr));
    gap: 12px;
}
.countdown-digits div {
    text-align: center;
    padding: 16px 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.countdown-digits span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.countdown-digits small {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
}
.countdown-date {
    margin-top: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 991px) {
    .hero-slider {
        padding: 32px 24px;
    }
    .media-layer video {
        height: 280px;
    }
}
@media (max-width: 575px) {
    .hero-slider {
        padding: 28px 20px;
    }
    .hero-slider .slick-dots {
        position: static;
        margin-top: 18px;
    }
    .countdown-digits {
        grid-template-columns: repeat(2, minmax(100px, 1fr));
    }
    .media-layer video {
        height: 240px;
    }
}
.elevate {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 64px;
    font-weight: 400;
    line-height: 100px;
    padding-top: 100px;
}
.bestAI {
    background: linear-gradient(to right,
            #5C33FF 20%,
            #00FFB1 30%,
            #5C33FF 70%,
            #00FFB1 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    line-height: 100px;
    background-size: 500% auto;
    animation: gradientMove 6s ease-in-out infinite alternate;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
.olut {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    max-width: 850px;
    margin: 0 auto;
    padding-top: 20px;
}
.inputGenerate {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--11, #1A1A1A);
    max-width: 850px;
    margin: 40px auto 20px auto;
    position: relative;
}
.inputGenerate input {
    width: 100%;
    background: #1A1A1A;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    border: none;
    outline: none;
    padding: 28px 30px;
    border-radius: 10px;
}
.generate-btn {
    margin-right: 10px;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    border: none;
    padding: 18px 24px;
}
a.button.generate-btn::before {
    display: none;
}
.hometags-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.popTg {
    color: var(--1, #FFF);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.hometags {
    color: var(--12, #6F6F6F);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border-radius: 5px;
    background: var(--11, #1A1A1A);
    padding: 5px 12px;
    transition: all 0.3s ease-in-out;
}
.hometags:hover {
    background: #FFF;
    color: #000;
}
.single-img img {
    max-width: 100%;
}
.single-img {
    margin: 60px 15px 0 15px;
}
.multi-img img:nth-child(1) {
    margin-bottom: 30px;
}
/*-----------------------[ 6.Section Two CSS ]------------------------*/
.section-two {
    padding: 60px 0;
    overflow: hidden;
}
.sec-heding {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    line-height: 72px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}
.sec-heding span {
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 72px;
    background-size: 500% auto;
    animation: gradientMove 6s ease-in-out infinite alternate;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    display: inline;
}
.sub-heding {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    max-width: 850px;
    margin: 0 auto;
    padding-top: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.home-features-row {
    gap: 30px 0;
    margin-top: 60px;
}
.round-gradient1 {
    position: absolute;
    max-width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    mix-blend-mode: hard-light;
}
.round-gradient2 {
    position: absolute;
    max-width: 100%;
    right: 0;
    top: 0;
    z-index: -1;
    mix-blend-mode: hard-light;
}
.features-cir-main {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}
.features-cir {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    background: linear-gradient(146deg, rgba(255, 255, 255, 0.10) 20.09%, rgba(255, 255, 255, 0.05) 79.91%);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.img-bg-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    mix-blend-mode: hard-light;
    position: absolute;
    z-index: 0;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
    animation: circularMotion 3s linear infinite;
    filter: blur(10px);
}
@keyframes circularMotion {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) translateX(15px) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) rotate(90deg) translateX(15px) rotate(-90deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) translateX(15px) rotate(-180deg);
    }
    75% {
        transform: translate(-50%, -50%) rotate(270deg) translateX(15px) rotate(-270deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) translateX(15px) rotate(-360deg);
    }
}
.gendseratio {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
}
.eugiat {
    color: var(--12, #6F6F6F);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding-top: 10px;
}
/*-----------------------[ 7.Section Three CSS ]------------------------*/
.section-three {
    padding: 60px 0;
    position: relative;
    overflow: visible;
}
.main-sponsor-section {
    text-align: center;
    margin-top: 5px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.main-sponsor-label {
    color: #FFF;
    font-size: 21.6px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}
.main-sponsor-logo {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    max-width: 400px;
    width: 100%;
}
.main-sponsor-logo:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
.main-sponsor-logo img {
    width: 100%;
    height: auto;
    display: block;
}
.ering {
    color: #FFF;
    font-size: 48px;
    font-weight: 400;
    line-height: 72px;
    text-align: center;
    transition: color 0.5s ease-in-out;
}
.community-btn-main {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 40px 0;
}
.glob {
    font-weight: 500;
}
/*-----------------------[ 8.Brand Marquee Section CSS ]------------------------*/
.logos {
    overflow: hidden !important;
    white-space: nowrap;
    position: relative;
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
}
.logos-slide {
    display: flex;
    width: auto;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    overflow: visible;
    box-sizing: border-box;
}
.sldkjf .logos {
    overflow: hidden;
    position: relative;
    width: 100%;
    justify-content: center;
}
.sldkjf .marquee__content {
    display: flex;
    align-items: center;
    opacity: 1;
    visibility: visible;
    justify-content: flex-start;
}
.logos1 {
    margin-top: 30px;
}
.ltr {
    animation: slide-ltr 50s linear infinite;
}
@keyframes slide-ltr {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.sldkjf .ltr {
    animation: slide-ltr-sldkjf 40s linear infinite;
}
@keyframes slide-ltr-sldkjf {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.rtl {
    animation: slide-rtl 50s linear infinite;
}
@keyframes slide-rtl {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}
.marquee__content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 30px;
    padding-left: 0;
    padding-right: 0;
    gap: 60px !important;
    flex-wrap: nowrap;
    width: auto;
    box-sizing: border-box;
    margin: 0;
    overflow: visible;
}
.sldkjf .marquee__content {
    display: flex;
    align-items: center;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
    min-width: 200%;
    gap: 0 !important;
    padding-left: 0;
    padding-right: 0;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
}
.sldkjf .vis-tex {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
    flex-shrink: 0;
}
.marquee-img-main {
    background: #1A1A1A;
    border-radius: 40px;
    cursor: pointer;
    min-height: 80px;
    height: auto;
    width: auto;
    min-width: 200px;
    max-width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 25px;
    text-align: center;
    margin-left: 100px !important;
    margin-right: 100px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    box-sizing: border-box;
    position: relative;
    isolation: isolate;
    overflow: hidden;
}
.marquee-img-main img {
    max-height: 48px;
    width: auto;
}
.sponsor-logo {
    max-height: 60px !important;
    max-width: 200px !important;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
    display: block;
    box-sizing: border-box;
}
.marquee-img-main:hover .sponsor-logo {
    opacity: 1;
    filter: grayscale(100%) brightness(1.1);
}
.sponsor-logo-white {
    filter: brightness(0) invert(1) !important;
}
.marquee-img-main:hover .sponsor-logo-white {
    opacity: 1;
    filter: brightness(0) invert(1) !important;
}
.brand-ministry {
    display: block;
    text-align: center;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
    padding: 4px 0;
    box-sizing: border-box;
}
/*-----------------------[ 9.Section Four CSS ]------------------------*/
.section-four {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.sugg-box {
    display: flex;
    gap: 80px;
    margin-top: 40px;
    margin-left: 12px;
    margin-right: 12px;
}
.sugg-box + .sugg-box {
    margin-top: 60px;
}
.setpSugg {
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    padding-bottom: 20px;
    background-size: 500% auto;
    animation: gradientMove 6s ease-in-out infinite alternate;
}
.flex-pri {
    text-align: left;
    max-width: 700px;
}
.tryImage-btn-main {
    margin-top: 60px;
}
.blue-gardient3 {
    position: absolute;
    top: -87px;
    left: 0;
    max-width: 100%;
    z-index: -1;
}
.blue-gardient4 {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 100%;
    z-index: -1;
    opacity: 0.6;
}
/*-----------------------[ 10.Section Five CSS ]------------------------*/
.section-five {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.sldkjf {
    background-repeat: no-repeat;
    background-position: center;
    background: linear-gradient(90deg, #000000 10%, rgba(26, 26, 26, 0.70) 49.5%, #000000 90%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.sldkjf::before,
.sldkjf::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, #000000 10%, #FFF 49.5%, #000000 90%);
    opacity: 0.5;
    animation: pulseGlow 2.5s ease-in-out infinite;
}
.sldkjf::before {
    top: 0;
}
.sldkjf::after {
    bottom: 0;
}
@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
    100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
}
.vis-tex {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
    opacity: 1;
    visibility: visible;
    gap: 40px;
    padding: 0 20px;
}
.vis-tex img {
    margin: 0;
    flex-shrink: 0;
    opacity: 1;
    visibility: visible;
    width: auto;
    height: auto;
    max-width: 60px;
    max-height: 60px;
    display: block;
}
.vis-tex h2 {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    line-height: 100px;
    white-space: nowrap;
    flex-shrink: 0;
    display: block;
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding: 0;
}
.vis-tex2 h2 {
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #5C33FF;
    display: block;
    opacity: 1;
    visibility: visible;
}
.vis-tex3 h2 {
    text-align: center;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #FFF;
    will-change: transform;
    color: transparent;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    display: block;
    opacity: 1;
    visibility: visible;
}
/*-----------------------[ 11.Section Six CSS ]------------------------*/
.section-six {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.marketingRow {
    margin-top: 40px;
    margin-bottom: 30px;
}
.dui {
    color: var(--12, #6F6F6F);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}
.quis-head {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}
.quis-main {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    box-shadow: inset 0 6px 14px rgba(0, 0, 0, 0.45);
}
.quis {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(105, 151, 255, 0.55), rgba(9, 14, 25, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.35);
}
.quis img {
    width: 26px;
}
.quis-bg-cir {
    display: none;
}
.quis-text-list {
    color: var(--1, #FFF);
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.home-sec-one-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}
.video-container {
    position: relative;
    overflow: visible;
}
#video-container {
    margin-top: 40px;
}
.blue-gardient5 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    max-width: 100%;
    opacity: 0.6;
}
.blue-gardient6 {
    position: absolute;
    bottom: 100px;
    right: -260px;
    z-index: -1;
}
.text-circle-main {
    position: relative;
    z-index: 1;
    width: 250px;
    height: 250px;
    margin: -120px auto;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text-circle {
    animation: rotation infinite 30s linear;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.bg-down-arrow {
    position: absolute;
}
.panda {
    border-radius: 50%;
    max-width: 100%;
}
/*-----------------------[ 12.Why Choose Us: CSS ]------------------------*/
.whyChoose {
    text-align: start;
    max-width: 560px;
    padding-bottom: 20px;
}
.whyChooseSec {
    padding-top: 80px;
}
.excellent {
    display: flex;
    align-items: center;
}
.exce-box {
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(101deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.10) 100%);
    backdrop-filter: blur(2px);
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.exce-box-ciecl {
    width: 550px;
    height: 200px;
    border-radius: 550px;
    opacity: 0.5;
    filter: blur(100px);
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translate(-50%);
    z-index: -1;
}
#exce-box1 {
    background: #00FFB1;
}
#exce-box2 {
    background: #FFA361;
}
#exce-box3 {
    background: #E10FCC;
}
.excellent p {
    color: var(--1, #FFF);
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.rnaip {
    color: var(--1, #FFF);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    padding-top: 15px;
}
/*-----------------------[ 13.Section Seven CSS ]------------------------*/
.section-seven {
    padding: 60px 0;
}
.people-sa {
    max-width: 650px;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.sayAboutSlider {
    margin-top: 40px;
}
.slide-box {
    text-align: center;
}
.beco {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    max-width: 1070px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 40px;
}
.hoea {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.mave {
    color: var(--12, #6F6F6F);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.single-slick-arrow {
    width: 70px;
    height: 70px;
    border: 2px solid #FFF;
    background: transparent;
    border-radius: 50%;
}
.single-slick-arrow.slick-prev {
    position: absolute;
    top: 110px;
    left: 0;
    z-index: 10;
}
.single-slick-arrow.slick-next {
    position: absolute;
    top: 110px;
    right: 0;
    z-index: 10;
}
.slider-gardient-blue {
    position: absolute;
    left: 100px;
    top: -80px;
    max-width: 500px;
    z-index: -1;
}
.slider-gardient-blue2 {
    position: absolute;
    right: 0;
    top: 40px;
    z-index: -1;
}
.client-img1 {
    position: absolute;
    top: 50px;
    left: 280px;
    border-radius: 50%;
    animation: mover 4s infinite alternate;
}
.client-img2 {
    position: absolute;
    top: 250px;
    left: 30px;
    border-radius: 50%;
    animation: mover 3s infinite alternate;
}
.client-img3 {
    position: absolute;
    bottom: -10px;
    left: 110px;
    border-radius: 50%;
    animation: mover 2s infinite alternate;
}
.client-img4 {
    position: absolute;
    top: 50px;
    right: 280px;
    border-radius: 50%;
    animation: mover 4s infinite alternate;
}
.client-img5 {
    position: absolute;
    top: 250px;
    right: 30px;
    border-radius: 50%;
    animation: mover 3s infinite alternate;
}
.client-img6 {
    position: absolute;
    bottom: -10px;
    right: 110px;
    border-radius: 50%;
    animation: mover 2s infinite alternate;
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}
.curve-svg {
    width: 100%;
    margin-top: 100px;
    animation: pulseGlow 2.5s ease-in-out infinite;
}
/*-----------------------[ 14.Pricing Page CSS ]------------------------*/
.section-eight {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.tabs-btn {
    display: none;
}
.tabs-btn a {
    display: inline-block;
    border-radius: 10px;
    background: var(--11, #1A1A1A);
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    max-width: 132px;
    width: 100%;
    padding: 18px 0;
    text-align: center;
}
.monthly {
    border-radius: 30px 0 0 30px;
}
.yearly {
    border-radius: 0 30px 30px 0;
}
.tabContainer {
    width: 100%;
    position: relative;
}
.Tabcondent {
    position: relative;
    opacity: 1;
    transition: opacity 0.3s ease-in-out, transform 0.6s ease-in-out;
    transform: translateY(0);
}
.tabs-btn a.active {
    border-radius: 10px;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    color: #FFFFFF;
}
.Tabcondent.active {
    width: 100%;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 1;
}
.plan-header {
    border-radius: 30px;
    background: linear-gradient(101deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.10) 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
    filter: blur();
}
.plain-greiesd-bg {
    width: 384px;
    height: 200px;
    border-radius: 384px;
    filter: blur(100px);
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translate(-50%);
    z-index: -1;
}
#price1 {
    background: #00FFB1;
}
#price2 {
    background: #FFA361;
}
#price3 {
    background: #E10FCC;
}
#price4 {
    background: #1BFEFD;
}
#price5 {
    background: #88E64A;
}
#price6 {
    background: #5C33FF;
}
.plan-body {
    border-radius: 30px;
    background: var(--11, #1A1A1A);
    position: relative;
}
.plan-text {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    text-align: center;
    text-transform: none;
    padding-bottom: 10px;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.plan-price {
    display: none;
}
.plan-price sub {
    display: none;
}
.basicLevelPro {
    display: none;
}
.firma-logo-placeholder {
    min-height: 120px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}
.firma-logo-placeholder p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}
.firma-logo-placeholder img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}
.panel-subtitle {
    margin-top: 20px;
    margin-bottom: 30px;
}
.panel-stats-row {
    margin-bottom: 60px;
}
.panel-stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}
.panel-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}
.panel-stat-card h3 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 48px;
    margin-top: 0;
}
.panel-stat-card.stat-card-1 h3 {
    color: #00FFB1;
}
.panel-stat-card.stat-card-2 h3 {
    color: #5C33FF;
}
.panel-stat-card.stat-card-3 h3 {
    color: #FFA361;
}
.panel-stat-card p {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}
.panel-stat-card.stat-card-3 p {
    font-size: 13px;
    line-height: 1.3;
}
.panel-item {
    padding: 35px 25px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.panel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.panel-item:hover::before {
    opacity: 1;
}
.panel-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.12), 0 4px 12px rgba(0, 102, 255, 0.08);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
}
.panel-icon-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    min-height: 80px;
}
.panel-icon {
    width: 64px;
    height: 64px;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.85;
    transition: all 0.4s ease;
}
.panel-item:hover .panel-icon {
    opacity: 1;
    transform: scale(1.1) rotate(3deg);
    filter: grayscale(0%) brightness(0) invert(1);
}
.panel-item h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    transition: color 0.3s ease;
}
.panel-item:hover h3 {
    color: #FFFFFF;
}
@media (max-width: 991px) {
    .panel-stats-row {
        margin-bottom: 40px;
    }
    .panel-stat-card {
        padding: 25px;
    }
    .panel-stat-card h3 {
        font-size: 40px;
    }
    .panel-stat-card p {
        font-size: 16px;
    }
    .panel-stat-card.stat-card-3 p {
        font-size: 12px;
        line-height: 1.3;
    }
    .panel-item {
        padding: 30px 22px;
    }
    .panel-icon-wrapper {
        min-height: 70px;
        margin-bottom: 18px;
    }
    .panel-icon {
        width: 56px;
        height: 56px;
    }
    .panel-item h3 {
        font-size: 17px;
        line-height: 1.5;
    }
}
@media (max-width: 768px) {
    .panel-subtitle {
        margin-top: 15px;
        margin-bottom: 25px;
    }
    .panel-stats-row {
        margin-bottom: 30px;
    }
    .panel-stat-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    .panel-stat-card h3 {
        font-size: 36px;
    }
    .panel-stat-card p {
        font-size: 14px;
    }
    .panel-stat-card.stat-card-3 p {
        font-size: 11px;
        line-height: 1.3;
    }
    .panel-item {
        padding: 28px 18px;
        margin-bottom: 22px;
    }
    .panel-icon-wrapper {
        min-height: 65px;
        margin-bottom: 16px;
    }
    .panel-icon {
        width: 48px;
        height: 48px;
    }
    .panel-item h3 {
        font-size: 15px;
        line-height: 1.45;
    }
}
/*-----------------------[ Program Akışı CSS ]------------------------*/
.program-akis-section {
    margin-top: 80px;
    margin-bottom: 60px;
    position: relative;
    background: radial-gradient(ellipse at top, rgba(92, 51, 255, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at bottom, rgba(0, 255, 177, 0.1) 0%, transparent 50%);
    padding: 40px 0;
    border-radius: 30px;
}
.program-akis-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 50%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 255, 177, 0.3);
    position: relative;
}
.program-akis-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    border-radius: 2px;
}
.program-akis-timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}
.program-akis-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #FF0000 0%, #0066FF 50%, #00FFB1 100%);
    transform: translateX(-50%);
    opacity: 0.6;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}
.program-time-block {
    margin-bottom: 50px;
    position: relative;
    animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.program-time-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.program-time-badge {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.35) 0%, rgba(0, 102, 255, 0.35) 50%, rgba(0, 255, 177, 0.35) 100%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 12px 30px;
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 102, 255, 0.4), 0 0 35px rgba(255, 0, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.program-time-badge::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(90deg, #FF0000, #0066FF, #00FFB1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.program-time-badge:hover::before {
    opacity: 1;
}
.program-time-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 102, 255, 0.5), 0 0 40px rgba(255, 0, 0, 0.3);
}
.program-sessions-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}
.program-session-card {
    flex: 1;
    background: linear-gradient(135deg, rgba(92, 51, 255, 0.15) 0%, rgba(0, 102, 255, 0.15) 50%, rgba(0, 255, 177, 0.15) 100%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(92, 51, 255, 0.2), inset 0 0 40px rgba(0, 255, 177, 0.1);
}
.program-session-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 50%, #00FFB1 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 255, 177, 0.5);
}
.program-session-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 177, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.program-session-card:hover::before {
    opacity: 1;
}
.program-session-card:hover::after {
    opacity: 1;
}
.program-session-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 177, 0.6);
    box-shadow: 0 15px 45px rgba(255, 0, 0, 0.3), 0 8px 20px rgba(0, 102, 255, 0.25), 0 0 50px rgba(0, 255, 177, 0.2);
    background: linear-gradient(135deg, rgba(92, 51, 255, 0.25) 0%, rgba(0, 102, 255, 0.25) 50%, rgba(0, 255, 177, 0.25) 100%);
}
.program-special-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 30px !important;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(0, 102, 255, 0.2) 50%, rgba(0, 255, 177, 0.2) 100%) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}
.program-kokteyl-card {
    background: linear-gradient(135deg, rgba(92, 51, 255, 0.3) 0%, rgba(0, 255, 177, 0.3) 100%) !important;
    border: 2px solid rgba(0, 255, 177, 0.4) !important;
}
.program-lansman-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.25) 0%, rgba(0, 102, 255, 0.25) 100%) !important;
    border: 2px solid rgba(0, 102, 255, 0.4) !important;
}
.program-acilis-card {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.25) 0%, rgba(0, 102, 255, 0.25) 100%) !important;
    border: 2px solid rgba(255, 0, 0, 0.4) !important;
}
.program-special-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}
.program-special-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 15px rgba(0, 255, 177, 0.6));
    transition: all 0.3s ease;
}
.program-special-card:hover .program-special-icon svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 25px rgba(0, 255, 177, 0.9));
}
.program-special-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 15px;
    line-height: 1.6;
    max-width: 600px;
    font-weight: 400;
}
.program-special-card .program-session-title {
    font-size: 24px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 50%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.program-session-salon {
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(90deg, #00FFB1 0%, #5C33FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(0, 255, 177, 0.5);
}
.program-session-title {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}
.program-session-card:hover .program-session-title {
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
.program-session-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
    line-height: 1.5;
    font-style: italic;
    transition: color 0.3s ease;
}
.program-session-card:hover .program-session-subtitle {
    color: rgba(255, 255, 255, 0.95);
}
.program-break-card {
    background: linear-gradient(135deg, rgba(92, 51, 255, 0.35) 0%, rgba(0, 255, 177, 0.35) 100%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(92, 51, 255, 0.3), inset 0 0 40px rgba(0, 255, 177, 0.15);
}
.program-break-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 177, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.program-break-text {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}
.program-single-session {
    max-width: 800px;
    margin: 0 auto 30px;
}
@media (max-width: 991px) {
    .program-akis-timeline::before {
        display: none;
    }
    .program-sessions-row {
        flex-direction: column;
        gap: 20px;
    }
    .program-akis-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    .program-time-badge {
        font-size: 18px;
        padding: 10px 25px;
    }
    .program-session-card {
        padding: 25px 20px;
    }
    .program-session-title {
        font-size: 17px;
    }
}
@media (max-width: 768px) {
    .program-akis-section {
        margin-top: 60px;
        margin-bottom: 40px;
        padding: 30px 0;
    }
    .program-akis-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    .program-akis-title::after {
        width: 60px;
    }
    .program-time-badge {
        font-size: 16px;
        padding: 8px 20px;
    }
    .program-session-card {
        padding: 20px 18px;
    }
    .program-session-title {
        font-size: 16px;
    }
    .program-session-subtitle {
        font-size: 13px;
    }
    .program-break-text {
        font-size: 16px;
    }
    .program-break-card {
        padding: 20px;
    }
    .program-special-card {
        min-height: 180px;
        padding: 30px 20px !important;
    }
    .program-special-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .program-special-card .program-session-title {
        font-size: 20px;
    }
    .program-special-description {
        font-size: 14px;
    }
}
.sektor-content-row {
    margin-top: 60px;
}
.sektor-section-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: transform 0.3s ease, background 0.3s ease;
}
.sektor-section-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}
.sektor-section-title {
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00FFB1;
}
.sektor-section-text {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px;
}
.sektor-section-text:last-child {
    margin-bottom: 0;
}
.sektor-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sektor-services-list li {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}
.sektor-services-list li:last-child {
    margin-bottom: 0;
}
.sektor-services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00FFB1;
    font-weight: 700;
    font-size: 20px;
}
@media (max-width: 991px) {
    .sektor-section-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    .sektor-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .sektor-section-text {
        font-size: 15px;
    }
    .sektor-services-list li {
        font-size: 15px;
    }
}
@media (max-width: 768px) {
    .sektor-section-card {
        padding: 25px;
        margin-bottom: 20px;
    }
    .sektor-section-title {
        font-size: 22px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    .sektor-section-text {
        font-size: 14px;
        margin-bottom: 15px;
    }
    .sektor-services-list li {
        font-size: 14px;
        margin-bottom: 12px;
        padding-left: 25px;
    }
}
.plan-body ul {
    padding: 30px 30px 0 30px;
}
.plan-body ul li {
    color: var(--12, #6F6F6F);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}
.plan-body ul li:before {
    content: url('../images/svg/check.svg');
    width: 100%;
    max-width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(146deg, rgba(255, 255, 255, 0.10) 20.09%, rgba(255, 255, 255, 0.05) 79.91%);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 5;
}
.plan-body ul li::after {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    mix-blend-mode: hard-light;
    position: absolute;
    left: 7px;
    bottom: 10px;
    z-index: 0;
    filter: blur(5px);
}
.pricing-btn {
    padding: 10px 30px 30px 30px;
}
.pricing-btn a {
    width: 100%;
}
/*-----------------------[ 15.Section Eight CSS ]------------------------*/
.quest {
    text-align: left;
    max-width: 520px;
}
.seci {
    color: #FFF;
    padding-top: 10px;
}
.section-nine {
    padding: 60px 0;
}
.accordion {
    --bs-accordion-bg: transparent;
    border: none;
}
.accordion-item {
    border: none;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow: none;
    border-bottom: none;
    padding-bottom: 20px;
}
.asd button {
    padding: 30px 0;
    color: var(--12, #6F6F6F);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    border-bottom: 2px solid #1A1A1A;
}
.faq .accordion-body {
    padding: 0 0 30px 0;
    border-bottom: 2px solid #1A1A1A;
    color: var(--12, #6F6F6F);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.accordion-button::after {
    background-image: url('../images/svg/accor-close.svg');
    --bs-accordion-btn-icon-width: 2rem;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('../images/svg/accor-open.svg');
}
/*-----------------------[ 16.Section Subscribe CSS ]------------------------*/
.section-subscribe {
    padding: 60px 0;
    position: relative;
    overflow: visible;
}
.blurek {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    max-width: 100%;
    opacity: 0.6;
}
.blurek2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    max-width: 100%;
    opacity: 0.6;
}
.cretive-box {
    background-image: url('../images/home-page/Pattern.png');
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 30px;
    background-color: rgb(217 217 217 / 10%);
    backdrop-filter: blur(15px);
    padding: 100px 0;
    overflow: hidden;
}
.robot {
    position: absolute;
    top: -50px;
    right: 70px;
    z-index: 1;
    border-radius: 50%;
    animation: mover 2s infinite alternate;
}
.home-sec-two-video2 {
    width: 300px;
    height: 100px;
    object-fit: cover;
    border-radius: 50px;
    position: absolute;
    bottom: -50px;
    left: 50px;
    z-index: 1;
}
.subs-sec {
    background-image: url('../images/svg/sub-curve.svg');
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    margin-bottom: 100px;
    padding-bottom: 70px;
    padding-top: 40px;
}
.sub-scjsd-inp-main {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0 30px 0;
}
.sub-scjsd-inp-main input {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    width: 100%;
    background: transparent;
    outline: none;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 2px solid #1A1A1A;
    height: 50px;
}
.sub-scjsd-inp-main input::placeholder {
    color: var(--12, #6F6F6F);
}
.subscribeBtn {
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
}
.footer-checkbox-input+.footer-chec-txt {
    position: relative;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-checkbox-input {
    position: absolute;
    opacity: 0;
}
.footer-chec-txt {
    color: var(--12, #6F6F6F);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer-chec-txt a {
    color: var(--1, #FFF);
    font-weight: 500;
}
.footer-checkbox-input:checked+.footer-chec-txt:before {
    background: #000000;
    border: 2px solid #6F6F6F;
}
.footer-checkbox-input+.footer-chec-txt:before {
    content: "";
    display: inline-block;
    vertical-align: text-top;
    width: 18px;
    height: 18px;
    border: 2px solid #6F6F6F;
    border-radius: 5px;
}
.footer-checkbox-input:checked+.footer-chec-txt:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    background: #FFF;
    width: 2px;
    height: 2px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
}
.faasd {
    display: flex;
    align-items: end;
    justify-content: flex-end;
    position: relative;
}
.fantasy1 {
    max-width: 100%;
    border-radius: 30px;
}
.fantasy2 {
    position: absolute;
    bottom: 40px;
    left: -50px;
    border-radius: 50%;
    animation: mover 2s infinite alternate;
}
/*-----------------------[ 17.Section Blog CSS ]------------------------*/
.section-blog {
    padding: 60px 0;
    position: relative;
    overflow: visible;
}
/* Blog Page Header Styles */
.blog-page-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding: 40px 0;
}
.blog-page-title {
    color: #FFF;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    display: block;
}
.blog-page-subtitle {
    color: #FFF;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 1px;
    position: relative;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}
.blog-page-subtitle span {
    color: #B19CD9;
    font-weight: 400;
    display: inline-block;
    text-shadow: 
        0 0 8px rgba(177, 156, 217, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.4);
    position: relative;
}
@media (max-width: 991px) {
    .blog-page-header {
        margin-bottom: 50px;
        padding: 30px 0;
    }
    .blog-page-title {
        font-size: 48px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    .blog-page-title::before,
    .blog-page-title::after {
        width: 15px;
        left: -20px;
        right: -20px;
    }
    .blog-page-subtitle {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .blog-page-header {
        margin-bottom: 40px;
        padding: 20px 0;
    }
    .blog-page-title {
        font-size: 36px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    .blog-page-title::before,
    .blog-page-title::after {
        display: none;
    }
    .blog-page-subtitle {
        font-size: 24px;
        padding: 0 10px;
    }
}
.blog-img {
    max-width: 100%;
    border-radius: 30px;
}
.blog-box-col:hover .blog-img {
    filter: blur(1px);
}
.blog-img-box {
    position: relative;
}
.date-blog {
    padding: 12px 15px;
    background: var(--3, #5C33FF);
    color: var(--1, #FFF);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    position: absolute;
    bottom: -22px;
    left: 30px;
    transition: bottom 0.3s ease;
}
.blog-box-col:hover .date-blog {
    left: 0;
    bottom: 0px;
    width: 100%;
    border-radius: 0 0 30px 30px;
    text-align: center;
}
.eque {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--1, #FFF);
    font-size: 23px;
    font-weight: 500;
    line-height: 32px;
    margin: 50px 0 15px 0;
    transition: all 0.3s ease;
}
.blog-box-col:hover .eque {
    color: #5C33FF;
}
.ilisis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: var(--12, #6F6F6F);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.blog-box-col:hover .ilisis {
    color: #FFF;
}
.home-blog-row {
    margin-top: 40px;
}
.blog-page-row {
    gap: 30px 0;
}
.blog-page-row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}
.blog-gardient {
    position: absolute;
    top: 0;
    z-index: -1;
    max-width: 100%;
    opacity: 0.6;
}
/*-----------------------[ Contact & FAQ Page Background Images CSS ]------------------------*/
.blue-gardient8sa {
    position: absolute;
    top: -100px;
    left: -150px;
    z-index: -1;
    max-width: 600px;
    opacity: 0.5;
    pointer-events: none;
    transform: none;
}
.blue-gardient9sa {
    position: absolute;
    top: -100px;
    right: -150px;
    z-index: -1;
    max-width: 600px;
    opacity: 0.5;
    pointer-events: none;
    transform: none;
}
.askjm-sa {
    position: absolute;
    bottom: -100px;
    right: -100px;
    z-index: -1;
    max-width: 500px;
    opacity: 0.4;
    pointer-events: none;
    transform: none;
}
.faq-pag-sec {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}
.faq-pag-sec .container {
    position: relative;
    z-index: 1;
    padding-top: 40px;
}
.section-blog.position-relative {
    overflow: visible;
    min-height: 100vh;
}
/*-----------------------[ Section Participants CSS ]------------------------*/
.section-participants {
    padding: 80px 0;
    position: relative;
    overflow: visible;
}
.participants-row {
    margin-top: 50px;
    gap: 30px 0;
}
.participant-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.participant-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 0, 0, 0.3);
}
.participant-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.participant-icon-img {
    width: 48px;
    height: 48px;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}
.participant-card:hover .participant-icon-img {
    opacity: 1;
    transform: scale(1.1);
}
.participant-card h4 {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}
/*-----------------------[ Section Goals CSS ]------------------------*/
.section-goals {
    padding: 80px 0;
    position: relative;
    overflow: visible;
}
.goals-row {
    margin-top: 50px;
    gap: 30px 0;
}
.goal-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    transition: transform 0.3s ease, background 0.3s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.goal-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.3);
}
.goal-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    flex-shrink: 0;
    min-width: 60px;
}
.goal-content h3 {
    color: #FFF;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}
.section-blog.position-relative .container {
    position: relative;
    z-index: 1;
    padding-top: 40px;
}
.faq-img {
    max-width: 100%;
    border-radius: 20px;
    margin-top: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.shoot-fanta {
    max-width: 100%;
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.numb-con {
    color: #00FFB1;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}
.numb-con:hover {
    color: #5C33FF;
    text-decoration: underline;
}
.from-main {
    background: rgba(26, 26, 26, 0.6);
    border-radius: 30px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.form-row {
    margin-top: 60px;
}
/*-----------------------[ 18.Footer CSS ]------------------------*/
.footer-main {
    position: relative;
    overflow: hidden;
}
.footer-main::before {
    content: '';
    height: 4px;
    width: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(to right,
            #00C2FF 0%,
            #E10FCC 29.9354%,
            #5C33FF 52.5946%,
            #00C2FF 77.4929%,
            #00FFB1 100%);
    animation: gradient-scroll 5s linear infinite;
    background-size: 200% 100%;
}
@keyframes gradient-scroll {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.advice {
    text-align: left;
    font-size: 28px;
    line-height: 36px;
    max-width: 500px;
}
.dsos {
    max-width: 500px;
}
.ref-demo {
    margin-top: 25px;
}
.footer-logo {
    position: absolute;
    left: 0;
    top: 4px;
    z-index: -1;
    max-width: 100%;
}
.box-footer {
    border-radius: 20px;
    background: var(--11, #1A1A1A);
    padding: 15px;
    width: 100%;
}
.resour {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin-bottom: 15px;
}
.foot-links li a {
    color: var(--12, #6F6F6F);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.foot-links li a:hover {
    color: #FFF;
}
.foot-links li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}
.foot-links li::before {
    content: url(../images/svg/check.svg);
    width: 100%;
    max-width: 36px;
    height: 36px;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    z-index: 5;
    border-radius: 50%;
    background: linear-gradient(146deg, rgba(255, 255, 255, 0.1) 20.09%, rgba(255, 255, 255, 0.05) 79.91%);
}
.foot-links li::after {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    mix-blend-mode: hard-light;
    position: absolute;
    left: 7px;
    bottom: 10px;
    z-index: 0;
    filter: blur(5px);
}
.footer-col-fir,
.footer-col-sec {
    padding: 50px 12px;
}
.footer-col-fir {
    position: relative;
    overflow: hidden;
}
.footer-col-fir::after {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 80px;
    background: #1A1A1A;
    z-index: -1;
}
.djks {
    position: absolute;
    right: 80px;
    animation: moveTopToBottom 8s infinite linear alternate;
}
@keyframes moveTopToBottom {
    0% {
        transform: translateY(-70px);
    }
    100% {
        transform: translateY(310px);
    }
}
.footer-col-sec {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    position: relative;
}
.coprights-main {
    padding: 20px 0;
    border-top: 2px solid #1A1A1A;
    position: relative;
}
.das {
    position: absolute;
    top: -2px;
    animation: moveLeftToRight 10s infinite linear alternate;
    width: 100%;
}
@keyframes moveLeftToRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
.rights-reserved {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.rights-reserved img {
    max-width: 200px !important;
    height: auto !important;
    flex-shrink: 0;
}
.rights-reserved h2 {
    color: var(--12, #6F6F6F);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.rights-reserved a {
    color: var(--1, #FFF);
    font-weight: 500;
}
.footer-media {
    display: flex;
    align-items: center;
    gap: 25px;
}
.footer-media a {
    color: var(--12, #6F6F6F);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-media a:hover {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7485%) hue-rotate(322deg) brightness(101%) contrast(100%)
}
.footer-gefdo {
    position: absolute;
    bottom: 0;
    right: -280px;
    z-index: -1;
    width: 100%;
    max-width: 420px;
}
/*-----------------------[ 19.Form CSS ]------------------------*/
.modal-dialog {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 840px;
}
.modal-dialog-form {
    max-width: 900px;
}
.modal-content {
    background: rgba(2, 0, 11, 0.95);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
}
.modal-backdrop {
    background-color: rgba(2, 0, 11, 0.8);
}
.form-close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(3%) hue-rotate(144deg) brightness(102%) contrast(102%);
}
.btn-close:focus {
    box-shadow: none;
    z-index: 100;
}
.form-modal-body {
    padding: 20px 15px 25px 15px;
    max-height: 85vh;
    overflow-y: visible;
    overflow-x: hidden;
}
.container-demo {
    position: relative;
    width: 800px;
    min-height: 500px;
    max-height: 85vh;
    overflow: visible;
}
.container-demo .user {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
}
.container-demo .user .imgBx {
    position: relative;
    width: 50%;
    min-height: 100%;
    transition: 0.5s;
    display: flex;
    align-items: center;
}
.container-demo .user .imgBx img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.container-demo .user .formBx {
    position: relative;
    width: 50%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    transition: 0.5s;
    overflow-y: visible;
    overflow-x: hidden;
}
.container-demo .user .formBx form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.container-demo .user .formBx form h2 {
    color: #FFF;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: none;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}
.container-demo .user .formBx form input,
.container-demo .user .formBx form textarea {
    position: relative;
    width: 100%;
    padding: 10px 15px;
    background: #f5f5f5;
    color: #333;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 6px 0;
    font-size: 15px;
    font-weight: 400;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.container-demo .user .formBx form input:focus,
.container-demo .user .formBx form textarea:focus {
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(92, 51, 255, 0.3);
    border: 1px solid rgba(92, 51, 255, 0.5);
}
.container-demo .user .formBx form input::placeholder,
.container-demo .user .formBx form textarea::placeholder {
    color: #999;
    opacity: 1;
}
.container-demo .user .formBx form textarea {
    resize: none;
    min-height: 80px;
    max-height: 80px;
    font-family: inherit;
    line-height: 1.4;
    overflow-y: hidden;
}
.container-demo .user .formBx form .button.subscribeBtn {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
}
.container-demo .user .formBx form .button.subscribeBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 51, 255, 0.3);
}
.container-demo .user .formBx form .signup {
    position: relative;
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #6F6F6F;
    text-transform: none;
    font-weight: 400;
    text-align: center;
    line-height: 1.4;
}
.container-demo .user .formBx form .signup.mb-3 {
    margin-bottom: 12px;
}
.container-demo .user .formBx form .signup a {
    font-weight: 600;
    text-decoration: none;
    color: #FFF;
}
.container-demo .signupBx {
    pointer-events: none;
}
.container-demo.active .signupBx {
    pointer-events: initial;
}
.container-demo .signupBx .formBx {
    left: 100%;
}
.container-demo.active .signupBx .formBx {
    left: 0;
}
.container-demo .signupBx .imgBx {
    left: -100%;
}
.container-demo.active .signupBx .imgBx {
    left: 0%;
}
.container-demo .signinBx .formBx {
    left: 0%;
}
.container-demo.active .signinBx .formBx {
    left: 100%;
}
.container-demo .signinBx .imgBx {
    left: 0%;
}
.container-demo.active .signinBx .imgBx {
    left: -100%;
}
/*-----------------------[ 20.Bottom top button CSS ]------------------------*/
button.bottom-top-button {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
    color: #FFF;
    font-size: 30px;
    transform: translateY(0%);
    transition: ease-out 200ms;
    background: linear-gradient(90deg, #5C33FF 0%, #00FFB1 100%);
    padding: 0;
    border-radius: 50%;
}
/*-----------------------[ 21.Blog Detail Page CSS ]------------------------*/
.blog-main-date {
    color: var(--12, #6F6F6F);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    padding-top: 12px;
}
.blog-singl-img {
    margin: 60px 0;
    max-width: 100%;
}
.signgle-blog-row {
    justify-content: center;
}
.sodales {
    color: #6F6F6F;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    padding-bottom: 10px;
}
.cott-main {
    background: var(--5, #171B22);
    padding: 25px;
    margin: 22px auto;
    border-left: 5px solid #5C33FF;
}
.cott-main p {
    color: var(--1, #FFF);
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: 36px;
    padding-top: 20px;
}
.wildlife-img-group-sub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}
.wildlife-img-group img {
    max-width: 100%;
}
.blog-singl-img4 {
    margin-bottom: 22px;
}
.liqua {
    color: var(--1, #FFF);
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    padding-top: 40px;
}
.blog-singl-img {
    margin: 25px 0;
    max-width: 100%;
}
.approach {
    color: var(--1, #FFF);
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    margin: 30px auto 15px auto;
}
.Singleblog-media {
    margin-top: 30px;
    justify-content: center;
}
.Singleblog-media a {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(1577%) hue-rotate(136deg) brightness(109%) contrast(100%);
}
.Singleblog-media a:hover {
    filter: brightness(0) saturate(100%) invert(27%) sepia(87%) saturate(6826%) hue-rotate(252deg) brightness(101%) contrast(101%);
}
.diamond-nextbtn-head {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid rgba(168, 169, 173, 0.2);
    border-bottom: 2px solid rgba(168, 169, 173, 0.2);
    margin-top: 30px;
}
.diamond-next-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    cursor: pointer;
}
.diamond-next-btn h3 {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}
.leave-input {
    display: flex;
    align-items: center;
    gap: 30px;
}
.form-siglblog {
    background-image: url(../images/home-page/Pattern.png);
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    background-color: rgb(217 217 217 / 10%);
    backdrop-filter: blur(15px);
    padding: 50px;
    overflow: hidden;
    margin-top: 40px;
}
.leave-input {
    display: flex;
    align-items: center;
    gap: 30px;
}
.conta-input-main,
textarea {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding: 15px 20px;
    background: #000000;
    border-radius: 10px;
    border: none;
    width: 100%;
    outline: none;
    margin-bottom: 25px;
}
textarea {
    resize: none;
    height: 180px;
}
/*-----------------------[ 21.Slick Slider Custom CSS ]------------------------*/
.slick-list {
    overflow: hidden !important;
}
.slick-list.draggable {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.slick-list.draggable:active {
    cursor: grabbing;
}
.slick-list.dragging {
    cursor: grabbing !important;
}
.slick-slide {
    outline: none;
}
.slick-slide:focus {
    outline: none;
}
/*-----------------------[ 22.custom-cursor ]------------------------*/
.wrapper {
    position: relative;
}
.custom-cursor {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #5C33FF;
    pointer-events: none;
    z-index: 9999;
    display: none;
}
.custom-cursor img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.cursor {
    cursor: none;
}
/*-----------------------[ Program Akışı Sayfası CSS ]------------------------*/
.section-akis {
    padding: 100px 0;
    position: relative;
    overflow: visible;
}
.akis-image-container {
    margin-top: 60px;
    text-align: center;
    padding: 40px 20px;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.akis-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
.akis-main-image:hover {
    transform: scale(1.02);
}
.akis-panel-button-container {
    margin-top: 50px;
    text-align: center;
    padding: 0 20px;
}
.akis-panel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.3);
}
.akis-panel-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 255, 0.5);
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 50%, #00FFB1 100%);
}
.akis-panel-button .button-text {
    position: relative;
    z-index: 2;
}
.akis-panel-button .hoverEffect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}
.akis-panel-button:hover .hoverEffect {
    left: 100%;
}
@media (max-width: 768px) {
    .section-akis {
        padding: 60px 0;
    }
    .akis-image-container {
        margin-top: 40px;
        padding: 30px 15px;
    }
    .akis-panel-button-container {
        margin-top: 40px;
        padding: 0 15px;
    }
    .akis-panel-button {
        padding: 15px 30px;
        font-size: 16px;
        width: 100%;
        max-width: 400px;
    }
}
/*-----------------------[ 21.Section Program CSS ]------------------------*/
.section-program {
    padding: 100px 0;
    position: relative;
    overflow: visible;
}
.section-program-header {
    position: relative;
    text-align: center;
    margin-bottom: 50px;
}
.frex-header-image {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 200px;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    border-radius: 15px;
    filter: drop-shadow(0 10px 30px rgba(0, 102, 255, 0.3));
    transition: all 0.3s ease;
}
.frex-header-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 102, 255, 0.5));
}
/* FREX Programı Bölümü */
.frex-program-section {
    margin-top: 50px;
    margin-bottom: 60px;
    text-align: center;
}
.frex-program-row {
    margin-top: 50px;
    gap: 30px 0;
}
.frex-program-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}
.frex-program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 255, 177, 0.3);
}
.frex-program-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(92, 51, 255, 0.1) 0%, rgba(0, 255, 177, 0.1) 100%);
}
.frex-program-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.frex-program-card:hover .frex-program-image::before {
    opacity: 1;
}
.frex-program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}
.frex-program-card:hover .frex-program-image img {
    transform: scale(1.1);
    filter: brightness(1);
}
.frex-program-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.frex-program-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(92, 51, 255, 0.15);
    color: #00FFB1;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 15px;
    width: fit-content;
}
.frex-program-content h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}
.frex-program-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}
.participant-cta-section {
    margin-top: 60px;
    margin-bottom: 60px;
}
.participant-cta-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}
.participant-cta-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.participant-cta-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.participant-cta-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}
.participant-benefits-row {
    margin-top: 40px;
    gap: 30px 0;
}
.benefit-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.benefit-card:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}
.benefit-icon {
    margin-bottom: 20px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.benefit-icon-img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.benefit-card:hover .benefit-icon-img {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0) invert(1);
}
.benefit-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 15px;
    line-height: 1.4;
}
.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
.benefit-card-cta {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    border-color: rgba(255, 0, 0, 0.2);
}
.visibility-section {
    margin-top: 80px;
    margin-bottom: 60px;
}
.visibility-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 20px;
}
.visibility-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 40px;
}
.visibility-row {
    gap: 30px 0;
}
.visibility-card {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    height: 100%;
}
.visibility-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.visibility-icon-img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.visibility-card:hover .visibility-icon-img {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0) invert(1);
}
.visibility-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.visibility-icon-img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.visibility-card:hover .visibility-icon-img {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0) invert(1);
}
.visibility-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}
/*-----------------------[ 22.Section Kokteyl CSS ]------------------------*/
.section-kokteyl {
    padding: 100px 0;
    position: relative;
    overflow: visible;
}
.kokteyl-main-section {
    margin-top: 60px;
    margin-bottom: 80px;
}
.kokteyl-header {
    text-align: center;
    margin-bottom: 40px;
}
.kokteyl-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 30px;
    letter-spacing: 2px;
}
.kokteyl-time {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}
.time-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.time-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
.time-value {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.kokteyl-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}
.kokteyl-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.kokteyl-icon {
    width: 60px;
    height: 60px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0) invert(1);
}
.kokteyl-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}
.kokteyl-participants-section {
    margin-top: 80px;
}
.participants-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}
.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
/*-----------------------[ 24.Section Lansman CSS ]------------------------*/
.section-lansman {
    padding: 100px 0;
    position: relative;
    overflow: visible;
}
.lansman-main-section {
    margin-top: 60px;
    margin-bottom: 80px;
}
.lansman-header {
    text-align: center;
    margin-bottom: 40px;
}
.lansman-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 30px;
    letter-spacing: 2px;
}
.lansman-time {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}
.lansman-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}
.lansman-program-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.lansman-program-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.lansman-program-item:hover {
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateX(10px);
    background: rgba(26, 26, 26, 0.8);
}
.program-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}
.program-icon-img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}
.lansman-program-item:hover .program-icon-img {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0) invert(1);
}
.lansman-program-item span {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}
.lansman-program-item:hover span {
    color: #FFFFFF;
}
.lansman-participants-section {
    margin-top: 80px;
}
/*-----------------------[ FAQ Page CSS ]------------------------*/
.faq-intro-section {
    margin-top: 60px;
    margin-bottom: 80px;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.faq-main-title {
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.3;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.faq-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}
.faq-davetiye-section {
    margin-top: 80px;
    margin-bottom: 60px;
}
.faq-davetiye-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(15px);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.faq-davetiye-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    opacity: 0.8;
}
.faq-davetiye-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.faq-davetiye-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}
.faq-davetiye-button {
    display: flex;
    justify-content: center;
}
/*-----------------------[ 23.Section Features CSS ]------------------------*/
.sektor-bulusmasi-section {
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: center;
}
.sektor-bulusmasi-title {
    font-size: 48px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 30px;
    letter-spacing: 2px;
}
.sektor-bulusmasi-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.sektor-hizmetler-section {
    margin-top: 80px;
    margin-bottom: 60px;
}
.sektor-hizmetler-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
}
.sektor-hizmetler-row {
    gap: 30px 0;
}
.sektor-hizmet-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    height: 100%;
}
.sektor-hizmet-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.4);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.12), 0 4px 12px rgba(0, 102, 255, 0.08);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
}
.sektor-hizmet-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sektor-hizmet-icon-img {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.85;
    transition: all 0.4s ease;
}
.sektor-hizmet-item:hover .sektor-hizmet-icon-img {
    opacity: 1;
    transform: scale(1.1) rotate(3deg);
    filter: grayscale(0%) brightness(0) invert(1);
}
.sektor-hizmet-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.sektor-hizmet-item:hover h4 {
    color: #FFFFFF;
}
.section-features {
    padding: 100px 0;
    position: relative;
    overflow: visible;
}
.features-cards-row {
    margin-top: 60px;
    gap: 30px 0;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.features-cards-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}
.features-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 45px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}
.features-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.features-card:hover::before {
    opacity: 1;
}
.features-card:hover {
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.15), 0 5px 15px rgba(0, 102, 255, 0.1);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
}
.features-card-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.features-icon-img {
    width: 64px;
    height: 64px;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.4s ease;
}
.features-card:hover .features-icon-img {
    opacity: 1;
    transform: scale(1.15) rotate(5deg);
    filter: grayscale(0%) brightness(0) invert(1);
}
.features-section-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    letter-spacing: 0.5px;
}
.features-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 0.3px;
}
.features-text-content {
    flex-grow: 1;
}
.features-text-content p {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    text-align: left;
    transition: color 0.3s ease;
}
.features-card:hover .features-text-content p {
    color: rgba(255, 255, 255, 0.95);
}
.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mission-list li {
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    padding-left: 35px;
    position: relative;
    text-align: left;
    transition: color 0.3s ease;
}
.features-card:hover .mission-list li {
    color: rgba(255, 255, 255, 0.95);
}
.mission-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}
/*-----------------------[ About Page CSS ]------------------------*/
.about-content-section {
    margin-top: 60px;
    margin-bottom: 80px;
}
.about-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.3;
}
.about-section-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}
.about-section-text:last-child {
    margin-bottom: 0;
}
.about-content-section .marketingRow {
    margin-top: 40px;
}
.about-content-section .quis-head {
    margin-bottom: 25px;
}
/*-----------------------[ Gallery CSS ]------------------------*/
.gallery-container {
    margin-top: 60px;
    margin-bottom: 60px;
}
.gallery-row {
    gap: 30px 0;
}
.gallery-item {
    padding: 0 15px;
    margin-bottom: 30px;
}
.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden !important;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(92, 51, 255, 0.1) 0%, rgba(0, 255, 177, 0.1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    isolation: isolate;
}
.gallery-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF0000 0%, #0066FF 50%, #00FFB1 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}
.gallery-image-wrapper:hover::before {
    opacity: 1;
}
.gallery-image-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 255, 177, 0.5);
    box-shadow: 0 20px 50px rgba(0, 102, 255, 0.3), 
                0 10px 30px rgba(0, 255, 177, 0.2),
                0 0 0 1px rgba(255, 0, 0, 0.2);
}
.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
    filter: brightness(0.9);
}
.gallery-image-wrapper:hover .gallery-image {
    transform: scale(1.05);
    filter: brightness(1);
}
.gallery-caption {
    margin-top: 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px;
    line-height: 1.4;
}
.gallery-item {
    padding: 0 15px;
    margin-bottom: 50px;
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0 !important;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 20px;
    pointer-events: none;
}
.gallery-image-wrapper:hover .gallery-overlay {
    opacity: 1 !important;
    visibility: visible;
    pointer-events: auto;
}
.gallery-icon {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00FFB1;
    transform: scale(0.8) rotate(-10deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 255, 177, 0.3);
    box-sizing: border-box;
    flex-shrink: 0;
}
.gallery-image-wrapper:hover .gallery-icon {
    transform: scale(1) rotate(0deg);
    background: rgba(0, 255, 177, 0.2);
    border-color: rgba(0, 255, 177, 0.6);
    box-shadow: 0 0 30px rgba(0, 255, 177, 0.5);
}
.gallery-icon svg {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    stroke: #00FFB1;
    flex-shrink: 0;
    display: block;
}
/* Büyük görseller için özel stil (son 2 görsel) */
.gallery-row .col-xxl-6 .gallery-image-wrapper {
    padding-bottom: 70%;
}
@media (max-width: 1199px) {
    .gallery-row .col-xxl-6 .gallery-image-wrapper {
        padding-bottom: 100%;
    }
}
@media (max-width: 991px) {
    .gallery-container {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .gallery-row {
        gap: 25px 0;
    }
    .gallery-item {
        padding: 0 10px;
        margin-bottom: 25px;
    }
    .gallery-image-wrapper {
        border-radius: 18px;
    }
    .gallery-overlay {
        border-radius: 18px;
    }
}
@media (max-width: 768px) {
    .gallery-container {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .gallery-row {
        gap: 20px 0;
    }
    .gallery-item {
        padding: 0 8px;
        margin-bottom: 40px;
    }
    .gallery-image-wrapper {
        border-radius: 15px;
        border-width: 1px;
    }
    .gallery-overlay {
        border-radius: 15px;
    }
    .gallery-icon {
        width: 50px !important;
        height: 50px !important;
        max-width: 50px !important;
        max-height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
    }
    .gallery-icon svg {
        width: 24px !important;
        height: 24px !important;
        max-width: 24px !important;
        max-height: 24px !important;
    }
    .gallery-image-wrapper:hover {
        transform: translateY(-5px) scale(1.01);
    }
    .gallery-caption {
        font-size: 14px;
        margin-top: 12px;
    }
}
/*-----------------------[ Gallery Lightbox CSS ]------------------------*/
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
    overflow: auto;
}
.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.gallery-lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}
.gallery-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #FFF;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}
.gallery-lightbox-close:hover {
    color: #00FFB1;
    background: rgba(0, 255, 177, 0.2);
    transform: rotate(90deg);
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
@media (max-width: 768px) {
    .gallery-lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
        width: 40px;
        height: 40px;
    }
    .gallery-lightbox-image {
        max-width: 95%;
        max-height: 80vh;
    }
}