/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.5.1
	Stable tag: 3.5.1
	Requires at least: 6.0
	Tested up to: 7.0
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
* { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
        --blue-700: #1d4ed8;
        --blue-600: #2563eb;
        --blue-500: #3b82f6;
        --ink: #0f172a;
        --slate: #475569;
        --muted: #64748b;
        --bg: #ffffff;
        --bg-soft: #f6f9ff;
        --bg-tint: #eaf1fd;
        --border: #e3eaf3;
        --amber: #f59e0b;
        --green: #10b981;
    }

    html { scroll-behavior: smooth; }

    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        color: var(--ink);
        background: var(--bg);
        overflow-x: hidden;
    }

    /* ---------- Header ---------- */
    header {
        position: fixed;
        top: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(15, 23, 42, 0.06);
        z-index: 1000;
    }

    nav {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0.9rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
    .logo img { height: 56px; width: auto; }
    .logo-text { display: flex; flex-direction: column; }
    .logo-title { font-size: 1.4rem; font-weight: 800; color: var(--blue-700); line-height: 1.2; letter-spacing: -0.5px; }
    .logo-subtitle { font-size: 0.72rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }

    .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
    .nav-links a {
        text-decoration: none; color: var(--slate); font-weight: 600;
        font-size: 0.95rem; transition: color 0.3s ease; position: relative;
    }
    .nav-links a:hover { color: var(--blue-700); }
    .nav-links a::after {
        content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
        background: var(--blue-600); transition: width 0.3s ease;
    }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
        background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
        color: #fff !important; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 700;
        transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    }
    .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3); }
    .nav-cta::after { display: none !important; }

    .mobile-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
    .mobile-menu span { width: 25px; height: 3px; background: var(--ink); border-radius: 3px; }

    /* ---------- Hero (light) ---------- */
    .hero {
        margin-top: 80px;
        background: linear-gradient(180deg, #ffffff 0%, #eef4ff 60%, #e3edff 100%);
        color: var(--ink);
        padding: 6rem 2rem;
        position: relative;
        overflow: hidden;
    }
    .hero::before {
        content: '';
        position: absolute; inset: 0;
        background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><rect width="80" height="80" fill="none" stroke="rgba(29,78,216,0.06)" stroke-width="1"/></svg>');
    }

    .hero-container {
        max-width: 1400px; margin: 0 auto;
        display: grid; grid-template-columns: 1fr 1fr;
        gap: 4rem; align-items: center; position: relative; z-index: 1;
    }

    .hero-badge {
        display: inline-flex; align-items: center; gap: 0.5rem;
        background: #e8f0fe; color: var(--blue-700);
        border: 1px solid #c9dbfa;
        padding: 0.5rem 1rem; border-radius: 50px;
        font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem;
    }

    .hero h1 { font-size: 3.4rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
    .hero h1 span { color: var(--blue-700); }
    .hero p { font-size: 1.2rem; line-height: 1.7; margin-bottom: 2.5rem; color: var(--slate); max-width: 600px; }

    .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

    .btn {
        padding: 1rem 2rem; border-radius: 10px; font-weight: 700; text-decoration: none;
        display: inline-flex; align-items: center; gap: 0.75rem;
        transition: all 0.3s ease; cursor: pointer; border: none; font-size: 1rem;
    }
    .btn-primary {
        background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
        color: #fff; box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4); }
    .btn-secondary { background: #fff; color: var(--blue-700); border: 2px solid #c9dbfa; }
    .btn-secondary:hover { background: var(--bg-soft); transform: translateY(-3px); }

    .hero-stats {
        display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
        margin-top: 4rem; padding-top: 2.5rem; border-top: 1px solid #d7e3f8;
    }
    .stat-number { font-size: 2.5rem; font-weight: 800; color: var(--blue-700); display: block; }
    .stat-label { font-size: 0.9rem; color: var(--muted); font-weight: 500; }

    .hero-image { position: relative; }
    .hero-image > img {
        width: 100%; display: block; border-radius: 20px;
        box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
    }

    .floating-card {
        position: absolute; background: #fff; color: var(--ink);
        padding: 1.25rem 1.5rem; border-radius: 15px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
        border: 1px solid var(--border);
        animation: float 3s ease-in-out infinite;
    }
    .floating-card.card-1 { bottom: 40px; left: -30px; }
    .floating-card.card-2 { top: 50px; right: -20px; animation-delay: 1.5s; }
    @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
    .floating-card i { font-size: 1.8rem; color: var(--green); margin-bottom: 0.4rem; }
    .floating-card h4 { font-size: 1.3rem; font-weight: 700; }
    .floating-card p { font-size: 0.85rem; color: var(--muted); }

    /* ---------- Shared ---------- */
    .container { max-width: 1400px; margin: 0 auto; }
    .section-header { text-align: center; margin-bottom: 4rem; }
    .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
        color: #fff; padding: 0.5rem 1.5rem; border-radius: 50px;
        font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem;
        text-transform: uppercase; letter-spacing: 1px;
    }
    .section-header h2 { font-size: 2.6rem; margin-bottom: 1rem; font-weight: 800; }
    .section-header p { font-size: 1.15rem; color: var(--muted); max-width: 620px; margin: 0 auto; }

    /* ---------- Services ---------- */
    .services { padding: 6rem 2rem; background: var(--bg-soft); }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
    .service-card {
        background: #fff; padding: 2.5rem; border-radius: 15px;
        border: 1px solid var(--border);
        box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
        transition: all 0.3s ease; position: relative; overflow: hidden;
    }
    .service-card::before {
        content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
        background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
        transform: scaleX(0); transition: transform 0.3s ease;
    }
    .service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
        width: 70px; height: 70px; border-radius: 15px;
        background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
        display: flex; align-items: center; justify-content: center;
        margin-bottom: 1.5rem; color: #fff; font-size: 1.9rem;
    }
    .service-card h3 { font-size: 1.4rem; margin-bottom: 1rem; font-weight: 700; }
    .service-card p { color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
    .service-link { color: var(--blue-700); text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s ease; }
    .service-link:hover { gap: 1rem; }

    /* ---------- About ---------- */
    .about { padding: 6rem 2rem; background: #fff; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .about-image { position: relative; }
    .about-image > img { width: 100%; display: block; border-radius: 20px; box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15); }
    .experience-badge {
        position: absolute; bottom: -25px; right: -25px;
        background: var(--amber); color: #fff;
        padding: 1.75rem; border-radius: 20px; text-align: center;
        box-shadow: 0 20px 40px rgba(245, 158, 11, 0.35);
    }
    .experience-badge .years { font-size: 2.8rem; font-weight: 800; display: block; line-height: 1; }
    .experience-badge .text { font-size: 0.85rem; font-weight: 700; }
    .about-content h2 { font-size: 2.4rem; margin-bottom: 1.5rem; font-weight: 800; }
    .about-content > p { font-size: 1.1rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
    .about-features { display: grid; gap: 1.5rem; margin-bottom: 2.5rem; }
    .about-feature { display: flex; gap: 1rem; align-items: flex-start; }
    .about-feature i { color: var(--green); font-size: 1.25rem; margin-top: 0.25rem; }
    .about-feature h4 { margin-bottom: 0.25rem; font-weight: 700; }
    .about-feature p { color: var(--muted); font-size: 0.95rem; }

    /* ---------- Projects ---------- */
    .projects { padding: 6rem 2rem; background: var(--bg-soft); }
    .projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 2rem; }
    .project-card {
        background: #fff; border-radius: 15px; overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
        transition: all 0.3s ease;
    }
    .project-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12); }
    .project-image { height: 300px; overflow: hidden; position: relative; }
    .project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
    .project-card:hover .project-image img { transform: scale(1.05); }
    .project-category {
        position: absolute; top: 1rem; right: 1rem;
        background: #fff; color: var(--blue-700);
        border: 1px solid #c9dbfa;
        padding: 0.45rem 1rem; border-radius: 50px;
        font-size: 0.82rem; font-weight: 700;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
    }
    .project-content { padding: 2rem; }
    .project-content h3 { font-size: 1.35rem; margin-bottom: 0.75rem; font-weight: 700; }
    .project-content p { color: var(--muted); line-height: 1.7; }

    /* ---------- Why Us (light) ---------- */
    .why-us { padding: 6rem 2rem; background: linear-gradient(180deg, #eef4ff 0%, #e0ebff 100%); }
    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
    .feature-box {
        background: #fff; padding: 2.5rem; border-radius: 15px;
        border: 1px solid #d7e3f8; text-align: center;
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
        transition: all 0.3s ease;
    }
    .feature-box:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1); }
    .feature-box i { font-size: 2.8rem; color: var(--blue-600); margin-bottom: 1.5rem; }
    .feature-box h3 { font-size: 1.25rem; margin-bottom: 1rem; font-weight: 700; }
    .feature-box p { color: var(--muted); line-height: 1.7; }

    /* ---------- Contact ---------- */
    .contact { padding: 6rem 2rem; background: #fff; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
    .contact-info h2 { font-size: 2.4rem; margin-bottom: 1.5rem; font-weight: 800; }
    .contact-info > p { font-size: 1.1rem; color: var(--muted); margin-bottom: 3rem; line-height: 1.8; }
    .contact-details { display: grid; gap: 2rem; }
    .contact-item { display: flex; gap: 1.5rem; align-items: flex-start; }
    .contact-icon {
        width: 60px; height: 60px; border-radius: 12px; flex-shrink: 0;
        background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
        display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem;
    }
    .contact-text h4 { margin-bottom: 0.5rem; font-weight: 700; }
    .contact-text p, .contact-text a { color: var(--muted); text-decoration: none; line-height: 1.7; transition: color 0.3s ease; }
    .contact-text a:hover { color: var(--blue-700); }

    .contact-form {
        background: var(--bg-soft); padding: 3rem; border-radius: 20px;
        border: 1px solid var(--border);
        box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
    }
    .form-group { margin-bottom: 1.5rem; }
    .form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; }
    .form-group input, .form-group textarea, .form-group select {
        width: 100%; padding: 1rem; border: 2px solid var(--border); border-radius: 10px;
        font-family: inherit; font-size: 1rem; background: #fff; transition: border-color 0.3s ease;
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--blue-600); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .btn-submit {
        width: 100%; padding: 1.25rem; border: none; border-radius: 10px;
        background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
        color: #fff; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease;
    }
    .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35); }

    /* ---------- Footer (light) ---------- */
    footer { background: #f8fafc; border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; color: var(--slate); }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
    .footer-brand p { color: var(--muted); line-height: 1.7; margin: 1rem 0 1.5rem; }
    .social-links { display: flex; gap: 1rem; }
    .social-links a {
        width: 45px; height: 45px; background: #e8f0fe; border-radius: 10px;
        display: flex; align-items: center; justify-content: center;
        color: var(--blue-700); text-decoration: none; transition: all 0.3s ease;
    }
    .social-links a:hover { background: var(--blue-600); color: #fff; transform: translateY(-3px); }
    .footer-column h4 { margin-bottom: 1.5rem; font-weight: 700; color: var(--ink); }
    .footer-column ul { list-style: none; }
    .footer-column ul li { margin-bottom: 0.75rem; }
    .footer-column ul li a { color: var(--muted); text-decoration: none; transition: all 0.3s ease; }
    .footer-column ul li a:hover { color: var(--blue-700); padding-left: 5px; }
    .footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; text-align: center; color: var(--muted); font-size: 0.9rem; }

    /* ---------- Responsive ---------- */
    @media (max-width: 968px) {
        .nav-links { display: none; }
        .mobile-menu { display: flex; }
        .hero-container, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
        .hero h1 { font-size: 2.5rem; }
        .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; }
        .section-header h2 { font-size: 2rem; }
        .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
        .floating-card { display: none; }
    }
    @media (max-width: 640px) {
        .hero { padding: 4rem 1.5rem; }
        .hero h1 { font-size: 2rem; }
        .services, .about, .why-us, .projects, .contact { padding: 4rem 1.5rem; }
        .services-grid, .projects-grid { grid-template-columns: 1fr; }
        .footer-grid { grid-template-columns: 1fr; }
        .experience-badge { bottom: -15px; right: 15px; padding: 1.25rem; }
        .experience-badge .years { font-size: 2rem; }
    }

    .fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }