
:root{
    --gradient-hero: linear-gradient(135deg, hsl(214deg 100% 57% / 5%) 5%, hsl(262deg 83% 58% / 5%) 100%);
    --primary: 214 100% 57%;
    --accent: 262 83% 58%;

}

*, :before, :after {
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
}

/* AOS Customizations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
    transition-duration: 400ms;
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
    transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
    transition-delay: 100ms;
}
.btn-hover-bg:hover {
    background-color: hsl(var(--accent)) !important;color: #fff !important;border-color: hsl(var(--accent)) !important;
}
.blur-3xl {
    --tw-blur: blur(64px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient {
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.btn-text:hover {
    color: #667eea;
}
.header-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e7ff, transparent);
}

/* Hero Section Styles */
.hero-section {
    background-image: var(--gradient-hero);
}
.bg-primary-10 {
    background-color: hsl(var(--primary) / .1);
}
.bg-accent-10 {
    background-color: hsl(var(--accent) / .1);
}
/* Top Banner */
.top-banner {
    display: inline-block;
}

.banner-text {
    color: #dc2626;font-size: 14px;
}

/* Hero Headline */
.hero-headline {
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;-webkit-text-fill-color: transparent;background-clip: text;
}

.feature-dot {
    width: 8px;height: 8px;border-radius: 50%;flex-shrink: 0;
}

.feature-dot.green {
    background: #10b981;
}

.feature-dot.blue {
    background: #3b82f6;
}
#modalregistration {
    background: #000000ad !important;
}

/* CTA Buttons */
.btn-primary-gradient {
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}
.btn-primary-gradient-popup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary-outline:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
}

.proof-box {
    --tw-backdrop-blur: blur(4px);
}
.login-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: modalSlideIn 0.6s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

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


/* Additional Features */

.floating-element {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    animation: float 5s ease-in-out infinite;
}
/* Animation Keyframes */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Marquee Section Styles */

.marquee-content {
    animation: marquee 60s linear infinite; width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0; max-width: 140px; max-height: 70px;filter: grayscale(100%); transition: all 0.3s ease-in-out;
}

.marquee-item:hover {
    filter: grayscale(0%);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Hide scrollbar for all browsers */
.marquee-container::-webkit-scrollbar {
    display: none;
}

.marquee-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marquee-content {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Product Options Section Styles */

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Product Info Styles */

.product-description {
    font-size: 0.95rem;
}

/* Features List */

.features-list li {
    padding: 0.25rem 0;color: #666;font-size: 0.9rem;position: relative;padding-left: 1.5rem;
}

.features-list li::before {
    content: '•';position: absolute;left: 0;color: #3B82F6;font-weight: bold;
}

/* Comparison Table Section Styles */

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

/* Feature Status */
.feature-status {
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
}

.feature-status.yes {
    color: #3B82F6;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .product-header {
        font-size: 0.85rem;
    }
    
    .feature-name {
        font-size: 0.8rem;
    }
    
    .feature-status {
        font-size: 0.8rem;
    }
}

.benefit-number {
    background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
}

.benefit-content {
    flex: 1;
}

.benefit-badge {
    white-space: nowrap;
}

/* Complete Package Box Styles */

.package-feature i {
    flex-shrink: 0;
}

.btn-get-started:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    color: white;
}

/* Transform Networking Section Styles */
.transform-networking-section {
    background: linear-gradient(90deg, #3B82F6 0%, #8B5CF6 100%);
}

.btn-nfc:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}


.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}
.transform-networking-section .event_box ul li a:hover {
    color: #fff !important;opacity:1 !important;
}
.animated-gradient-new {
    animation: 14s linear infinite animateBg;
    background-image: linear-gradient(90deg, #0046bf, #895cf3, #0c4bba, #885bf2);
    background-size: 300% 100%;
}
.lovedByRating .redtrdi-new3 {
    background: #8B5CF6 !important;
}
.lovedByRating .gtco-testimonials .owl-dots .active span {
    background: #0c4bba;
}
.lovedByRating .gtco-testimonials .owl-dots span {
    border: 2px solid #8b5cf6;
}

.limited-offer-banner {
    background: linear-gradient(90deg, #dc3545 0%, #fd7700 100%);
}
.benefits-list li i {
    color: #28a745;
    font-size: 16px;
}
.cta-button {
    background: #28a745;border: none;color: white;padding: 15px 30px;border-radius: 8px;font-size: 18px;
    font-weight: 600;width: 100%;transition: all 0.3s ease;
}


/* ===================== owl slider ======================= */

.gtco-testimonials .owl-dots {
    text-align: center;
}

.gtco-testimonials .owl-dots span {
    position: relative;height: 10px;width: 10px;border-radius: 50%;display: block;background: #fff;
    border: 2px solid #f8010117;margin: 0 5px;
}

.gtco-testimonials .owl-dots .active {
    box-shadow: none;
}

.gtco-testimonials .owl-dots .active span {
    background: #4b1e1edb;box-shadow: none;height: 12px;width: 12px;margin-bottom: -1px;
}
.owl-nav {
    width: 120px;position: relative; display: flex;margin: auto;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
    outline: 0;left: 0;right: 0;bottom: 0;z-index: 9;top: auto;justify-content: center !important;
}
.owl-carousel .owl-nav button.owl-next {
    left: auto;right: 0;
}
.owl-carousel .owl-nav button.owl-next span, .owl-carousel .owl-nav button.owl-prev span {
    margin:0 !important;
}

.owl-carousel button.owl-dot {
    outline: 0;
}

.gtco-testimonials .owl-stage-outer {
    overflow-x: hidden !important;height: 460px;padding: 4rem 0 0;
}

.gtco-testimonials .owl-stage-outer .card, .gtco-testimonials .owl-carousel .owl-stage {
    height: 100%;
}

.gtco-testimonials .no-js .owl-carousel, .gtco-testimonials .owl-carousel.owl-loaded {
    display: block;height: 440px;padding-top: 2rem;
}

.gtco-testimonials .active {
    opacity: 0.5;transition: all 0.3s;
}

.gtco-testimonials .center {
    opacity: 1;margin-top: -50px;height: 370px !important;
}

.gtco-testimonials .center .card {
    background-color: #f1f3fe;
}

/* ===================== owl slider ======================= */