/* Base Reset */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Root Variables */
:root {
  /* Colors */
  --color-primary: #00112a;
  --color-accent: #b8860b;
  --color-white: #ffffff;
  --color-text: #333333;

  /* Typography */
  --font-primary: "Trirong", Georgia, serif;
  --font-secondary: Verdana, Geneva, Tahoma, sans-serif;
  /* --font-secondary: "Inter", sans-serif; */

  /* Spacing */
  --spacing-xs: 0.8rem;
  --spacing-sm: 1.6rem;
  --spacing-md: 2.4rem;
  --spacing-lg: 3.2rem;
  --spacing-xl: 4.8rem;
  --text-color: #333;
  --light-bg: #f5f6fa;
}

/* Base Typography */
html {
  font-size: 62.5%;
  font-family: "Trirong", Georgia, serif;
}

body {
  font-family: "Trirong", Georgia, serif !important;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
span,
div {
  font-family: inherit;
}

h1 {
  font-size: 8rem;
}
h2 {
  font-size: 5.2rem;
  line-height: 1.2;
}
h3 {
  font-size: 4.8rem;
}
h4 {
  font-size: 4.8rem;
}
h5 {
  font-size: 1.8rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h6 {
  font-size: 1.4rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 500;
}
p {
  font-size: 1.6rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
a {
  font-size: 1.6rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

















html.disclaimer-active {
  overflow: hidden;
  padding-right: 17px; /* Width of the scrollbar to prevent layout shift */
}


.disclaimer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.disclaimer-modal.active {
  opacity: 1;
  display: flex;
  visibility: visible;
}

.disclaimer-content {
  background-color: #fff;
  padding: 4rem;
  border-radius: 0.8rem;
  max-width: 70vw;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  font-family: var(--font-primary);
}

.disclaimer-content h2 {
  color: var(--color-primary);
  font-size: 3.2rem;
  margin-bottom: 2rem;
}

.disclaimer-content p {
  margin-bottom: 1.6rem;
  line-height: 1.2;
  color: var(--color-text);
}

.disclaimer-content ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.disclaimer-content li {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-family: var(--font-secondary);
  font-size: 1.6rem;
}

.disclaimer-button {
  background-color: var(--color-accent);
  color: #fff;
  border: none;
  padding: 1.5rem 4rem;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background-color 0.3s;
  display: block;
  margin: 3rem auto 0;
  font-family: var(--font-secondary);
}

.disclaimer-button:hover {
  background-color: #96700a;
}















/* Container ===================================================================================================================*/
main {
  min-height: 100vh;
  width: 100vw;
  position: relative;
}
/* Header Styles */
.site-header {
  padding: 2rem 14rem;
  position: absolute;
  width: 100vw;
  top: 0rem;
  z-index: 10;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-white);
}

.logo-image {
  height: 6rem;
  margin-right: var(--spacing-xs);
}

/* Navigation =============================================================================================================*/
.nav-list {
  display: flex;
  list-style: none;
  gap: var(--spacing-md);
}

.nav-link {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-accent);
}
.activenav {
  color: var(--color-accent);
}
.activenav {
  text-decoration: underline;
}

/* Hero Section ======================================================================================================*/
.hero-section {
  background-color: var(--color-primary);
  padding: 10rem 14rem;
  padding-top: 14rem;
  align-items: center;
  max-height: 100vh;
  position: relative;
}

.hero-container {
  display: flex;
  gap: var(--spacing-xl);
  align-items: start;
  position: relative;
  z-index: 10;
}
.hero-content {
  width: 100%;
}

.hero-title {
  font-family: var(--font-primary);
  line-height: 1.2;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.hero-title .highlight {
  color: var(--color-accent);
}

.hero-text {
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
  width: 60%;
  padding-top: 10rem;
  z-index: 10;
}

.hero-buttom hr {
  width: 60%;
  margin: 4rem 0rem;
  margin-bottom: 6rem;
  opacity: 50%;
}
.cta-button {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 1.6rem 3.2rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.4rem;
  transition: background-color 0.3s ease;
}

.hero-image-float {
  position: absolute;
  bottom: -5rem;
  right: 15rem;
  width: 45vw;
  height: 50vh;
  z-index: 10;
}
.hero-image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-bg {
  position: absolute;
  top: 0rem;
  right: 0rem;
  width: 50vw;
  height: 100vh;
  z-index: 5;
}
.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.hero-image-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 17, 42, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

/* ABOUT US  ================================================================================================= */
.about-section {
  width: 100vw;
  padding: 10rem 15rem;
  padding-top: 15rem;
}
.about-container {
  display: flex;
}
.about-img {
  width: 100%;
  padding: 4rem;
  padding-left: 0rem;
  border-right: 1px solid #676767;
}
.about-title {
  width: 100%;
  padding: 4rem;
  padding-right: 0rem;
  margin: auto;
}
.about-title h5 {
  color: var(--color-accent);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-para {
  text-align: center;
  padding-top: 4rem;
}

.about-para p {
  margin-bottom: 4rem;
}

.about-para a {
  color: var(--color-accent);
  text-decoration: none;
  padding: 1.5rem 10rem;
  background: var(--color-primary);
  border-radius: 0.4rem;
}

/* Practice =============================================================================================================*/
.practice-area-section {
  width: 100vw;
  padding: 10rem 15rem;
  padding-right: 0rem;
  padding-top: 0rem;
}
.practice-area-container {
  display: flex;
}
.practice-area-title {
  width: 80%;
  padding: 4rem 4rem 0rem 0rem;
}

.practice-area-img {
  width: 120%;
  height: 100vh;
  padding: 4rem 0rem 0rem 4rem;
}

.practice-area-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0px -180px;
  border-radius: 1rem 0rem 0rem 1rem;
}

.practice-areas {
  margin-bottom: 2rem;
}
.practice-item {
  border-bottom: 1px solid var(--color-accent);
}

.practice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  cursor: pointer;
  transition: background-color var(--transition-speed);
}

.practice-header:hover {
  background-color: var(--hover-color);
}

.practice-header h3 {
  margin: 0;
  font-size: 2.4rem;
  color: var(--primary-color);
  font-weight: 500;
}

.arrow {
  font-size: 2.4rem;
  transition: transform var(--transition-speed);
}

.practice-item.active .arrow {
  transform: rotate(90deg);
}

.practice-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed);
}

.practice-item.active .practice-content {
  max-height: 300px; /* Adjust based on content */
}

.practice-content ul {
  list-style: none;
  padding: 0 0 2rem 0;
  margin: 0;
}

.practice-content li {
  padding: 0.5rem 0;
  font-size: 1.6rem;
  color: var(--primary-color);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  list-style-type: circle;
}

.practice-area-container a {
  position: absolute;
  color: var(--color-accent);
  text-decoration: none;
  padding: 1.5rem 10rem;
  background: var(--color-primary);
  border-radius: 0.4rem;
}

.quote-section {
  width: 100vw;
  padding: 10rem 15rem;
  text-align: center;
  position: relative;
  color: white;
  background: var(--color-primary);
  background: linear-gradient(
    180deg,
    rgba(0, 17, 42, 1) 24%,
    rgba(1, 32, 78, 1) 100%
  );
}

.quote-section h2 {
  margin-bottom: 1rem;
}

.quote-section p {
  margin-bottom: 6rem;
}
.quote-section a {
  padding: 1.6rem 10rem;
  background: var(--color-accent);
  border-radius: 0.4rem;
  color: var(--color-white);
  text-decoration: none;
}

.team-section {
  padding: 10rem 15rem;
}

.team-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.team-title {
  width: 110%;
}
.team-title h6 {
  color: var(--color-accent);
  font-weight: bold;
}
.team-desc {
  width: 90%;
}
.team-members {
  display: flex;
  gap: 6rem;
  padding-top: 6rem;
}
.team-member {
  width: 100%;
}
.team-member img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}

.team-member h5 {
  color: var(--color-primary);
  font-size: 2.2rem;
}

.choose-us-section {
  padding: 10rem 15rem;
  padding-top: 0rem;
}

.choose-us-container {
  display: flex;
  align-items: center;
}
.choose-us-img {
  width: 90%;
  height: 80vh;
  padding-right: 8rem;
  border-right: 1px solid #676767;
}
.choose-us-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-us-content {
  width: 110%;
  padding-left: 6rem;
}
.choose-us-content h2,
.choose-us-content hr {
  margin-bottom: 4rem;
}
.choose-us-content h6 {
  color: var(--color-accent);
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: bold;
}
.choose-us-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.choose-us-item {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.choose-us-item img {
  width: 2rem;
  height: 2rem;
}

.marquee-container {
  background: #fff;
  padding: 0rem 15rem 15rem 15rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.title {
  text-align: center;
  margin-bottom: 4rem;
  font-family: "Trirong", Georgia, serif;
}

.title h2 {
  font-size: 5.2rem;
  color: #00112a;
  margin-bottom: 1rem;
}

.title p {
  font-size: 1.6rem;
  color: #666;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.marquee-content {
  display: flex;
  animation: scrollX 40s linear infinite;
  width: max-content;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  margin: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%); */
  transition: filter 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
}

@keyframes scrollX {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Adding a gradient overlay for smooth fade at edges */
.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.clients-section {
  padding: 10rem 15rem;
  padding-top: 5rem;
  background-color: #ffffff;
}

.clients-header {
  text-align: center;
  margin-bottom: 4rem;
}

.clients-header h5 {
  color: #b8860b;
  font-size: 1.6rem;
  /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
  margin-bottom: 0.5rem;
}
.clients-header h4 {
  font-size: 2.5rem;
}
.clients-header h2 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-family: "Trirong", Georgia, serif;
  color: #00112a;
  margin-bottom: 1rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.client-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
}

.client-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-logo {
  width: 6rem;
  height: 6rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.client-info {
  flex-grow: 1;
}

.client-info h3 {
  font-size: 1.6rem;
  color: #00112a;
  margin-bottom: 0.4rem;
  font-family: "Trirong", Georgia, serif;
}

.client-info p {
  font-size: 1.3rem;
  color: #666;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.4;
}

.faq-section {
  padding: 10rem 15rem;
  padding-top: 0rem;
  background-color: #ffffff;
}
.faq-section hr {
  margin-bottom: 5rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 5rem;
}

.faq-header h5 {
  color: #b8860b;
  font-size: 1.8rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin-bottom: 1rem;
}

.faq-header h2 {
  font-size: 4.2rem;
  line-height: 1.2;
  font-family: "Trirong", Georgia, serif;
  color: #00112a;
  margin-bottom: 2rem;
}

.faq-container {
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 1.8rem;
  color: #00112a;
  font-family: "Trirong", Georgia, serif;
  margin: 0;
  padding-right: 2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1.6rem;
  color: #666;
  line-height: 1.6;
  padding-right: 4rem;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 2rem;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  background-color: #b8860b;
  transition: transform 0.3s ease;
}

.faq-toggle::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.faq-toggle::after {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item.active .faq-toggle::before {
  transform: translateX(-50%) rotate(90deg);
}

.faq-item.active .faq-question {
  color: #b8860b;
}

.faq-item:hover .faq-question h3 {
  color: #b8860b;
}

.site-footer {
  width: 100vw;
  padding: 5rem 8rem;
  background: var(--color-primary);
  /* background: linear-gradient(180deg, rgba(0,17,42,1) 24%, rgba(1,32,78,1) 100%); */
  color: var(--color-white);
}
.footer-disclaimer {
  display: flex;
  align-items: end;
  justify-content: end;
}
.dis {
  width: 150%;
  padding-right: 5rem;
}
.tnc {
  width: 50%;
}
.tnc p a {
  color: var(--color-white);
}
.footer-head {
  width: 150%;
}
.footer-contact {
  width: 50%;
}

.footer-container {
  display: flex;
  padding-bottom: 5rem;
}
.footer-head img {
  width: 30rem;
}

.footer-head ul {
  display: flex;
  gap: 4rem;
}
.footer-head ul li {
  list-style: none;
}
.footer-head ul li a {
  color: var(--color-white);
  text-decoration: none;
}

.footer-contact strong {
  text-decoration: underline;
}
.footer-contact a {
  text-decoration: none;
  color: var(--color-white);
}

.footer-disclaimer p {
  font-size: 1.4rem;
}

.footer-contact h5 {
  padding-bottom: 2rem;
}

.sub-header {
  width: 100vw;
  height: 60vh;
  background: #00112a;
}

.sub-header-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.sub-header-image {
  width: 100%;
  height: 100%;
}
.sub-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}
.highopac img {
  opacity: 0.2;
}
.sub-header-content {
  position: absolute;
  /* bottom: 10rem; */
  padding: 10rem 15rem;
  bottom: 0rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}
.sub-header-content h2 {
  width: 50%;
  color: var(--color-white);
}
.sub-header-content hr {
  height: 15rem;
  color: var(--color-white);
}
.sub-header-content p {
  color: var(--color-white);
}

.contact-main {
  padding: 10rem 15rem;
  display: flex;
  min-height: 70vh;
}

.contact_us_left,
.contact_us_right {
  width: 100%;
}

.contact_us_left {
  padding-right: 5rem;
  border-right: 1px solid var(--color-primary);
}
.contact_us_right {
  padding-left: 5rem;

  height: 70vh;
}
.contact_us_right iframe {
  width: 100%;
  height: 100%;
}

.form-row {
  display: flex;
  gap: 3rem;
  margin-bottom: 20px;
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-group {
  flex: 1;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-family: var(--font-secondary);
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-primary);
  border-radius: 0.2rem;
  font-size: 16px;
}

textarea {
  height: 150px;
  resize: vertical;
}

.required {
  color: red;
}

button {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 1rem;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.contact-links {
  display: flex;
  padding: 4rem 15rem;
  gap: 4rem;
}
.contact-link {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 2rem;
}
.contact-link a {
  color: var(--color-primary);
  text-decoration: none;
}
.contact-link img {
  width: 3rem;
  height: 3rem;
}

.about-us-main {
  padding: 10rem 15rem;
}

.about-main-container {
  display: flex;
  gap: 4rem;
}
.about-main-content,
.about-main-img {
  width: 100%;
}
.about-main-container h6 {
  color: var(--color-accent);
  font-weight: bold;
}
.about-main-container h2 {
  margin-bottom: 4rem;
}
.about-main-img img {
  width: 100%;
  border-radius: 1rem;
}

.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.about-para-main {
  text-align: left;
}

.pract-title h6 {
  color: var(--color-accent);
  font-weight: bold;
}
.practice-area-main {
  padding: 10rem 15rem;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: var(--spacing-lg);
  color: var(--primary-color);
}

.practice-areas-header {
  position: relative;
  display: flex;
  justify-content: end;
  margin-bottom: 5rem;
}
.pract-title {
  position: absolute;
  top: 8rem;
  left: 0rem;
  z-index: 10;
}

.practice-float-image {
  position: relative;
  right: 0rem;
  width: 60vw;
}
.practice-float-image img {
  width: 100%;
  object-fit: contain;
}
.area-card {
  background: var(--white);
  padding: var(--spacing-md);
  border-radius: 8px;
  position: relative;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s; */
}

.area-icon {
  font-size: 5rem;
  color: var(--color-accent);
  position: absolute;
  top: 3.5rem;
}

.area-title {
  font-size: 3rem;
  /* margin-bottom: var(--spacing-sm); */
  color: var(--primary-color);
  padding-left: 8rem;
}

.area-description {
  font-size: 1.6rem;
  color: var(--text-color);
  margin-bottom: var(--spacing-md);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  padding-left: 8rem;
}

.sub-services {
  margin-top: var(--spacing-md);
}

.sub-service {
  background: var(--light-bg);
  /* padding: var(--spacing-md); */
  margin-bottom: var(--spacing-sm);
  border-radius: 4px;
  cursor: pointer;
  padding: 1rem 2rem;
}

.sub-service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-service-title {
  font-size: 1.6rem;
  color: var(--primary-color);
  font-weight: 600;
  flex: 1;
  padding-right: var(--spacing-sm);
}

.sub-service-content {
  display: none;
  padding-top: var(--spacing-sm);
  font-size: 1.4rem;
  color: var(--text-color);
  line-height: 1.8;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.sub-service.active .sub-service-content {
  display: block;
}

.toggle-icon {
  transition: transform 0.3s;
}

.sub-service.active .toggle-icon {
  transform: rotate(180deg);
}

.mobile-menu-btn {
  display: none;
  color: var(--white);
  font-size: 2.4rem;
  cursor: pointer;
}




.tnc-page-header{
  width: 100%;
  justify-content: center;
}
.tnc-page-header h2{
  text-align: center;
}
.tnccontainer{
  padding: 10rem 15rem;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.tnccontainer h2{
  font-size: 2.4rem;
}
.tnccontainer h3, .tnccontainer h4{
  font-size: 2rem;
}

.tnccontainer p, .tnccontainer ul li {
  font-size: 1.8rem;
  font-family: var(--font-secondary);
}
.tnccontainer ul li{
  font-size: 1.6rem;
  font-family: var(--font-secondary);
  list-style: none;

}
.tnccontainer section > h2{
  margin-bottom: 2rem;
}

.terms-navigation ul li a{
  color: var(--color-accent);
  text-decoration: none;
}






























/* ======================================================================================================================== */
/* Large Desktop (1440px and above) */
@media screen and (min-width: 1440px) {
  .site-header {
    padding: 2rem 18rem;
  }

  .hero-section,
  .about-section,
  .practice-area-section,
  .quote-section,
  .team-section,
  .choose-us-section,
  .clients-section,
  .faq-section {
    padding: 10rem 18rem;
  }
}

/* Desktop (1024px to 1439px) */
@media screen and (max-width: 1439px) {
  html {
    font-size: 56.25%; /* 9px */
  }

  .hero-image-float {
    width: 40vw;
    height: 45vh;
  }

  .about-container,
  .practice-area-container,
  .team-container,
  .choose-us-container {
    gap: 4rem;
  }
}

/* Tablet Landscape (768px to 1023px) */
@media screen and (max-width: 1023px) {
  html {
    font-size: 50%; /* 8px */
  }

  .site-header {
    padding: 2rem 6rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    padding: 2rem;
    text-align: center;
  }

  .nav-list.active {
    display: flex;
    flex-direction: column;
  }

  .hero-section,
  .about-section,
  .practice-area-section,
  .quote-section,
  .team-section,
  .choose-us-section,
  .clients-section,
  .faq-section {
    padding: 8rem 6rem;
  }

  .hero-image-float {
    display: none;
  }

  .hero-image-bg {
    width: 100vw;
    opacity: 0.05;
  }

  .hero-text {
    width: 80%;
  }

  .about-container,
  .practice-area-container,
  .team-container,
  .choose-us-container {
    flex-direction: column;
  }

  .about-img,
  .practice-area-img,
  .choose-us-img {
    width: 100%;
    padding: 0;
    border: none;
    margin-bottom: 4rem;
  }

  .team-members {
    flex-wrap: wrap;
    gap: 4rem;
  }

  .team-member {
    width: calc(50% - 2rem);
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet Portrait (481px to 767px) */
@media screen and (max-width: 767px) {
  .site-header {
    padding: 2rem 4rem;
  }

  h1 {
    font-size: 6rem;
  }

  h2 {
    font-size: 4.2rem;
  }

  .hero-section,
  .about-section,
  .practice-area-section,
  .quote-section,
  .team-section,
  .choose-us-section,
  .clients-section,
  .faq-section {
    padding: 6rem 4rem;
  }

  .hero-text {
    width: 100%;
  }

  .team-member {
    width: 100%;
  }

  .footer-container {
    flex-direction: column;
    gap: 4rem;
  }

  .footer-head,
  .footer-contact,
  .dis,
  .tnc {
    width: 100%;
  }

  .footer-head ul {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-main {
    flex-direction: column;
    gap: 4rem;
  }

  .contact_us_left,
  .contact_us_right {
    width: 100%;
    padding: 0;
    border: none;
  }

  .form-row {
    flex-direction: column;
    gap: 2rem;
  }
}

/* Mobile (480px and below) */
@media screen and (max-width: 480px) and (min-width: 280px) {
  html {
    font-size: 43.75%; /* 7px */
  }
  h6{
    font-size: 1.8rem;
  }
  p{
    font-size: 1.9rem;
  }

  .site-header {
    padding: 2rem 2rem; 
  }
  .logo-image {
    height: 7rem;
  }


  .hero-section,
  .about-section,
  .practice-area-section,
  .quote-section,
  .team-section,
  .choose-us-section,
  .clients-section,
  .faq-section {
    padding: 4rem 2rem;
  }

  .hero-section {
    width: 100vw;
    height: 100vh;
    padding: 0rem;
  }
  .hero-image-bg {
    opacity: 0.5;
  }
  .hero-image-bg::before {
    width: 50%;
    background: linear-gradient(
      90deg,
      rgb(0 9 21) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .hero-container {
    flex-direction: column;
    height: 100vh;
    gap: 2rem;
    padding: 4rem 2rem 12rem 2rem;
    justify-content: end;
  }

  .hero-buttom hr {
    margin: 3rem;
    width: 75vw;
    margin-left: 0rem;
  }
  .hero-text {
    padding: 0rem ;
    margin-bottom: 0rem;
  }


  .about-img{
    margin-bottom: 0rem;
  }
  .about-title{
    padding: 0rem;
  }
  .about-para{
    padding-top: 2rem;
  }
  .about-para p{
    text-align: justify;
  }


  .practice-area-section{
    padding: 4rem 2rem 10rem 2rem;
  }





  .practice-area-title{
    width: 100%;
    padding: 0rem;
  }


  .practice-area-container{
    gap:0rem;
    flex-direction: column-reverse;
   
  }

  .practice-area-img{
    height: 100%;
  }

  .practice-area-img img{
    border-radius: 0rem;
    object-position: 0px 0px ;
  }


  .team-title{
    width: 100%;
  }
  .team-desc{
    width: 100%
  }

  .team-container{
    gap: 2rem
  }

  .team-member img{
    height: 40vh;
  }







  .sub-header-content {
    flex-direction: column;
    gap: 2rem;
    padding: 4rem 2rem;
  }

  .sub-header-content h2 {
    width: 100%;
  }

  .sub-header-content hr {
    height: 0;
    width: 100%;
  }

  .area-title {
    font-size: 2.4rem;
    padding-left: 6rem;
  }

  .area-description {
    padding-left: 6rem;
  }

  .area-icon {
    font-size: 4rem;
  }

  .contact-links {
    flex-direction: column;
    padding: 4rem 2rem;
  }

  .marquee-container {
    padding: 4rem 2rem;
  }
  .title    h2   {
    font-size: 4.2rem
  }
  .marquee-container::before, .marquee-container::after{
    width: 60px;
  }

  .logo-item {
    width:90px;
    margin: 0 1rem;
  }



 .choose-us-img {
    height: 40vh
  }
  .choose-us-content{
    width: 100%;
    padding: 0rem
  }
  .choose-us-container{
    width: 100%;
    gap: 0rem;
  }
  .choose-us-content h2, .choose-us-content hr{
    margin-bottom: 2rem;
  }
  .choose-us-list{
    gap:1rem ;
  }
  .site-footer{
    padding: 2rem;
  }
  .footer-head ul{
    flex-direction: row;
    flex-wrap: wrap;
  }
  .footer-disclaimer{
    flex-direction: column;
  }
  .dis{
    padding: 0rem;
  }
  .faq-toggle{
    width: 15px;
    height: 15px;
  }
  .faq-answer{
    padding: 0rem;
  }



  .contact-main{
    width: 100%;
    padding: 4rem 2rem;
  }

  #contactForm{
    gap: 0rem;
  }
  .contact_us_right{
    height: 45vh;
  }
  .contact-links{
    gap: 2rem;
  }




  .about-us-main{
    padding: 4rem 2rem;
  }
  .about-main-container{
    flex-direction: column;
  }

  .slideshow-container{
    height: 50vh;
  }
  .about-main-container p{
    text-align: justify;
  }
  .about-para-main{
    text-align: justify;
  }


  .clients-header h4{
    text-align: left;
  }

  .client-logo{
    width: 8rem;
  }


  .practice-area-main{
    padding: 4rem 2rem;
  }
  .practice-float-image{
    width: 100%;
  }
  .area-card{
    padding: 0rem;
    margin-bottom: 4rem;
  }

  .practice-areas-header{
    flex-direction: column;
  }
  .pract-title{
    position: relative;
    top: 0rem;
  }




  .tnc-page-header{
    padding-bottom: 15rem;
  }

  .tnccontainer{
    padding: 4rem 2rem;
  }

  .tnccontainer section > h2{
    font-size: 2.4rem;
  }

  .tnccontainer p, .tnccontainer ul li{
    font-size: 2rem;
  }
  .tnccontainer h3, .tnccontainer h4{
   font-size:  2.2rem;
  }



  .disclaimer-content{
    max-width: 90vw;
    height: 60vh;
  }









}
