* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

header {
  background: #0b3d91;
  color: #fff;
  padding: 15px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  background: url('images/hero.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 40px;
  text-align: center;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #00a8e8;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.section {
  padding: 60px 0;
}

.section.light {
  background: #f4f4f4;
}

.section.dark {
  background: #0b3d91;
  color: white;
  text-align: center;
}

.grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  background: white;
  padding: 20px;
  border-radius: 10px;
  min-width: 250px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: white;
}
/* Premium Contact Section */
.contact-premium {
  background: linear-gradient(135deg, #0b3d91, #021c3a);
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #cbd6f0;
  margin-bottom: 40px;
}

/* Layout */
.contact-wrapper {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Glass Cards */
.contact-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 12px;
  min-width: 260px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Email Links */
.contact-card a {
  color: #00e0ff;
  text-decoration: none;
  font-weight: 500;
  word-break: break-word;
}

.contact-card a:hover {
  color: #ffffff;
}

/* Address */
.address-card {
  margin-top: 50px;
  padding: 25px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  display: inline-block;
}

/* Premium About Section */
.about-premium {
  background: linear-gradient(135deg, #f8f9fb, #e6edf7);
  padding: 80px 0;
  color: #0b3d91;
}

.about-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.about-text {
  flex: 2;
  min-width: 300px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-highlights {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 250px;
}

/* Highlight cards */
.highlight-card {
  background: #ffffff;
  border-left: 6px solid #0b3d91;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 600;
}

.highlight-card p {
  font-size: 0.95rem;
  color: #1a2b5b;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* Section Title and Subtitle */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #334a7d;
  margin-top: 10px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0b3d91, #021c3a);
  color: #ffffff;
  text-align: center;
  padding: 120px 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: #00e0ff;
  color: #021c3a;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #00c4d9;
}

/* Contact Section */
.contact-premium {
  background: linear-gradient(135deg, #0b3d91, #021c3a);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.contact-wrapper {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card, .address-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 12px;
  min-width: 260px;
  margin-top: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-card:hover, .address-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.email {
  color: #ffffff;
  font-weight: 500;
  margin-top: 8px;
}

.footer {
  background-color: #021c3a;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  color: #0b3d91;
  transition: color 0.3s;
}

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

.logo {
  font-weight: 700;
  color: #0b3d91;
  font-size: 1.4rem;
}