nav a.active {
  border-bottom: 2px solid #ff7a8a;
  color: #ff7a8a;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #333;
  background-color: #f7f9fb;
  line-height: 1.6;
}

header {
  background: #09173f;
  color: white;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

header .slogan {
  margin-top: 10px;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  color: #ff7a8a;
}

header .logo {
  font-size: 24px;
  font-weight: 700;
}

nav a {
  color: white;
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ff7a8a;
}

section {
  max-width: 1100px;
  margin: 10px auto;
  padding: 0 20px;
}

section.contact {
  max-width: 700px;
  margin: 30px auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.section-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.section-content img {
  flex: 1 1 45%;
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
}

.section-text {
  flex: 1 1 50%;
}

.section-text h2 {
  font-size: 32px;
  color: #1a1a2e;
  margin-bottom: 20px;
  border-bottom: 2px solid #ff7a8a;
  display: inline-block;
}

.section-text p {
  font-size: 18px;
  margin-bottom: 20px;
}
img {
  max-width: 100%;
  height: auto;

  width: auto;
}
.logo img {
  max-width: 200px;       /* never wider than 200px */
  max-height: 100px;      /* never taller than 200px */
  width: 100%;            /* responsive scaling */
  height: auto;           /* maintain aspect ratio */
  display: block;         /* removes inline spacing */
}

.image-container img {
  max-width: 300px;
  max-height: 300px;
  width: 100%;
  height: auto;
  display: block;
}

.services-heading {
  text-align: center;
  margin-bottom: 40px;
}

.services-heading h2 {
  font-size: 36px;
  color: #1a1a2e;
  border-bottom: 2px solid #ff7a8a;
  display: inline-block;
  padding-bottom: 10px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  padding: 30px;
  flex: 1 1 300px;
  max-width: 400px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  font-size: 24px;
  color: #09173f;
  margin-bottom: 20px;
}

.service-card p {
  font-size: 16px;
  margin-bottom: 15px;
}

.service-card .price {
  font-size: 20px;
  color: #ff7a8a;
  font-weight: 600;
}

footer {
  text-align: center;
  padding: 30px 20px;
  background: #1a1a2e;
  color: #ccc;
}

footer a {
  color: #ff7a8a;
  text-decoration: underline;
}

.contact-heading {
  text-align: center;
  margin-bottom: 30px;
}

.contact-heading h2 {
  font-size: 36px;
  color: #1a1a2e;
  border-bottom: 2px solid #ff7a8a;
  display: inline-block;
  padding-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
}

input[type="text"], input[type="email"], textarea {
  padding: 12px 15px;
  margin-bottom: 25px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #ff7a8a;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 150px;
}

button {
  background-color: #ff7a8a;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #e56575;
}

.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 40px auto;
  gap: 40px;
  align-items: flex-start;
  padding: 0 20px;
}

.image-column, .text-column {
  flex: 1;
  min-width: 300px;
}

.image-column img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.text-column {
  padding: 40px;
}

.text-column h1 {
  color: #004080;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

/* ===== NAVIGATION FIX ===== */

/* Desktop defaults: show links, hide hamburger */
.nav-links {
  display: flex;
  align-items: center;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Mobile styles: show hamburger, hide links until toggled */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #09173f;
    position: absolute;
    top: 60px; /* adjust to header height */
    left: 0;
    z-index: 1000;
  }
  .nav-links a {
    margin: 15px 0;
    text-align: center;
  }
  .nav-links.show {
    display: flex;
  }
}

.close-nav {
  display: none;
  font-size: 36px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  text-align: right;
  padding: 20px;
}

@media (max-width: 768px) {
  .close-nav {
    display: block;
  }
}
@media (max-width: 320px) {
  .close-nav {
    display: block;
  }
  .hamburger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #09173f;
    position: absolute;
    top: 60px; /* adjust to header height */
    left: 0;
    z-index: 1000;
  }
  .nav-links a {
    margin: 15px 0;
    text-align: center;
  }
  .nav-links.show {
    display: flex;
  }
}
.modern-list {
  list-style: none;              /* remove default bullets */
  padding: 0;
  margin: 0;
  max-width: 600px;              /* optional: limit width */
}

.modern-list li {
  position: relative;            /* for positioning custom bullet */
  padding-left: 30px;            /* space for icon */
  margin-bottom: 15px;
  font-size: 18px;
  color: #1a1a2e;
  line-height: 1.5;
}

.modern-list li::before {
  content: "\2713";              /* checkmark ✓ */
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7a8a;               /* modern accent color */
  font-size: 20px;
}
.testimonials-section {
  overflow-x: auto;             /* ✅ Allow horizontal scrolling */
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;  /* ✅ Smooth scrolling on iOS */
  background: #f7f9fb;
  padding: 40px 20px;
}

.testimonials-container {
  display: flex;                /* ✅ Make children lay out horizontally */
  gap: 20px;
}

.testimonial {
  flex: 0 0 auto;               /* ✅ Prevent shrinking, allow horizontal stacking */
  max-width: 300px;
  width: 100%;
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* Headings, text, author styling */
.testimonial h3 {
  font-size: 1.1rem;
  color: #09173f;
  margin-bottom: 10px;
}

.testimonial p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.testimonial .author {
  font-weight: bold;
  color: #ff7a8a;
  font-size: 0.9rem;
}

/* Smooth scrolling for modern browsers */
.testimonials-section {
  scroll-behavior: smooth;
}

.consult-btn {
  background-color: #4da6ff; /* light blue */
  color: #fff !important;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.consult-btn:hover {
  background-color: #3399ff;
}

/* Optional: Ensure it fits mobile nav */
@media (max-width: 768px) {
  .consult-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
}






