:root {
    --primary: #000000;
    --secondary: #1a1a1a;
    --accent: #c4ff39;
    --accent-light: #d4ff5c;
    --accent-hover: #d4ff59;
    --accent-dark: #a8cc2e;
    --accent-glow: rgba(196, 255, 57, 0.2);
    --background: #0a0a0a;
    --bg-dark: #0a0e1a;
    --bg-card: #0f1420;
    --dark-bg: #141414;
    --text-primary: #ffffff;
    --text-secondary: #8b92a7;
    --text: #e5e5e5;
    --white: #ffffff;
    --border: #1e2433;
    --border-hover: #2a3448;
    --light-gray: #404040;
    --input-bg: rgba(255, 255, 255, 0.05);
    --input-bg-focus: rgba(255, 255, 255, 0.08);
    --success: #2ecc71;
    --error: #ff4757;
    --glass-bg: rgba(15, 20, 32, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
/* Navigation */
.header-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 255, 57, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 20px rgba(196, 255, 57, 0.1);
}

.header-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}
.header-logo {
    margin-left:100px;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    padding: 5px 10px;
    background-color: var(--accent);
    border-radius: 8px;
}

.logo-container:hover {
    opacity: 0.9;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    height: 25px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.logo-line1,
.logo-line2 {
    font-size: 12px;
    font-weight: 800;
    color:var(--background);
    letter-spacing: 0.5px;
}

.logo-line2 {
    font-size: 10px;
    font-weight: 600;
}
.header-nav-links {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.header-nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav-link:hover {
    color: var(--accent);
}

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

.header-btn-primary {
    background: var(--accent);
    color: var(--primary);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
}

.header-btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 255, 57, 0.3);
}

.header-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.header-mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
        padding: 130px 6px;
    overflow: hidden;
    background: var(--background);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196, 255, 57, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 255, 57, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 255, 57, 0.15) 0%, transparent 70%);
    animation: gradientFloat 8s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(196, 255, 57, 0.1);
    border: 1px solid rgba(196, 255, 57, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 2rem;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line:first-child {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.title-line:last-child {
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}



.hero-description {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 3rem;
    max-width: 650px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
}

.btn-hero-primary {
    padding: 1.125rem 2.5rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-hero-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(196, 255, 57, 0.4);
}

.btn-hero-secondary {
    padding: 1.125rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.4s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text);
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(196, 255, 57, 0.3), transparent);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 1.6s both;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(red);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 24px;
        opacity: 0;
    }
}

/* Stats Counter Section */
.stats-counter {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
}

.stats-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(196, 255, 57, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(196, 255, 57, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-box .stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(196, 255, 57, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Font Awesome icon */
.stat-box .stat-icon i {
    font-size: 30px;
    color: var(--accent);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover .stat-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(5deg);
}

.stat-box:hover .stat-icon i {
    color: var(--primary);
}

.stat-box .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-box .stat-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 1rem 0;
    position: relative;
    background: var(--dark-bg);
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    padding: 4rem 8rem;
    border-bottom: 1px solid rgba(196, 255, 57, 0.1);
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.service-item:last-child {
    border-bottom: none;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: rgba(196, 255, 57, 0.15);
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .service-number {
    color: rgba(196, 255, 57, 0.3);
    transform: scale(1.1);
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.service-icon-new {
    width: 64px;
    height: 64px;
    background: rgba(196, 255, 57, 0.12);
    border-radius: 14px;

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

    border: 1px solid rgba(196, 255, 57, 0.25);
    box-shadow: 0 0 30px rgba(196, 255, 57, 0.15);
}

.service-icon-new img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}


.service-icon-new:hover {
    transform: scale(1.08);
    box-shadow: 0 0 40px rgba(196, 255, 57, 0.3);
}


.service-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.service-content > p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 800px;
}

.service-benefits {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-benefits span {
    padding: 0.625rem 1.25rem;
    background: rgba(196, 255, 57, 0.1);
    color: var(--accent);
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-item:hover .service-benefits span {
    background: rgba(196, 255, 57, 0.15);
    transform: translateY(-2px);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(196, 255, 57, 0.1);
    color: var(--accent);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.features-background {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(196, 255, 57, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(196, 255, 57, 0.05) 0%, transparent 50%);
}

.features .section-tag {
    background: rgba(196, 255, 57, 0.1);
    color: var(--accent);
}

.features .section-title {
    color: var(--white);
}

.features .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.features-content {
    position: relative;
    z-index: 1;
}

.features-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.feature-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.feature-info h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.features-visual {
    position: relative;
    height: 600px;
}

.visual-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 255, 57, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.visual-card:hover {
    transform: translateY(-8px);
    background: rgba(26, 26, 26, 0.9);
    border-color: rgba(196, 255, 57, 0.3);
}

.card-1 {
    top: 0;
    left: 0;
    width: 320px;
    animation: floatCard1 6s ease-in-out infinite;
}

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

.card-2 {
    top: 180px;
    right: 80px;
    width: 240px;
    animation: floatCard2 5s ease-in-out infinite;
}

@keyframes floatCard2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.card-3 {
    bottom: 0;
    left: 40px;
    width: 200px;
    animation: floatCard3 7s ease-in-out infinite;
}

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

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.card-trend {
    color: var(--accent);
    font-weight: 600;
}

.card-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    height: 120px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent-dark), var(--accent));
    border-radius: 4px 4px 0 0;
    animation: chartGrow 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }
.chart-bar:nth-child(6) { animation-delay: 0.6s; }

@keyframes chartGrow {
    from {
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(196, 255, 57, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.card-stat {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.security-badge {
    width: 60px;
    height: 60px;
    background: rgba(196, 255, 57, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.security-badge svg {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.card-3 span {
    color: var(--white);
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(0, 0, 0, 0.05) 50px, rgba(0, 0, 0, 0.05) 100px);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 3rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-cta-primary {
    padding: 1.125rem 3rem;
    background: var(--primary);
    color: var(--accent);
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    padding: 1.125rem 3rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-secondary:hover {
    background: var(--primary);
    color: var(--accent);
    transform: translateY(-3px);
}

.cta-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: rgba(0, 0, 0, 0.7);
}

.cta-contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.cta-contact a:hover {
    opacity: 0.8;
}

.divider {
    opacity: 0.5;
}

/* Footer Styles */
.footer {
    background-color: var(--primary);
    color: var(--light-gray);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 3.5fr 1.2fr 1.2fr;
    gap: 4.5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(196, 255, 57, 0.15);
}


.footer-about {
    background: linear-gradient(
        145deg,
        rgba(196, 255, 57, 0.15),
        rgba(196, 255, 57, 0.03)
    );
    padding: 2.5rem 2.75rem;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
}

/* Soft glow accent line */
.footer-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--accent);
    border-radius: 10px;
}

/* Brand heading */
.f-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background-color:var(--accent);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-flex;
}

.f-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-logo-icon img {
    height: 25px;
    width: auto;
    object-fit: contain;
}

.f-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 1px;
}

.f-logo-line1,
.f-logo-line2 {
    font-size: 11px;
    font-weight: 600;
    color: var(--background);
    letter-spacing: 0.5px;
}

.f-logo-line2 {
    font-size: 12px;
    font-weight: 700;
}
/* Description text */
.footer-about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    max-width: 600px;
}

/* Hover polish (subtle, premium) */
.footer-about:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(196, 255, 57, 0.2);
    transition: all 0.4s cubics cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-column {
    margin-left: 50px;
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--accent);
}

/* Contact Section */
.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(196, 255, 57, 0.1);
}

.contact-heading {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    transition: opacity 0.2s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    text-decoration: none;
    color: var(--white);
    font-size: 1.75rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Large Logo Section */
.footer-logo-section {
    padding:50px 100px;
    border-bottom: 1px solid rgba(196, 255, 57, 0.1);
}

.footer-logo {
    margin:10px 50px;
    font-size: clamp(3rem, 12vw, 15rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: lowercase;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal-links a,
.footer-legal-links {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--accent);
}


/* Contact Popup */
.contact-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

.popup-toggle {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(196, 255, 57, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.5rem;
    color: var(--primary);
    position: relative; /* Add this */
    z-index: 10000; /* Add this */
}

.popup-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(196, 255, 57, 0.5);
}

.popup-toggle.active {
    transform: rotate(90deg);
}

.popup-content {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    background: var(--secondary);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(196, 255, 57, 0.15);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden; /* Add this */
}

.popup-content.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
    visibility: visible; /* Add this */
}



.popup-header {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    padding: 2rem;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.popup-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.popup-header p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.3);
}

.popup-form {
    padding: 2rem;
}

.popup-form-group {
    margin-bottom: 1.5rem;
}

.popup-form-group label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.popup-form-group input,
.popup-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(196, 255, 57, 0.2);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    transition: all 0.3s ease;
}

.popup-form-group input:focus,
.popup-form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.4);
}

.popup-form-group textarea {
    resize: vertical;
    min-height: 50px;
}

.popup-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-submit i {
    font-size: 1rem;
}

.popup-submit:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 255, 57, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .features-layout {
        gap: 4rem;
    }

    .features-visual {
        height: 500px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about {
        grid-column: span 2;
    }
}@media (max-width: 968px) {
    .header-nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--secondary);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(196, 255, 57, 0.2);
        pointer-events: none;
    }

    .header-nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .header-mobile-toggle {
        display: flex;
    }

    .header-mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .header-mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }


    .hero-title {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-item {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
        padding: 3rem 0;
    }

    .service-number {
        font-size: 3.5rem;
    }

    .service-header h3 {
        font-size: 1.75rem;
    }

    .features-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-visual {
        display: none;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding-bottom: 3rem;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .contact-heading {
        font-size: 1.5rem;
    }

    .footer-social {
        gap: 1.25rem;
    }

    .footer-logo-section {
        padding: 3rem 0;
    }

    .footer-legal-links {
        gap: 1.5rem;
    }


  .contact-popup {
        right: 1rem;
        bottom: 1rem; /* CRITICAL: Add this */
    }

    .popup-content {
        width: calc(100vw - 4rem);
        right: 0; /* Changed from -1rem */
        max-width: 380px;
    }



}

@media (max-width: 640px) {
    .header-logo{
        margin-left: 0px;
    }
    .footer-column{
        margin-left: 0px;
    }
.btn-cta-primary,
    .btn-cta-secondary {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

     .contact-popup {
        right: 1rem;
        bottom: 1rem; /* CRITICAL: Add this */
    }

    .popup-content {
        width: calc(100vw - 2rem);
        right: 0;
        bottom: 75px;
        max-width: none;
    }

    .f-logo{
        margin-left: 70px;
    }
    .popup-toggle {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
    }
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta button {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2.5rem 0;
    }

    .service-number {
        font-size: 4rem;
        text-align: center;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-contact {
        flex-direction: column;
        gap: 0.75rem;
    }
.footer {
    padding: 4rem 1.2px 14rem;
}
    .footer-grid {
        grid-template-columns: 1fr;

        gap: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .contact-heading {
        font-size: 1.25rem;
    }

    .footer-legal-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .footer-logo {
    margin:10px 15px;}
}
/* ================================
   Newsletter Section
================================ */
.newsletter-section {
    padding: 3rem 0;
    background: linear-gradient(
        180deg,
        var(--background),
        var(--dark-bg)
    );
    position: relative;
}

/* ================================
   Card
================================ */
.newsletter-card {
    background: linear-gradient(
        145deg,
        rgba(196, 255, 57, 0.15),
        rgba(196, 255, 57, 0.03)
    );
    border-radius: 22px;
    padding: 4rem;
    position: relative;
    overflow: hidden;

    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 3rem;

    animation: fadeUp 1s ease forwards;
}

/* Accent glow */
.newsletter-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(196, 255, 57, 0.25),
        transparent 60%
    );
    pointer-events: none;
}

/* ================================
   Content (Left)
================================ */
.newsletter-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.newsletter-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.newsletter-title span {
    color: var(--accent);
}

.newsletter-text {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* ================================
   Form
================================ */
.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: var(--secondary);
    border: 1px solid rgba(196, 255, 57, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 255, 57, 0.15);
}

.newsletter-form button {
    padding: 0.9rem 2rem;
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(196, 255, 57, 0.35);
}

/* ================================
   Image (Right)
================================ */
.newsletter-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.newsletter-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 60px rgba(196, 255, 57, 0.25));
}

/* ================================
   Animations
================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}

/* ================================
   Responsive
================================ */
@media (max-width: 992px) {
    .newsletter-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-content {
        max-width: 100%;
    }

    .newsletter-image {
        margin-top: 2.5rem;
    }
}

@media (max-width: 768px) {
    .newsletter-card {
        padding: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}


/* Trust Section */
.trust-section {
    padding-top: 50px;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.trust-background {
    position: absolute;
    inset: 0;
    opacity: 0.03;
}

.trust-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--accent) 1px, transparent 1px),
        linear-gradient(90deg, var(--accent) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: trustGridMove 20s linear infinite;
}

@keyframes trustGridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.trust-stat-card {
    background: linear-gradient(135deg, rgba(196, 255, 57, 0.03) 0%, rgba(196, 255, 57, 0.01) 100%);
    border: 1px solid rgba(196, 255, 57, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px);
}

.trust-stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-stat-card:hover::before {
    transform: scaleX(1);
}

.trust-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 255, 57, 0.3);
    box-shadow: 0 20px 60px rgba(196, 255, 57, 0.1);
}

.trust-stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(196, 255, 57, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-stat-icon i {
    font-size: 2rem;
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-stat-card:hover .trust-stat-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(5deg);
}

.trust-stat-card:hover .trust-stat-icon i {
    color: var(--primary);
    transform: scale(1.1);
}

.trust-stat-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.trust-stat-content p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(196, 255, 57, 0.1);
    border: 1px solid rgba(196, 255, 57, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
}

.trust-badge i {
    font-size: 1rem;
}

.trust-logos {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(196, 255, 57, 0.1);
}

.trust-logos h4 {
    font-size: 1.125rem;
    color: var(--text);
    margin-bottom: 2rem;
    font-weight: 500;
}

.trust-logo-slider {
    overflow: hidden;
    padding: 2rem 0;
}

.trust-logo-track {
    display: flex;
    gap: 3rem;
    animation: logoSlide 30s linear infinite;
}

@keyframes logoSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.trust-logo-item {
    min-width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trust-logo-item img {
    max-height: 70px;
    max-width: 140px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.trust-logo-item:hover {
    opacity: 1;
}

.trust-logo-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}


/* Who It's For Section */
.who-its-for-section {
    padding: 2rem 0;
    background: var(--background);
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: 3rem;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(196, 255, 57, 0.03) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1px solid rgba(196, 255, 57, 0.15);
    border-radius: 20px;
    padding: 3rem;
    min-height: 500px;
}

.slide-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: morphShape 8s ease-in-out infinite;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

.slide-icon i {
    font-size: 5rem;
    color: var(--primary);
}

.slide-decoration {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(196, 255, 57, 0.2);
    border-radius: 50%;
    animation: rotate 15s linear infinite;
}

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

.slide-decoration::before,
.slide-decoration::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
}

.slide-decoration::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.slide-decoration::after {
    bottom: 0;
    right: 0;
}

.slide-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.slide-info p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.slide-features {
    list-style: none;
    margin-bottom: 2rem;
}

.slide-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text);
    font-size: 1rem;
}

.slide-features li i {
    color: var(--accent);
    font-size: 1.125rem;
}

.slide-cta {
    padding: 1rem 2.5rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(196, 255, 57, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(196, 255, 57, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 255, 57, 0.2);
    border-radius: 50%;
    color: var(--accent);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(196, 255, 57, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent);
    width: 40px;
    border-radius: 6px;
}

.indicator:hover {
    background: var(--accent-light);
}

/* Responsive Styles */
@media (max-width: 968px) {
    .trust-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .slide-image {
        order: -1;
    }

    .slide-icon {
        width: 150px;
        height: 150px;
    }

    .slide-icon i {
        font-size: 3.5rem;
    }

    .slide-decoration {
        width: 180px;
        height: 180px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 640px) {
    .newsletter-title{
        font-size: 1.2rem;
    }
       .newsletter-title span{
        font-size: 2rem;
    }
    .trust-stats-grid {
        grid-template-columns: 1fr;
    }

    .trust-logo-item {
        min-width: 80px;
        width: 120px;
        height: 60px;
        font-size: 0.875rem;
    }

    .carousel-slide {
        padding: 1.5rem;
    }

    .slide-content {
        padding: 2rem 1.5rem;
    }

    .slide-icon {
        width: 120px;
        height: 120px;
    }

    .slide-icon i {
        font-size: 2.5rem;
    }

    .slide-decoration {
        width: 140px;
        height: 140px;
    }

    .slide-info h3 {
        font-size: 1.75rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }
}
