/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */

        /* Top Header Bar */
        .top-header {
            background: linear-gradient(135deg, #030753 0%, #0a0e8f 100%);
            padding: 0.6rem 0;
            font-size: 0.85rem;
            color: #fff;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            position: relative;
        }

        .top-header.hidden {
            transform: translateY(-100%);
            opacity: 0;
        }

        .top-header-content {
            display: flex;
			justify-content: center;
        }

        .top-header-content span {
            display: inline-block;
            font-weight: 400;
			font-size:15px;
            letter-spacing: 0.5px;
			text-align:center;
        }

     

        /* Main Header */
        header {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 10px 40px rgba(3, 7, 83, 0.08);
            border-bottom: 1px solid rgba(3, 7, 83, 0.1);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
            transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        header.scrolled nav {
            padding: 0.8rem 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .logo img {
            max-height: 50px;
            width: auto;
            transition: all 0.3s ease;
        }

        .logo:hover img {
            transform: scale(1.05);
        }

        header.scrolled .logo img {
            max-height: 40px;
        }

        /* Custom logo support */
        .custom-logo-link {
            display: flex;
            align-items: center;
        }

        .custom-logo {
            max-height: 60px;
            width: auto;
            transition: all 0.3s ease;
        }

        header.scrolled .custom-logo {
            max-height: 50px;
        }

        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: #030753;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .nav-center {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        /* WordPress Menu Styles */
        .wp-menu {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .wp-menu li {
            position: relative;
        }

        .wp-menu > li > a {
            text-decoration: none;
            color: #333;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .wp-menu > li > a::before {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: #030753;
            transition: width 0.4s ease;
        }

        .wp-menu > li > a:hover {
            color: #030753;
        }

        .wp-menu > li > a:hover::before {
            width: 100%;
        }

        /* WordPress Dropdown (submenu) */
        .wp-menu .sub-menu {
            position: absolute;
            top: calc(100% + 20px);
            left: 50%;
            transform: translateX(2%);
            background: white;
            min-width: 220px;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(3, 7, 83, 0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            border: 1px solid rgba(3, 7, 83, 0.08);
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .wp-menu li:hover > .sub-menu {
            opacity: 1;
            visibility: visible;
            top: calc(100% + 10px);
        }

        .wp-menu .sub-menu li {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .wp-menu .sub-menu li:last-child {
            border-bottom: none;
        }

        .wp-menu .sub-menu a {
            display: block;
            padding: 1rem 1.5rem;
            color: #333;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .wp-menu .sub-menu a::before {
            display: none;
        }

        .wp-menu .sub-menu a:hover {
            background: #f8f9ff;
            color: #030753;
            padding-left: 2rem;
        }

        /* WordPress menu item classes */
        .wp-menu .current-menu-item > a,
        .wp-menu .current_page_item > a {
            color: #030753;
        }

        .wp-menu .menu-item-has-children > a::after {
            content: '▼';
            font-size: 0.7rem;
            margin-left: 0.4rem;
            transition: transform 0.3s ease;
        }

        .wp-menu .menu-item-has-children:hover > a::after {
            transform: rotate(180deg);
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .desktop-buttons {
            display: flex;
        }

        .nav-center .nav-buttons {
            display: none;
        }

        .btn {
            padding: 0.75rem 1.8rem;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.9rem;
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary {
            background: white;
            color: #030753;
            border: 2px solid #030753;
        }

        .btn-secondary:hover {
            background: #030753;
            color: white;
            box-shadow: 0 8px 25px rgba(3, 7, 83, 0.25);
            transform: translateY(-2px);
        }

        .btn-primary {
            background: #030753;
            color: white;
            border: 2px solid #030753;
            box-shadow: 0 8px 25px rgba(3, 7, 83, 0.3);
            position: relative;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(3, 7, 83, 0.4);
        }

        header.scrolled .btn {
            padding: 0.6rem 1.5rem;
            font-size: 0.85rem;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(3, 7, 83, 0.08) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: float 20s infinite ease-in-out;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(3, 7, 83, 0.06) 0%, transparent 70%);
            bottom: -150px;
            left: -150px;
            animation: float 15s infinite ease-in-out reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }

        .hero-content {
            text-align: center;
            color: #333;
            z-index: 1;
            max-width: 800px;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            font-weight: 900;
            color: #030753;
            line-height: 1.2;
            animation: fadeInUp 1s ease-out;
        }

        .hero p {
            font-size: 1.3rem;
            color: #555;
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }

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

        /* Content Sections */
        .content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 6rem 2rem;
        }

        .content section {
            margin-bottom: 6rem;
            padding: 3rem;
            background: white;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 10px 40px rgba(3, 7, 83, 0.06);
        }

        .content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #030753;
        }

        .content p {
            font-size: 1.15rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        @media (max-width: 968px) {
    .mobile-toggle {
        display: flex;
    }

    .desktop-buttons {
        display: none;
    }

    .nav-center .nav-buttons {
        display: flex;
    }

    /* Hide nav-center by default */
    .nav-center {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 0;
        box-shadow: -5px 0 20px rgba(3, 7, 83, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 999;
    }

    /* Show nav-center when active */
    .nav-center.active {
        display: flex;
        right: 0;
    }

    .wp-menu {
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .wp-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .wp-menu > li > a {
        padding: 1.2rem 0;
        width: 100%;
        justify-content: space-between;
    }

    .wp-menu > li > a::before {
        display: none;
    }

    /* Mobile Dropdown */
    .wp-menu .sub-menu {
        position: static;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        background: #f8f9ff;
    }

    .wp-menu .menu-item-has-children.active > .sub-menu {
        max-height: 500px;
    }

    .wp-menu .menu-item-has-children.active > a::after {
        transform: rotate(180deg);
    }

    .nav-buttons {
        width: 100%;
        flex-direction: column;
        margin-top: 2rem;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        padding: 1rem;
    }
}


@media (max-width: 480px) {
            nav {
                padding: 1rem;
            }

            .logo img,
            .custom-logo {
                max-height: 40px;
            }

            header.scrolled .logo img,
            header.scrolled .custom-logo {
                max-height: 35px;
            }

            .top-header-content {
                padding: 0 1rem;
            }

            .top-header-left {
                gap: 1rem;
            }

            .social-icon {
                width: 26px;
                height: 26px;
                font-size: 0.75rem;
            }
        }

.page-header .entry-title{
	display:none;
}