@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');
@import url("font-awesome.min.css");
:root{
  --bg:#f6f8fb;
  --card:#ffffff;
  --muted:#6b7280;
  --accent:#0f6cf0;
  --accent-2:#0ea5a4;
  --glass: rgba(255,255,255,0.6);
  --radius:14px;
  --max-width:1100px;
  --container-padding:20px;
}
* {
  box-sizing:border-box;
}

html,body {
  height:100%;
}

body {
  margin:0;
  font-family:Inter,system-ui,Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:#0b1220;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}

/* Layout container */
.wrap {
  max-width:var(--max-width);
  margin:0 auto;
  padding:24px;
}

/* Header / Nav */
header {
  background:linear-gradient(90deg,#08203a 0%, #0b3b66 100%);
  color:#fff;
  border-radius:0 16px;
  padding:16px;
  margin-bottom:20px;
}

.nav {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand {
  display:flex;
  gap:12px;
  align-items:center;
}

.brand .logo {
  width:56px;
  height:56px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#fff;
  font-size:18px;
}

.brand .logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.brand h1 {
  margin:0;
  font-size:18px;
  line-height:1;
}

nav ul {
  display:flex;
  gap:12px;
  list-style:none;
  margin:0;
  padding:0;
}

nav a {
  color:rgba(255,255,255,0.9);
  text-decoration:none;
  padding:8px 10px;
  border-radius:8px;
  font-weight:600;
}

nav a.active, nav a:hover {
  background:rgba(255,255,255,0.08);
}

/* Hero */
.hero {
  display:grid;
  grid-template-columns:1fr 420px;
  gap:24px;
  align-items:center;
  padding:36px;
}

.hero h2{font-size:28px;margin:0 0 10px}
.hero p{color:rgba(255,255,255,0.9);margin:0 0 18px}
.hero .cta{display:flex;gap:10px}
.btn{display:inline-block;padding:10px 14px;border-radius:10px;text-decoration:none;font-weight:700}
.btn-primary{background:#fff;color:#08324a}
.btn-ghost{border:1px solid rgba(255,255,255,0.12);color:#fff}
.hero-card{background:rgba(255,255,255,0.06);padding:18px;border-radius:12px;color:#fff}

/* Sections */
section {
  margin:28px 0;
}

.section-title {
  display:flex;
  align-items:baseline;
  gap:12px;
}

.h3 {
  font-size:20px;
  margin:0;
}

.muted {
  color:var(--muted);
}

/* Services grid */
.grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;margin-top:16px;
}

.card {
  background:var(--card);
  padding:18px;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(18,38,63,0.06);
}

.card h4 {
  margin:0 0 8px;
}

.card p {
  margin:0;color:var(--muted);
  font-size:14px;
}

/* Products list */
.products {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.product {
  background:linear-gradient(180deg,#fff,#fbfdff);
  padding:12px;
  border-radius:10px;
  border:1px solid #eef3ff;
}

/* Clients */
.clients {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.client-logo {
  background:#fff;
  padding:12px;
  border-radius:8px;
  min-width:110px;
  text-align:center;
  box-shadow:0 4px 12px rgba(12,40,80,0.04);
}

/* Contact */
.contact-grid {
  display:grid;
  grid-template-columns:1fr 360px;
  gap:16px;
}

.form input,.form textarea {
  width:100%;
  padding:10px;
  border-radius:8px;
  border:1px solid #e6eefc;
  margin-bottom:10px;
  font-size:14px;
}

.form textarea {
  min-height:110px;
  resize:vertical;
}

footer {
  border-radius: 12px;
  background: rgba(8, 33, 64, 1.0);
  color: #dbeafe;
  margin-top: 28px;
}

footer .f-grid {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* Responsive */
@media (max-width:1000px){
  .hero {
    grid-template-columns:1fr 1fr;
  }

  .grid {
    grid-template-columns:repeat(2,1fr);
  }

  .products {
    grid-template-columns:1fr;
  }

  .contact-grid {
    grid-template-columns:1fr;
  }
}
@media (max-width:680px){
  header {
    padding:14px;
  }

  .hero {
    grid-template-columns:1fr;
    gap:14px;
    padding:20px;
  }

  nav ul {
    display:none;
  }

  .wrap {
    padding:12px;
  }
}

/* Utility */
.small {
  font-size:13px;
  color:var(--muted);
}

.lead {
  font-size:15px;
  color:#223246;
}


.bg-color {
  background-color: rgba(8, 33, 64, 1.0);
}

.text-primary {
  color: rgba(25, 160, 216, 1.0);
}



.navbar-dark .navbar-nav a.nav-link {
  color: #ffffff;
  font-size: 1.1em;
}
.dropdown-menu {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border: none;
  border-radius: 0;
  padding: 0.7em;
}
@media only screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
  .dropdown-menu.show {
    display: flex;
  }
}
.dropdown-menu ul {
  list-style: none;
  padding: 0;
}
.dropdown-menu li .dropdown-item {
  color: gray;
  font-size: 1em;
  padding: 0.5em 1em;
}
.dropdown-menu li .dropdown-item:hover {
  background-color: #f1f1f1;
}
.dropdown-menu li:first-child a {
  font-weight: bold;
  font-size: 1.2em;
  text-transform: uppercase;
  color: #516beb;
}
.dropdown-menu li:first-child a:hover {
  background-color: #f1f1f1;
}
@media only screen and (max-width: 992px) {
  .dropdown-menu.show {
    flex-wrap: wrap;
    max-height: 350px;
    overflow-y: scroll;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1140px) {
  .dropdown:hover .dropdown-menu {
    width: 40vw;
    flex-wrap: wrap;
  }
}

.active{
  font-weight: bold;
}