* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 90%;
  margin: auto;
}

/* TOP BAR */
.top-bar {
  background: #2f4f4f;
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}
section.hero {
  background: url(hero-img-01.png);
  background-size: cover;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .left span {
  margin-right: 20px;
}

.top-bar i {
  margin-right: 6px;
}

.top-bar .right i {
  margin-left: 15px;
  cursor: pointer;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  padding: 15px 0;
  border-top: 1px solid #eee;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  margin-right: 10px;
}

.logo-text h2 {
  font-size: 22px;
  letter-spacing: 2px;
}

.logo-text p {
  font-size: 12px;
  color: #777;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  font-weight: 500;
}

.nav-links li {
  cursor: pointer;
  position: relative;
}

.nav-links i {
  font-size: 12px;
  margin-left: 5px;
}

/* ACTIONS */
.actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* SEARCH ICON */
.search {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* BUTTON */
.consult-btn {
  background: #c89b63;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
}

.consult-btn i {
  margin-left: 8px;
}

/* MENU ICON */
.menu-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* HOVER EFFECT */
.nav-links li:hover {
  color: #c89b63;
}

.consult-btn:hover {
  background: #b68952;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  min-height: 100vh;
  color: #fff;
  background:
    rgba(1, 107, 68, 0.1),
    url("bg.jpg") center/cover;
}

/* LEFT */
.hero-left {
  width: 50%;
}

.tag {
  color: #c89b63;
  margin-bottom: 20px;
  font-size: 18px;
}

.hero-left h1 {
  font-family: "Playfair", sans-serif;
  font-size: 54px;
  line-height: 1.3;
  margin-bottom: 30px;
}

/* REVIEWS */
.reviews {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.avatars img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -10px;
}

.review-text {
  margin-left: 15px;
}

.review-text span {
  color: #c89b63;
  font-size: 14px;
}

/* BUTTON */
.cta {
  background: #c89b63;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.cta i {
  margin-left: 8px;
}

/* RIGHT */
.hero-right {
  width: 40%;
  position: relative;
}

/* SLIDER */
.slider {
  position: relative;
  width: 100%;
  height: 550px;
}

/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.6s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  border: 3px solid #fff;
}

/* FRAME */
.frame {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid #c89b63;
  border-radius: 40px;
  z-index: -1;
}

/* BADGE */
.badge {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid #ccc;
}

/* DOTS */
.dots {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #c89b63;
  transform: scale(1.3);
}
/* SLIDER */
.slider {
  position: relative;
  width: 100%;
  height: 550px;
}
.slider:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 5px solid #b58b59;
  border-radius: 0 100px;
  left: 20px;
  bottom: 20px;
}
/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;

  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* IMPORTANT SHAPE */
  border-radius: 0 80px 0 80px;
  border: 3px solid #fff;
}

/* OUTER BORDER */
.border-outer {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 100%;
  height: 100%;
  border: 2px solid #c89b63;
  border-radius: 0 100px 0 100px;
  z-index: -1;
}

/* BADGE CIRCLE */
.circle-badge {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.circle-badge .inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  text-align: center;
  backdrop-filter: blur(6px);
}

/* DOTS */
.dots {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #c89b63;
  transform: scale(1.4);
}
.circle-badge {
  position: relative;
  left: -90px;
  top: 180px;
  width: 160px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 100%;
  animation: spin 8s infinite linear;
  transform: rotate(0);
  z-index: 100;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.circle-badge img {
  width: 100%;
}
/* TEXT SLIDER */
.text-slider {
  position: relative;
  height: 300px; /* adjust if needed */
  overflow: hidden;
}

/* INDIVIDUAL TEXT */
.text-slide {
  position: absolute;
  width: 100%;

  opacity: 0;
  transform: translateY(100px);

  transition: all 0.7s ease;
}

/* ACTIVE STATE */
.text-slide.active {
  opacity: 1;
  transform: translateY(0);
}

/* EXIT ANIMATION */
.text-slide.exit {
  transform: translateY(-100px);
  opacity: 0;
}
/* ABOUT SECTION */
.about {
  padding: 100px 3em;
  background: #f5f5f5;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 150px;
}

/* LEFT SIDE */
.about-images {
  position: relative;
  width: 50%;
}

/* IMAGE BOX */
.img-box {
  overflow: hidden;
  position: absolute;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BIG IMAGE */
.img-box.big {
  width: 300px;
  height: 450px;
  border-radius: 40px 0 40px 0;
  left: 0;
  top: 0;
}

/* TOP SMALL */
.img-box.top {
  position: relative;
  width: 260px;
  height: 200px;
  border-radius: 80px;
  right: 200px;
  top: 0;
}

/* BOTTOM SMALL */
.img-box.bottom {
  width: 260px;
  height: 200px;
  border-radius: 0 0 40px 40px;
  right: 0;
  bottom: 0;
}

/* FRAME */
.about-frame {
  position: absolute;
  left: -20px;
  top: -20px;
  width: 320px;
  height: 480px;
  border: 2px solid #0b3d3b;
  border-radius: 50px 0 50px 0;
  z-index: -1;
}

/* BADGE */
.about-badge {
  position: absolute;
  left: 230px;
  top: 45%;
  transform: translateY(-50%);
}

.about-badge span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 14px;
  backdrop-filter: blur(5px);
}

/* RIGHT CONTENT */
.about-content {
  width: 50%;
}

.about-tag {
  color: #c89b63;
  margin-bottom: 15px;
}

.about-content h2 {
  font-family: "Playfair", sans-serif;
  font-size: 48px;
  color: #0b3d3b;
  margin-bottom: 20px;
}

.about-desc {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* LIST */
.about-list {
  list-style: none;
  margin-bottom: 30px;
}

.about-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b3d3b;
  font-size: 14px;
}

/* BUTTON */
.about-btn {
  background: #c89b63;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
}

.about-btn i {
  margin-left: 8px;
}
.about-wrapper {
  position: relative;
  width: 700px;
  height: 500px;
}

/* IMAGE BASE */
.img {
  position: absolute;
  overflow: hidden;
}

.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BIG LEFT IMAGE */
.img.big {
  width: 250px;
  height: 460px;
  left: 0;
  top: 0;
  border-radius: 120px 0 120px 120px;
}

/* TOP RIGHT */
.img.top {
  width: 250px;
  height: 220px;
  right: 170px;
  border-radius: 120px 120px 120px 0;
}

/* BOTTOM RIGHT */
.img.bottom {
  width: 250px;
  height: 220px;
  right: 170px;
  bottom: 30px;
  border-radius: 0 80px 80px 80px;
}

/* FRAME (OUTLINE) */
.frame {
  position: absolute;
  width: 250px;
  height: 480px;
  left: -10px;
  top: -10px;

  border: 2px solid #0b3d3b;
  border-radius: 140px 0 140px 0;
  z-index: -1;
}

/* BADGE */
.badge {
  position: absolute;
  left: 300px;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* BADGE INNER */
.badge-inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1f3f3d;
  color: #fff;
  font-size: 14px;

  border: 2px solid rgba(255, 255, 255, 0.5);
}
.stats {
  padding: 80px 8%;
  background: #f5f5f5;
}

/* MAIN BOX */
.stats-container {
  background: #b68b5a;
  border-radius: 30px;
  padding: 40px 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* EACH STAT */
.stat {
  text-align: center;
  color: #fff;
  flex: 1;
}

.stat i {
  font-size: 40px;
  margin-bottom: 10px;
}

/* NUMBER */
.stat h2 {
  font-size: 36px;
  font-weight: 700;
}

/* ADD + SYMBOL */
.stat h2::after {
  content: "+";
  margin-left: 3px;
}

/* TEXT */
.stat p {
  font-size: 14px;
  opacity: 0.9;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}
.services {
  padding: 100px 8%;
  background: #f5f5f5;
  text-align: center;
}

/* HEADINGS */
.section-tag {
  color: #c89b63;
  margin-bottom: 10px;
}

.section-title {
  font-family: "Playfair", sans-serif;
  font-size: 42px;
  color: #0b3d3b;
  margin-bottom: 60px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: left;

  transition: all 0.4s ease;
  position: relative;

  /* bottom accent line */
  border-bottom: 4px solid #c89b63;
}

/* ICON */
.icon {
  width: 70px;
  height: 70px;
  background: #f2f2f2;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 20px;
  transition: 0.4s;
}

.icon i {
  font-size: 24px;
  color: #c89b63;
}

/* TEXT */
.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0b3d3b;
}

.service-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card a {
  text-decoration: none;
  color: #0b3d3b;
  font-weight: 500;
}

/* 🔥 HOVER EFFECT (IMPORTANT) */
.service-card:hover {
  background: #2f4f4f;
  color: #fff;
  transform: translateY(-10px);
}

/* change text color */
.service-card:hover h3,
.service-card:hover p,
.service-card:hover a {
  color: #fff;
}

/* icon change */
.service-card:hover .icon {
  background: #c89b63;
}

.service-card:hover .icon i {
  color: #fff;
}

/* subtle shadow */
.service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.testimonials {
  padding: 100px 8%;
  background: #f5f5f5;
  position: relative;
}

/* HEADINGS */
.tag {
  color: #c89b63;
}

.title {
  font-family: "Playfair", sans-serif;
  font-size: 42px;
  color: #0b3d3b;
  margin-bottom: 50px;
}

/* NAV BUTTONS */
.nav-btns {
  position: absolute;
  right: 8%;
  top: 120px;
}

.nav-btns button {
  background: #c89b63;
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
}

/* SLIDER */
.slider-wrapper {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

/* CARD */
.card {
  min-width: calc(50% - 15px);
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  border-bottom: 5px solid #c89b63;
  transition: 0.4s;
}

/* TOP */
.topper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.topper img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.top h3 {
  margin: 0;
}

.top span {
  font-size: 12px;
  color: #777;
}

.stars {
  color: #f4b400;
  font-size: 14px;
}

/* TEXT */
.card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* 🔥 HOVER EFFECT (LIKE YOUR IMAGE) */
.card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* QUOTE ICON */
.card::after {
  content: "❝❞";
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 40px;
  color: #0b3d3b;
  opacity: 0.2;
}
.contact {
  padding: 100px 8%;
  background: #f5f5f5;
}

/* LAYOUT */
.contact-container {
  display: flex;
  gap: 50px;
  margin-bottom: 60px;
}

/* LEFT */
.contact-info {
  width: 50%;
}

.contact-tag {
  color: #c89b63;
  margin-bottom: 10px;
}

.contact-info h2 {
  font-family: "Playfair", sans-serif;
  font-size: 36px;
  color: #0b3d3b;
  margin-bottom: 20px;
}

.contact-desc {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* INFO ITEMS */
.info-box {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #333;
}

.info-box i {
  margin-right: 10px;
  color: #c89b63;
}

/* RIGHT FORM */
.contact-form {
  width: 50%;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
}

.contact-form button {
  background: #c89b63;
  border: none;
  padding: 14px;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
}

.contact-form button:hover {
  background: #b68952;
}

/* MAP */
.map iframe {
  border-radius: 20px;
}
.footer {
  background: #0b3d3b;
  color: #fff;
  padding-top: 70px;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 8% 50px;
}

/* LOGO */
.footer .logo {
  color: #fff;
  margin-bottom: 15px;
}

/* TEXT */
.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* HEADINGS */
.footer h3 {
  margin-bottom: 20px;
  color: #fff;
}

/* LINKS */
.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #c89b63;
}

/* SOCIAL */
.socials {
  margin-top: 20px;
}

.socials i {
  margin-right: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.socials i:hover {
  color: #c89b63;
}

/* ICONS IN CONTACT */
.footer-col i {
  margin-right: 8px;
  color: #c89b63;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #aaa;
}
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;

  width: 55px;
  height: 55px;
  background: #25d366;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 26px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  text-decoration: none;
  z-index: 999;
  transition: 0.3s;
}

/* HOVER */
.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* PULSE ANIMATION */
.whatsapp-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.6;
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.booking {
  padding: 80px 8%;
  background: #fff;
  text-align: center;
}

.booking-form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-form input,
.booking-form select {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

.booking-form button {
  background: #c89b63;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  cursor: pointer;
}
.about-container {
  position: relative;
  z-index: 0;
}
.about img[src="court-hammer.png"] {
  position: absolute;
  width: 400px;
  right: 0px;
  opacity: 0.1;
  animation: float 22s infinite;
}
@keyframes float {
  50% {
    transform: translateY(300px);
  }
}
img[src="court-statue.png"] {
  position: absolute;
  height: 400px;
  left: 0;
  opacity: 0.15;
  transform: rotate(8deg);
  animation: float 22s infinite;
}
img[src="court-scale.png"] {
  position: absolute;
  width: 400px;
  right: 00px;
  top: -100px;
  opacity: 0.15;
  animation: float 22s infinite;
}
html {
  scroll-behavior: smooth;
}
.nav-links a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

.nav-links a:hover {
  color: #c89b63;
}
img[src="court-lawbooks.png"] {
  position: absolute;
  width: 400px;
  opacity: 0.15;
  animation: float1 22s infinite;
}
@keyframes float1 {
  50% {
    transform: translateY(-220px);
  }
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

/* ACTIVE LINK */
.nav-links a.active {
  color: #c89b63;
}

/* UNDERLINE EFFECT */
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #c89b63;
}
#message {
  color: #ffffff;
}
.services h3 {
  margin-bottom: 2em;
  font-family: "Playfair", serif;
  font-size: 2em;
}
