* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, li {
  list-style: none;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: white;
  color: #F0F4F8;
}

section {
  padding: 40px 40px;
  max-width: 1500px;
  margin: auto;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo-link{
  text-decoration: none;
}

.name {
  font-size: 33px;
  color: white;
  margin: 0;
  padding: 0;
  font-family: serif;
}

.tagline {
  font-size: 14px;
  color: #f9a825;
  margin: 0;
  text-align: left;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* desktop: keep right-aligned */
  width: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding-right: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  font-size: 18px;
}

.nav-menu a:hover {
  color: saddlebrown; /* accent color */
}

/* ---------- Hamburger Button ---------- */
/* Move hamburger icon to right */
.nav-toggle {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}


/* ---------- Responsive ---------- */

/* Tablets / Laptops: center nav links */
@media (max-width: 1200px) {
  .nav-bar {
    justify-content: center; /* center nav menu */
    width: 100%;
  }

  .nav-menu {
    justify-content: center; /* center links inside nav */
    padding-right: 0;
  }
}

/* Mobile / Small Tablets */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: black;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    flex-direction: column;
    align-items: center; /* center links vertically */
  }

  .nav-bar.active {
    max-height: 300px; /* show menu */
  }

  .nav-menu {
    flex-direction: column;
    align-items: center;   /* center links horizontally */
    justify-content: center;
    text-align: center;    /* text centered */
    width: 100%;
    padding: 1rem 0;
    gap: 1rem;
    padding-left: 0;
  }
}

.clients-page {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(135deg, #fdfaf6 0%, #fff8f0 100%);
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
}

.clients-description {
    max-width: 900px;       /* limits width for readability */
    margin: 0 auto 50px auto; /* centers the block horizontally */
    text-align: left;       /* left-align all text */
    line-height: 1.8;       /* comfortable spacing within paragraphs */
    font-size: 16px;
    color: #333;
    padding: 0 20px;        /* horizontal padding for small screens */
}

.clients-description p {
    margin-bottom: 20px;    /* space between paragraphs */
}

.ila{
  color:#6E260E
}

/* Header */
.clients-header h1 {
    font-size: 42px;
    color: #6E260E;
    margin-bottom: 15px;
}

.clients-header p {
    font-size: 20px;
    color: #333;
    max-width: 900px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.header-line {
    width: 100%;
    height: 3px;
    background: #6E260E;
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

/* Grid for logos */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.client-logo {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-fmu{
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.client-fmu img{
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.client-fmu:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .clients-header h1 {
        font-size: 32px;
    }

    .clients-header p {
        font-size: 16px;
    }
}


/* SECTION */
.ila-info {
  width: 100%;
  padding: 40px 40px;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.55)
  ),
  rgba(110, 38, 14, 0.9);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

/* LEFT / RIGHT */
.ila-left, .ila-right {
  flex: 1;
  padding: 0 20px;
  margin-bottom: 10px;
}

/* TITLE — FIXED + FORCED */
.ila-info .ila-title {
  font-size: 35px;
  font-weight: 500;
  color: black !important;        /* FORCE apply */
  font-family: 'Times New Roman', Times, serif;
  position: relative;
}

/* Contact title only */
.ila-right .ila-contact {
  font-size: 35px;             /* same as left title */
  font-weight: 500;
  color: black;
  font-family: 'Times New Roman', Times, serif;
  position: relative;
  text-align: right;
  padding-right: 180px;
}

.ila-follow{
  font-size: 25px;             /* same as left title */
  font-weight: 500;
  color: black;
  font-family: 'Times New Roman', Times, serif;
  position: relative;
  padding-top: 40px;
}

/* Keep the rest of contact details normal */
.ila-right p:not(.ila-contact) {
  font-size: 18px;
  color: blanchedalmond;
  margin: 6px 0;
  line-height: 1.4;
  text-align: left;
  padding-left: 300px;
}

.ila-subtitle{
  font-size: 15px;
  color:#f9a825;
}

.ila-email {
  color: #f9a825;       /* gold-ish color for visibility */
  text-decoration: none; /* remove underline */
  font-weight: 500;
}

.ila-email:hover {
  text-decoration: underline; /* optional hover effect */
  color: #6E260E;
}

.whatsapp-icon {
  color: #25D366;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.2s, color 0.2s;
  display: inline-block;
}

.whatsapp-icon:hover {
  color: #1ebe5d;
  transform: scale(1.1);
}

@media (max-width: 768px) {

  /* Stack layout */
  .ila-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 15px;
    gap: 20px;
  }

  /* Left + Right full width */
  .ila-left, 
  .ila-right {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  /* Titles (Left + Right) */
  .ila-info .ila-title,
  .ila-right .ila-contact {
    font-size: 26px;
    padding-right: 0;
    text-align: center;
  }

  /* Contact text */
  .ila-right p:not(.ila-contact) {
    padding-left: 0;
    font-size: 16px;
    text-align: center;
  }

  /* Subtitle */
  .ila-subtitle {
    font-size: 14px;
  }

  /* Follow title */
  .ila-follow {
    font-size: 22px;
    padding-top: 15px;
    text-align: center;
  }

  /* Facebook icon */
  a[href*="facebook.com"] {
    font-size: 22px;
  }

  /* Hide decorative vertical line if exists */
  .ila-info::before {
    display: none !important;
  }
}

footer {
  background-color:black;
  color: #F0F4F8;
  text-align: center;
  padding: 15px 30px;
}
