:root {
    --primary-gradient: linear-gradient(75deg, rgb(22 119 255), rgb(78 175 205));
    --secondary-gradient: linear-gradient(45deg, #667eea, #764ba2);
    --dark-bg: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
    background: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

/* Animated gradient background */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #a7ccff, #4291ff, #45b7d1, #1678fe, #16aab5, #16c78b);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.85); */
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(100px);
    z-index: -1;
}

/* Glass morphism navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1320px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 28px;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500;
    position: relative;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Gradient buttons */
.btn-gradient {
    background: var(--primary-gradient);
    border: none;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgb(42 131 255 / 45%);
    color: white;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-gradient::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    z-index: -1;
    border-radius: inherit;
    transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: clamp(2rem, 7vw, 4rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffffff, #1677ff, #16ff3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.1)); }
    to { filter: drop-shadow(0 0 40px rgba(107, 122, 255, 0.2)); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 40px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.feature-pill {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-pill .hero-feature-icon {
    border: 1px solid #ffffff57;
    width: 45px;
    height: 40px;
    display: inline-flex
;
    margin-right: 15px;
    border-radius: 30px;
    background: #1677ff;
    justify-content: center;
    align-items: center;
}

/* Floating 3D elements */
.floating-element {
    position: absolute;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-cta .btn{
    padding: 15px 30px !important;
}

/* Marketplace section */
.marketplace {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-align: center;
    /* display: inline-flex; */
    /* justify-content: center; */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    width: 20%;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transform: translateX(-50%);
}

.section-subtitle {
    color: #b0b0b0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 50px;
}

.marketplace-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.marketplace-item p {
    font-size: 17px;
    margin-bottom: 0;
}
.marketplace-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.marketplace-item:hover::before {
    transform: translateX(100%);
}

.marketplace-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.flag {
    width: 60px;
    height: 40px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.marketplace-item:hover .flag {
    transform: scale(1.1) rotate(5deg);
}

/* Features section */
.features {
    padding: 100px 0;
    position: relative;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-card p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #d0d0d0;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4ecdc4;
}

/* Why choose us section */
.why-choose {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    position: relative;
}

.why-choose-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 270px;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.why-choose-icon1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.why-choose-icon {
    font-size: 2.3rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: #ffffff; */
    /* background-clip: text; */
    transition: all 0.3s ease;
    /* border: 1px solid; */
    width: 80px;
    border-radius: 50%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    /* background: #2283f5; */
    /* color: #fff !important; */
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.2);
     display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-item h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: #ffffff;
}

.why-choose-item p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    position: relative;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-style: italic;
    color: #d0d0d0;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
}

.testimonial-text::before {
    top: -20px;
    left: -10px;
}

.testimonial-text::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid var(--glass-border);
}

.author-info h5 {
    margin-bottom: 0;
    color: white;
}

.author-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Pricing section */
.pricing {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    border: 2px solid #1e7ff873;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 27px;
    right: -37px;
    background: var(--primary-gradient);
    color: white;
    padding: 6px 35px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price span {
    font-size: 1rem;
    color: #b0b0b0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    color: #d0d0d0;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.pricing-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4ecdc4;
}

/* Contact section */
.contact {
    padding: 100px 0;
    position: relative;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-card p {
    color: #b0b0b0;
    margin-bottom: 10px;
}

.contact-card a {
    color: #3c8dff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 700;
}

.contact-card a:hover {
    color: #ff6b6b;
    text-decoration: underline;
}

.contact .sub {
    color: #b0b0b0;
    margin-bottom: 10px;
}
.contact .item-box {
    /* background: #1b84ff1a; */
        background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}
.contact .info-item .icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #1b84ff;
    border-radius: 20px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
    margin-bottom: 2rem;

    
}
.contact .info-item .icon-box i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}
.support-section h5 {
    font-size: 17px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}
.contact .item-box p {
    opacity: 0.8;
    /* margin-bottom: 2rem; */
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
}
/* Contact form */
.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 12px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: #1b84ffad;
    box-shadow: 0 0 0 0.25rem rgba(78, 154, 205, 0.25);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    padding: 50px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1b84ff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer p {
    color: #b0b0b0;
    margin-bottom: 10px;
}

/* Floating shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    top: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary-gradient);
    bottom: 10%;
    right: 5%;
    animation: float 10s ease-in-out infinite reverse;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }

    .navbar-collapse {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        padding: 20px;
        margin-top: 10px;
    }

    .hero {
        margin-top: 100px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .feature-card, .contact-card, .pricing-card {
        padding: 30px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-gradient);
}

/* Animation classes */
.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

.animate-delay-4 {
    animation-delay: 0.8s;
}

/* Tooltip styles */
.tooltip-inner {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 10px;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, 
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: rgba(0, 0, 0, 0.8);
}

/* Custom cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

/* Hover effects for cursor */
.btn-gradient:hover ~ .cursor,
.feature-card:hover ~ .cursor,
.marketplace-item:hover ~ .cursor {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(255, 255, 255, 0.8);
}

.btn-gradient:hover ~ .cursor-follower,
.feature-card:hover ~ .cursor-follower,
.marketplace-item:hover ~ .cursor-follower {
    transform: translate(-50%, -50%) scale(0.5);
    background: rgba(255, 255, 255, 0.1);
}


.bdr{
    border:1px solid red;
}

.btn {
    font-size: 14px;
    padding: 10px 20px;
    font-weight: 600;
}







 /* Privacy Policy Content */
.privacy-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    margin-top: 150px;
    margin-bottom: 100px;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: #b0b0b0;
    font-size: 1rem;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4ecdc4;
}

.privacy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #1677ff;
}
.privacy-section  a{
    color: rgb(98 161 255);
    text-decoration: none;
}

.privacy-section p, 
.privacy-section ul {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
}

.highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 500;
}


    /* Responsive adjustments */
@media (max-width: 768px) {
    
    .privacy-container {
        padding: 30px 20px;
        margin-top: 100px;
        margin-bottom: 50px;
    }

    .privacy-title {
        font-size: 2.2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }
}


.navbar-toggler i{
    color: #fff;
    font-size: 21px;
}

@media (max-width: 1199px) and (min-width: 992px){

    .nav-link {
        color: #ffffff !important;
        font-weight: 500;
        position: relative;
        margin: 0 2px;
        transition: all 0.3s ease;
        font-size: 15px;
    }
    .hero {
        margin-top: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .feature-card, .contact-card, .pricing-card {
        padding: 30px;
    }
}


/* Scroll reveal animation */
/* .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
} */



.navbar-nav .nav-link.active {
    color: #78b6ff !important;
    font-weight: 600;
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, rgb(78, 205, 196), rgb(22 119 255));
    border-radius: 2px;
}