:root {
    --primary: #0d6efd;
    --primary-hover: #0b5ed7;
    --primary-light: #e7f1ff;
    --text: #222;
    --text-light: #555;
    --border: #e0e0e0;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --gradient: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}


.navbar {
    padding: 20px 0;
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    margin: 0 12px;
    transition: var(--transition);
    color: var(--text) !important;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    border-radius: var(--radius);
    padding: 12px 28px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: var(--radius);
    padding: 12px 28px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}


.hero-section {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e7f1ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-badge i {
    margin-right: 8px;
}


.stats-section {
    padding: 100px 0;
    background-color: white;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.stat-title {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}


.features-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
}

.feature-card {
    padding: 40px 30px;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 2.2rem;
    margin-bottom: 30px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient);
    color: white;
    transform: rotateY(180deg);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}


.cta-section {
    padding: 100px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M0,128L48,117.3C96,107,192,85,288,112C384,139,480,213,576,224C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    position: relative;
}


.cta2-section {
    --gradient: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    padding: 120px 20px;
    background: #ffffff;
    color: #111;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta2-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
}


.cta2-section::before,
.cta2-section::after {
    content: '';
    position: absolute;
    background: var(--gradient);
    border-radius: 16px;
    opacity: 0.08;
    z-index: 0;
    animation: floatPanels 12s ease-in-out infinite;
}

.cta2-section::before {
    width: 240px;
    height: 140px;
    top: 10%;
    left: -60px;
    transform: rotate(-6deg);
}

.cta2-section::after {
    width: 280px;
    height: 160px;
    bottom: 15%;
    right: -70px;
    transform: rotate(8deg);
}

@keyframes floatPanels {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(2deg); }
}


.cta2-section .circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.12;
    z-index: 0;
    animation: floatCircles 14s ease-in-out infinite;
}

.cta2-section .circle.small {
    width: 80px; height: 80px;
    top: 25%; left: 15%;
}

.cta2-section .circle.medium {
    width: 140px; height: 140px;
    bottom: 20%; right: 20%;
}

@keyframes floatCircles {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.05); }
}


.cta2-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.cta2-section p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
    position: relative;
    z-index: 2;
}


.cta2-section .cta-btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 50px;
    color: #fff;
    background: var(--gradient);
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

.cta2-section .cta-btn:hover {
    background: linear-gradient(135deg, #0b5ed7, #0a58ca);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.35);
}


.btn-light {
    background-color: white;
    color: var(--primary);
    border-radius: var(--radius);
    padding: 14px 35px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    position: relative;
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}


.footer {
    padding: 80px 0 40px;
    background: linear-gradient(to bottom, #0b1c33 0%, #0a1529 100%);
    color: white;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-links h5 {
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}


@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 8s ease-in-out infinite;
}


@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-title h2 {
        font-size: 2.4rem;
    }
    
    .stat-number {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .stat-card, .feature-card {
        margin-bottom: 30px;
    }
}
.copyright {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}


@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .privacy-nav {
        position: static;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .privacy-section h2 {
        font-size: 1.8rem;
    }
}

        .page-header {
            padding: 100px 0 70px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e7f1ff 100%);
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--text);
        }
        
        .page-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        

        .breadcrumb {
            background: transparent;
            justify-content: center;
            padding: 0;
            margin-bottom: 0;
        }
        
        .breadcrumb-item a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb-item a:hover {
            text-decoration: underline;
        }
        

        .privacy-content {
            padding: 80px 0;
        }
        
        .privacy-nav {
            position: sticky;
            top: 100px;
            background: white;
            border-radius: var(--radius);
            padding: 30px;
            box-shadow: var(--shadow);
            height: fit-content;
        }
        
        .privacy-nav h5 {
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text);
            position: relative;
            padding-bottom: 10px;
        }
        
        .privacy-nav h5:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--primary);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }
        
        .privacy-nav .nav-link {
            margin: 0;
            padding: 10px 0;
            color: var(--text-light) !important;
            border-left: 3px solid transparent;
            padding-left: 15px;
            margin-left: -15px;
        }
        
        .privacy-nav .nav-link:hover, .privacy-nav .nav-link.active {
            color: var(--primary) !important;
            border-left-color: var(--primary);
            background: transparent;
        }
        
        .privacy-section {
            margin-bottom: 60px;
        }
        
        .privacy-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--text);
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary-light);
        }
        
        .privacy-section h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: var(--text);
        }
        
        .privacy-section p {
            margin-bottom: 20px;
            color: var(--text-light);
        }
        
        .privacy-section ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .privacy-section li {
            margin-bottom: 10px;
            color: var(--text-light);
        }
        
        .highlight-box {
            background: var(--primary-light);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: var(--radius);
            margin: 30px 0;
        }

        /* Premium Modal Styles */
.premium-modal-content {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.3);
    border: none;
    transform: perspective(1000px) rotateX(0deg);
    transition: all 0.5s ease;
}

.premium-modal-content:hover {
    transform: perspective(1000px) rotateX(5deg);
}

.modal-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    border-bottom: none;
    padding: 2rem;
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.btn-close span {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
}

.premium-benefits, .premium-tasks {
    padding: 15px;
}

.premium-benefits h4, .premium-tasks h4 {
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.premium-benefits h4:after, .premium-tasks h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #0d6efd;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.premium-benefits ul {
    list-style: none;
    padding: 0;
}

.premium-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.premium-benefits li:hover {
    background-color: #f8f9fa;
    padding-left: 10px;
}

.premium-benefits li:last-child {
    border-bottom: none;
}

.premium-benefits i {
    color: #0d6efd;
    margin-right: 12px;
    font-size: 1.2rem;
}

.task-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.task-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.task-item h5 {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 8px;
}

.task-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.task-item li {
    padding: 8px 0;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.task-item li:before {
    content: '•';
    color: #0d6efd;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
}

.modal-footer {
    border-top: 1px solid #eee;
    padding: 1.5rem;
}

.modal-footer .btn {
    min-width: 140px;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-footer .btn-primary {
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.modal-footer .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

.modal-footer .btn-outline-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.2);
}

/* Animation for modal appearance */
@keyframes modalAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateX(-10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(0);
    }
}

.modal.fade .modal-dialog {
    animation: modalAppear 0.5s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .btn-close {
        top: 1rem;
        right: 1rem;
    }
}