/* File Encryption Tool Specific Styles - Scoped to not affect header/footer */
        .file-encryption-tool {
            font-family: 'Inter', sans-serif;
        }
        
        .file-encryption-tool * {
            box-sizing: border-box;
        }
        
        /* Color Variables */
        .file-encryption-tool {
            --primary-green: #48772c;
            --primary-green-light: #5a9636;
            --primary-green-dark: #3a6023;
            --secondary-gray: #5f5f5f;
            --light-gray: #f8f9fa;
            --white: #ffffff;
            --dark-text: #2d2d2d;
            --gradient-green: linear-gradient(135deg, #48772c 0%, #5a9636 100%);
        }
        
        /* Hero Section */
        .file-encryption-tool .hero-section {
            background: var(--gradient-green);
            padding: 60px 0;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .file-encryption-tool .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .file-encryption-tool .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .file-encryption-tool .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .file-encryption-tool .rating-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,0.2);
            padding: 8px 16px;
            border-radius: 50px;
            margin-top: 20px;
            backdrop-filter: blur(10px);
        }
        
        .file-encryption-tool .rating-badge i {
            color: #ffc107;
            margin-right: 3px;
        }
        
        /* Main Tool Container */
        .file-encryption-tool .tool-container {
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            padding: 40px;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }
        
        /* Ad Space Containers */
        .file-encryption-tool .ad-container {
            background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
            border: 2px dashed #dee2e6;
            border-radius: 12px;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-gray);
            font-size: 0.9rem;
            text-align: center;
            padding: 20px;
        }
        
        .file-encryption-tool .ad-container-horizontal {
            min-height: 100px;
            margin: 30px 0;
        }
        
        /* Upload Area */
        .file-encryption-tool .upload-area {
            border: 3px dashed var(--primary-green);
            border-radius: 16px;
            padding: 50px 30px;
            text-align: center;
            background: linear-gradient(180deg, rgba(72,119,44,0.05) 0%, rgba(72,119,44,0.02) 100%);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .file-encryption-tool .upload-area:hover {
            border-color: var(--primary-green-light);
            background: linear-gradient(180deg, rgba(72,119,44,0.1) 0%, rgba(72,119,44,0.05) 100%);
            transform: translateY(-2px);
        }
        
        .file-encryption-tool .upload-area.dragover {
            border-color: var(--primary-green-dark);
            background: linear-gradient(180deg, rgba(72,119,44,0.15) 0%, rgba(72,119,44,0.08) 100%);
        }
        
        .file-encryption-tool .upload-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: var(--white);
            box-shadow: 0 10px 30px rgba(72,119,44,0.3);
        }
        
        .file-encryption-tool .upload-text {
            color: var(--dark-text);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .file-encryption-tool .upload-hint {
            color: var(--secondary-gray);
            font-size: 0.9rem;
        }
        
        /* File Input Hidden */
        .file-encryption-tool .file-input {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            cursor: pointer;
        }
        
        /* Selected File Display */
        .file-encryption-tool .selected-file {
            display: none;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
            padding: 20px;
            margin-top: 20px;
            border-left: 4px solid var(--primary-green);
        }
        
        .file-encryption-tool .selected-file.show {
            display: flex;
            align-items: center;
        }
        
        .file-encryption-tool .file-icon-box {
            width: 50px;
            height: 50px;
            background: var(--primary-green);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
            margin-right: 15px;
        }
        
        .file-encryption-tool .file-details h6 {
            margin: 0;
            font-weight: 600;
            color: var(--dark-text);
            word-break: break-all;
        }
        
        .file-encryption-tool .file-details span {
            font-size: 0.85rem;
            color: var(--secondary-gray);
        }
        
        .file-encryption-tool .remove-file-btn {
            background: none;
            border: none;
            color: #dc3545;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 5px;
            margin-left: auto;
            transition: transform 0.2s;
        }
        
        .file-encryption-tool .remove-file-btn:hover {
            transform: scale(1.1);
        }
        
        /* Password Section */
        .file-encryption-tool .password-section {
            margin-top: 30px;
        }
        
        .file-encryption-tool .password-label {
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .file-encryption-tool .password-label i {
            color: var(--primary-green);
            margin-right: 8px;
        }
        
        .file-encryption-tool .password-wrapper {
            position: relative;
        }
        
        .file-encryption-tool .password-input {
            width: 100%;
            padding: 15px 50px 15px 20px;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .file-encryption-tool .password-input:focus {
            border-color: var(--primary-green);
            outline: none;
            box-shadow: 0 0 0 4px rgba(72,119,44,0.1);
        }
        
        .file-encryption-tool .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--secondary-gray);
            cursor: pointer;
            font-size: 1.1rem;
        }
        
        /* Password Strength Indicator */
        .file-encryption-tool .password-strength {
            margin-top: 10px;
        }
        
        .file-encryption-tool .strength-bar {
            height: 4px;
            background: #e9ecef;
            border-radius: 2px;
            overflow: hidden;
        }
        
        .file-encryption-tool .strength-fill {
            height: 100%;
            width: 0%;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        
        .file-encryption-tool .strength-text {
            font-size: 0.8rem;
            margin-top: 5px;
        }
        
        /* Action Buttons */
        .file-encryption-tool .action-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .file-encryption-tool .btn-encrypt,
        .file-encryption-tool .btn-decrypt {
            flex: 1;
            padding: 16px 30px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .file-encryption-tool .btn-encrypt {
            background: var(--gradient-green);
            color: var(--white);
            box-shadow: 0 10px 30px rgba(72,119,44,0.3);
        }
        
        .file-encryption-tool .btn-encrypt:hover:not(:disabled) {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(72,119,44,0.4);
        }
        
        .file-encryption-tool .btn-decrypt {
            background: var(--white);
            color: var(--primary-green);
            border: 2px solid var(--primary-green);
        }
        
        .file-encryption-tool .btn-decrypt:hover:not(:disabled) {
            background: var(--primary-green);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        .file-encryption-tool .btn-encrypt:disabled,
        .file-encryption-tool .btn-decrypt:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        
        /* Progress Section */
        .file-encryption-tool .progress-section {
            display: none;
            margin-top: 30px;
            padding: 25px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 12px;
        }
        
        .file-encryption-tool .progress-section.show {
            display: block;
        }
        
        .file-encryption-tool .progress-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .file-encryption-tool .progress-title {
            font-weight: 600;
            color: var(--dark-text);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .file-encryption-tool .progress-spinner {
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .file-encryption-tool .progress-bar-container {
            height: 12px;
            background: #e9ecef;
            border-radius: 6px;
            overflow: hidden;
        }
        
        .file-encryption-tool .progress-bar-fill {
            height: 100%;
            background: var(--gradient-green);
            border-radius: 6px;
            transition: width 0.3s ease;
            position: relative;
        }
        
        .file-encryption-tool .progress-bar-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 1.5s infinite;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        /* Features Grid */
        .file-encryption-tool .features-section {
            padding: 60px 0;
            background: var(--light-gray);
        }
        
        .file-encryption-tool .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 15px;
        }
        
        .file-encryption-tool .section-subtitle {
            text-align: center;
            color: var(--secondary-gray);
            max-width: 600px;
            margin: 0 auto 50px;
        }
        
        .file-encryption-tool .feature-card {
            background: var(--white);
            border-radius: 16px;
            padding: 35px 25px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #e9ecef;
        }
        
        .file-encryption-tool .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }
        
        .file-encryption-tool .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(72,119,44,0.1) 0%, rgba(72,119,44,0.2) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--primary-green);
        }
        
        .file-encryption-tool .feature-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 12px;
        }
        
        .file-encryption-tool .feature-text {
            color: var(--secondary-gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* How It Works Section */
        .file-encryption-tool .how-it-works {
            padding: 60px 0;
            background: var(--white);
        }
        
        .file-encryption-tool .step-card {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }
        
        .file-encryption-tool .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            margin: 0 auto 20px;
            box-shadow: 0 10px 30px rgba(72,119,44,0.3);
        }
        
        .file-encryption-tool .step-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 10px;
        }
        
        .file-encryption-tool .step-text {
            color: var(--secondary-gray);
            font-size: 0.9rem;
        }
        
        /* Content Section */
        .file-encryption-tool .content-section {
            padding: 60px 0;
            background: var(--light-gray);
        }
        
        .file-encryption-tool .content-block {
            background: var(--white);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .file-encryption-tool .content-block h2 {
            color: var(--primary-green);
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .file-encryption-tool .content-block h3 {
            color: var(--dark-text);
            font-size: 1.3rem;
            font-weight: 600;
            margin: 25px 0 15px;
        }
        
        .file-encryption-tool .content-block p {
            color: var(--secondary-gray);
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .file-encryption-tool .content-block ul {
            padding-left: 20px;
        }
        
        .file-encryption-tool .content-block li {
            color: var(--secondary-gray);
            line-height: 1.8;
            margin-bottom: 8px;
        }
        
        .file-encryption-tool .content-block li::marker {
            color: var(--primary-green);
        }
        
        /* FAQ Section */
        .file-encryption-tool .faq-section {
            padding: 60px 0;
            background: var(--white);
        }
        
        .file-encryption-tool .accordion-item {
            border: 1px solid #e9ecef;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
        }
        
        .file-encryption-tool .accordion-button {
            font-weight: 600;
            color: var(--dark-text);
            background: var(--white);
            padding: 20px 25px;
        }
        
        .file-encryption-tool .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, rgba(72,119,44,0.05) 0%, rgba(72,119,44,0.1) 100%);
            color: var(--primary-green);
        }
        
        .file-encryption-tool .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-green);
        }
        
        .file-encryption-tool .accordion-body {
            padding: 20px 25px;
            color: var(--secondary-gray);
            line-height: 1.7;
        }
        
        /* Related Tools */
        .file-encryption-tool .related-tools {
            padding: 60px 0;
            background: var(--light-gray);
        }
        
        .file-encryption-tool .tool-card {
            background: var(--white);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
            text-decoration: none;
            display: block;
        }
        
        .file-encryption-tool .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-color: var(--primary-green);
        }
        
        .file-encryption-tool .tool-card i {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 15px;
        }
        
        .file-encryption-tool .tool-card h5 {
            color: var(--dark-text);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .file-encryption-tool .tool-card p {
            color: var(--secondary-gray);
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* Modal Styles */
        .file-encryption-tool .custom-modal .modal-content {
            border: none;
            border-radius: 20px;
            overflow: hidden;
        }
        
        .file-encryption-tool .custom-modal .modal-header {
            border-bottom: none;
            padding: 25px 30px 10px;
        }
        
        .file-encryption-tool .custom-modal .modal-body {
            padding: 20px 30px 30px;
            text-align: center;
        }
        
        .file-encryption-tool .modal-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin: 0 auto 20px;
        }
        
        .file-encryption-tool .modal-icon.success {
            background: linear-gradient(135deg, rgba(72,119,44,0.1) 0%, rgba(72,119,44,0.2) 100%);
            color: var(--primary-green);
        }
        
        .file-encryption-tool .modal-icon.error {
            background: linear-gradient(135deg, rgba(220,53,69,0.1) 0%, rgba(220,53,69,0.2) 100%);
            color: #dc3545;
        }
        
        .file-encryption-tool .modal-icon.warning {
            background: linear-gradient(135deg, rgba(255,193,7,0.1) 0%, rgba(255,193,7,0.2) 100%);
            color: #ffc107;
        }
        
        .file-encryption-tool .modal-title-custom {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 10px;
        }
        
        .file-encryption-tool .modal-text {
            color: var(--secondary-gray);
            line-height: 1.6;
        }
        
        .file-encryption-tool .modal-btn {
            padding: 12px 40px;
            border-radius: 10px;
            font-weight: 600;
            margin-top: 20px;
        }
        
        .file-encryption-tool .modal-btn-success {
            background: var(--gradient-green);
            border: none;
            color: var(--white);
        }
        
        /* Trust Badges */
        .file-encryption-tool .trust-section {
            background: var(--gradient-green);
            padding: 40px 0;
            color: var(--white);
        }
        
        .file-encryption-tool .trust-item {
            text-align: center;
            padding: 20px;
        }
        
        .file-encryption-tool .trust-item i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }
        
        .file-encryption-tool .trust-item h4 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .file-encryption-tool .trust-item p {
            opacity: 0.9;
            margin: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 991px) {
            .file-encryption-tool .hero-title {
                font-size: 2.2rem;
            }
            
            .file-encryption-tool .ad-container {
                min-height: 250px;
                margin-bottom: 30px;
            }
            
            .file-encryption-tool .tool-container {
                padding: 25px;
            }
        }
        
        @media (max-width: 767px) {
            .file-encryption-tool .hero-title {
                font-size: 1.8rem;
            }
            
            .file-encryption-tool .hero-subtitle {
                font-size: 1rem;
            }
            
            .file-encryption-tool .action-buttons {
                flex-direction: column;
            }
            
            .file-encryption-tool .upload-area {
                padding: 30px 20px;
            }
            
            .file-encryption-tool .content-block {
                padding: 25px;
            }
        }