*{padding:0px; margin:0px;}
body{min-height:100vh;}
img{width:100%;cursor:pointer;}
ul.yehhlent{width:100%; height:100%; position:fixed; left:0px; top:0px; background:rgba(0,0,0,0.95); z-index:1000;}
ul.yehhlent li{width: 5vh;height: 5vh;border: 4px solid #e3e3e3;border-top: 4px solid #3498db;border-radius: 50%;animation: jfitlshg 1s linear infinite;margin:auto; margin-top:47.5vh;list-style:none;}
@keyframes jfitlshg{0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}

:root {
  --primary: #0c4c8a;
  --accent: #ffb347;
  --dark: #0b1f33;
  --light: #f5f7fb;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #1c1c1c;
  background: var(--light);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
header {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}
nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--dark);
  text-transform: uppercase;
}
.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px 12px 4px 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: relative;
}
.logo-icon::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
}
.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-links a {
  color: var(--dark);
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover {
  border-color: var(--accent);
}
.hero {
  background: linear-gradient(120deg, rgba(12,76,138,0.92), rgba(11,31,51,0.95)), url('');
  color: #fff;
  padding: 5rem 2rem;
}
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}
.cta-group {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #1c1c1c;
}
.btn-secondary {
  border-color: #fff;
  color: #fff;
}
section {
  padding: 4rem 2rem;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.section-subtitle {
  color: rgba(11,31,51,0.7);
  margin-bottom: 2rem;
}
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 45px rgba(12,76,138,0.08);
  color: #1c1c1c;
}
.card h3 {
  margin-top: 0;
  color: var(--primary);
}
.card p {
  margin-bottom: 0;
}
.highlight {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
}
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.stat {
  flex: 1 1 200px;
}
.stat span {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list li {
  margin-bottom: 0.8rem;
  padding-left: 1.4rem;
  position: relative;
}
.list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 0.4rem;
}
.contact-panel {
  background: #fff;
  padding: 2rem;
  border-radius: 1.2rem;
  box-shadow: 0 20px 45px rgba(11,31,51,0.1);
}
.contact-panel h3 {
  margin-top: 0;
  color: var(--primary);
}
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 3rem 2rem;
}
footer .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
footer a {
  color: rgba(255,255,255,0.8);
}
@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .cta-group {
    flex-direction: column;
  }
}
