:root {
  --bg: #050816;
  --bg-alt: #0b1020;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.14);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1f2933;
  --danger: #f97373;
  --success: #22c55e;
  --radius: 10px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.7);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, var(--bg), var(--bg) 40%, var(--bg-alt) 100%);
  color: var(--text);
}

body[data-theme="light"] {
  --bg: #f3f4f6;
  --bg-alt: #ffffff;
  --accent: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.12);
  --text: #0f172a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --danger: #b91c1c;
  --success: #15803d;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

main [data-section] {
  display: none;
}

main [data-section].is-active {
  display: block;
}

.section-alt {
  background: radial-gradient(circle at top left, #020617 0, #020617 30%, #020617 60%, #020617 100%),
              linear-gradient(135deg, rgba(56, 189, 248, 0.08), transparent 55%);
}

/* Section background images */

/* Services section (Our Professional Services) */
#portfolio {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.75)),
    url('../images/Services background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* About section */
#about {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.7)),
    url('../images/About .jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Contact Us section */
#contact {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
    url('../images/contact us.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  max-width: 540px;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* Shared section headers (title + subtitle) */

.section-header-band {
  border-radius: 18px;
  padding: 2.5rem 1rem 2.4rem;
  background: linear-gradient(120deg, #064e3b, #047857, #1d4ed8);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.85);
  margin-bottom: 3rem;
}

.section-header {
  text-align: center;
  margin: 0;
}

.section-header-title {
  margin: 0 0 1.2rem;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f9fafb;
}

.section-header-subtitle {
  margin: 0;
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.98rem;
}

body[data-theme="light"] .section-header-band {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.72));
  border-bottom: 1px solid rgba(15, 23, 42, 0.7);
  padding: 0.3rem 0;
}

.site-header .container {
  max-width: 100%;
  margin: 0;
  padding-left: 1rem;
  padding-right: 1.5rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  padding: 0.4rem 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #38bdf8, #0ea5e9 35%, #1f2937 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #0b1120;
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.55);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-image {
  height: 96px;
  width: auto;
  object-fit: contain;
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.logo-image:hover {
  transform: scale(1.03);
}

.logo-text .company-name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f9fafb;
}

.logo-text .tagline {
  font-size: 0.75rem;
  color: rgba(249, 250, 251, 0.9);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

/* Mobile nav toggle (hamburger) */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0.25rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f9fafb;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-3px) rotate(-45deg);
}

.main-nav {
  display: flex;
  gap: 2.5rem;
  font-size: 1rem;
}

.main-nav a {
  position: relative;
  padding: 0.35rem 0.9rem 0.55rem;
  border-radius: 999px;
  color: rgba(249, 250, 251, 0.9);
  font-weight: 500;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  transition: width 0.25s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.is-active {
  color: var(--accent);
  background: var(--accent-soft);
}

.main-nav a.is-active::after {
  width: 18px;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.15rem 0.6rem 0.15rem 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: var(--muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e5e7eb, #f9fafb);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.5);
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.theme-toggle-label {
  white-space: nowrap;
}

/* Theme toggle removed – site runs in light mode only */

/* Hero */

.hero {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)),
    url('../images/Image 1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  justify-items: center;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-text h1 {
  font-size: clamp(2.7rem, 3.8vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.7rem;
  color: #f9fafb;
  text-shadow: 0 2px 6px rgba(15, 23, 42, 0.7);
}

.hero-text p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: #f9fafb;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-visual-card {
  width: 100%;
  max-width: 360px;
  background: #f9fafb;
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: #e5e7eb;
}

.hero-visual-item p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.86);
}

/* Home overview content */

.home-overview {
  margin-top: 6rem;
  margin-bottom: 2.5rem;
  max-width: 900px;
  text-align: center;
}

.home-overview-heading {
  margin: 0 0 2.1rem;
  font-size: 2.8rem;
  font-weight: 800;
  color: #f9fafb;
}

.home-overview-lead {
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.home-overview-text {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-overview-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.home-overview-list li + li {
  margin-top: 0.35rem;
}

.home-overview-list.bullets {
  list-style: disc;
  padding-left: 1.4rem;
  text-align: left;
}

.home-overview-subheading {
  margin: 2.4rem 0 0.9rem;
  font-size: 1.55rem;
  font-weight: 700;
}

.home-what-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.home-what-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 1.8rem 1.6rem 2.1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  text-align: left;
}

.home-what-media {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.home-what-media img {
  width: 180px;
  height: 180px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-what-media img:hover {
  transform: scale(1.06);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.3);
}

.home-what-card h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.home-what-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.98rem;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
}

.home-service-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 14px;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.85);
  text-align: left;
}

.home-service-card h4 {
  margin: 0 0 0.9rem;
  font-size: 1.1rem;
  color: var(--text);
}

.home-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.home-industries {
  font-weight: 600;
}

.home-cta-block {
  margin-top: 2.8rem;
}

.home-cta-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* Home value strip removed for logo area under hero */
.home-value-strip,
.home-value-strip-inner,
.home-value-item {
  display: none;
}

.home-why {
  margin-top: 6rem;
}

.home-why-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.home-why-text h3 {
  margin: 0 0 1.9rem;
  font-size: 2.4rem;
  color: #f9fafb;
}

.home-why-text p {
  margin: 0 0 2.6rem;
  color: #f9fafb;
  font-size: 1.08rem;
  line-height: 1.8;
}

.home-why-list {
  margin: 0 auto;
  padding-left: 1.1rem;
  max-width: 520px;
  list-style: disc;
  color: #f9fafb;
  font-size: 1.06rem;
  line-height: 1.7;
  text-align: left;
}

.home-why-list li + li {
  margin-top: 0.35rem;
}

.home-cta-final {
  margin-top: 6rem;
}

.home-cta-final-inner {
  border-radius: 20px;
  padding: 2.4rem 1.8rem 2.6rem;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  text-align: center;
}

.home-cta-final-inner h3 {
  margin: 0 0 1.2rem;
  font-size: 2rem;
  color: var(--text);
}

.home-cta-final-inner p {
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-highlight {
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.24), transparent 60%),
              linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9));
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.3);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.hero-highlight .stat-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 14px;
  padding: 0.9rem 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.hero-highlight .stat-number {
  font-size: 1.6rem;
  font-weight: 700;
}

.hero-highlight .stat-label {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  box-shadow: 0 14px 35px rgba(56, 189, 248, 0.5);
  color: #020617;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(56, 189, 248, 0.6);
}

.btn.outline {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(148, 163, 184, 0.4);
  color: var(--text);
}

.btn.outline:hover {
  border-color: #38bdf8;
  background: rgba(15, 23, 42, 0.95);
}

/* Grid & cards */

.grid {
  display: grid;
  gap: 1.5rem;
}

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 70%),
              rgba(15, 23, 42, 0.95);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.9);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.service-media {
  width: 100%;
  height: 140px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.1), transparent 55%),
              linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.98));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-media img:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.5);
}

.service-link {
  margin-top: 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--accent);
}

.service-link:hover {
  text-decoration: underline;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.about-grid p {
  color: var(--muted);
}

.about-list h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.about-list ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.about-list li + li {
  margin-top: 0.3rem;
}

.about-body {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-body-heading {
  margin: 0 0 1.8rem;
  font-size: 2.6rem;
  font-weight: 700;
  color: #f9fafb;
}

.about-body-text {
  margin: 0 0 1.1rem;
  color: #f9fafb;
  font-size: 1.12rem;
  line-height: 1.7;
}

.about-body-text strong {
  display: block;
  margin: 1.8rem 0 0.7rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #f9fafb;
}

.about-body-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0.6rem auto 1.4rem;
  max-width: 820px;
  text-align: left;
  color: #f9fafb;
  font-size: 1.08rem;
  line-height: 1.7;
}

.about-body-list li + li {
  margin-top: 0.45rem;
}

.about-body-list strong {
  font-size: 1.16rem;
  font-weight: 700;
  color: #f9fafb;
}

/* Contact */

.contact-main {
  text-align: center;
  max-width: 860px;
}

.contact-main-heading {
  margin: 0 0 1.2rem;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #f9fafb;
}

.contact-main-subtitle {
  margin: 0 0 2.1rem;
  color: #f9fafb;
  font-size: 0.98rem;
}

.contact-form {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius);
  padding: 1.8rem 1.7rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.contact-form-wide {
  margin: 0 auto;
  max-width: 760px;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.42rem 0.7rem;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.5);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.form-row.form-row-full {
  grid-column: 1 / -1;
}

.alert {
  padding: 0.7rem 0.9rem;
  border-radius: 7px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.alert.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.6);
  color: var(--success);
}

.alert.error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.7);
  color: var(--danger);
}

.btn-contact-submit {
  background: linear-gradient(135deg, #7c3aed, #047857);
  border-color: transparent;
  color: #f9fafb;
  box-shadow: 0 16px 35px rgba(76, 29, 149, 0.6);
}

.btn-contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(76, 29, 149, 0.7);
}

.contact-map-wrapper {
  margin-top: 3.5rem;
  text-align: center;
}

.contact-map-heading {
  margin: 0 0 0.6rem;
  font-size: 2.1rem;
  font-weight: 700;
  color: #f9fafb;
}

.contact-map-subtitle {
  margin: 0 0 1.8rem;
  color: #f9fafb;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-map-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
}

.contact-map-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* Contact quick links (Get in touch) */

.contact-touch-wrapper {
  margin-top: 3rem;
}

.contact-touch-card {
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.9));
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.85);
  padding: 1.8rem 1.6rem 1.6rem;
  text-align: center;
}

.contact-touch-heading {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
}

.contact-touch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.contact-touch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
}

.contact-touch-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.contact-touch-icon-svg {
  width: 24px;
  height: 24px;
  display: block;
  color: #f9fafb;
}

.contact-touch-icon.phone {
  background: none;
}

.contact-touch-icon.whatsapp {
  background: none;
}

.contact-touch-icon.email {
  background: none;
}

.contact-touch-title {
  margin: 0;
  font-weight: 600;
}

.contact-touch-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-touch-subtitle-strong {
  color: #7dd3fc;
  font-weight: 600;
}

.contact-touch-icon:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: none;
}

/* Follow us block */

.contact-follow-wrapper {
  margin-top: 2.4rem;
}

.contact-follow-card {
  border-radius: var(--radius);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.95));
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.9);
  padding: 1.6rem 1.4rem 1.5rem;
  text-align: center;
}

.contact-follow-heading {
  margin: 0 0 1.2rem;
  font-size: 1.5rem;
}

.contact-follow-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 2.2rem;
  row-gap: 1.2rem;
  justify-content: center;
}

.contact-follow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
}

.contact-follow-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #f9fafb;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.95);
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.contact-follow-icon.facebook {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.contact-follow-icon.instagram {
  background: conic-gradient(from 180deg at 50% 50%, #f97316, #ec4899, #6366f1, #f97316);
}

.contact-follow-icon-svg {
  width: 20px;
  height: 20px;
  display: block;
  color: #f9fafb;
}

.contact-follow-title {
  margin: 0;
  font-weight: 600;
}

.contact-follow-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-follow-icon:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.98);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 2.5rem 0 1.4rem;
  background: radial-gradient(circle at top, #020617, #020617 35%, #000 100%);
  color: #e5e7eb;
}

.site-footer .container {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(209, 213, 219, 0.9);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
  padding-bottom: 2rem;
}

.footer-brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 1.2rem;
  row-gap: 0.35rem;
  align-items: center;
  margin-top: -22px;
}

.footer-logo-box {
  width: 176px;
  height: 176px;
  border-radius: 18px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-logo-initials {
  font-size: 1rem;
  font-weight: 700;
  color: #020617;
}

.footer-company {
  margin: 0 0 0.15rem;
  font-size: 1.25rem;
  color: #e5e7eb;
}

.footer-tagline {
  margin: 0;
  max-width: 420px;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.95);
}

.footer-social {
  grid-column: 1 / 2;
  display: flex;
  gap: 0.9rem;
  justify-content: flex-start;
  margin-top: 0.05rem;
}

.footer-social-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  background: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer-social-icon-svg {
  width: 28px;
  height: 28px;
  display: block;
  color: #f9fafb;
}

.footer-social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: none;
}

.footer-contact {
  text-align: left;
  justify-self: end;
}

.footer-heading {
  margin: 0 0 0.8rem;
  font-size: 1.5rem;
  color: #e5e7eb;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.05rem;
}

.footer-contact-list li + li {
  margin-top: 0.9rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.footer-contact-text {
  display: inline-block;
}

.footer-contact-phone,
.footer-contact-email {
  color: #f9fafb;
  font-weight: 600;
}

.footer-contact-label {
  display: block;
  font-weight: 500;
  color: #e5e7eb;
}

.footer-contact-value {
  color: rgba(226, 232, 240, 0.9);
}

.footer-contact-link {
  color: #7dd3fc;
}

.footer-contact-link:hover {
  text-decoration: underline;
  color: #bae6fd;
}

.contact-form-heading {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(209, 213, 219, 0.85);
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--accent);
}

/* Light theme overrides */

body[data-theme="light"] .site-header {
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.72));
  border-bottom-color: rgba(15, 23, 42, 0.7);
}

body[data-theme="light"] .section-alt {
  background: radial-gradient(circle at top left, #f9fafb 0, #f3f4f6 40%, #e5e7eb 100%);
}

body[data-theme="light"] .card {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

body[data-theme="light"] .contact-form {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

body[data-theme="light"] .form-row input,
body[data-theme="light"] .form-row textarea {
  background: #f9fafb;
  border-color: rgba(148, 163, 184, 0.7);
}

body[data-theme="light"] .contact-touch-card,
body[data-theme="light"] .contact-follow-card {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
}

body[data-theme="light"] .home-service-card {
  background: #ffffff;
  border-color: var(--border);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.16);
}

body[data-theme="light"] .contact-touch-heading,
body[data-theme="light"] .contact-follow-heading,
body[data-theme="light"] .contact-touch-title,
body[data-theme="light"] .contact-follow-title {
  color: var(--text);
}

body[data-theme="light"] .btn.outline {
  background: #ffffff;
  border-color: var(--border);
  color: var(--text);
}

body[data-theme="light"] .btn.outline:hover {
  background: #e5e7eb;
}

body[data-theme="light"] .site-footer {
  background: radial-gradient(circle at top, #020617, #020617 35%, #000 100%);
  border-top-color: rgba(15, 23, 42, 0.7);
}

/* Responsive */

@media (max-width: 1200px) {
  .container {
    max-width: 960px;
    padding: 0 1.25rem;
  }

  .hero-inner {
    gap: 2.5rem;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 3vw, 2.4rem);
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-highlight {
    order: -1;
    width: 100%;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-what-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
}

@media (max-width: 1024px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    height: auto;
    padding: 0.4rem 0;
  }

  .header-actions {
    margin-left: auto;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0.6rem 1.25rem 0.9rem;
    background: rgba(15, 23, 42, 0.97);
    border-bottom: 1px solid rgba(15, 23, 42, 0.8);
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    z-index: 25;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    text-align: left;
    padding: 0.4rem 0.75rem 0.55rem;
  }

  /* Header logo sizing on smaller screens */

  .logo-image {
    height: 72px;
  }

  .logo-text .company-name {
    font-size: 1.1rem;
  }

  .logo-text .tagline {
    font-size: 0.7rem;
  }

  /* Footer layout: stack columns on small screens */

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .footer-contact {
    justify-self: center;
    margin-top: 0.25rem;   /* move Contact info slightly higher */
    margin-bottom: 1.5rem; /* add space below Contact info block */
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    margin-top: 1.4rem;    /* keeps a clean gap before the © row */
  }

  /* Contact quick links grid on smaller screens */

  .contact-touch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  /* Single-column quick links and footer on very small screens */

  .contact-touch-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-logo-box {
    width: 140px;
    height: 140px;
  }
}
