/*
	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.4.9
	Stable tag: 3.4.9
	Requires at least: 6.0
	Tested up to: 6.8
	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,
*/
        /* --- RESET & VARIABLES --- */
        :root {
            --navy-blue: #0A192F;
            --black: #111111;
            --dark-red: #8B0000;
            --white: #FFFFFF;
            --light-gray: #F4F4F4;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--white);
            color: var(--black);
            line-height: 1.6;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* --- TOP BAR --- */
        .top-bar {
            background-color: var(--black);
            color: var(--white);
            padding: 10px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            flex-wrap: wrap;
        }

        .top-bar a {
            color: var(--white);
            margin-left: 15px;
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: var(--dark-red);
        }

        /* --- HEADER & NAV --- */
        header {
            background-color: var(--navy-blue);
            color: var(--white);
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 4px solid var(--dark-red);
			height: 112px;
        }

		.logo {
			margin-top: 8px;
		}

        .logo img {
			float: left;
			width: 100px;
			padding-right: 20px;
			margin-top: -18px;
        }

        .logo h1 {
			float: left;
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .logo span {
            color: var(--dark-red);
        }

        .logo p {
            font-size: 0.85rem;
            letter-spacing: 2px;
            color: #ccc;
        }

        nav ul {
            display: flex;
            gap: 25px;
        }

        nav a {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        nav a:hover {
            color: var(--dark-red);
        }

        /* --- HERO SECTION --- */
        .hero {
            background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.7)), url('/wp-content/uploads/2026/07/Image_akeft2akeft2akef.png');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            padding: 100px 5%;
        }

        .hero h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            background-color: var(--dark-red);
            color: var(--white);
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            transition: background-color 0.3s, transform 0.2s;
        }

        .btn:hover {
            background-color: #a50000;
            transform: translateY(-2px);
        }

        /* --- SECTIONS GENERAL --- */
        section {
            padding: 60px 5%;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--navy-blue);
            margin-bottom: 40px;
            text-transform: uppercase;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--dark-red);
            margin: 15px auto 0;
        }

        /* --- SERVICES GRID --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .service-card {
            background-color: var(--light-gray);
            padding: 30px;
            border-left: 5px solid var(--dark-red);
            border-radius: 4px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .service-card h3 {
            color: var(--navy-blue);
            margin-bottom: 15px;
            font-size: 1.2rem;
            text-transform: uppercase;
        }

        /* --- PRODUCTS SECTION --- */
        .products {
            background-color: var(--navy-blue);
            color: var(--white);
        }

        .products .section-title {
            color: var(--white);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .product-item {
            background-color: rgba(255,255,255,0.05);
            padding: 30px 20px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 4px;
        }

        .product-item h3 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .product-item p {
            color: #ccc;
            font-size: 0.95rem;
        }

        /* --- CONTACT & FOOTER --- */
        .contact-section {
            background-color: var(--black);
            color: var(--white);
            text-align: center;
        }

        .contact-info {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
        }

        .contact-item h4 {
            color: var(--dark-red);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        footer {
            background-color: #050d1a;
            color: #888;
            text-align: center;
            padding: 20px 5%;
            font-size: 0.9rem;
            border-top: 1px solid #222;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .top-bar {
                flex-direction: column;
                gap: 10px;
                text-align: center;
            }
            header {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
            }
            .hero h2 {
                font-size: 2rem;
            }
        }