/* ===============================
   DESIGN TOKENS / THEME VARIABLES
================================ */
:root {
  --primary: #0b2c48;        /* Deep corporate blue */
  --secondary: #f4b400;      /* Gold accent */
  --accent: #1e88e5;         /* Subtle blue accent */
  --dark: #0f172a;
  --light: #f7f9fc;
  --white: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;

  --radius: 6px;
  --shadow-sm: 0 6px 18px rgba(0,0,0,0.06);
  --shadow-md: 0 14px 35px rgba(0,0,0,0.12);

  --transition: all 0.3s ease;
}
/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: #fff;
}

header {
  background-color:white;
  color: #0b3c5d;
}


.logo {
  width: 160px;   /* BIGGER LOGO */
  height: 60px;
  object-fit: contain;
}
/* ================= HEADER ================= */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

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

/* ================= NAV LINKS ================= */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #111;
}

/* ===== HAMBURGER BUTTON ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hamburger bars */
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: #0b3c5d;   /* DARK BLUE */
  border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    width: 220px;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
  }
  .nav-links.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ================= HAMBURGER ANIMATION ================= */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav a:hover {
  color: var(--accent);
}
/* ================= HERO SLIDER ================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

/* Individual slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Active slide */
.hero-slide.active {
  opacity: 1;
}

/* Overlay content */
.hero-overlay {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  color: #ffffff;
  background: rgba(2, 6, 23, 0.55); /* subtle dark overlay */
}

.hero-overlay h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  max-width: 900px;
  line-height: 1.2;
}

.hero-overlay p {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  opacity: 0.9;
}

/* Buttons */
.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: #0b3c5d;
  color: #fff;
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: #062a40;
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.7rem 1.7rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #ffffff;
  color: #0b3c5d;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-slider {
    height: 85vh;
  }
}
* CARD IMAGE */
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
/* ===============================
   GRIDS & CARDS
================================ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: var(--radius);
  border-left: 5px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.hover-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.15);
}

.card:hover img {
  transform: scale(1.05);
}

/* CARD CONTENT */
.card-content {
  padding: 1.6rem 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.card-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.card-content p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.65;
}

/* DECORATIVE ACCENT ON TOP */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .card img {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .card img {
    height: 140px;
  }
  .card-content h3 {
    font-size: 1.1rem;
  }
  .card-content p {
    font-size: 0.95rem;
  }
}
/* ===============================
   STATS SECTION
================================ */
.stats {
  background: var(--primary);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.stat-box h3 {
  font-size: 2.3rem;
  color: var(--secondary);
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.stat-box {
  transition: var(--transition);
}

.stat-box:hover {
  transform: scale(1.05);
}
/* ================= MANAGING DIRECTOR PROFILE ================= */
.md-profile-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.md-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  border: 4px solid #0a3d62;
}

.md-profile-content h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a3d62;
}

.md-position {
  font-weight: 600;
  color: #555;
  margin-bottom: 20px;
}

.md-profile-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #444;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .md-profile-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .md-image img {
    height: 260px;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ===============================
   CTA SECTION
================================ */
.cta {
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta p {
  max-width: 650px;
  margin: auto;
  margin-bottom: 30px;

}

/* ===============================
   FOOTER
================================ */
.footer {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 5px 1px;
  font-size: 0.85rem;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

  .hero-overlay h1 {
    font-size: 2.1rem;
  }

  .menu a {
    margin-left: 18px;
    font-size: 0.85rem;
  }

  .hero-actions {
    flex-direction: column;
  }
}
/* ABOUT SESSION */
/* ================= ROOT VARIABLES ================= */


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

body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--white);
}

/* ================= CONTAINERS ================= */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: auto;
}

.container.narrow {
  max-width: 900px;
}

.section {
  padding: 20px 0;
}
/* ================= HEADER ================= */
.header {
  background: var(--white);
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  width: 150px;
  height: auto;
  object-fit: contain;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}
.brand-name {
  color: var(--primary);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .brand-name {
    font-size: 0.95rem;
    max-width: 200px;
    white-space: normal;
  }
}
/* ================= NAV MENU ================= */
.menu a {
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
  color: var(--text-color);
  position: relative;
  transition: var(--transition);
}

.menu a:hover,
.menu a.active {
  color: var(--primary-color);
}

.menu a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* ================= PAGE HERO ================= */
.page-hero {
  background: linear-gradient(
      rgba(11, 60, 93, 0.85),
      rgba(11, 60, 93, 0.85)
    ),
    url("../assets/hero2.jpg") center/cover no-repeat;
  color: var(--white);
  padding: 120px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.page-hero .lead {
  font-size: 1.15rem;
  opacity: 0.95;
}

/* ================= HEADINGS ================= */
.section-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  display: block;
  margin-top: 1px;
  border-radius: 3px;
}

/* ================= TEXT ================= */
p {
  margin-bottom: 20px;
  color: var(--muted-text);
}

/* ================= GRID SYSTEM ================= */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ================= CARDS ================= */
.card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card h3,
.card h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ================= LIST ================= */
.styled-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  text-align: left;
  margin-top: 3rem;
}

/* List item card */
.styled-list li {
  background: #ffffff;
  padding: 1.4rem 1.6rem;
  border-radius: 14px;
  font-size: 1.05rem;
  color: #334155;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  position: relative;
  padding-left: 3.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Accent icon */
.styled-list li::before {
  content: "✓";
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary), #38bdf8);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
.styled-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.15);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .styled-list li {
    font-size: 1rem;
    padding: 1.3rem 1.4rem 1.3rem 3.2rem;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .page-hero {
    padding: 90px 0;
  }
}
/* ================= SERVICES PAGE ================= */

.services-hero {
  background: linear-gradient(
      rgba(11, 60, 93, 0.85),
      rgba(11, 60, 93, 0.85)
    ),
    url("../assets/hero3.jpg") center/cover no-repeat;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Service Cards */
.service-card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--secondary-color);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--muted-text);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
  border-top-color: var(--primary-color);
}
/* ================= CONTACT PAGE ================= */

.contact-hero {
  background: linear-gradient(
      rgba(11, 60, 93, 0.85),
      rgba(11, 60, 93, 0.85)
    ),
    url("../assets/hero4.jpg") center/cover no-repeat;
}

/* Contact Info Cards */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.projectss-hero {
  background: linear-gradient(
      rgba(11, 60, 93, 0.85),
      rgba(11, 60, 93, 0.85)
    ),
    url("../assets/hydro.webp") center/cover no-repeat;
}
.services-hero {
  background: linear-gradient(
      rgba(11, 60, 93, 0.85),
      rgba(11, 60, 93, 0.85)
    ),
    url("../assets/services/prof.webp") center/cover no-repeat;
}
/* Cards */
.cards {
  background: #ffffff;
  padding: 2.2rem 2rem;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(2, 6, 23, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Decorative accent line */
.cards::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
}

/* Hover effect */
.cards:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.18);
}

/* Headings */
.cards h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 0.4px;
}

/* Text */
.cards p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.7;
}

/* Emphasis on contact details */
.cards p br {
  margin-bottom: 0.4rem;
}

/* ================= ICON STYLE (OPTIONAL) ================= */
.cards::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(56,189,248,0.2), transparent 60%);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .contact-info {
    grid-template-columns: 1fr;
  }

  .cards {
    padding: 2rem 1.5rem;
  }
}

/* Contact Form */
.contact-form h2 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid #ddd;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

/* Map */
.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: var(--radius);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
}
/* ================= MODERN SERVICES WITH IMAGES ================= */
/* ================= CORE SERVICE SECTION ================= */
.section.bg-light {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #f9fafb, #edf2f7);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

/* Decorative underline */
.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ================= GRID LAYOUT ================= */
.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* ================= CARD STYLING ================= */
.service-modern-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(2, 6, 23, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

/* Hover / Lift effect */
.service-modern-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.15);
}

/* Card image */
.service-modern-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-modern-card:hover img {
  transform: scale(1.05);
}

/* Card content */
.service-content {
  padding: 1.8rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.service-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.service-content p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.65;
}

/* Decorative accent */
.service-modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .service-modern-card img {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .services-modern-grid {
    gap: 1.8rem;
  }
  .service-modern-card img {
    height: 140px;
  }
}

@media (max-width: 480px) {
  .service-content h3 {
    font-size: 1.1rem;
  }
  .service-content p {
    font-size: 0.95rem;
  }
}

/* ================= PROJECTS / PORTFOLIO PAGE ================= */

.projects-hero {
  background: linear-gradient(
      rgba(11, 60, 93, 0.85),
      rgba(11, 60, 93, 0.85)
    ),
    url("../assets/hero1.jpg") center/cover no-repeat;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

/* Project Card */
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-content {
  padding: 28px;
}

.project-content h3 {
  color: var(--primary-color);
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.project-meta {
  font-size: 0.85rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.project-content p {
  font-size: 0.95rem;
  color: var(--muted-text);
}

/* Hover Effect */
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 55px rgba(0,0,0,0.15);
}

.project-card:hover img {
  filter: brightness(0.9);
}

/* Mobile */
@media (max-width: 600px) {
  .project-card img {
    height: 180px;
  }
}

/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 1rem 1.5rem;
  background: linear-gradient(180deg, #f9fafb, #edf2f7);
}

/* Section title */
.services-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 3rem;
  position: relative;
}

.services-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

/* CARD */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(2, 6, 23, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.15);
}

/* IMAGE */
.service-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

/* CONTENT */
.service-info {
  padding: 1.8rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.service-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.service-info p {
  font-size: 1rem;
  color: #334155;
  line-height: 1.65;
}

/* DECORATIVE ACCENT */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), #38bdf8);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .service-image img {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .service-image img {
    height: 140px;
  }
  .service-info h3 {
    font-size: 1.1rem;
  }
  .service-info p {
    font-size: 0.95rem;
  }
}
