/* ========================================================================== Hotam System - Final CSS (No Image Shadows) ========================================================================== */ :root { /* Color Palette */ --primary-gradient: linear-gradient(135deg, #4285f4 0%, #9b72cb 50%, #d96570 100%); --primary-color: #1a73e8; --secondary-color: #9b72cb; /* Backgrounds */ --bg-body: #f8f9fa; --bg-surface: #ffffff; --bg-surface-hover: #f1f3f4; --bg-footer: linear-gradient(180deg, rgba(248,250,252,0.55) 0%, rgba(248,250,252,1) 35%); /* Text */ --text-main: #202124; --text-secondary: #5f6368; --text-muted: #64748b; /* Borders & Radius */ --border-color: #e0e0e0; --radius-sm: 12px; --radius-md: 24px; --radius-pill: 9999px; /* Spacing & Layout */ --container-width: 1200px; --header-height: 86px;
} /* Dark Mode Variables */
html[data-theme="dark"] { --bg-body: #0b1220; --bg-surface: rgba(15,23,42,0.55); --bg-surface-hover: rgba(30,41,59,0.5); --bg-footer: linear-gradient(180deg, rgba(15,23,42,0.2) 0%, rgba(11,18,32,1) 45%); --text-main: rgba(226,232,240,0.95); --text-secondary: rgba(203,213,225,0.85); --text-muted: rgba(148,163,184,0.8); --border-color: rgba(148,163,184,0.14);
} /* ========================================================================== Reset & Base ========================================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Heebo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background-color: var(--bg-body); background-image: radial-gradient(circle at 50% 0%, rgba(66, 133, 244, 0.05) 0%, transparent 60%); color: var(--text-main); line-height: 1.6; padding-top: var(--header-height);
} /* Dark mode background fix */
html[data-theme="dark"] body { background: radial-gradient(1200px 600px at 30% 10%, rgba(56,189,248,0.12), transparent 60%), radial-gradient(900px 500px at 80% 20%, rgba(99,102,241,0.12), transparent 55%), #0b1220;
} a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; box-shadow: none !important; } /* Global shadow removal for images */ /* ========================================================================== Layout Containers ========================================================================== */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 2rem;
} .section { padding: 5rem 1rem; }
.section--tight { padding-top: 60px; padding-bottom: 60px; }
.section--soft { background: rgba(15,23,42,0.03); }
.section--center { text-align: center; } /* Dark Section Variant */
.section--dark, .section--contact { background: linear-gradient(135deg, rgba(30,60,114,1) 0%, rgba(42,82,152,1) 100%); color: #fff; text-align: center;
}
.section--dark h2, .section--dark p, .section--contact h2, .section--contact p { color: #fff; }
.section--dark .section-subtitle { color: rgba(226,232,240,0.9); } /* ========================================================================== Typography ========================================================================== */
h1, h2, h3, h4, h5, h6 { color: var(--text-main); }
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.25rem; color: var(--text-secondary); max-width: 800px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; max-width: 800px; margin-inline: auto; } /* ========================================================================== Header & Navigation ========================================================================== */
.header { position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height); background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05); z-index: 9999; transition: background 0.3s, box-shadow 0.3s;
}
.header.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
html[data-theme="dark"] .header { background: rgba(11,18,32,0.85); border-bottom-color: rgba(148,163,184,0.12); } .navbar { height: 100%; max-width: var(--container-width); margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; } /* Logo */
.logo { display: flex; align-items: center; gap: 0.75rem; font-weight: 800; font-size: 1.5rem; color: var(--text-main); }
.logo-icon { width: 44px; height: 44px; background: var(--primary-gradient); color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.logo-icon--img img { width: 100%; height: 100%; border-radius: 50%; object-fit: contain; } /* Menu */
.nav-menu { display: flex; gap: 0.5rem; align-items: center; }
.nav-menu a { font-weight: 500; color: var(--text-secondary); padding: 0.6rem 1rem; border-radius: 14px; }
.nav-menu a:hover, .nav-menu a.active { color: #000; background: rgba(0,0,0,0.06); }
html[data-theme="dark"] .nav-menu a:hover, html[data-theme="dark"] .nav-menu a.active { background: rgba(255,255,255,0.08); color: #fff; } /* Theme Toggle */
.theme-toggle { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border-color); background: var(--bg-surface); display: flex; align-items: center; justify-content: center; cursor: pointer; margin-inline: 0.75rem; color: var(--text-main); transition: transform 0.2s;
}
.theme-toggle:hover { transform: translateY(-1px); }
.theme-toggle .fa-sun { display: none; }
html[data-theme="dark"] .theme-toggle .fa-moon { display: none; }
html[data-theme="dark"] .theme-toggle .fa-sun { display: block; } .menu-toggle { display: none; border: none; background: transparent; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: var(--text-main); transition: 0.3s; } /* ========================================================================== Buttons ========================================================================== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 2rem; border-radius: 16px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.2s ease; border: none; box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.btn-primary { background: var(--text-main); color: #ffffff !important; }
.btn-primary:hover { background: #000; transform: translateY(-2px); box-shadow: 0 15px 35px rgba(0,0,0,0.15); }
html[data-theme="dark"] .btn-primary { background: #fff; color: #000 !important; } .btn-outline { background: transparent; border: 1px solid var(--border-color); color: var(--text-main); box-shadow: none; }
.btn-outline:hover { background: var(--bg-surface-hover); border-color: var(--text-main); }
.btn-large { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-small { padding: 0.5rem 1.25rem; font-size: 0.9rem; } /* Contact CTA Special Fix - Always White Text */
a[href*="#contact"].btn-primary, .section--contact .btn,
a.contact-btn { color: #ffffff !important;
} /* ========================================================================== Hero Sections ========================================================================== */
.hero, .about-hero, .security-hero { padding: 140px 20px 80px; text-align: center; position: relative; }
.hero-title { font-size: 4rem; font-weight: 800; margin-bottom: 1.5rem; background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1;
}
.hero p { font-size: 1.5rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto 2.5rem; } .hero--image-only { padding: 0 !important; height: 420px; overflow: hidden; background: #fff; }
.hero-bg--only { width: 100vw; height: 100%; object-fit: cover; object-position: center; } .hero-text-below { padding: 60px 20px; text-align: center; }
.hero-text-below h1 { margin-top: 0; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; } /* Hero Helpers */
.hero--compact { min-height: 400px; padding-top: 120px; }
.hero--dark { background: radial-gradient(circle at 50% 0%, rgba(56,189,248,0.10) 0%, transparent 60%), linear-gradient(135deg, rgba(15,23,42,0.96) 0%, rgba(30,41,59,0.96) 100%); color: #fff; }
.hero--dark h1 { -webkit-text-fill-color: initial; background: none; color: #fff; }
.hero--dark p { color: rgba(226,232,240,0.85); } /* ========================================================================== Cards & Grid Systems ========================================================================== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; } .card, .solution-card, .team-card { background: var(--bg-surface); border-radius: var(--radius-md); padding: 2.5rem; border: 1px solid var(--border-color); height: 100%; display: flex; flex-direction: column; align-items: flex-start; text-align: right; transition: transform 0.3s, box-shadow 0.3s;
} .card:hover, .solution-card:hover, .team-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: transparent;
} .card-icon { width: 60px; height: 60px; border-radius: 16px; background: #f1f5f9; color: var(--primary-color); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.5rem; transition: background 0.3s;
}
.card:hover .card-icon { background: var(--primary-gradient); color: white; }
.card-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; } /* Solutions Icons (Black on Light Gray) */
.solution-icon { width: 72px !important; height: 72px !important; background: #f3f4f6 !important; border-radius: 18px !important; display: flex !important; align-items: center !important; justify-content: center !important; font-size: 2rem !important; color: #000000 !important; margin-bottom: 1rem !important;
}
.solution-icon i { color: #000000 !important; }
.feature-list li { margin-bottom: 0.5rem; }
.feature-list i { color: var(--primary-color); margin-left: 0.5rem; } /* Team Grid (Horizontal) */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; align-items: stretch;
}
.team-avatar--photo { width: 80px; height: 80px; padding: 0; overflow: hidden; border-radius: 50%; } /* ========================================================================== Rich Content Components ========================================================================== */
/* About Page */
.content-block { max-width: 900px; margin: 0 auto; font-size: 1.08rem; line-height: 1.85; color: var(--text-main); }
.content-block p { margin-bottom: 1.25rem; } .vision-list { list-style: none; padding: 1.5rem; margin: 2rem 0; background: rgba(15,23,42,0.04); border: 1px solid rgba(15,23,42,0.08); border-right: 4px solid var(--primary-color); border-radius: var(--radius-md); }
.vision-list li { position: relative; padding-right: 2rem; margin-bottom: .9rem; font-weight: 600; }
.vision-list li::before { content: "✓"; position: absolute; right: 0; color: var(--primary-color); } .full-profile { border-radius: var(--radius-md); border: 1px solid var(--border-color); overflow: hidden; margin-bottom: 3rem; background: var(--bg-surface); }
.profile-header-bg { background: var(--bg-surface-hover); border-bottom: 1px solid var(--border-color); padding: 2rem; display: flex; justify-content: space-between; align-items: center; }
.profile-content { padding: 2rem; } /* Security Page */
.layer-card { background: var(--bg-surface); border: 1px solid var(--border-color); border-right: 4px solid var(--primary-color); border-radius: var(--radius-md); padding: 2rem; margin-bottom: 1.5rem; transition: transform .2s ease, box-shadow .2s ease; }
.layer-card:hover { transform: translateX(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); } .threat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 1.5rem; margin-top: 2rem; }
.threat-item { background: rgba(15,23,42,0.04); border: 1px solid rgba(15,23,42,0.08); border-radius: var(--radius-md); padding: 2rem; }
.threat-header { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; font-weight: 800; color: #991b1b; }
.threat-solution { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(15,23,42,0.10); color: #166534; font-weight: 600; }
.cert-badge { display: inline-flex; align-items: center; gap: .6rem; background: var(--bg-surface); border: 1px solid var(--border-color); padding: .9rem 1.2rem; border-radius: var(--radius-sm); box-shadow: 0 10px 24px rgba(0,0,0,0.06); margin: .35rem; font-weight: 700; color: var(--text-main); } /* Timeline & FAQ */
.process-step { display: flex; gap: 1.5rem; margin-bottom: 3rem; position: relative; }
.process-step::before { content: ''; position: absolute; right: 26px; top: 60px; bottom: -40px; width: 2px; background: rgba(0,0,0,0.1); z-index: 0; }
.process-step:last-child::before { display: none; }
.step-number { width: 54px; height: 54px; border-radius: 50%; background: var(--text-main); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; flex-shrink: 0; z-index: 1; box-shadow: 0 10px 20px rgba(0,0,0,0.15); }
.step-content { background: var(--bg-surface); padding: 2rem; border-radius: var(--radius-md); border: 1px solid var(--border-color); flex: 1; }
.tech-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(66,133,244,0.12); color: #1e3a8a; padding: .35rem .8rem; border-radius: 9999px; font-size: .9rem; font-weight: 700; margin-bottom: 1rem; }
.faq-item { background: var(--bg-surface); border: 1px solid var(--border-color); border-right: 4px solid var(--text-main); border-radius: var(--radius-sm); padding: 1.25rem 1.5rem; margin-bottom: 1rem; } /* Media */
.media-block { margin: 2rem auto; max-width: 1000px; }
.content-image { border-radius: 18px; box-shadow: none !important; } /* Removed shadow here as well */ /* ========================================================================== Forms ========================================================================== */
input, textarea, select { border-radius: 16px; border: 1px solid rgba(0,0,0,0.10); background: rgba(255,255,255,0.85); padding: 0.8rem 1rem; width: 100%; font-family: inherit;
}
input:focus, textarea:focus { outline: none; border-color: var(--primary-color); background: #fff; }
.error-message { color: #dc2626; font-size: 0.85rem; margin-top: 0.5rem; }
input.error { border-color: #dc2626; background: #fef2f2; } /* ========================================================================== Footer Fixed (3 Columns Layout) ========================================================================== */
.site-footer { margin-top: 5rem; padding: 4rem 0 2rem; background: linear-gradient(180deg, rgba(248,250,252,0.55) 0%, rgba(248,250,252,1) 35%); border-top: 1px solid rgba(0,0,0,0.06); color: var(--text-main);
} .footer-content, .footer-container { display: grid; /* khlvqh l-3 amvdvt: rkhbh mymyn, vshtyym rgylvt */ grid-template-columns: 1.5fr 0.8fr 1fr; gap: 3rem; max-width: var(--container-width); margin: 0 auto; padding: 0 2rem; align-items: start;
} .footer-section h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 1.25rem; color: var(--text-main);
} /* Badges Design */
.badge-pill { display: inline-flex; align-items: center; padding: 0.25rem 0.75rem; border-radius: 99px; background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.08); font-size: 0.8rem; font-weight: 600; color: var(--text-secondary);
} .footer-links a { display: block; padding: 0.3rem 0; color: var(--text-secondary); transition: all 0.2s;
}
.footer-links a:hover { color: var(--primary-color); transform: translateX(-3px); } .footer-line { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.8rem; color: var(--text-secondary);
}
.footer-line i { color: var(--primary-color); width: 20px; text-align: center; } .footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.06); text-align: center; color: var(--text-muted); font-size: 0.9rem;
} /* Mobile Responsive */
@media (max-width: 900px) { .hero-title { font-size: 3rem; } .hero--image-only { height: 300px; } .footer-content, .footer-container { grid-template-columns: 1fr; /* amvdh akht bmvbyyl */ text-align: center; gap: 2.5rem; } .footer-logo, .footer-badges, .footer-line { justify-content: center; } .card, .team-card, .solution-card { text-align: center; align-items: center; } .process-step { flex-direction: column; gap: 1rem; padding-right: 0; } .process-step::before { right: 27px; top: 54px; height: 100%; } .step-number { margin: 0 auto; }
} @media (max-width: 768px) { :root { --header-height: 78px; } body { padding-top: var(--header-height); } .nav-menu { position: fixed; top: var(--header-height); right: 0; left: 0; background: var(--bg-surface); flex-direction: column; padding: 2rem; border-bottom: 1px solid var(--border-color); display: none; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .nav-menu.active { display: flex; } .nav-menu a { width: 100%; text-align: center; padding: 1rem; background: var(--bg-surface-hover); } .menu-toggle { display: flex; } .theme-toggle { margin-left: auto; margin-right: 0; }
} /* Animation */
.fade-in-up { animation: fadeInUp 0.6s ease forwards; opacity: 0; transform: translateY(20px); }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } } /* Utility */
.skip-link { position: absolute; top: -100px; right: 10px; background: #000; color: #fff; padding: 1rem; z-index: 10000; }
.skip-link:focus { top: 10px; } /* ========================================================================== Fingerprint Analogy Block (Home) ========================================================================== */
.fingerprint-block{ grid-column: 1 / -1; display:flex; gap:18px; align-items:flex-start; flex-wrap:wrap; padding:1.5rem; border-radius: var(--radius-md); background: var(--bg-surface); border:1px solid var(--border-color);
}
.fingerprint-media{ flex: 1 1 380px; min-width:260px; }
.fingerprint-media img{ width:100%; border-radius: 14px; box-shadow: 0 12px 28px rgba(0,0,0,0.18); display:block; object-fit: cover;
}
.fingerprint-text{ flex: 2 1 420px; min-width:260px; }
.fingerprint-text h3{ margin-top:0.2rem; } /* ========================================================================== Hero Video Desktop Fix (avoid side black bars) ========================================================================== */
.hero--image-only video.hero-bg--only{ width:100vw; height:100%; object-fit:cover; object-position:center; display:block;
}
@media (min-width: 992px){ .hero--image-only{ height: 60vh; max-height: 720px; } .hero--image-only video.hero-bg--only{ transform: scale(1.06); }
}


/* ========================================================================== */
/* UnisealCR: LTR settings (SAFE)                                              */
/* Keep the site in English LTR without breaking centered components.          */
/* ========================================================================== */

html, body{
  direction: ltr;
}

/* If you want most text blocks left-aligned, apply it to common text containers,
   but DO NOT force it on everything (menu/footer needs centering on mobile). */
main, section, article, .container, .content-block, .hero, .cards-grid{
  text-align: left;
}

/* Navigation should be LTR, but mobile menu items are centered by design. */
header, nav, .navbar{
  direction: ltr;
}


/* ========================================================================== */
/* UnisealCR: Mobile menu FULLSCREEN + internal scroll                         */
/* Fixes menu getting "stuck" and not opening fully on phones.                */
/* ========================================================================== */

@media (max-width: 768px){

  /* Make sure header stays above */
  .header{ z-index: 10003; }

  /* Fullscreen menu panel under fixed header */
  .nav-menu{
    position: fixed !important;
    top: var(--header-height) !important;
    left: 0 !important;
    right: 0 !important;

    height: calc(100vh - var(--header-height)) !important;
    max-height: calc(100vh - var(--header-height)) !important;

    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;

    padding: 1.25rem 1.25rem 2rem !important;
    gap: 0.75rem !important;

    z-index: 10004 !important;

    /* column layout */
    flex-direction: column !important;
    align-items: stretch !important;

    /* hidden by default, shown with .active (your JS already uses it) */
    display: none !important;

    /* center the tap targets */
    text-align: center !important;
  }

  .nav-menu.active{
    display: flex !important;
  }

  .nav-menu a{
    width: 100% !important;
    text-align: center !important;
    padding: 1rem !important;
    border-radius: 16px !important;
    background: var(--bg-surface-hover) !important;
  }

  /* Ensure toggle buttons stay clickable */
  .menu-toggle,
  .theme-toggle{
    position: relative;
    z-index: 10005 !important;
  }
}

