* {
  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;
  }
}


.about-div {
  width: 100%;
  padding: 50px 5%;
}

.about-us {
  color: #6E260E;
  font-family: Arial sans-serif;
  font-size: 3rem; /* responsive font */
  font-weight: 500;
}

.tagline2 {
  color: black;
  font-size: 1rem;
  letter-spacing: 1px;
  margin-top: 10px;
}

/* Introduction */
.introduction {
  width: 100%;
  padding: 60px 5%;
  background: linear-gradient(135deg, #f3e9d9 0%, #f7e4cc 10%);
}

.content {
  color: #6E260E;
  font-size: 2.2rem;
  font-family: Arial;
  margin-bottom: 20px;
}

.description {
  color: black;
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Legal Advisory */
.legal-advisory {
  width: 100%;
  padding: 60px 5%;
}

/* Litigation */
.litigation {
  width: 100%;
  padding: 50px 5%;
  background-color: #6E260E;
}

.dispute-name {
  color: #F0F4F8;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.descrip-litigation {
  color: #F0F4F8;
  font-size: 17px;
  line-height: 1.6;
}

/* ILA Section */
.name-la {
  color: black;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.descrip-la {
  color: #6E260E;
  font-size: 17px;
  line-height: 1.6;
}

/* Vision Section */
.vision-div {
  width: 100%;
  padding: 50px 5%;
  background: linear-gradient(135deg, #f3e9d9 0%, #f7e4cc 10%);
}

.our-vision {
  color: #6E260E;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.vision-descrip {
  color: black;
  font-size: 17px;
  line-height: 1.6;
}

/* Why Us Section */
.why-us {
  width: 100%;
  padding: 50px 5%;
}

.name-why-us {
  color: black;
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.descrip-why {
  color: #6E260E;
  font-size: 17px;
  line-height: 1.6;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .content,
  .dispute-name,
  .name-la,
  .our-vision,
  .name-why-us {
    font-size: 2rem;
  }

  .description,
  .descrip-litigation,
  .descrip-la,
  .vision-descrip,
  .descrip-why {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .content,
  .dispute-name,
  .name-la,
  .our-vision,
  .name-why-us {
    font-size: 1.8rem;
  }

  .description,
  .descrip-litigation,
  .descrip-la,
  .vision-descrip,
  .descrip-why {
    font-size: 0.9rem;
  }

  .introduction,
  .legal-advisory,
  .litigation,
  .vision-div,
  .why-us {
    padding: 40px 5%;
  }
}

@media (max-width: 480px) {
  .content,
  .dispute-name,
  .name-la,
  .our-vision,
  .name-why-us {
    font-size: 1.5rem;
  }

  .description,
  .descrip-litigation,
  .descrip-la,
  .vision-descrip,
  .descrip-why {
    font-size: 0.85rem;
  }

  .about-div,
  .introduction,
  .legal-advisory,
  .litigation,
  .vision-div,
  .why-us {
    padding: 30px 5%;
  }
}

@media (max-width: 480px) {
  .about-us {
    font-size: 3rem !important;
  }
}

.ILA{
 color: #6E260E;
}

.ILA-saddlebrown{
  color: black;
}

/* 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;
}
