/* Reset & Fonts */
* { margin:0; padding:0; box-sizing:border-box; font-family: 'Roboto', sans-serif;}
body { line-height:1.6; color:#333; }

/* Header */
header {
  background: linear-gradient(135deg, #003366, #0055aa);
  color: white;
  padding: 1rem 2rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position: sticky;
  top:0;
  z-index:1000;
  box-shadow:0 4px 8px rgba(0,0,0,0.2);
}
header .logo { width:100px; height:100px; margin-right:15px; border-radius:50%; background:#ffffff; padding:5px; object-fit:contain;}
.header-left { display:flex; align-items:center; }
nav a { color:white; margin-left:20px; text-decoration:none; font-weight:bold; position:relative; transition:0.3s;}
nav a::after { content:""; display:block; height:2px; width:0%; background:#ffcc00; transition:0.3s; position:absolute; bottom:-4px; left:0;}
nav a:hover::after { width:100%; }

/* Hero Section */
.hero, .hero-slide { width:100%; height:100vh; overflow:hidden; position:relative; }
.hero-slide img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-overlay { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); color:white; text-align:center; padding:2rem; border-radius:10px; max-width:90%; background: rgba(0,0,0,0.3);}
.hero-overlay h1 { font-size:3rem; margin-bottom:1rem; animation: fadeIn 1s ease forwards; }
.hero-overlay p { font-size:1.2rem; margin-bottom:1.5rem; animation: fadeIn 2s ease forwards; }
.btn-primary { padding:12px 25px; background:#ffcc00; color:#003366; text-decoration:none; border-radius:5px; font-weight:bold; transition:0.3s; }
.btn-primary:hover { transform:scale(1.05); box-shadow:0 6px 15px rgba(0,0,0,0.3); }
.hero .prev, .hero .next { position:absolute; top:50%; transform:translateY(-50%); color:white; font-size:2rem; padding:12px; cursor:pointer; background: rgba(0,0,0,0.4); border-radius:50%; }
.hero .prev { left:20px; } .hero .next { right:20px; }
.hero-dots { text-align:center; position:absolute; bottom:20px; width:100%; }
.hero-dots .dot { display:inline-block; height:12px; width:12px; margin:0 5px; background:#bbb; border-radius:50%; cursor:pointer; transition:0.3s;}
.hero-dots .active, .hero-dots .dot:hover { background:#ffcc00; }
@keyframes fade { from{opacity:0.4;} to{opacity:1;} }
@keyframes fadeIn { from{opacity:0; transform:translateY(-20px);} to{opacity:1; transform:translateY(0);} }
/* Scroll Down */
.scroll-down { position:absolute; bottom:20px; width:100%; text-align:center; }
.scroll-down a { font-size:2rem; color:white; display:inline-block; animation:bounce 2s infinite; text-decoration:none; transition:color 0.3s;}
.scroll-down a:hover { color:#ffcc00;}
@keyframes bounce {0%,20%,50%,80%,100%{transform:translateY(0);} 40%{transform:translateY(-10px);} 60%{transform:translateY(-5px);}}

/* Stats Section */
.stats-section { padding:4rem 2rem; background:#f0f4f8; text-align:center; }
.stats-container { display:flex; flex-wrap:wrap; justify-content:center; gap:2rem; max-width:1200px; margin:auto; }
.stat-card { background:white; padding:2rem; border-radius:10px; box-shadow:0 4px 12px rgba(0,0,0,0.1); width:220px; transition:transform 0.3s, box-shadow 0.3s; }
.stat-card:hover { transform:translateY(-5px); box-shadow:0 8px 20px rgba(0,0,0,0.2);}
.stat-card h2 { font-size:2.5rem; color:#003366; margin-bottom:0.5rem;}
.stat-card p { font-size:1.1rem; color:#555;}
.stat-card i { color:#ffcc00; margin-bottom:0.5rem;}

.about-us-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: stretch; /* Make image and text same height */
  gap: 2rem;
}

.about-us-image, .about-us-text {
  flex: 1; /* Equal width */
}

.about-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers full container */
  border-radius: 10px;
}

.about-us-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.about-us-text p {
  flex: 1; /* Paragraph takes full height */
}

@media (max-width: 768px) {
  .about-us-container {
    flex-direction: column;
  }
  .about-us-image, .about-us-text {
    width: 100%;
    height: auto; /* Auto height for stacking */
  }
}

/* Services */
.services-section { padding:4rem 2rem; background:#f9f9f9; }
.services-container { display:flex; flex-wrap:wrap; justify-content:center; gap:2rem; max-width:1200px; margin:auto; }
.service-card { background:white; border-radius:10px; overflow:hidden; width:300px; text-align:center; box-shadow:0 4px 12px rgba(0,0,0,0.1); transition:transform 0.3s;}
.service-card img { width:100%; height:200px; object-fit:cover; }
.service-card h3 { margin:1rem 0 0.5rem; }
.service-card p { margin-bottom:1rem; }
.service-card:hover { transform:translateY(-5px); box-shadow:0 8px 20px rgba(0,0,0,0.2); }
/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #003366; /* Matches brand color */
  font-weight: 700;
}


.contact-section {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  text-align: left;
}

/* Form styling */
.contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
}

.contact-form button {
  background: #0077cc;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #005fa3;
}

/* Contact details styling */
.contact-details {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.contact-details h3 {
  margin-bottom: 15px;
  color: #0077cc;
}

.contact-details p {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Footer */
footer { background:#003366; color:white; text-align:center; padding:2rem; }
footer .social-links a { color:white; margin:0 10px; font-size:1.5rem; transition:0.3s;}
footer .social-links a:hover { color:#ffcc00; }

/* Responsive */
@media(max-width:768px){
  .about-us-container, .services-container, .contact-container { flex-direction:column; align-items:center; }
  .hero-overlay h1 { font-size:2rem;}
  .hero-overlay p { font-size:1rem;}
  .hero-overlay { padding:1rem;}
}
.about-us-section {
  padding: 4rem 2rem;
  background: #f9fafc; /* subtle background */
}

.about-us-text ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.about-us-text ul li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.about-us-text strong {
  color: #003366; /* brand color highlight */
}
/* Adjust scrolling so content isn't hidden behind fixed header */
section {
  scroll-margin-top: 80px;  /* adjust value = your header height */
}
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background: #004aad;
  color: white;
  padding: 15px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

header nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

header nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  background-color: rgba(0,0,0,0.5);


/* Hero Section */
.about-hero {
  background: url('images/au.png') center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  text-align: center;
}
.about-hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 20px;
  border-radius: 10px;
}
.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.about-hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.about-hero .btn-primary {
  padding: 12px 30px;
  border-radius: 30px;
}

/* About Intro */
.about-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 10%;
  align-items: center;
}
.about-img img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.about-text {
  flex: 1;
}
.services-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0;
}
.highlight-card {
  flex: 1 1 200px;
  background: #f5f5f5;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}
.highlight-card i {
  color: #007bff;
  margin-bottom: 10px;
}
.highlight-card:hover {
  transform: translateY(-5px);
}

/* Mission & Vision */
.mission-vision {
  display: flex;
  gap: 20px;
  padding: 60px 10%;
  flex-wrap: wrap;
  justify-content: center;
}
.mv-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  flex: 1 1 300px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.mv-card i {
  color: #007bff;
  margin-bottom: 10px;
}
.mv-card:hover {
  transform: translateY(-5px);
}

/* Core Values */
.core-values {
  background: #f9f9f9;
  padding: 60px 10%;
  text-align: center;
}
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.value-card {
  flex: 1 1 200px;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}
.value-card i {
  color: #ff9800;
  margin-bottom: 10px;
}
.value-card:hover {
  transform: translateY(-5px);
}

/* Why Choose Us */
.why-us {
  padding: 60px 10%;
  background: #fff;
}
.why-us ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.why-us li {
  margin: 15px 0;
  font-size: 1.1rem;
}
.why-us li i {
  color: #28a745;
  margin-right: 10px;
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  padding: 60px 20px;
  text-align
