
/*
Theme Name: EEDAS Analytics
Theme URI: https://eedasanalytics.com
Author: EEDAS
Description: Corporate theme inspired by Unisys with clean headers, dropdown navigation, and professional styling.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: eedas-analytics
*/

@import url('https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css');

body {
  font-family: 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #0c2340;
  margin: 0;
  padding: 0;
}

a {
  color: #ff9f1c;
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  color: #0c2340;
  margin-top: 0;
}

/* --- Header (Unisys-style) --- */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  font-family: 'Segoe UI', sans-serif;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 30px;
}

.site-logo img {
  max-height: 280px;
  width: auto;
  height: auto;
  display: block;
}

/* --- Navigation --- */
.main-navigation {
  display: flex;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.main-navigation > ul > li {
  position: relative;
  margin-left: 25px;
}

.main-navigation a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: #0c2340;
  transition: all 0.3s ease;
}

.main-navigation a:hover {
  color: #ff9f1c;
}

/* Dropdown Menus */
.main-navigation ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1001;
  min-width: 220px;
}

.main-navigation ul li:hover > ul {
  display: block;
}

.main-navigation ul ul li {
  width: 100%;
}

.main-navigation ul ul a {
  padding: 10px 15px;
  color: #0c2340;
  background-color: white;
}

.main-navigation ul ul a:hover {
  background-color: #f6f6f6;
  color: #ff9f1c;
}

/* Utility Buttons */
.btn-primary {
  background: #ff9f1c;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
}

/* Hero Video Block */
.hero-video {
  position: relative;
  overflow: hidden;
  height: 90vh;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 10px;
}

/* Industries */
.industry-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
  justify-content: space-between;
}

.industry-card {
  width: 48%;
  background: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

/* Footer */
footer {
  background: #0c2340;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

footer a {
  color: #ff9f1c;
}
