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

body {
font-family: Arial, Helvetica, sans-serif;
color: #1f2937;
background: #f4f7fb;
line-height: 1.6;
}

.container {
max-width: 1200px;
margin: auto;
padding: 0 24px;
}

/* NAVIGATION */

.navbar {
background: #07111f;
width: 100%;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.nav-container {
min-height: 90px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo img {
height: 72px;
display: block;
}

.nav-links {
list-style: none;
display: flex;
align-items: center;
gap: 28px;
}

.nav-links a {
color: #ffffff;
text-decoration: none;
font-weight: 700;
font-size: 0.95rem;
transition: 0.3s ease;
}

.nav-links a:hover {
color: #ef4444;
}

.nav-btn {
background: #dc2626;
padding: 12px 20px;
border-radius: 999px;
}

.nav-btn:hover {
background: #b91c1c;
color: white !important;
}

/* HERO SLIDESHOW */

.hero {
position: relative;
width: 100%;
height: 700px;
overflow: hidden;
background: #07111f;
}

.slide {
position: absolute;
inset: 0;
opacity: 0;
transition: opacity 1.5s ease-in-out;
}

.slide.active {
opacity: 1;
}

.slide img {
width: 100%;
height: 100%;
object-fit: cover;
}

/* INTRO SECTION */

.intro {
padding: 90px 0;
background: white;
}

.intro-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 24px;
align-items: stretch;
}

.section-label {
color: #dc2626;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 12px;
}

.intro h1 {
font-size: clamp(2rem, 4vw, 3rem);
color: #003366;
line-height: 1.1;
margin-bottom: 18px;
}

.intro p {
color: #4b5563;
font-size: 1.05rem;
margin-bottom: 18px;
}

.feature-card {
background: #f8fafc;
border: 1px solid #e5e7eb;
border-radius: 22px;
padding: 28px;
box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
transition: 0.3s ease;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.feature-card h3 {
color: #003366;
margin-bottom: 10px;
font-size: 1.25rem;
}

.feature-card p {
margin-bottom: 0;
}

/* BUTTONS */

.btn {
display: inline-block;
padding: 15px 30px;
border-radius: 999px;
font-weight: 800;
text-decoration: none;
transition: 0.3s ease;
}

.btn.primary {
background: #dc2626;
color: white;
box-shadow: 0 12px 30px rgba(220, 38, 38, 0.35);
}

.btn.primary:hover {
background: #b91c1c;
transform: translateY(-2px);
}

/* CTA */

.cta {
background: linear-gradient(135deg, #003366, #07111f);
color: white;
text-align: center;
padding: 80px 24px;
}

.cta h2 {
font-size: clamp(2rem, 4vw, 3.2rem);
margin-bottom: 12px;
}

.cta p {
color: #d1d5db;
margin-bottom: 28px;
font-size: 1.1rem;
}

/* PAGE HEADER */

.page-header {
background: linear-gradient(135deg, #003366, #07111f);
color: white;
text-align: center;
padding: 90px 20px;
}

.page-header h1 {
font-size: clamp(2.2rem, 5vw, 4rem);
margin-bottom: 15px;
}

.page-header p {
color: #d1d5db;
font-size: 1.1rem;
max-width: 700px;
margin: auto;
}

/* ABOUT PAGE */

.about-section {
padding: 90px 0;
background: white;
}

.about-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 30px;
align-items: start;
}

.about-content h2 {
color: #003366;
font-size: 2.5rem;
margin-bottom: 20px;
}

.about-content p {
color: #4b5563;
margin-bottom: 20px;
}

.about-card {
background: #f8fafc;
border: 1px solid #e5e7eb;
border-radius: 22px;
padding: 30px;
box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.about-card h3 {
color: #003366;
margin-bottom: 15px;
}

.about-card ul {
list-style: none;
}

.about-card li {
padding: 10px 0;
border-bottom: 1px solid #e5e7eb;
}

/* SERVICES PAGE */

.services-section {
padding: 80px 0;
background: white;
}

.alt-section {
background: #f8fafc;
}

.services-heading {
text-align: center;
margin-bottom: 50px;
}

.services-heading h2 {
color: #003366;
font-size: 2.5rem;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

/* CONTACT PAGE */

.contact-section {
padding: 90px 0;
background: white;
}

.contact-grid {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 30px;
align-items: start;
}

.contact-content h2 {
color: #003366;
font-size: 2.5rem;
margin-bottom: 20px;
}

.contact-content p {
color: #4b5563;
margin-bottom: 20px;
}

.contact-list {
display: grid;
gap: 20px;
margin-top: 30px;
}

.contact-item {
background: #f8fafc;
border: 1px solid #e5e7eb;
border-radius: 18px;
padding: 22px;
}

.contact-item h3 {
color: #003366;
margin-bottom: 8px;
}

.contact-item a {
color: #dc2626;
font-weight: 800;
text-decoration: none;
}

.contact-item a:hover {
text-decoration: underline;
}

.contact-card {
background: #f8fafc;
border: 1px solid #e5e7eb;
border-radius: 22px;
padding: 30px;
box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.contact-card h3 {
color: #003366;
margin-bottom: 15px;
}

.contact-card ul {
list-style: none;
margin-bottom: 25px;
}

.contact-card li {
padding: 10px 0;
border-bottom: 1px solid #e5e7eb;
}

/* FOOTER */

.footer {
background: #07111f;
color: white;
text-align: center;
padding: 25px;
}

/* TABLET */

@media (max-width: 900px) {
.intro-grid,
.about-grid,
.contact-grid {
grid-template-columns: 1fr;
}
}

/* MOBILE */

@media (max-width: 768px) {
.nav-container {
flex-direction: column;
gap: 16px;
padding: 18px 24px;
}

.nav-links {
flex-wrap: wrap;
justify-content: center;
gap: 14px;
}

.logo img {
height: 62px;
}

.hero {
  height: 35vh;
  min-height: 180px;  !important;}
}

.btn {
width: 100%;
max-width: 280px;
text-align: center;
}
}
