/*
Theme Name: Isher Technologies
Theme URI: https://ishertechnologies.com
Author: Isher Technologies LLC
Author URI: https://ishertechnologies.com
Description: Premium enterprise digital agency WordPress theme with Elementor support
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: isher-technologies
Tags: elementor, digital agency, responsive, custom-logo, block-styles
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
*/

:root {
    --isher-primary: #6366f1;
    --isher-secondary: #8b5cf6;
    --isher-accent: #06b6d4;
    --isher-dark: #0a0a1a;
    --isher-light: #ffffff;
    --isher-surface: #f8fafc;
    --isher-text-dark: #0f172a;
    --isher-text-muted: #64748b;
    --isher-border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--isher-light);
    color: var(--isher-text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--isher-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--isher-primary), var(--isher-secondary));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--isher-primary);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--isher-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--isher-primary), var(--isher-secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(99, 102, 241, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(99, 102, 241, 0.5); }
}

.preloader-text {
    color: white;
    font-size: 14px;
    letter-spacing: 2px;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.3); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.5); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--isher-primary), var(--isher-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--isher-primary), var(--isher-secondary));
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Section Styles */
.section-dark {
    background-color: var(--isher-dark);
    color: white;
}

.section-light {
    background-color: var(--isher-light);
}

.section-surface {
    background-color: var(--isher-surface);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Elementor Overrides */
.elementor-section {
    position: relative;
}

.elementor-button {
    border-radius: 999px !important;
    font-family: 'Inter', sans-serif !important;
}

.elementor-widget-heading .elementor-heading-title {
    font-family: 'Inter', sans-serif;
}

/* Form Styles */
input, textarea, select {
    font-family: 'Inter', sans-serif;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--isher-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 36px !important;
    }
    
    h2 {
        font-size: 28px !important;
    }
}