@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

:root {
  --primary: #00baee;
  --secondary: #004976;
  --accent: #FFD57F;
  --heading: #1c1c1c;
  --body-text: #666666;
  --border-color: #e5e5e5;
  --background: #ffffff;
  --foreground: #333333;
  --footer-bg: #0b1a2a;
  
  --radius: 4px;
}

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  background-color: var(--background);
  color: var(--body-text);
  line-height: 1.75;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

h1 { font-size: 56px; line-height: 1.2; margin-bottom: 24px; }
h2 { font-size: 42px; line-height: 1.3; margin-bottom: 20px; }
h3 { font-size: 30px; line-height: 1.4; margin-bottom: 16px; }

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-fluid {
  max-width: 100%;
  padding: 0 50px;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

/* Components */
.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 35px;
  border-radius: 50px;
  background: var(--primary);
  color: #ffffff !important;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-btn:hover {
  background: var(--secondary);
}

.site-btn .icon {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.site-btn.white {
  background: #ffffff;
  color: var(--secondary) !important;
}

.site-btn.white:hover {
  background: var(--primary);
  color: #ffffff !important;
}

/* Specific Sections */
.site-header {
  position: relative;
  z-index: 99;
}

.header-top-area {
  background: var(--secondary);
  color: #fff;
  padding: 12px 0;
  font-size: 14px;
  text-align: center;
}

.header-top-area a {
  color: var(--primary);
  font-weight: 700;
}

.nav-area {
  background: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
}

.header-info-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-menu {
  display: flex;
  justify-content: center;
}

.main-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.main-menu ul li a {
  color: var(--heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px 0;
}

.main-menu ul li a:hover,
.main-menu ul li.active a {
  color: var(--primary);
}

.header-info-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.header-button-list {
  display: flex;
  gap: 15px;
}

.header-button-list .btn {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--heading);
  cursor: pointer;
}

.header-button-list .btn:hover {
  color: var(--primary);
}

/* Hero Section */
.homepage-slide {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.homepage-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 73, 118, 0.85); /* Secondary with opacity */
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
}

.slide-content .sub-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: uppercase;
}

.slide-content h2 {
  color: #fff;
  font-size: 70px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.section-padding {
  padding: 120px 0;
}

/* WordPress Image Sizes */
img.size-thumbnail { width: 150px; height: auto; }
img.size-medium { width: 300px; height: auto; }
img.size-large { width: 1024px; max-width: 100%; height: auto; }
img.size-full { width: 100%; height: auto; }
