/* Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* Base */
body {
font-family: "Segoe UI", Arial, sans-serif;
background-color: #f5f7fa;
color: #1a1a1a;
line-height: 1.6;
}

/* Header */
header {
background: linear-gradient(90deg, #0a3d62, #1e90ff);
color: white;
padding: 25px 20px;
text-align: center;
box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}



header img {
max-width: 180px;
margin-bottom: 10px;
}

header h1 {
font-size: 1.8rem;
}

/* Hero */
.hero {
background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
url('https://images.unsplash.com/photo-1519389950473-47ba0277781c');
background-size: cover;
background-position: center;
color: white;
padding: 100px 20px;
text-align: center;
}

.hero h2 {
font-size: 2.5rem;
color: white;
}

/* Navigation */
nav {
background: white;
padding: 15px;
text-align: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 100;
}

nav a {
color: #0a3d62;
margin: 0 20px;
text-decoration: none;
font-weight: 600;
}

nav a:hover {
color: #1e90ff;
}

/* Sections */
.section {
padding: 20px 20px;
max-width: 1100px;
margin: auto;
text-align: center;
}

.btn {
display: inline-block;
padding: 12px 20px;
background: #1e90ff;
color: white;
border-radius: 6px;
text-decoration: none;
font-weight: bold;
transition: 0.2s;
}

.btn:hover {
background: #0a3d62;
}


/* Infographics */
.infographics {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
margin-top: 30px;
}

.info-box {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
transition: transform 0.2s ease;
}

.info-box:hover {
transform: translateY(-5px);
}

.icon {
font-size: 40px;
margin-bottom: 15px;
}

/* Services */
.services {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin-top: 20px;
}

.card {
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
transform: translateY(-5px);
box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.card h3 {
color: #1e90ff;
margin-bottom: 10px;
}

/* CTA */
.cta {
background: linear-gradient(90deg, #1e90ff, #0a3d62);
color: white;
text-align: center;
padding: 60px 20px;
margin-top: 40px;
}

.cta h2 {
color: white;
margin-bottom: 10px;
}

/* Buttons */
button {
padding: 12px 20px;
background: white;
color: #0a3d62;
border: none;
border-radius: 6px;
cursor: pointer;
font-weight: bold;
}

button:hover {
background: #e6e6e6;
}
/* =========================
   CONTACT FORM MODERN STYLE
========================= */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* Inputs & Textareas */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  transition: var(--transition);
  background: #fafafa;
}
footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(30,144,255,0.15);
}

/* Button full width */
.contact-form button {
  margin-top: 10px;
  width: 100%;
}

/* Mobile */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* Footer */
footer {
background: #0a3d62;
color: white;
text-align: center;
padding: 25px;
margin-top: 40px;
font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
nav a {
display: block;
margin: 10px 0;
}
}