@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* google fonts */

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

:root {
  --primary--black: #000;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: #294970;
  font-family: "Poppins", sans-serif;
}

main {
  overflow: hidden;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 8px 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background-color: rgba(41, 73, 112, 0.6); /* Initial 60% opacity */
  z-index: 200;
  transition: background-color 0.3s ease;
}

.main-header.scrolled {
  background-color: rgba(41, 73, 112, 1); /* 100% opacity when scrolled */
  border-bottom: 1px solid rgb(102, 125, 151);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  width: auto;
  height: auto;
}
.logo_text {
  width: auto;
  height: auto;
}

.language-selector {
  font-size: 20px;
  font-weight: 400;
  color: #121212;
}

.language-selector span {
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .main-header {
    padding: 8px 20px;
  }

  .language-selector {
    font-size: 16px;
  }
}

.banner {
  position: relative;
  height: 839px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/banner.png");
  overflow: hidden;
}
.banner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0.2;
}

.banner-content {
  max-width: 1541px;
  margin: 0 auto;
  padding-top: 260px;
  font-size: 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  z-index: 1000;
}

.banner-headline {
  color: white;
  font-weight: 500;
  line-height: 76px;

  transform: translateY(100px);
}

.banner-subhead {
  font-size: 32px;
  font-weight: 500;
  color: white;
  line-height: normal;

  transform: translateY(100px);
}

.banner-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-button {
  padding: 10px 32px;
  background-color: #3d6fac;
  border-radius: 6px;
  font-size: 20px;
  color: white;
  font-weight: 500;
  line-height: normal;
  border: none;
  cursor: pointer;
  box-shadow: 0px 6px 40px 0px rgba(17, 17, 17, 0.25);

  transform: translateY(100px);
}

/* Animation classes */
.animate-in {
  animation: fadeInUp 1s ease-out forwards;
}

/* @keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0% 0% 0% 0%);
  }
} */

/* Responsive adjustments */
@media (max-width: 1200px) {
  .banner {
    height: 700px;
  }

  .banner-content {
    padding-top: 200px;
    font-size: 48px;
  }

  .banner-headline {
    line-height: 60px;
  }

  .banner-subhead {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 600px;
  }

  .banner-content {
    padding-top: 160px;
    font-size: 36px;
    gap: 16px;
  }

  .banner-headline {
    line-height: 48px;
  }

  .banner-subhead {
    font-size: 24px;
  }

  .banner-button {
    margin-top: -100px;
    font-size: 16px;
    padding: 8px 18px;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 400px;
  }

  .banner-content {
    padding-top: 100px;
    font-size: 24px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .banner-headline {
    line-height: 36px;
  }

  .banner-subhead {
    font-size: 20px;
  }
}
.legal-services-bar {
  width: 100%;
  background-color: #2e557b;
  padding: 24px 0;
  min-height: 77px;
  text-align: center;
  color: #f9f9f9;
  font-size: 20px;
  font-weight: 500;
}

.legal-services-text {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .legal-services-bar {
    font-size: 18px;
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .legal-services-bar {
    font-size: 16px;
    padding: 16px 0;
  }

  .legal-services-text {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .legal-services-bar {
    font-size: 14px;
    padding: 12px 0;
    min-height: auto;
  }

  .legal-services-text {
    padding: 0 10px;
  }
}

/* Animation for text (optional) */

.legal-services-text {
  animation: fadeIn 1s ease-out;
}
.our-mission-container {
  display: flex;
  flex-direction: column;
  gap: 70px;
  padding: 0 150px;
}

.mission-header {
  margin-top: 62px;
  display: flex;
  flex-direction: column;
  gap: 32px;

  transform: translateY(40px);
}

.mission-title {
  font-size: 32px;
  color: white;
  font-weight: 600;
}

.mission-statement {
  max-width: 1296px;
  font-size: 80px;
  font-weight: 700;
  color: white;
  line-height: 131px;
}

/* Animation Classes */
.animate-main {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-delayed {
  animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 1440px) {
  .our-mission-container {
    padding: 0 100px;
  }

  .mission-statement {
    font-size: 72px;
    line-height: 120px;
  }
}

@media (max-width: 1200px) {
  .mission-statement {
    font-size: 64px;
    line-height: 110px;
  }
}

@media (max-width: 1024px) {
  .our-mission-container {
    padding: 0 80px;
    gap: 60px;
  }

  .mission-statement {
    font-size: 56px;
    line-height: 100px;
  }
}

@media (max-width: 768px) {
  .our-mission-container {
    padding: 0 40px;
    gap: 50px;
  }

  .mission-header {
    margin-top: 40px;
    gap: 24px;
  }

  .mission-title {
    font-size: 28px;
  }

  .mission-statement {
    font-size: 48px;
    line-height: 80px;
  }
}

@media (max-width: 480px) {
  .our-mission-container {
    padding: 0 24px;
    gap: 40px;
  }

  .mission-header {
    margin-top: 32px;
    gap: 16px;
  }

  .mission-title {
    font-size: 24px;
  }

  .mission-statement {
    font-size: 26px;
    line-height: 50px;
  }
}

.focus-section {
  position: relative;
  color: white;
}

.focus-items-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.focus-item {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.icon-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-circle {
  padding: 24px;
  border-radius: 1000px;
  aspect-ratio: 1/1;
  background-color: #3a6fa0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.connecting-line {
  position: absolute;
  left: 40px;
  top: 40px;
  height: 235px;
  border-left: 2px dotted #5a8acf;
  z-index: 0;
}

.content {
  max-width: 48rem;
}

.title {
  font-size: 32px;
  color: white;
  font-weight: 600;
  margin-bottom: 4px;
}

.description {
  font-size: 20px;
  color: #eaeaea;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .focus-items-container {
    gap: 80px;
  }

  .title {
    font-size: 28px;
  }

  .description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  /* body {
                padding: 20px;
            } */

  .focus-items-container {
    gap: 60px;
  }

  .connecting-line {
    left: 40px;
    top: 60px;
    height: calc(100% + 60px);
  }

  .icon-container {
    flex-direction: row;
    gap: 16px;
    align-items: center;
  }

  .title {
    font-size: 24px;
  }

  .description {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .focus-items-container {
    gap: 50px;
  }

  .icon-circle {
    padding: 15px;
  }

  .connecting-line {
    left: 33px;
    top: 50px;
  }

  .title {
    font-size: 18px;
  }

  .description {
    font-size: 15px;
  }
}

footer {
  padding: 0 133px;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 120px 0;
  border-top: 1px solid #66799c;
  border-bottom: 1px solid #66799c;
}

.footer-logo img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column-wide {
  min-width: 452px;
}

.footer-title {
  font-size: 18px;
  color: white;
  font-weight: 500;
}

.footer-text {
  font-size: 16px;
  color: #f4f4f4;
  font-weight: 400;
  line-height: 1.5;
}

.footer-link {
  
  color: #f4f4f4;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 32px 0;
  gap: 8px;
}

.copyright {
  font-size: 16px;
  color: white;
  font-weight: 400;
}

.copyright-icon {
  width: 25px;
  height: 24px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  footer {
    padding: 0 80px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-column-wide {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 0 40px;
    margin-top: 48px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 60px 0;
    gap: 30px;
  }

  .footer-column-wide {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 0 24px;
    margin-top: 32px;
  }

  .footer-main {
    padding: 40px 0;
    gap: 24px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-text,
  .copyright {
    font-size: 14px;
  }
}
.language-selector {
  cursor: pointer;
  user-select: none;
  margin: 0;
  padding: 0;
}

.language-option {
  transition: color 0.3s ease;
}

.language-option.active {
  color: white;
}

.language-option.inactive {
  color: black;
  opacity: 0.7;
}

#email {
  color: white;
}

#phone-number {
  color: white;
}

#register-number{
  color: white;
}