/* =========================
   RESET & BASE STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Times New Roman", serif;
  background: #0e2a2a;
  color: white;
}

li{
  color: black;
}
/* =========================
   NAVBAR
========================= */
.navbar {
  color:black;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 2px 80px;   /* 👈 reduced height */
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;

  background: rgba(78, 78, 78, 0.379);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo,
.nav-links a {
  color: #000;
 text-shadow: 0 1px 2px rgba(25, 25, 25, 0.902) 
  }


.logo {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-btn {
  background: white;
  color: black;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: #f6d58e;
  transform: translateY(-2px);
}
/* Navbar Logo */
/* Navbar Logo */
.logo img {
  height: 70px;          /* ⬅ increased size */
  width: auto;
  display: block;
  object-fit: contain;
}

/* Mobile view */
@media (max-width: 768px) {
  .logo img {
    height: 52px;        /* balanced for mobile */
  }
}



/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 25, 25, 0.65);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;              /* centers horizontally */
  text-align: center;          /* centers text */
}


.hero-content h1 {
  font-size: 72px;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 22px;
  line-height: 1.5;
  margin: 0 auto 42px auto;   /* 👈 centers the paragraph */
  color: #e6e6e6;
  max-width: 520px;
  text-align: center;        /* 👈 ensures text alignment */
}

.hero-btn {
  display: inline-block;
  background: #f6d58e;
  color: black;
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* =========================
   SCROLLING STATS SECTION
========================= */
.stats-scroll {
  background: #f7f7f5;
  padding: 80px 0;
  overflow: hidden;
}

.stats-track {
  display: flex;
  gap: 120px;
  width: max-content;
  animation: scrollStats 30s linear infinite;
}


.stats-scroll .stat-item {
  min-width: 260px;
  text-align: center;
}

.stats-scroll .stat-icon {
  font-size: 34px;
  color: #c9a24d;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-scroll .stat-icon .flaticon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(82%) sepia(67%) saturate(431%) hue-rotate(3deg) brightness(105%) contrast(102%);
}

.stats-scroll h3 {
  font-size: 42px;
  font-weight: 500;
  color: #1b1b1b;
  margin-bottom: 8px;
}

.stats-scroll p {
  font-size: 18px;
  color: #4a4a4a;
}

@keyframes scrollStats {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   ABOUT US
========================= */
.about {
  background: #ffffff;
  padding: 100px 80px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  color: #1b1b1b;
  margin-bottom: 60px;
  font-weight: 500;
}
/* FAQ LEFT ALIGN FIX */
.faq-left .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-card {
  background: #f7f7f5;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
}

/* =========================
   OUR SERVICES
========================= */
.services {
  background: #ffffff;
  padding: 100px 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  position: relative;
  background: #f9f9f8;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.12);
  border-color: #f6d58e;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 30px;
  font-size: 18px;
  color: #6f6f6f;
}

.service-card:hover .service-number {
  color: #c9a24d;
}

.service-card h3 {
  font-size: 26px;
  color: #000;
  margin-bottom: 18px;
}

.service-card p {
  font-size: 17px;
  color: #2f2f2f;
  line-height: 1.6;
}

/* =========================
   OUR LAWYERS
========================= */
.lawyers {
  background: #ffffff;
  padding: 100px 80px;
}

.lawyers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.lawyer-card {
  background: #f9f9f8;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.lawyer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.12);
  border-color: #f6d58e;
}

.lawyer-image {
  height: 320px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 24px;
}

.lawyer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lawyer-card h3 {
  font-size: 22px;
  color: #000;
  margin-bottom: 8px;
}

.lawyer-card p {
  font-size: 16px;
  color: #444;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .services-grid,
  .lawyers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid,
  .lawyers-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    padding: 20px 40px;
  }

  .hero-content {
    padding-left: 40px;
  }

  .hero-content h1 {
    font-size: 48px;
  }
}
/* =========================
   TESTIMONIALS SECTION
========================= */
.testimonials {
  background: #ffffff;
  padding: 120px 80px;
}

.testimonials-heading {
  text-align: center;
  font-size: 52px;
  font-weight: 500;
  color: #000;
  margin-bottom: 100px;
  line-height: 1.2;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* CARD */
.testimonial-card {
  text-align: center;
  padding: 0 20px;
}

.quote {
  font-size: 64px;
  color: #c9a24d;
  display: block;
  margin-bottom: 30px;
}

.testimonial-card p {
  font-size: 20px;
  line-height: 1.7;
  color: #777;
  margin-bottom: 40px;
}

/* FOOTER */
.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-footer img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-footer h4 {
  font-size: 18px;
  color: #000;
  margin-bottom: 4px;
}

.stars {
  color: #f6c77a;
  font-size: 16px;
}

/* DIVIDERS (LIKE IMAGE) */
.testimonial-card:not(:last-child) {
  border-right: 1px solid #e6e6e6;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .testimonial-card {
    border-right: none;
  }

  .testimonials-heading {
    font-size: 40px;
  }
}
/* SMALL SECTION LABEL */
.section-label {
  text-align: center;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 20px;
}
.testimonials .section-title {
  margin-bottom: 30px;
}
/* =========================
   HOW IT WORKS SECTION
========================= */
.how-it-works {
  background: #ffffff;
  padding: 120px 80px;
  text-align: center;
}

/* SMALL LABEL */

/* MAIN HEADING */
.how-heading {
  font-size: 52px;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  margin-bottom: 100px;
}

/* TIMELINE */
.how-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

/* HORIZONTAL LINE */
.timeline-line {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: #e6e6e6;
  z-index: 1;
}

/* STEP */
.how-step {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* CIRCLE */
.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #3f6f6b;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto 30px;
}

/* TEXT */
.how-step p {
  font-size: 18px;
  line-height: 1.6;
  color: #8a8a8a;
  max-width: 300px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .how-timeline {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .timeline-line {
    display: none;
  }

  .how-heading {
    font-size: 40px;
  }
} 
/* =========================
   BOOK APPOINTMENT SECTION
========================= */
.appointment {
  background: #ffffff;
  padding: 120px 80px;
}

.appointment-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.appointment-heading {
  font-size: 52px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.appointment-subtext {
  font-size: 18px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 60px;
}

/* FORM */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.form-grid input,
.form-grid select,
textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #dcdcdc;
  padding: 14px 0;
  font-size: 16px;
  outline: none;
  background: transparent;
  color: #000;
}

textarea {
  resize: none;
  height: 120px;
  margin-bottom: 50px;
}

/* BUTTON */
.appointment-btn {
  background: #f6d58e;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
}

/* RIGHT IMAGE */
.appointment-image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .appointment-container {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .appointment-heading {
    font-size: 40px;
  }
}
html {
  scroll-behavior: smooth;
}
/* =========================
   FAQ SECTION
========================= */
.faq {
  background: #ffffff;
  padding: 120px 80px;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT */
.faq-heading {
  font-size: 52px;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  margin: 30px 0 50px;
}

.faq-btn {
  display: inline-block;
  background: #f6d58e;
  padding: 16px 36px;
  border-radius: 50px;
  color: #000;
  text-decoration: none;
  font-size: 16px;
}

/* RIGHT */
.faq-item {
  border-bottom: 1px solid #e6e6e6;
  padding: 28px 0;
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  color: #000;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 18px;
  color: #777;
  line-height: 1.6;
  transition: max-height 0.4s ease;
  margin-top: 0;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 20px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    font-size: 40px;
  }
}
/* =========================
   FAQ ACCORDION ANIMATION
========================= */

.faq-item {
  border-bottom: 1px solid #e6e6e6;
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 22px;
  color: #000;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* ANSWER HIDDEN STATE */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.6;
  color: #7a7a7a;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
  padding-right: 30px;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 300px; /* enough for text */
  opacity: 1;
  margin-top: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
/* =========================
   CTA / FOOTER SECTION
========================= */

.cta-footer {
  background: #173637;
  color: white;
  padding: 100px 80px 40px;
}

.cta-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 60px;
}

/* LEFT */
.cta-logo {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 18px;
  color: #cfdede;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-socials {
  display: flex;
  gap: 14px;
}

.cta-socials a {
  width: 40px;
  height: 40px;
  background: #1f4546;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  font-size: 16px;
}

/* COLUMNS */
.cta-column h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: #ffffff;
}

.cta-column a {
  display: block;
  text-decoration: none;
  color: #cfdede;
  margin-bottom: 16px;
  font-size: 17px;
}

/* CONTACT BOX */
.cta-box {
  background: #1f4546;
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 16px;
  cursor: pointer;
}

/* BOTTOM */
.cta-bottom {
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  font-size: 14px;
  color: #cfdede;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
html {
  scroll-behavior: smooth;
}
/* =========================
   MOBILE RESPONSIVE FIXES
========================= */

@media (max-width: 768px) {

  /* GENERAL */
  body {
    overflow-x: hidden;
  }

  section {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  /* NAVBAR */
  .navbar {
    padding: 12px 24px;
  }

  .nav-links {
    display: none; /* hide menu on mobile */
  }

  .nav-btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  /* HERO */
  .hero-content {
    padding-left: 0;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 16px;
  }

  /* STATS */
  .stats-track {
    gap: 60px;
  }

  /* ABOUT */
  .about-container {
    grid-template-columns: 1fr;
  }

  /* SERVICES */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* LAWYERS */
  .lawyers-grid {
    grid-template-columns: 1fr;
  }

  /* TESTIMONIALS */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    border-right: none !important;
  }

  .testimonials-heading {
    font-size: 32px;
  }

  /* HOW IT WORKS */
  .how-timeline {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    display: none;
  }

  .how-heading {
    font-size: 32px;
  }

  /* APPOINTMENT */
  .appointment-container {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .appointment-heading {
    font-size: 32px;
  }

  /* FAQ */
  .faq-container {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    font-size: 32px;
  }

  /* CTA / FOOTER */
  .cta-container {
    grid-template-columns: 1fr;
  }

  .cta-footer {
    padding: 80px 24px 40px;
  }
}
html {
  scroll-behavior: smooth;
}
/* =========================
   WHATSAPP FLOAT BUTTON
========================= */
/* =========================
   WHATSAPP TEXT BUTTON
========================= */
/* =========================
   PREMIUM WHATSAPP CTA
========================= */
.whatsapp-text-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;

  background: linear-gradient(135deg, #1f7a4a, #25d366);
  color: #ffffff;

  padding: 14px 26px;
  border-radius: 999px;

  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.2px;

  text-decoration: none;
  white-space: nowrap;

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  z-index: 999;
  transition: all 0.35s ease;
}

/* HOVER EFFECT */
.whatsapp-text-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 600px) {
  .whatsapp-text-btn {
    bottom: 16px;
    right: 16px;
    font-size: 14.5px;
    padding: 12px 22px;
  }
}
/* =========================
   BLOG LISTING
========================= */
/* =========================
   BLOG SECTION
========================= */
/* =========================
   BLOG SLIDER
========================= */
/* ================= BLOG SECTION ================= */

/* ================= BLOG SECTION ================= */

.blog-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 140px;
  background: transparent;
}

/* Wrapper with arrows */
.blog-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1280px;
  margin: auto;
}

/* Viewport shows ONLY 3 cards */
.blog-viewport {
  width: 1140px; /* 3 × 360px + gaps */
  overflow: hidden;
}

/* Slider track */
.blog-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* Blog card */
.blog-card {
  min-width: 360px;
  min-height: 520px;
  background: #f9f9f8;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card h3 {
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 14px;
  color: #000;
  font-weight: 600;
}

.blog-meta {
  font-size: 14px;
  color: #333;
  margin-bottom: 16px;
}

.blog-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
  color: #111;
}

/* Button */
.blog-btn {
  display: inline-block;
  background: #c9a24d;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  width: fit-content;
}

/* Arrows */
.blog-arrow {
  background: #1e2f2f;
  color: #ffffff;
  border: none;
  font-size: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-arrow:hover {
  background: #c9a24d;
}

/* Heading */
.blog-heading {
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

/* Responsive */
@media (max-width: 1024px) {
  .blog-viewport {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .blog-arrow {
    display: none;
  }

  .blog-viewport {
    width: 100%;
  }

  .blog-card {
    min-width: 85%;
    min-height: auto;
  }
}


/* =========================
   ADVOCATE SECTION
========================= */

/* =========================
   ADVOCATE DARK CARD
========================= */

.advocate-section {
  background: #ffffff;
  padding: 120px 80px;
  display: flex;
  justify-content: center;
}

.advocate-card-dark {
  width: 420px;
  padding: 50px 40px;

  background: #0e2a2a; /* 👈 DARK TEAL */
  border-radius: 36px;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  text-align: center;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.advocate-card-dark:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.45);
}

/* IMAGE CONTAINER */
.advocate-image-wrap {
  background: #ffffff;
  padding: 30px;
  border-radius: 28px;
  margin-bottom: 30px;
}

/* IMAGE */
.advocate-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
}

/* NAME */
.advocate-name {
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 10px;
}
/* ADVOCATE HEADING */
.advocate-heading {
  font-size: 48px;
  font-weight: 500;
  color: #0e2a2a; /* dark teal text */
  text-align: center;
  margin-bottom: 50px;
}

/* SECTION */
.advocate-section {
  background: #ffffff;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* DARK TEAL CARD */
.advocate-card-dark {
  width: 420px;
  padding: 50px 40px;
  background: #0e2a2a; /* DARK TEAL */
  border-radius: 36px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.advocate-card-dark:hover {
  transform: translateY(-10px);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.45);
}

/* IMAGE WRAP */
.advocate-image-wrap {
  background: #ffffff;
  padding: 30px;
  border-radius: 28px;
  margin-bottom: 30px;
}

.advocate-image-wrap img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

/* NAME */
.advocate-name {
  font-size: 26px;
  font-weight: 500;
  color: #ffffff;
}
/* Hide extra services by default */
.more-service {
  display: none;
}

/* Read more button */
.services-toggle {
  text-align: center;
  margin-top: 30px;
  cursor: pointer;
  font-weight: 600;
  color: #d4af37;
  font-size: 16px;
}

.services-toggle .arrow {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

/* Expanded state */
.services.show-all .more-service {
  display: block;
}

.services.show-all .arrow {
  transform: rotate(90deg);
}
/* =======================
   ARTICLE PAGE STYLES
======================= */

.article-body {
  background: #0f2f2f;
}

/* NAVBAR */
.article-navbar {
  position: sticky;
  top: 0;
  background: rgba(15, 47, 47, 0.95);
  padding: 18px 40px;
  z-index: 100;
}

.back-btn {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
}

.back-btn:hover {
  color: #c9a24d;
}

/* ARTICLE SECTION */
.article-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.article-card {
  background: #ffffff;
  max-width: 900px;
  width: 100%;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.article-card h1 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #111;
}

.article-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

.article-card h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 14px;
  color: #0f2f2f;
}

.article-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 16px;
}

.article-card ul {
  padding-left: 20px;
}

.article-card li {
  margin-bottom: 10px;
  font-size: 16px;
}

.article-contact {
  margin-top: 40px;
  padding: 20px;
  color: black;
  background: #f4f4f4;
  border-left: 5px solid #c9a24d;
  font-size: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .article-card {
    padding: 30px;
  }

  .article-card h1 {
    font-size: 28px;
  }
}
.advocate-section {
  padding: 100px 0;
  text-align: center;
}

.advocate-heading {
  font-size: 48px;
  margin-bottom: 60px;
  color: #0f2f2f;
}

/* CARD */
.advocate-card {
  background: #0f2f2f; /* dark teal */
  width: 420px;
  margin: auto;
  padding: 40px 30px 50px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* TOP TEXT */
.advocate-role {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* IMAGE */
.advocate-image {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
}

.advocate-image img {
  width: 100%;
  border-radius: 14px;
}

/* NAME */
.advocate-name {
  margin-top: 25px;
  font-size: 26px;
  color: #ffffff;
}

/* DESIGNATION */
.advocate-designation {
  margin-top: 8px;
  font-size: 15px;
  color: #d6d6d6;
  letter-spacing: 0.5px;
}
.founder-section {
  padding: 80px 0;
  background: #ffffff;
}

.founder-section .section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: #0f2f2f;
}

.founder-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 50px;
  align-items: stretch; /* makes image and text same visual height */
}

/* IMAGE SIDE */
.founder-image-box {
  flex: 1;
  text-align: center;
}

.founder-image-box img {
  width: 100%;
  max-width: 480px;   /* BIG image */
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.founder-designation {
  margin-top: 15px;
  font-size: 18px;
  color: #0f2f2f;
  font-weight: 500;
}

/* CONTENT CARD */
.founder-content-card {
  flex: 1;
  background: #f9f9f8;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.founder-content-card h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #0f2f2f;
}

.founder-content-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 16px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .founder-container {
    flex-direction: column;
    text-align: center;
  }

  .founder-image-box img {
    max-width: 320px;
  }

  .founder-content-card {
    padding: 30px;
  }
}
.founder-name {
  margin-top: 18px;
  font-size: 24px;
  font-weight: 600;
  color: #0f2f2f;
}

.founder-designation {
  margin-top: 6px;
  font-size: 18px;
  color: #0f2f2f;
  font-weight: 500;
}
/* =========================
   GOOGLE REVIEWS SECTION
========================= */

.google-reviews-section {
  background: #ffffff;
  padding: 100px 80px;
  text-align: center;
}

.review-heading {
  font-size: 42px;
  color: #0f2f2f;
  margin-bottom: 40px;
}

.review-btn-wrap {
  margin-bottom: 40px;
}

.google-review-btn {
  display: inline-block;
  background: #c9a24d;
  color: #ffffff;
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.google-review-btn:hover {
  background: #b28f47;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Google reviews widget */
.google-reviews-widget {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}


