/* Base */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  color: #f8f8f8;
}

/* Navbar */
.navbar {
  background-color: #111;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #d4af37;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #f8f8f8;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #d4af37;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  font-size: 2rem;
  color: #d4af37;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hamburger.active {
  transform: rotate(90deg);
}

/* Hero */
.hero {
  background-color: #1a1a1a;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 2.5rem;
  color: #d4af37;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
}

.btn {
  background-color: #d4af37;
  color: #000;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #c19e2e;
}

/* Footer */
footer {
  background-color: #111;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    padding: 0.5rem 0;
  }
}





/* Navbar - Make it sticky */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Slide-in Mobile Menu */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px; /* Adjust based on navbar height */
    left: 0;
    width: 100%;
    background-color: #111;
    flex-direction: column;
    transform: translateY(-200%);
    transition: transform 0.4s ease-in-out;
    padding: 1rem 2rem;
  }

  .nav-links.show {
    transform: translateY(0);
  }

  .nav-links li {
    padding: 0.75rem 0;
  }
}




.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.team-member {
  background: #1a1a1a;
  padding: 1rem;
  border-radius: 8px;
  max-width: 250px;
  text-align: center;
  color: #fff;
}
.team-member img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
}




.contact-section {
  background-color: #111;
  color: #fff;
  padding: 3rem 2rem;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contact-container h2 {
  text-align: center;
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-weight: bold;
  color: #ccc;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #222;
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #d4af37;
  outline: none;
}

.contact-form button {
  background-color: #d4af37;
  color: #000;
  border: none;
  padding: 0.75rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #b8962c;
}





.confirmation {
  display: none;
  margin-top: 1rem;
  color: #d4af37;
  text-align: center;
  font-weight: bold;
}

.office-info {
  margin-top: 4rem;
  padding: 2rem;
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.office-info h2 {
  color: #d4af37;
  margin-bottom: 1rem;
}

.office-info p {
  margin-bottom: 0.75rem;
}

.office-info .map {
  margin-top: 1rem;
  border-radius: 10px;
  overflow: hidden;
}


.office-info a {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
}

.office-info a:hover {
  text-decoration: underline;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}



/* Practice Areas Section */
.practice-areas {
  background-color: #111;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.practice-areas h2 {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.practice-areas .intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.area-card {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 2rem 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, background-color 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.area-card h3 {
  color: #d4af37;
  margin: 1rem 0 0.5rem;
}

.area-card p {
  color: #ddd;
}

.area-card i {
  font-size: 2rem;
  color: #d4af37;
}

.area-card:hover {
  background-color: #222;
  transform: translateY(-5px);
}

/* Scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


.view-more-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background-color: #d4af37;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.view-more-btn:hover {
  background-color: #b9962e;
}


.practice-page {
  background-color: #111;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}


.practice-page {
  background-color: #111;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

/* Practice Areas Grid */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 2rem;
}

.area-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 2rem 1rem;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(40px);
}

.area-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.area-card i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.area-card h3 {
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.area-card p {
  color: #ccc;
}

/* Hero Section */
.hero.bg-image {
  background: url('5.jpg') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #d4af37;
}

.hero-text p {
  font-size: 1.2rem;
  color: #ddd;
}


.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  animation: slideAnimation 15s infinite ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 12px;
}

@keyframes slideAnimation {
  0%   { transform: translateX(0); }
  33%  { transform: translateX(-100%); }
  66%  { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}




.about-director {
  padding: 4rem 2rem;
  background-color: #111;
  color: #fff;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-text {
  max-width: 600px;
  text-align: left;
}

.about-image img {
  max-width: 300px;
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* Responsive layout for larger screens */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .about-text {
    flex: 2;
  }

  .about-image {
    flex: 1;
    text-align: right;
  }
}




.contact-cta {
  text-align: center;
  background-color: #1a1a1a;
  padding: 3rem 2rem;
  color: white;
}

.contact-cta h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.btn-contact {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #d4af37;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background-color: #c49e2c;
}



/* Initial hidden state */
.slide-in-hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

/* When in view */
.slide-in-visible {
  opacity: 1;
  transform: translateY(0);
}




.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 2rem;
}

.area-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 2rem 1rem;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(40px);
}

.scrollable-text {
  margin-top: 1rem;
  max-height: 120px; /* adjust height as needed */
  overflow-y: auto;
  padding-right: 0.5rem;
}

/* Optional scrollbar styling */
.scrollable-text::-webkit-scrollbar {
  width: 6px;
}

.scrollable-text::-webkit-scrollbar-thumb {
  background-color: #d4af37;
  border-radius: 4px;
}




.faq-contact-cta {
  text-align: center;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.faq-contact-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-button {
  display: inline-block;
  background-color: #d4af37;
  color: #0d0d0d;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
  transition: background-color 0.3s ease;
}

.slide-button:hover {
  background-color: #b38e2e;
}


 

.questions-cta {
  text-align: center;
  background-color: #1a1a1a;
  padding: 3rem 2rem;
  color: white;
}

.questions-cta h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.btn-contact {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #d4af37;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-contact:hover {
  background-color: #c49e2c;
}



/* Initial hidden state */
.slide-in-hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

/* When in view */
.slide-in-visible {
  opacity: 1;
  transform: translateY(0);
}


.whatsapp-button {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  font-weight: bold;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background-color 0.3s ease;
  gap: 0.5rem;
}

.whatsapp-button:hover {
  background-color: #1ebe5b;
}



