html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3 {
  font-family: 'Libre Baskerville', serif;
}


.hero {
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f') center/cover;
  padding: 120px 0;
}

.full-height {
  min-height: 100vh;
}

.partner-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stage {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 200px;
}

.arrow {
  font-size: 30px;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background Image */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/pexels-karola-g-7876050.jpg") center/cover no-repeat;
  filter: blur(6px);
  transform: scale(1.1);
  z-index: 1;
}

/* Brown Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 12, 12, 0.838);
  /* Brown with transparency */
  z-index: 2;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 48px;
  font-weight: bold;
  color: #D4AF37
}

.hero-subtitle {
  font-size: 18px;
  margin-top: 15px;
  line-height: 1.6;
}

.hero-image {
  max-width: 420px;
}

/* Responsive */
@media(max-width:992px) {

  .hero-title {
    font-size: 36px;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
  }

  .hero-image {
    margin-top: 30px;
    max-width: 300px;
  }

}

/* Partners Section */

.partners-section {
  min-height: calc(80vh - 70px);
  background: linear-gradient(135deg, #0d0d0d, #211e1c);
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* Partner Card */

.partner-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 35px 25px;
  color: #ffffff;
  transition: 0.3s;
  height: 100%;
  border-top: 3px solid #c9a96e;
}

.partners-heading {
  color: #FFD700;
}

/* Hover Effect (Same As Services) */

.partner-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

/* Partner Photo */

.partner-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c9a96e;
}

/* Text Styling */

.partner-card h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.qualification {
  font-size: 14px;
  opacity: 0.85;
}

/* Mobile */

@media(max-width:768px) {

  .partner-card {
    padding: 25px 20px;
  }

  .partner-photo {
    width: 110px;
    height: 110px;
  }

}

/* Full Page Section */
/* History Section */

.history-section {
  position: relative;
  min-height: calc(60vh - 40px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0;
}

/* Background Image Blur */

.history-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/history-bg.jpg") center/cover no-repeat;
  filter: blur(8px);
  transform: scale(1.1);
  z-index: 1;
}

/* Brown Overlay */

.history-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 21, 21, 0.829);
  z-index: 2;
}

/* Content Above Background */
.history-title {
  color: #D4AF37
}

.history-content {
  position: relative;
  z-index: 3;
}

/* Timeline Layout */

.timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: nowrap;
}

/* History Cards */

.history-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 35px 25px;
  color: white;
  text-align: center;
  min-width: 220px;
  transition: 0.3s;
  border-top: 3px solid #c9a96e;
}

.history-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

/* Arrow */

.timeline-arrow {
  font-size: 35px;
  color: #c9a96e;
}

/* Mobile Layout */

@media(max-width:768px) {

  .timeline {
    flex-direction: column;
  }

  .timeline-arrow {
    transform: rotate(90deg);
  }

}


/* Services Section */
.service-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;

  column-count: 2;
  /* makes 2 columns */
  column-gap: 40px;
  /* space between columns */
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  break-inside: avoid;
  /* prevents item breaking */
}

.service-list li::before {
  content: "❖";
  position: absolute;
  left: 0;
  color: #D4AF37;
}

@media (max-width: 768px) {
  .service-list {
    column-count: 1;
  }
}


.services-section {
  min-height: calc(70vh - 70px);
  background: linear-gradient(135deg, #0d0d0d, #211e1c);
  display: flex;
  align-items: center;
  padding: 60px 0;
}

/* Service Card */
.legal-services-title {
  color: #D4AF37
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 35px 25px;
  color: white;
  transition: 0.3s;
  height: 100%;
  border-top: 3px solid #c9a96e;
}

/* Hover Effect */

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(210, 209, 209, 0.15);
}

/* Icons */

.service-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #c9a96e;
}

.card-services-title {
  color: #D4AF37
}

/* Text Styling */

.service-card h5 {
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  opacity: 0.85;
}

/* Mobile Adjustment */

@media(max-width:768px) {

  .service-card {
    padding: 25px 20px;
  }

}

.connect-section {
  min-height: 100vh;
  background: #f8f5f2;
}

.section-title {
  font-weight: 600;
  color: #3b2a1a;
}

/* Connect Section */

.connect-section {
  min-height: calc(100vh - 70px);
  background: linear-gradient(135deg, #0d0d0d, #211e1c);
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.conn-we-give {
  color: #D4AF37
}

.conn-heading {
  color: #D4AF37
}

/* Connect Card */

.connect-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  padding: 35px 25px;
  color: white;
  transition: 0.3s;
  height: 100%;
  border-top: 3px solid #c9a96e;
}

/* Hover Effect */

.connect-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

/* Icons */

.connect-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #c9a96e;
}

/* Text */

.connect-card h5 {
  margin-bottom: 10px;
  font-weight: 600;
}

.connect-card p {
  font-size: 15px;
  opacity: 0.85;
}

/* Mobile */

@media(max-width:768px) {

  .connect-card {
    padding: 25px 20px;
  }

}

/* Footer Styling */

.footer-section {
  background: linear-gradient(135deg, #0d0d0d, #211e1c);
  color: white;
  padding: 40px 0 20px;
  border-top: 2px solid #c9a96e;
}

.footer-title {
  color: #c9a96e;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-text {
  opacity: 0.85;
  line-height: 1.6;
  font-size: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  font-size: 14px;
  opacity: 0.7;
}

/* Services Navigation Section */

.services-nav-section {
  /* min-height: 60vh; */
  background: linear-gradient(135deg, #0d0d0d, #211e1c);
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.services-nav-section h1 {
  color: #d4af37; /* gold */
  font-weight: 700;
  font-size: 42px;
}

.services-nav-section p {
  color: #e6c76b; /* soft gold */
  font-size: 18px;
  /* max-width: 700px; */
  margin: 15px auto 0;
}

/* Card Link Remove Underline */

.service-link {
  text-decoration: none;
}

/* Service Detail Section */

.service-detail-section {
  min-height: 60vh;
  background: linear-gradient(135deg, #0d0d0d, #211e1c);
  display: flex;
  align-items: center;
  padding: 80px 0;
}

/* Service Image */

.service-image {
  max-width: 420px;
  border-radius: 12px;
}

/* Mobile */

@media(max-width:992px) {

  .service-detail-section {
    text-align: center;
  }

  .service-image {
    margin-top: 30px;
    max-width: 300px;
  }

}

/* Service Detail Section */
.service-page-content {
  background-color: #1a1305;  
  padding: 80px 20px;
}

/* Golden Heading */
.service-page-content h2 {
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Golden Paragraph */
.service-page-content p {
  color: #e6c76b;
  font-size: 17px;
}

/* Golden List Items */
.service-page-content ul {
  padding-left: 20px;
  margin-top: 15px;
}

.service-page-content ul li {
  color: #f0d98a;
  margin-bottom: 8px;
}

/* Gold Button (override Bootstrap dark safely inside this section only) */
.service-page-content .btn-dark {
  background-color: #d4a237;
  border: none;
  color: #000;
  font-weight: 600;
  padding: 10px 25px;
  transition: 0.3s ease;
}

.service-page-content .btn-dark:hover {
  background-color: #f5d76e;
  color: #000;
}

/* ===== Brown Theme Navbar ===== */

.navbar-custom {
  background: linear-gradient(135deg, #0d0d0d, #211e1c);
  padding: 15px 0;
  transition: 0.3s;
}

/* Brand Text */

.navbar-custom .navbar-brand {
  color: #d4af37;
  font-weight: 600;
  font-family: 'Libre Baskerville', serif;
}

/* Nav Links */

.navbar-custom .nav-link {
  color: white;
  margin-left: 15px;
  transition: 0.3s;
  font-weight: 500;
}

/* Hover Effect */

.navbar-custom .nav-link:hover {
  color: #c9a96e;
}

/* Active Link */

.navbar-custom .nav-link.active {
  color: #c9a96e;
}

/* Mobile Toggle Fix */

.navbar-custom .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar-custom .navbar-toggler-icon {
  filter: invert(1);
}

.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d0d0d, #211e1c);
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  color: #FFD700;
  font-weight: 700;
  font-size: 34px;
}

.section-title p {
  color: #ffffff;
  font-size: 16px;
}

.about-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about-content p {
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 18px;
  font-size: 17px;
}

.work-area {

  padding: 20px;

}


.work-title {

  color: #D4AF37;
  margin-bottom: 20px;

}


.work-list {

  display: flex;
  flex-wrap: wrap;
  gap: 10px;

}


.work-list span {

  border: 1px solid #D4AF37;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 14px;

}


.map-container {

  border-radius: 10px;
  overflow: hidden;

}

@media (max-width: 768px) {

  .map-container {

    margin-top: 30px;

  }

}

.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d0d0d, #211e1c);

}

.contact-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT FORM */
.contact-form {
  flex: 1;
}

.contact-form h2 {
  color: #FFD700;
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-form p {
  color: #a5a4a2;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 14px;
  border: 1px solid #d6c7b7;
  border-radius: 4px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus {
  border-color: #5a3f27;
}

/* BUTTON */
.contact-btn {
  background: #D4AF37;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #a68a2e;
}

/* RIGHT IMAGE */
.contact-image {
  flex: 1;
  text-align: center;
}

.contact-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
}

@media (max-width: 768px) {

  .contact-image {
    display: none;
  }

  .contact-form {
    width: 100%;
  }

}

textarea {

  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  outline: none;
  resize: none;

}


.service-detail-section {

  padding: 60px 0;

}

.service-image {

  margin-bottom: 20px;

  border-radius: 10px;

}

.card-services-title {

  margin-bottom: 15px;

}

.service-list li {

  margin-bottom: 8px;

}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Social Icons in Navbar */
.social-icon i {
  font-size: 18px;
  color: #d4af37;
  transition: 0.3s ease;
}

.social-icon i:hover {
  color: #ffffff;
  transform: scale(1.2);
}

/* Services Dropdown Background */
.dropdown-menu {
  background-color: #2b1d0e; /* dark brown */
  border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Dropdown Items */
.navbar .dropdown-item {
  color: #d4af37; /* gold text */
  transition: 0.3s ease;
}

/* Hover Effect */
.navbar .dropdown-item:hover {
  background-color: #3a2816; /* slightly lighter brown */
  color: #ffffff;
}
