/*
Theme Name: Shahad 2026
Theme URI: http://shahadsystem.om
Author: Ozone Team
Author URI: http://omanozone.com
Description: A premium custom theme for SHAHAD 2026 Intelligence & IoT Systems.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, custom-colors, dark-mode, animated
Text Domain: shahad-2026
*/

/* Base Settings */
:root {
    --bg-dark: #002b36;
    --bg-light: #07575b;
    --primary: #66fcf1;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(102, 252, 241, 0.2);
    --text-main: #ffffff;
    --text-muted: #c5c6c7;
    --font-en: 'Outfit', sans-serif;
    --font-ar: 'Cairo', sans-serif;
}

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

body {
    background: radial-gradient(circle at center, var(--bg-light) 0%, var(--bg-dark) 100%);
    background-attachment: fixed;
    color: var(--text-main);
    overflow-x: hidden;
    font-family: var(--font-en);
    /* Default font */
}

/* Arabic Specific Font */
[lang="ar"],
[lang="ar"] * {
    font-family: var(--font-ar);
}

nav {
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 43, 54, 0.7);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.lang-switch {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    font-family: inherit;
}

.lang-switch:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 0 15px var(--primary);
}

section {
    padding: 100px 8%;
    border-bottom: 1px solid rgba(102, 252, 241, 0.05);
}

.section-title {
    text-align: center;
    color: var(--primary);
    margin-bottom: 60px;
    font-size: 2.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(102, 252, 241, 0.3);
}

/* Hero */
.hero {
    text-align: center;
    padding-top: 80px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hexagon Grid Animation */
.hex-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #002b36;
}

.hex-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%2366fcf1' stroke-width='1' stroke-opacity='0.1'/%3E%3Cpath d='M28 0L28 34L0 50L0 84L28 100L56 84L56 50L28 34' fill='none' stroke='%2366fcf1' stroke-width='1' stroke-opacity='0.1'/%3E%3C/svg%3E");
    mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 80%);
}

.hex-light {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 252, 241, 0.05) 0%, transparent 40%);
    z-index: 1;
}

@keyframes rotate-light {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--primary);
    margin-bottom: 25px;
    text-shadow: 0 0 30px rgba(102, 252, 241, 0.4);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: var(--text-muted);
    max-width: 800px;
    margin-inline: auto;
}

/* Platform Section */
.platform-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 1px solid var(--border);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.platform-img {
    width: 100%;
    border-radius: 20px;
    cursor: zoom-in;
    box-shadow: 0 0 30px rgba(102, 252, 241, 0.15);
    transition: 0.4s;
}

.platform-img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(102, 252, 241, 0.3);
}

/* Bento Grid Sectors */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bento-item {
    background: var(--card-bg);
    border-radius: 30px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: 0.4s;
    backdrop-filter: blur(5px);
}

.bento-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.bento-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

.bento-item:hover img {
    transform: scale(1.1);
}

.large {
    grid-column: span 2;
}

.item-desc {
    padding: 30px;
}

.item-desc h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.item-desc p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--card-bg);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid var(--border);
}

.input-field {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: white;
    transition: 0.3s;
    font-size: 1rem;
}

.input-field:focus {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
    outline: none;
}

.btn-send {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-send:hover {
    background: #fff;
    box-shadow: 0 0 20px var(--primary);
}

/* CEO Card */
/* CEO Card */
.ceo-section {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px 80px;
    border-radius: 40px;
    margin-top: 80px;
    border: 1px solid rgba(102, 252, 241, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    overflow: hidden;
    transition: 0.4s;
}

.ceo-section:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.ceo-section::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 200px;
    color: var(--primary);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

[lang="ar"] .ceo-section::before {
    left: auto;
    right: 30px;
}

.ceo-section h3 {
    color: var(--primary);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.ceo-section p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #fff;
    font-style: italic;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

#lb {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

#lb img {
    max-width: 90%;
    max-height: 85%;
    border: 1px solid var(--primary);
    box-shadow: 0 0 50px var(--primary);
}

.en {
    display: none;
}

[lang="en"] .ar {
    display: none;
}

[lang="en"] .en {
    display: block;
}

[lang="en"] {
    direction: ltr;
}

@media (max-width: 1000px) {

    .bento-grid,
    .platform-box,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .large {
        grid-column: span 1;
    }

    .hero h1 {
        font-size: 3rem;
    }

    section {
        padding: 80px 5%;
    }
}