:root {
  --navy: #0a2540;
  --navy-dark: #071a2f;
  --gold: #005AAB;
  --gold-light: #7991CA;
  --gray-text: #5c6b7a;
  --light-bg: #f7f9fb;
  --font-heading: 'Noto Sans', sans-serif;
  --font-body: 'Noto Sans', sans-serif;
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: #1f2d3d;
  overflow-x: hidden;
}

h1, h2, h3, .navbar-brand, .footer-brand {
  font-family: var(--font-heading);
}

a { text-decoration: none; }

.section-py { padding: 90px 0; }

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: .85rem;
  margin-bottom: .75rem;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.text-muted { color: var(--gray-text) !important; }

/* Buttons */
.btn-cta {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: .7rem 1.6rem;
  border-radius: 4px;
  transition: all .25s ease;
}
.btn-cta:hover { background: var(--gold-light); color: var(--navy-dark); transform: translateY(-2px); }

.btn-outline-cta {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
  padding: .65rem 1.6rem;
  border-radius: 4px;
  transition: all .25s ease;
}
.btn-outline-cta:hover { background: #fff; color: var(--navy); }

/* Topbar */
.topbar {
  background: var(--navy-dark);
  color: #cbd6e2;
  font-size: .85rem;
}
.topbar-info span { margin-right: 1.5rem; }
.topbar-info i { color: var(--gold-light); margin-right: .4rem; }

/* Navbar */
.main-nav {
  background: #fff;
  padding: .9rem 0;
  box-shadow: 0 2px 12px rgba(10,37,64,.06);
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
}
.navbar-brand span { color: var(--gold); }
.brand-logo { height: 60px; width: auto; }
.nav-link {
  font-weight: 500;
  color: #33475b;
  margin: 0 .4rem;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

/* Hero */
.hero {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0,90,171,.25) 0%, rgba(0,90,171,0) 70%);
  border-radius: 50%;
}
.min-vh-hero { min-height: 520px; }
.hero-text .eyebrow { color: var(--gold-light); }
.hero-text h1 {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.hero-text h1 span { color: var(--gold-light); }
.lead-text {
  color: #cbd6e2;
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; margin-bottom: 3rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stats h3 { color: var(--gold-light); font-size: 2rem; font-weight: 700; margin-bottom: .2rem; }
.hero-stats p { color: #9fb0c3; font-size: .85rem; margin: 0; }

.hero-visual { position: relative; height: 420px; }
.hero-graphic {
  position: absolute; inset: 0;
  background: url('../images/naeemnoorcohero.png') center/cover no-repeat;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
}
.hero-card {
  position: absolute;
  background: #fff;
  color: var(--navy);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  z-index: 2;
}
.hero-card i { font-size: 1.6rem; color: var(--gold); }
.hero-card strong { display: block; font-size: 1.1rem; }
.hero-card span { font-size: .8rem; color: var(--gray-text); }
.card-1 { top: -40px; left: -13px; }
.card-2 { bottom: -28px; right: -24px; }

/* About */
.about-visual { position: relative; height: 420px; }
.about-img-main {
  position: absolute; top: 0; left: 0; width: 80%; height: 85%;
  background: url('../images/naeemnoorabout.png') center/cover no-repeat;
  border-radius: 14px;
}
.about-img-accent {
  position: absolute; bottom: 0; right: 0; width: 55%; height: 55%;
  background: var(--gold);
  opacity: .15;
  border-radius: 14px;
  z-index: -5;
}
.about-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  z-index: 2;
}
.about-badge i { font-size: 1.8rem; color: var(--gold); }
.about-badge strong { display: block; font-size: .95rem; color: var(--navy); }
.about-badge span { font-size: .8rem; color: var(--gray-text); }

.check-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.check-list li { margin-bottom: .7rem; color: #33475b; }
.check-list i { color: var(--gold); margin-right: .6rem; }

/* Services */
.services-section { background: var(--light-bg); }
.contact-section { background: var(--light-bg); }
.service-card {
  background: #fff;
  padding: 2.2rem 1.8rem;
  border-radius: 12px;
  height: 100%;
  transition: all .25s ease;
  border: 1px solid #eef1f4;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(10,37,64,.1); border-color: transparent; }
.service-icon {
  width: 60px; height: 60px;
  background: rgba(0,90,171,.12);
  color: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
.service-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: .6rem; }
.service-card p { color: var(--gray-text); font-size: .93rem; margin: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  padding: 55px 0;
}
.cta-banner h2 { font-weight: 700; margin-bottom: .4rem; }
.cta-banner p { margin: 0; opacity: .85; }
.cta-banner .btn-light { font-weight: 700; color: var(--navy); }

/* Why us */
.why-card {
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 12px;
  padding: 1.6rem;
  height: 100%;
}
.why-card i { font-size: 1.6rem; color: var(--gold); margin-bottom: .8rem; display: block; }
.why-card h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: .4rem; }
.why-card p { color: var(--gray-text); font-size: .9rem; margin: 0; }

/* Testimonials */
.testimonial-card {
  max-width: 700px;
  text-align: center;
  padding: 1rem 2rem 2rem;
}
.testimonial-card i.bi-quote { font-size: 2.5rem; color: var(--gold); }
.testimonial-card p { font-size: 1.15rem; color: #33475b; margin: 1rem 0 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: .75rem; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0,90,171,.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--navy); }
.testimonial-author span { font-size: .8rem; color: var(--gray-text); }
.carousel-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1rem; }
.carousel-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: none; background: #d7dee5; padding: 0;
}
.carousel-dots button.active { background: var(--gold); }

/* Contact */
.contact-info-list { margin-top: 1.5rem; }
.contact-info-list div { margin-bottom: 1rem; color: #33475b; }
.contact-info-list i { color: var(--gold); margin-right: .6rem; width: 20px; }
.contact-form .form-control, .contact-form .form-select {
  padding: .75rem 1rem;
  border: 1px solid #dde3e9;
  border-radius: 6px;
}
.contact-form textarea.form-control {
  resize: none;
  overflow: auto;
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 .2rem rgba(0,90,171,.15);
}
.form-status { color: var(--gold); font-weight: 600; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #b7c3d0;
  padding: 70px 0 20px;
}
.footer-brand { font-size: 1.4rem; font-weight: 700; color: #fff; display: inline-block; margin-bottom: 1rem; }
.footer-brand span { color: var(--gold-light); }
.footer-logo { height: 42px; width: auto; }
.site-footer p { font-size: .9rem; }
.site-footer h6 { color: #fff; font-weight: 700; margin-bottom: 1.2rem; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer ul li { margin-bottom: .6rem; }
.site-footer ul a { color: #b7c3d0; }
.site-footer ul a:hover { color: var(--gold-light); }
.newsletter-form { display: flex; }
.newsletter-form input {
  flex: 1;
  padding: .65rem 1rem;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  color: #fff;
  border-radius: 4px 0 0 4px;
}
.newsletter-form button {
  background: var(--gold);
  border: none;
  color: #fff;
  padding: 0 1.2rem;
  border-radius: 0 4px 4px 0;
}
.site-footer hr { border-color: rgba(255,255,255,.1); margin: 2.5rem 0 1.5rem; }
.footer-bottom p { font-size: .82rem; margin: 0; }

.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
  opacity: 0; visibility: hidden;
  transition: all .3s ease;
  z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; }

@media (max-width: 991px) {
  .section-py { padding: 60px 0; }
  .hero { padding: 40px 0 50px; }
  .hero-visual { height: 300px; margin-top: 2rem; }
  .hero-text h1 { font-size: 2.2rem; }
}
