* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* NAVIGATION */
.header {
  position: fixed;
  width: 100%;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
}

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

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

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

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* HERO */
.hero {
  height: 90vh;
  background: url("images/headermain.jpeg") center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0);
}

.hero-content {
  position: relative;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #1e3a8a;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.btn:hover {
  background: #2563eb;
}

/* SECTION */
.section {
background: #f5f7fb;
  padding: 80px 20px;
  text-align: center;
}

/* GRID */
.grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.card {
  padding: 40px;
  background: #f4f4f4;
  border-radius: 8px;
}

/* ABOUT */
.about-section {
  background: url("images/header02.png") center/cover no-repeat;
  color: white;
}

.about-bg {
  position: relative;
  background: url("images/011.jpeg") center/cover no-repeat;
  padding: 120px 20px;
  color: white;
  text-align: center;
  z-index: 1;
}

.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.75); /* dark navy overlay */
  z-index: -1;
}

.about-content {
  max-width: 800px;
  margin: auto;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-content h4 {
  margin-bottom: 25px;
  font-weight: 400;
  color: #cbd5f5;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #e5e7eb;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  padding: 60px;
  position: relative;
  color: white;
  z-index: 1;
  overflow: hidden;
}

/* Background image on TEXT side */
.about-text::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/header02.jpeg") center/cover no-repeat;
  z-index: -2;
}

.about-text::before {
  filter: blur(2px);
  transform: scale(1.05);
}

/* Overlay for readability */
.about-text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.55); /* same navy overlay */
  z-index: -1;
}

.about-image {
  flex: 1;
  min-height: 350px;
  background: url("images/011.jpeg") center/cover;
}

.about-image2 {
  flex: 1;
  min-height: 350px;
  background: url("images/020.jpeg") center/cover;
}


/* CTA */
.cta strong {
  color: #2563eb;
}

.cta2 strong {
  color: #2563eb;
}

.cta3 strong {
  color: #2563eb;
}


.cta {
  position: relative;
  background: url("images/header02.png") center/cover no-repeat;
  padding: 120px 20px;
  color: white;
  text-align: center;
  z-index: 1;
}

.cta2 {
  position: relative;
  background: url("images/bg01.png") center/cover no-repeat;
  padding: 120px 20px;
  color: white;
  text-align: center;
  z-index: 1;
}


.cta3 {
  position: relative;
  background: url("images/header03.png") center/cover no-repeat;
  padding: 120px 20px;
  color: white;
  text-align: center;
  z-index: 1;
}

/* Dark navy overlay for readability */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.8); /* navy overlay */
  z-index: -1;
}

/* Content styling */
.cta-content {
  max-width: 900px;
  margin: auto;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 25px;
}

.cta p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 15px;
  color: #e5e7eb;
}

.cta2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.8); /* navy overlay */
  z-index: -1;
}

/* Content styling */
.cta2-content {
  max-width: 900px;
  margin: auto;
}

.cta2 h2 {
  font-size: 32px;
  margin-bottom: 25px;
}

.cta2 p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 15px;
  color: #e5e7eb;
}


.cta3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.8); /* navy overlay */
  z-index: -1;
}

/* Content styling */
.cta3-content {
  max-width: 900px;
  margin: auto;
}

.cta3 h2 {
  font-size: 32px;
  margin-bottom: 25px;
}

.cta3 p {
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 15px;
  color: #e5e7eb;
}


/* CONTACT */
.contact-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
}

.contact-form button {
  padding: 12px;
  background: black;
  color: white;
  border: none;
}



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

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    display: none;
    text-align: center;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .about-container {
    flex-direction: column;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  filter: invert(1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

/* ===== NAVBAR ===== */

#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
  background: transparent;
}

#navbar.scrolled {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* Container */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo img {
  height: 55px;
  transition: 0.3s;
}

/* Menu */
.nav-menu {
  display: flex;
  gap: 35px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: white;
  position: relative;
  transition: 0.3s;
}

/* Change text color when scrolled */
#navbar.scrolled .nav-menu a {
  color: black;
}

/* Hover underline animation */
.nav-menu a::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #2563eb;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* CTA Button */
.nav-cta {
  padding: 10px 18px;
  background: #1e3a8a;
  color: white !important;
  border-radius: 4px;
  transition: 0.3s;
}

.nav-cta:hover {
  background: #2563eb;
}

.nav-menu a::after {
  background: #2563eb;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===== MOBILE ===== */

@media (max-width: 900px) {

  .nav-menu {
    position: absolute;
    top: 80px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 30px 0;
  }

  .nav-menu a {
    color: black;
    font-size: 18px;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}


 body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    .slideshow-container {
      position: relative;
      max-width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .slide {
      display: none;
      position: absolute;
      width: 100%;
      height: 100%;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      font-size: 2rem;
      text-align: center;
      z-index: 2;
    }

    .dots {
      position: absolute;
      bottom: 20px;
      width: 100%;
      text-align: center;
      z-index: 2;
    }

    .dot {
      height: 15px;
      width: 15px;
      margin: 0 5px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.3s ease;
    }

    .active {
      background-color: #717171;
    }
  

    /* ===== NAVBAR ===== */
    #navbar {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 9999;
      transition: all 0.3s ease;
      background: transparent;
    }

    #navbar.scrolled {
      background: white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }

    .nav-container {
      max-width: 1200px;
      margin: auto;
      padding: 20px 25px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .logo img {
      height: 55px;
      transition: 0.3s;
    }

    .nav-menu {
      display: flex;
      gap: 35px;
      list-style: none;
      align-items: center;
    }

    .nav-social {
    
      display: flex;
      gap: 15px;
      align-items: center;
    }

    .nav-social img {
      width: 20px;
      height: 20px;
      cursor: pointer;
      transition: 0.3s;
      filter: brightness(0) invert(1);
    }

    #navbar.scrolled .nav-social img {
      filter: none;
    }

    .nav-social img:hover {
      transform: scale(1.2);
    }
    }

    .nav-menu a {
      text-decoration: none;
      font-family: Arial, sans-serif;
      font-weight: 300;
      font-size: 15px;
      color: white;
      position: relative;
      transition: 0.3s;
    }

    #navbar.scrolled .nav-menu a {
      color: black;
    }

    .nav-menu a::after {
      content: "";
      width: 0%;
      height: 2px;
      background: #2563eb;
      position: absolute;
      left: 0;
      bottom: -5px;
      transition: 0.3s;
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 10px 18px;
      background: #2563eb;
      color: white !important;
      border-radius: 4px;
      transition: 0.3s;
    }

    .nav-cta:hover {
      background: #2563eb;
    }

    .hamburger {
      display: none;
      font-size: 28px;
      cursor: pointer;
    }

    @media (max-width: 900px) {
      .nav-menu {
        position: absolute;
        top: 80px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 30px 0;
      }

      .nav-menu a {
        color: black;
        font-size: 18px;
      }

      .nav-menu.active {
        display: flex;
      }

      .hamburger {
        display: block;
      }
    }



    /* ===== FOOTER ===== */
    .footer {
      background: #111;
      color: white;
      padding: 40px 20px;
      text-align: center;
    }

    .footer a {
      color: #2563eb;
      text-decoration: none;
      margin: 0 10px;
      font-size: 14px;
    }

    .footer a:hover {
      text-decoration: underline;
    }

    .footer-more-info {
      margin-top: 10px;
      font-size: 13px;
      opacity: 0.8;
    }

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px;
}

/* ===== CONTACT INFO SECTION (PREMIUM) ===== */
.contact-info {
  background: linear-gradient(135deg, #111, #1f1f1f);
  padding: 100px 20px;
}

.contact-info-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Glass cards */
.info-card {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 45px 30px;
  border-radius: 16px;
  text-align: center;
  color: white;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  
}

/* Gold glow effect on hover */
.info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(30, 58, 138, 0.3),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

.info-card:hover::before {
border-color: rgba(30, 58, 138, 0.6);
  opacity: 1;
}

/* Hover lift */
.info-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(37,99,235,0.6);
}

/* Icons */
.info-card .icon {
  font-size: 38px;
  margin-bottom: 15px;
  color: #2563eb;
}

/* Titles */
.info-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: 0.5px;
}

/* Text */
.info-card p {
  font-size: 14px;
  color: #2563eb;
}

/* Links */
.info-card a {
  color: #2563eb;
  text-decoration: none;

}

.info-card a:hover {
  text-decoration: underline;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
}

/* Service Cards Upgrade */
.service-card {
  text-align: center;
  padding: 40px 30px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #1e3a8a; /* gold accent */
}

.service-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}


.service-list span {
  display: block;
  margin: 6px 0;
}


/* Logo text */
.logo a {
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  letter-spacing: 1px;
  transition: 0.3s;
}

/* Gold accent on "Law" */
.logo span {
  color: #1e3a8a;
}

/* When navbar is scrolled (white background) */
#navbar.scrolled .logo a {
  color: black;
}

#navbar.scrolled .logo span {
  color: #2563eb;
}

.logo a {
  font-family: 'Poppins', sans-serif;
}

.logo a {
  text-transform: uppercase;
}


/* ===== TEAM SECTION ===== */
.team-section {
  padding: 100px 20px;
  background: #f5f7fb;
  text-align: center;
}

.team-section h2 {
  margin-bottom: 50px;
  font-size: 28px;
}

/* Container */
.team-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* Cards */
.team-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* Hover effect */
.team-card:hover {
  transform: translateY(-8px);
}

/* Name */
.team-card h3 {
  color: #1e3a8a; /* navy */
  margin-bottom: 15px;
}

/* Bio */
.team-card .bio {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Credentials */
.credentials h4 {
  margin-bottom: 10px;
  font-size: 15px;
  color: #111;
}

.credentials p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.team-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-link {
  display: inline-block;
  margin-top: 15px;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 500;
}

.reviews-cta {
  padding: 100px 20px;
  background: url("images/header04.png") center/cover no-repeat;
  text-align: center;
}

.reviews-cta h2 {
  margin-bottom: 15px;
}

.reviews-cta p {
  margin-bottom: 25px;
  color: #555;
}

/* Reviews section with image background */
.reviews-section {
  position: relative;
  background: url("images/header04.png") center/cover no-repeat;
  padding: 120px 20px;
  text-align: center;
  color: white;
  z-index: 1;
}

/* Navy overlay */
.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.85);
  z-index: -1;
}

/* Content container */
.reviews-content {
  max-width: 800px;
  margin: auto;
}

.reviews-btn {
  display: inline-block;
  margin-top: 20px;
  background: #1e3a8a;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.reviews-btn:hover {
  background: #2563eb;
}



.reviews-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.reviews-section p {
  color: #e5e7eb;
}


/* SECTION BACKGROUND */
.policy-section {
  background: #f5f7fb;
  padding: 100px 20px;
}

/* CONTAINER */
.policy-container {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* HEADINGS */
.policy-container h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.policy-container h2 {
  font-size: 20px;
  margin-top: 30px;
  color: #1e3a8a;
}

/* TEXT */
.policy-container p {
  color: #444;
  line-height: 1.6;
  margin: 10px 0;
}

/* LISTS */
.policy-container ul {
  padding-left: 20px;
}

.policy-container li {
  margin-bottom: 8px;
}

/* DIVIDERS */
.policy-container hr {
  margin: 25px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.policy-section {
  background: #081327;
  position: relative;
}

.policy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0.85);
}

.policy-container {
  position: relative;
  z-index: 1;
}

.policy-section {
  position: relative;
  background: url("images/usa-flag.jpg") center/cover no-repeat;
  padding: 100px 20px;
}

.policy-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0.85);
}

.policy-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.policy-container h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1e3a8a;
}

.policy-container h2 {
  font-size: 20px;
  margin-top: 30px;
  color: #1e3a8a;
}

.policy-container p {
  color: #444;
  line-height: 1.6;
}

.policy-container ul {
  padding-left: 20px;
}

.policy-container li {
  margin-bottom: 8px;
}

.policy-container hr {
  margin: 25px 0;
  border-top: 1px solid #ddd;
}


.nav-cta {
  white-space: nowrap;
  flex-shrink: 0;

}

@media (max-width: 1100px) {
  .nav-menu {
    gap: 20px;
  }
}

@media (max-width: 1000px) {
  .nav-menu a {
    font-size: 14px;
  }
}

@media (max-width: 950px) {
  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

.nav-social img:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.team-linkedin {
  display: inline-flex;
  margin-top: 15px;
  width: 28px;
  height: 28px;
}

.team-linkedin img {
  width: 100%;
  height: 100%;
  filter: brightness(0); /* makes it black */
  transition: 0.3s ease;
}

.team-linkedin:hover img {
  
  transform: scale(1.2);
}

.team-linkedin img {
  
}