:root {
  --primary: #0a2540;
  --secondary: #00b4a0;
  --accent: #ff7a45;
  --light: #f6f9fc;
  --dark: #1a1f36;
  --text-muted: #697386;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #2c3e50;
  background-color: #ffffff;
  line-height: 1.7;
}

h1,h2,h3,h4,h5 {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* Navbar */
.navbar {
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  padding: 15px 0;
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary) !important;
}
.navbar-brand span {
  color: var(--secondary);
}
.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  margin: 0 8px;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--secondary) !important;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--secondary);
}
.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 8px;
}
.btn-primary:hover {
  background: #12365f;
  border-color: #12365f;
}
.btn-secondary-custom {
  background: var(--secondary);
  border-color: var(--secondary);
  color: white;
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 8px;
}
.btn-secondary-custom:hover {
  background: #009688;
  border-color: #009688;
  color: white;
}
.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 24px;
}
.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Hero */
.hero {
  background: linear-gradient(105deg, #0a2540 0%, #12365f 50%, #0a2540 100%);
  color: white;
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,180,160,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  color: white;
  font-size: 3.2rem;
  line-height: 1.15;
}
.hero p {
  color: #cbd5e1;
  font-size: 1.15rem;
}
.hero-badge {
  background: rgba(0,180,160,0.15);
  border: 1px solid rgba(0,180,160,0.3);
  color: #5eead4;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}
.stats-bar {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(10,37,64,0.08);
  margin-top: -50px;
  position: relative;
  z-index: 2;
  padding: 30px;
}

/* Section */
.section-padding {
  padding: 90px 0;
}
.section-light {
  background: var(--light);
}
.section-title span {
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-title h2 {
  font-size: 2.4rem;
  margin-top: 10px;
}
.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 16px auto 0;
}

/* Service Card */
.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6ebf1;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10,37,64,0.12);
  border-color: transparent;
}
.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h5 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.service-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,180,160,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--secondary);
}

/* Why Choose */
.why-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #e6ebf1;
  height: 100%;
  transition: 0.3s;
}
.why-card:hover {
  border-color: var(--secondary);
}
.why-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(10,37,64,0.08);
  line-height: 1;
  margin-bottom: 10px;
}

/* Testimonial */
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e6ebf1;
  height: 100%;
  position: relative;
}
.testimonial-card .quote {
  font-size: 3rem;
  color: var(--secondary);
  line-height: 0.5;
  opacity: 0.3;
  font-family: serif;
}
.stars {
  color: #ffb020;
}

/* Blog */
.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6ebf1;
  height: 100%;
  transition: 0.3s;
}
.blog-card:hover {
  box-shadow: 0 12px 30px rgba(10,37,64,0.08);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Footer */
.footer {
  background: var(--primary);
  color: #a3acb9;
  padding: 70px 0 0;
}
.footer h5 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer a {
  color: #a3acb9;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  transition: 0.2s;
}
.footer a:hover {
  color: white;
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding: 24px 0;
  font-size: 0.9rem;
}

/* Contact */
.contact-info-card {
  background: white;
  border: 1px solid #e6ebf1;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}

/* Policy pages */
.policy-content {
  background: white;
  border-radius: 16px;
  border: 1px solid #e6ebf1;
  padding: 50px;
}
.policy-content h3 {
  margin-top: 32px;
  font-size: 1.4rem;
}
.policy-content h4 {
  margin-top: 24px;
  font-size: 1.15rem;
}

.form-control {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #e6ebf1;
}
.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0,180,160,0.1);
}

.breadcrumb-custom {
  background: var(--light);
  padding: 30px 0;
}
.breadcrumb-custom h1 {
  font-size: 2.2rem;
}

.navbar-brand img{
  width: 250px;
}