:root {
  --bg: #0b0f14;
  --card: #111827;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #2563eb;
}

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

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

header {
  padding: 40px 20px;
  text-align: center;
  border-bottom: 1px solid #1f2933;
}

header h1 {
  font-size: 2.4rem;
  letter-spacing: 1px;
}

header p {
  color: var(--muted);
  margin-top: 10px;
}

nav {
  margin-top: 25px;
}

nav a {
  color: var(--muted);
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: var(--accent);
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.card {
  background: var(--card);
  padding: 35px;
  border-radius: 14px;
  margin-bottom: 30px;
  border: 1px solid #1f2937;
}

.card h2 {
  color: white;
  margin-bottom: 15px;
}

.card p {
  color: var(--muted);
}

.highlight {
  color: var(--accent);
}

footer {
  text-align: center;
  padding: 30px;
  color: var(--muted);
  border-top: 1px solid #1f2937;
  font-size: 0.9rem;
}
.hero-image {
  width: 100%;
  border-radius: 16px;
  filter: brightness(70%);
  margin-bottom: 20px;
}

.section-image {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 15px;
  filter: brightness(80%);
}
.slider {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 25px;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  filter: brightness(65%);
}

.hero-slide.active {
  opacity: 1;
}
.hero-text {
  font-size: 34px;       /* standard, not oversized */
  font-weight: 700;      /* bold & trustworthy */
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeInHero 2.2s ease forwards;
}

/* Fade-in animation */
@keyframes fadeInHero {
  to {
    opacity: 1;
  }
}
/* HERO WRAPPER */
.hero-wrapper {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* IMAGE */
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MAIN CENTER TEXT */
.hero-text-main {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  animation: fadeInCenter 2s ease forwards;
}

/* SMALL LINE BELOW */
.hero-text-sub {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  opacity: 0.85;
}

/* LEFT SLIDING TEXT */
.hero-text-left {
  position: absolute;
  top: 65%;
  left: -100%;
  font-size: 26px;          /* slightly bigger */
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55); /* soft transparency */
  letter-spacing: 0.5px;
  animation: slideFromLeft 1.8s ease forwards;
  animation-delay: 0.6s;
}


/* ANIMATIONS */
@keyframes fadeInCenter {
  to { opacity: 1; }
}

@keyframes slideFromLeft {
  to { left: 6%; }
}
/* ===== TOP HEADER BAR ===== */
.top-bar {
  position: relative;
  width: 100%;
  padding: 20px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0f1115;
  z-index: 1000;
}

/* BRAND WITH BORDER */
.brand {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.6px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
}

/* RIGHT MENU */
.top-menu {
  display: flex;
  align-items: center;
}

.top-menu a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 28px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.top-menu a:hover {
  opacity: 1;
}
.subtext {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  opacity: 0.75;
}
/* CONTACT INFO BAR */
.contact-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  padding: 15px 30px;
  background: #0f172a;
  border-bottom: 1px solid #1f2937;
  font-size: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e7eb;
}

.contact-item .icon {
  font-size: 16px;
}
.page-header {
  padding: 80px 20px 40px;
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.content-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.content-section h2 {
  margin-bottom: 15px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.professional-list {
  padding-left: 20px;
}

.professional-list li {
  margin-bottom: 8px;
}

.disclaimer {
  background: #0f172a;
  padding: 40px 20px;
  border-radius: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  background: #111827;
  border: 1px solid #374151;
  color: #e5e7eb;
}

.contact-form button {
  margin-top: 15px;
  padding: 12px 24px;
  background: #2563eb;
  border: none;
  color: #fff;
  cursor: pointer;
}
.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #1f2937;
}
.site-footer {
  background: #020617;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 1px solid #1f2937;
}

.footer-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 10px;
}

.site-footer p {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #1f2937;
  font-size: 13px;
  color: #6b7280;
}
.service-list li {
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-note {
  margin-top: 20px;
  font-size: 14px;
  color: #9ca3af;
}
/* REVIEWS SECTION */
.reviews-section {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.reviews-subtitle {
  margin-top: 10px;
  font-size: 15px;
  color: #9ca3af;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.review-card {
  background: #111827;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  border: 1px solid #1f2937;
}

.review-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-card strong {
  display: block;
  margin-bottom: 4px;
}

.review-card span {
  font-size: 13px;
  color: #9ca3af;
}
/* REVIEW IMAGE STYLING */
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.review-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #374151;
}
/* ABOUT SECTION STYLING */
.content-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.content-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text);
}

.content-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 25px;
}

/* ABOUT POINTS LIST */
.about-points {
/* CONTACT SECTION */
.contact-details p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 14px;
}

.contact-details a {
  color: var(--accent);
  text-decoration: none;
}

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

/* CONTACT LINK COLOR FIX */
.contact-details a {
  color: var(--text);        /* same as normal text */
  font-weight: 500;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--accent);     /* accent color on hover */
  text-decoration: underline;
}
/* FORCE CONTACT LINK COLOR */
section.content-section .contact-details a,
section.content-section .contact-details a:visited {
  color: #e5e7eb !important;   /* professional light text */
  text-decoration: none !important;
}

section.content-section .contact-details a:hover {
  color: #2563eb !important;   /* accent color */
  text-decoration: underline;
}
/* HIGHLIGHT SEPARATE SECTION */
.highlight-section {
  margin-top: 60px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.02);
}

.highlight-section h3 {
  margin-top: 0;
}

