:root {
            --primary: #4361ee;
            --secondary: #3a0ca3;
            --accent: #4cc9f0;
            --success: #2ec4b6;
            --warning: #ff9f1c;
            --dark: #14213d;
            --light: #f8f9fa;
            --gray: #5f6368;
            --light-gray: #e5e5e5;
            --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    background-color: #f5f7fa;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary), #63b3ed);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #0d5cb6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f4ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.08) 0%, rgba(52, 168, 83, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.secondary-button {
    background: white;
    color: var(--primary);
    border: 1px solid var(--light-gray);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    text-decoration: none;
}

.secondary-button:hover {
    background: #f5f9ff;
    border-color: var(--primary);
}

/* Tools Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.tool-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f0fe, #f0f7ff);
    color: var(--primary);
    font-size: 50px;
}

.tool-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tool-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark);
}

.tool-content p {
    color: var(--gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.tool-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    gap: 8px;
    transition: var(--transition);
}

.tool-link:hover {
    gap: 12px;
}



/* Features Section */
.features {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #e8f0fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), #0d5cb6);
    color: white;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
    opacity: 0.9;
}

.cta-button.light {
    background: white;
    color: var(--primary);
}

.cta-button.light:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

       /* FAQ Section */
        .faq-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
            padding: 80px 0;
            margin-top: 60px;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 25px 30px;
            font-size: 18px;
            font-weight: 500;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question i {
            color: var(--primary);
            transition: var(--transition);
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
            color: var(--gray);
        }
        
        .faq-item.active .faq-answer {
            padding: 0 30px 25px;
            max-height: 300px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc1c6;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3c4043;
    color: #9aa0a6;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3c4043;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
/*---------------------------- */
/* Work page */
/*----------------------------*/
        .tools-section-work {
            padding: 80px 0;
        }
        
        .tools-section-work-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .tools-section-work-title h2 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .tools-section-work-title p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
            font-size: 18px;
        }

/* Process Steps */
        .process-steps {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin: 50px 0;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 50px;
            right: 50px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-icon {
            width: 120px;
            height: 120px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            box-shadow: var(--card-shadow);
            font-size: 40px;
            color: var(--primary);
            border: 4px solid #e8f0fe;
        }
        
        .step-number {
            position: absolute;
            top: 0;
            right: 0;
            background: var(--secondary);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .step h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .step p {
            color: var(--gray);
            max-width: 300px;
            margin: 0 auto;
        }
        
               /* Video Tutorial */
        .video-container {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            margin: 60px 0;
            position: relative;
        }
        
        .video-placeholder {
            background: linear-gradient(135deg, #e8f0fe, #f0f7ff);
            height: 450px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .video-placeholder i {
            font-size: 80px;
            color: var(--primary);
            opacity: 0.8;
        }
        
        .play-button {
            position: absolute;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .play-button:hover {
            transform: scale(1.1);
            background: white;
        }
        
        .play-button i {
            font-size: 40px;
            color: var(--primary);
        }
        
        .video-info {
            padding: 30px;
            text-align: center;
        }
        
        .video-info h3 {
            font-size: 28px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .video-info p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

    /* Mobile Menu Styles */
.mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--dark);
            cursor: pointer;
            transition: var(--transition);
            padding: 8px;
            border-radius: 4px;
        }
        
        .mobile-menu-btn:hover {
            background-color: #f0f7ff;
            color: var(--primary);
        }

.mobile-menu {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: 0;
            background: white;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            overflow: auto;
            transition: height 0.4s ease;
            z-index: 99;
        }

.mobile-menu.active {
            height: auto;
        }

.mobile-menu-links {
            list-style: none;
            padding: 20px;
        }
        
        .mobile-menu-links li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--light-gray);
        }

.mobile-menu-links a {
            display: block;
            padding: 10px 0;
            color: var(--dark);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: var(--transition);
        }

.mobile-menu-links a:hover {
            color: var(--primary);
            padding-left: 10px;
        }

/*----------------------*/
/* Responsive Design */
/*----------------------*/


@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    
/* Show mobile menu button and hide desktop nav on mobile */
    .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .navbar {
                padding: 15px 0;
            }
    
    .tools-section-work {
                padding: 60px 0;
            }
            
    .tools-section-work-title h2 {
                font-size: 28px;
            }
    .process-steps {
                flex-direction: column;
                align-items: center;
                gap: 60px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .step {
                max-width: 400px;
            }
            
            .video-placeholder {
                height: 350px;
            }
        }

@media (max-width: 576px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}