:root {
    --primary: #D4AF37;
    --primary-dark: #b89328;
    --secondary: #1A1E23;
    --dark: #0f1115;
    --darker: #090b0f;
    --text-light: #ffffff;
    --text-muted: #a7a7a7;
}


body {
    background-color: var(--dark);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.gold-text{
    background: linear-gradient(
        135deg,
        #f8e08a 0%,
        #d4af37 35%,
        #b8860b 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-gradient{
    background: linear-gradient(
        135deg,
        #f8e08a 0%,
        #d4af37 35%,
        #b8860b 100%
    );

    border: none;
    color: #111 !important;
    font-weight: 700;
    transition: 0.3s ease;
}

.gold-gradient:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.35);
}

/* NAVBAR */
.navbar {
    background: rgba(9, 11, 15, 0.75);
    backdrop-filter: blur(14px);
    padding: 18px 0;
    transition: 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* BRAND */
.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: #fff !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    font-size: 1.8rem;
    color: var(--primary) !important;
}

/* NAV LINKS */
.nav-link {
    color: #d6d6d6 !important;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--primary);
    transition: 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* BUTTON */
.btn-primary-custom {
    background: linear-gradient(90deg, #f6de88, var(--primary));
    border: none;
    color: #111;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 14px;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(212,175,55,0.25);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    color: #000;
}

/* MOBILE */
.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}

@media(max-width:991px){

    .navbar-collapse{
        background: #11151b;
        padding: 25px;
        border-radius: 18px;
        margin-top: 15px;
    }

    /*.nav-link{*/
    /*    margin: 12px 0;*/
    /*}*/

    .btn-primary-custom{
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}


/*footer*/
footer{
    background:#0b0b0b;
    position:relative;
    overflow:hidden;
    border-top:1px solid rgba(212,175,55,0.08);
}

/* TEXT COLORS */
.text-primary-custom{
    color:#d4af37 !important;
}

.text-muted-custom{
    color:#8a8f98 !important;
    transition:0.3s;
}

/* LOGO */
footer .fs-4{
    font-weight:700;
    letter-spacing:0.5px;
}

/* HEADINGS */
footer h5{
    font-weight:700;
    margin-bottom:22px !important;
    position:relative;
    padding-bottom:10px;
}

footer h5::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:42px;
    height:2px;

    background: linear-gradient(
        135deg,
        #f8e08a 0%,
        #d4af37 35%,
        #b8860b 100%
    );
}

/* LINKS */
footer a{
    transition:0.3s ease;
}

footer ul li a:hover{
    color:#d4af37 !important;
    padding-left:4px;
}

/* SOCIAL ICONS */
.social-icon{
    width:45px;
    height:45px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#121212;
    border:1px solid rgba(212,175,55,0.15);

    color:#d4af37;
    text-decoration:none;

    transition:0.3s ease;
}

.social-icon:hover{
    transform:translateY(-4px);

    background: linear-gradient(
        135deg,
        #f8e08a 0%,
        #d4af37 35%,
        #b8860b 100%
    );

    color:#000;
}

/* PAYMENT LOGOS */
.partner-logo{
    height:42px;
    width:auto;

    background:#121212;
    padding:8px 12px;

    border-radius:12px;
    border:1px solid rgba(212,175,55,0.12);

    transition:0.3s ease;
}

.partner-logo:hover{
    transform:translateY(-3px);
    border-color:#d4af37;
}

/* HR */
footer hr{
    border-color:rgba(212,175,55,0.08);
}

/* COPYRIGHT */
footer .list-inline-item a:hover{
    color:#d4af37 !important;
}

/* SMALL GLOW */
footer::before{
    content:'';
    position:absolute;
    top:-150px;
    left:-150px;

    width:300px;
    height:300px;

    background:rgba(212,175,55,0.05);
    filter:blur(120px);
}

/* MOBILE */
@media(max-width:991px){

    footer{
        text-align:center;
    }

    footer h5::after{
        left:50%;
        transform:translateX(-50%);
    }

    .social-icon{
        margin:auto;
    }

    footer .d-flex{
        justify-content:center;
    }

    footer .list-inline{
        margin-top:15px;
    }
}
/*footer*/
.hero-section{
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
}

/* OVERLAY */
.hero-section::after{
    content:'';
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.65);
    z-index:1;
}

/* CONTENT */
.hero-section .container{
    position:relative;
    z-index:5;
}

/* SLIDER */
.hero-slider{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-slide{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    animation:heroFade 18s infinite;
    transform:scale(1.08);
}

/* IMAGES */
.hero-slide:nth-child(1){
    background-image:url('../images/hero1.avif');
    animation-delay:0s;
}

.hero-slide:nth-child(2){
    background-image:url('../images/hero2.avif');
    animation-delay:6s;
}

.hero-slide:nth-child(3){
    background-image:url('../images/hero3.avif');
    animation-delay:12s;
}
/* ANIMATION */
@keyframes heroFade{

    0%{
        opacity:0;
        transform:scale(1.08);
    }

    10%{
        opacity:1;
    }

    30%{
        opacity:1;
    }

    40%{
        opacity:0;
        transform:scale(1.15);
    }

    100%{
        opacity:0;
    }
}

/* FEATURE CARDS */
.hero-section .bg-dark{
    backdrop-filter: blur(10px);
    border:1px solid rgba(255,255,255,0.08);
    transition:0.3s;
}

.hero-section .bg-dark:hover{
    transform:translateY(-5px);
}

/* PARTNER LOGOS */
.partner-logo{
    transition:0.3s;
}


.card-custom {
    background-color: var(--secondary);
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(13, 245, 227, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(13, 245, 227, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    color: var(--primary);
    font-size: 24px;
}

.pricing-card {
    background-color: var(--secondary);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.pricing-card.highlighted {
    border: 1px solid var(--primary);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(13, 245, 227, 0.1);
}

.team-card {
    background-color: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(13, 245, 227, 0.1);
}

.team-social {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    background-color: rgba(13, 245, 227, 0.9);
    padding: 10px;
    transition: all 0.3s ease;
}
.team-card img{
    width:100%;
    height:280px;
    background:#151515;
    display:block;
}
.team-card:hover .team-social {
    bottom: 0;
}

.roadmap-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
}

.roadmap-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary);
}

.roadmap-item::after {
    content: "";
    position: absolute;
    left: -4px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary);
}

.accordion-button {
    background-color: var(--secondary);
    color: var(--text-light);
    box-shadow: none;
    border-radius: 8px;
}

.accordion-button:not(.collapsed) {
    background-color: var(--secondary);
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.accordion-body {
    background-color: var(--secondary);
    color: var(--text-muted);
}

.form-control {
    background-color: var(--secondary);
    border: 1px solid #2A2F36;
    color: var(--text-light);
    padding: 12px 15px;
}

.form-control:focus {
    background-color: var(--secondary);
    border-color: var(--primary);
    color: var(--text-light);
    box-shadow: none;
}

.footer {
    background-color: var(--darker);
    padding: 60px 0 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.social-icon i {
    color: var(--text-light);
}

.social-icon:hover i {
    color: var(--darker);
}

.partner-logo {
    height: 30px;
}


.blog-card {
    background-color: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(13, 245, 227, 0.1);
}
.blog-card > img{
    width:100%;
    height:240px;
    object-fit:cover;
    object-position:top;
    display:block;
}
.blog-category {
    background-color: rgba(13, 245, 227, 0.1);
    color: var(--primary);
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
}

.newsletter-section {
    background-color: var(--primary);
    border-radius: 12px;
    padding: 40px;
}

.newsletter-input {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--darker);
    padding: 15px 20px;
    border-radius: 6px 0 0 6px;
}

.newsletter-input::placeholder {
    color: rgba(19, 22, 25, 0.7);
}

.newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--darker);
    box-shadow: none;
}

.newsletter-btn {
    background-color: var(--darker);
    color: var(--primary);
    border: none;
    padding: 15px 20px;
    border-radius: 0 6px 6px 0;
    font-weight: 600;
}

.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}


.about-hero-section {
    background-color: var(--darker);
    padding-top:150px;
    padding-bottom:50px;
    position: relative;
    overflow: hidden;
}

/* FOUNDER SECTION */
.founder-section{
    background:#0b0b0b;
    position:relative;
    overflow:hidden;
}

/* IMAGE */
.founder-image-wrapper{
    position:sticky;
    top:120px;
}

.founder-image{
    width:100%;
    border-radius:28px;
    object-fit:cover;

    border:1px solid rgba(212,175,55,0.15);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.45),
        0 0 40px rgba(212,175,55,0.08);
}

/* TAG */
.founder-tag{
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:15px;
    display:inline-block;
}

/* TEXT */
.founder-text{
    line-height:1.95;
    margin-bottom:22px;
    font-size:1.03rem;
}

/* MOBILE */
@media(max-width:991px){

    .founder-section{
        text-align:center;
    }

    .founder-image-wrapper{
        position:relative;
        top:auto;
    }
}

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


.about-team-card img{
    width:100%;
    height:320px;
    object-fit:contain;
    object-position:center;
    background:#f1f1f1;
    display:block;
    padding:15px;
}

/* CARD */
.about-team-card{
    height:100%;
    background:#131922;
    border-radius:18px;
    overflow:hidden;
    border-top:3px solid #d4af37;
    transition:0.3s ease;
}

.about-team-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.35);
}
.about-card-custom {
    background-color: var(--secondary);
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

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

.about-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 245, 227, 0.2) 0%, rgba(13, 245, 227, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-feature-icon i {
    color: var(--primary);
    font-size: 32px;
}

.about-stats-counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}


.about-timeline {
    position: relative;
    padding-left: 30px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-dark) 100%);
}

.about-timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.about-timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary);
    box-shadow: 0 0 0 4px var(--dark);
}

.about-timeline-year {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--darker);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 12px;
}

.about-team-card {
    background-color: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

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

.about-team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.about-mission-card {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--darker) 100%);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.about-mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.about-value-card {
    background-color: var(--secondary);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.about-achievement-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--darker);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin: 5px;
}

.about-quote-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--darker) 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-quote-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: serif;
}

.about-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.about-social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.about-social-icon i {
    color: var(--text-light);
}

.about-social-icon:hover i {
    color: var(--darker);
}

.about-footer {
    background-color: var(--darker);
    padding: 60px 0 30px;
}

.about-floating-element {
    position: absolute;
    opacity: 0.1;
    animation: aboutFloat 6s ease-in-out infinite;
}

@keyframes aboutFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.about-floating-element:nth-child(2) {
    animation-delay: 2s;
}

.about-floating-element:nth-child(3) {
    animation-delay: 4s;
}

.about-stats-section {
    background-color: var(--darker);
}

.about-mission-section {
    background-color: var(--dark);
}

.about-story-section {
    background-color: var(--darker);
}

.about-values-section {
    background-color: var(--dark);
}

.about-team-section {
    background-color: var(--darker);
}

.about-quote-wrapper {
    background-color: var(--dark);
}

.about-why-section {
    background-color: var(--darker);
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
}

.about-feature-item .about-feature-icon {
    width: 70px;
    height: 70px;
    margin-right: 1rem;
    margin-bottom: 0;
}

.about-feature-item .about-feature-icon i {
    font-size: 28px;
}

.feature-hero-section {
    background-color: var(--darker);
    padding-top:150px;
    padding-bottom:50px;
    position: relative;
    overflow: hidden;
}

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

.card-custom {
    background-color: var(--secondary);
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(13, 245, 227, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 245, 227, 0.2) 0%, rgba(13, 245, 227, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    color: var(--primary);
    font-size: 32px;
}

.feature-card-large {
    background-color: var(--secondary);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.feature-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 245, 227, 0.15);
}

.comparison-table {
    background-color: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th {
    background-color: var(--darker);
    color: var(--text-light);
    border: none;
    padding: 20px;
    font-weight: 600;
}

.comparison-table td {
    background-color: var(--secondary);
    color: var(--text-light);
    border: 1px solid #2A2F36;
    padding: 15px 20px;
    vertical-align: middle;
}

.comparison-table .highlight-column {
    background-color: rgba(13, 245, 227, 0.1);
}

.pricing-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--darker);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
}

.stats-counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.testimonial-card {
    background-color: var(--secondary);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
}



.tab-content {
    background-color: var(--secondary);
    border-radius: 0 12px 12px 12px;
    padding: 30px;
}

.nav-tabs {
    border-bottom: 1px solid #2A2F36;
}

.nav-tabs .nav-link {
    background-color: var(--darker);
    color: var(--text-muted);
    border: 1px solid #2A2F36;
    border-bottom: none;
    margin-right: 5px;
    border-radius: 8px 8px 0 0;
}

.nav-tabs .nav-link.active {
    background-color: var(--secondary);
    color: var(--primary);
    border-color: #2A2F36 #2A2F36 var(--secondary);
}

.progress {
    background-color: var(--darker);
    height: 8px;
}

.progress-bar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.social-icon i {
    color: var(--text-light);
}

.social-icon:hover i {
    color: var(--darker);
}

footer {
    background-color: var(--darker);
    padding: 60px 0 30px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.cta-section h2,
.cta-section p {
    color: var(--darker);
}

.btn-cta {
    background-color: var(--darker);
    color: var(--primary);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: rgba(19, 22, 25, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.services-hero-section {
    background-color: var(--darker);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.services-card {
    background-color: var(--secondary);
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 245, 227, 0.15);
}

.services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.services-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 245, 227, 0.2) 0%, rgba(13, 245, 227, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.services-icon i {
    color: var(--primary);
    font-size: 36px;
}

.services-breadcrumb {
    background-color: transparent;
    padding: 0;
}

.services-breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
}

.services-breadcrumb-item.active {
    color: var(--primary);
}

.services-breadcrumb-item + .services-breadcrumb-item::before {
    color: var(--text-muted);
}

.services-pricing-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--darker);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 16px;
}

.services-feature-list {
    list-style: none;
    padding: 0;
}

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

.services-feature-list li i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 16px;
}

.services-process-step {
    background-color: var(--secondary);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.services-process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(13, 245, 227, 0.1);
}

.services-step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    margin: 0 auto 20px;
}

.services-testimonial-card {
    background-color: var(--secondary);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.services-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 245, 227, 0.1);
}

.services-testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: serif;
}

.services-stats-card {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--darker) 100%);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.services-stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.services-cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--darker) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 245, 227, 0.1) 0%, transparent 70%);
    animation: servicesRotate 20s linear infinite;
}

@keyframes servicesRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.services-floating-element {
    position: absolute;
    opacity: 0.1;
    animation: servicesFloat 6s ease-in-out infinite;
}

@keyframes servicesFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.services-floating-element:nth-child(2) {
    animation-delay: 2s;
}

.services-floating-element:nth-child(3) {
    animation-delay: 4s;
}

.services-hero-bg {
    background-color: var(--darker);
}

.services-main-section {
    background-color: var(--dark);
}

.services-process-section {
    background-color: var(--darker);
}

.services-testimonials-section {
    background-color: var(--dark);
}

.services-stats-section {
    background-color: var(--darker);
}

.services-cta-wrapper {
    background-color: var(--dark);
}

.services-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.services-social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.services-social-icon i {
    color: var(--text-light);
}

.services-social-icon:hover i {
    color: var(--darker);
}

.services-footer {
    background-color: var(--darker);
    padding: 60px 0 30px;
}
.services-card {
position: relative;
overflow: visible;
padding-top: 30px;
}
.services-popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.services-card-body {
    padding: 30px;
}

.services-card-header {
    padding: 30px 30px 0;
}

.services-card-footer {
    padding: 0 30px 30px;
}

.pricing-hero-section {
    background-color: var(--darker);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top:92px;
}

/* OPTIONAL BG EFFECT */
.pricing-hero-section::before{
    content:'';
    position:absolute;
    top:-150px;
    right:-150px;

    width:350px;
    height:350px;

    background:rgba(212,175,55,0.05);

    filter:blur(120px);
}

/* GUARANTEE BADGES */
.pricing-guarantee-badge{
    padding:12px 20px;
    border-radius:50px;

    background:#131922;

    border:1px solid rgba(212,175,55,0.12);

    color:#fff;

    display:flex;
    align-items:center;
    gap:10px;

    font-weight:500;
}

.pricing-guarantee-badge i{
    color:#d4af37;
}

/* RIGHT GRID */
.pricing-info-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

/* STAT CARD */
.pricing-stat-card{
    background:#131922;

    border-radius:24px;

    padding:35px 30px;

    border:1px solid rgba(212,175,55,0.12);

    display:flex;
    justify-content:space-between;
    align-items:center;

    transition:0.3s ease;
}

.pricing-stat-card:hover{
    transform:translateY(-6px);

    border-color:#d4af37;

    box-shadow:0 15px 40px rgba(0,0,0,0.35);
}

/* NUMBERS */
.pricing-stat-card h2{
    font-size:2.3rem;
    font-weight:800;
    margin-bottom:5px;

    background: linear-gradient(
        135deg,
        #f8e08a 0%,
        #d4af37 35%,
        #b8860b 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.pricing-stat-card p{
    margin:0;
    color:#9ca3af;
}

/* ICONS */
.pricing-stat-card i{
    font-size:2.7rem;
    color:#d4af37;
}

/* MOBILE */
@media(max-width:767px){

    .pricing-info-box{
        grid-template-columns:1fr;
        margin-top:40px;
    }
}

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

.pricing-card {
    background-color: var(--secondary);
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    /*overflow: hidden;*/
     /*position: relative;*/
overflow: visible;
padding-top: 30px;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(13, 245, 227, 0.2);
}

.pricing-card.pricing-featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.pricing-featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.pricing-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pricing-price-small {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-right: 10px;
}

.pricing-discount-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.pricing-feature-list {
    list-style: none;
    padding: 0;
}

.pricing-feature-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-feature-list li:last-child {
    border-bottom: none;
}

.pricing-feature-list li i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
}

.pricing-feature-list li.pricing-feature-unavailable {
    opacity: 0.5;
}

.pricing-feature-list li.pricing-feature-unavailable i {
    color: var(--text-muted);
}

.pricing-breadcrumb {
    background-color: transparent;
    padding: 0;
}

.pricing-breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
}

.pricing-breadcrumb-item.active {
    color: var(--primary);
}

.pricing-breadcrumb-item + .pricing-breadcrumb-item::before {
    color: var(--text-muted);
}

.pricing-comparison-table {
    background-color: var(--secondary);
    border-radius: 16px;
    overflow: hidden;
}

.pricing-table {
    margin: 0;
}

.pricing-table th {
    background-color: var(--darker);
    color: var(--text-light);
    border: none;
    padding: 20px;
    font-weight: 600;
}

.pricing-table td {
    background-color: var(--secondary);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    vertical-align: middle;
}

.pricing-table .pricing-check {
    color: var(--primary);
    font-size: 18px;
}

.pricing-table .pricing-cross {
    color: var(--text-muted);
    font-size: 18px;
}

.pricing-faq-item {
    background-color: var(--secondary);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.pricing-faq-header {
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    justify-content: between;
    align-items: center;
}

.pricing-faq-header:hover {
    background-color: rgba(13, 245, 227, 0.1);
}

.pricing-faq-content {
    padding: 0 20px 20px;
    color: var(--text-muted);
    display: none;
}

.pricing-faq-content.show {
    display: block;
}

.pricing-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.pricing-payment-logo {
    height: 40px;
    padding: 8px 16px;
    background-color: var(--secondary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-payment-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 245, 227, 0.2);
}

.pricing-guarantee-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--darker);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin: 10px;
}

.pricing-guarantee-badge i {
    margin-right: 8px;
}

.pricing-floating-element {
    position: absolute;
    opacity: 0.1;
    animation: pricingFloat 6s ease-in-out infinite;
}

@keyframes pricingFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.pricing-floating-element:nth-child(2) {
    animation-delay: 2s;
}

.pricing-floating-element:nth-child(3) {
    animation-delay: 4s;
}

.pricing-hero-bg {
    background-color: var(--darker);
}

.pricing-plans-section {
    background-color: var(--dark);
}

.pricing-comparison-section {
    background-color: var(--darker);
}

.pricing-faq-section {
    background-color: var(--dark);
}

.pricing-payment-section {
    background-color: var(--darker);
}

.pricing-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.pricing-social-icon:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.pricing-social-icon i {
    color: var(--text-light);
}

.pricing-social-icon:hover i {
    color: var(--darker);
}

.pricing-footer {
    background-color: var(--darker);
    padding: 60px 0 30px;
}

.pricing-card-header {
    padding: 30px 30px 20px;
    text-align: center;
}

.pricing-card-body {
    padding: 0 30px 20px;
}

.pricing-card-footer {
    padding: 20px 30px 30px;
}

.pricing-toggle {
    background-color: var(--secondary);
    border-radius: 50px;
    padding: 4px;
    display: inline-flex;
    margin-bottom: 30px;
}

.pricing-toggle-btn {
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    background: none;
    color: var(--text-muted);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-toggle-btn.active {
    background-color: var(--primary);
    color: var(--darker);
}
