@font-face {
  font-family: SF Pro Display;
  src: url(../fonts/SFPRODISPLAYREGULAR.OTF);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Ensure content remains visible even if AOS JS fails to load */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.container {
  max-width: 1360px;
  padding-inline: 15px;
  margin: 0 auto;
}

::selection {
  background-color: #031450;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

#logo {
  width: 20.4rem;
  padding-block: 28px;
  cursor: pointer;
}

.nav1 {
  display: flex;
  gap: 50px;
  align-items: center;
}

.navp2 {
  background-color: #031450;
}

.nav1links {
  display: flex;
  justify-content: space-between;
  padding-inline: 20px;
  align-items: center;
}

.nav1p1 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav1links a {
  position: relative;
  font: 700 14px "Montserrat";
  color: white;
  transition: color 0.2s;
  padding: 1.5625rem 1.25rem;
  display: inline-block;
  text-decoration: none;
}

.nav1links > a::after,
.nav1p1 > a::after,
.nav1p1 > .dropdown > .dropbtn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 12px;
  width: 100%;
  height: 2px;
  background-color: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  border-radius: 2px;
}

.nav1links > a:hover::after,
.nav1p1 > a:hover::after,
.nav1p1 > .dropdown:hover > .dropbtn::after {
  transform: scaleX(1);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  font: 700 15px "Montserrat";
  color: white;
  padding: 20px 0;
  display: inline-block;
  text-decoration: none;
}

.dropdown-content {
  display: none; /* Hide by default */
  position: absolute;
  background-color: #031450;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: white;
  font: 500 13px "Montserrat";
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: rgb(0, 0, 129);
}

.dropdown:hover .dropdown-content {
  display: none; /* Remove hover display */
}

.dropdown.show .dropdown-content {
  display: block; /* Show when .show class is present */
}

.flag-icon {
  width: 20px;
  height: 14px;
  margin-right: 8px;
  vertical-align: middle;
  object-fit: cover;
  border-radius: 2px;
}

.lang-dropdown .dropbtn {
  padding: 25px 15px;
}

.dropdown-content {
  display: none;
}

.nav2 {
  display: flex;
  gap: 15px;
  align-items: center;
}

.header-content-bg {
  min-height: 110vh;
  background: linear-gradient(rgba(0, 0, 0, 0.317), rgba(0, 0, 0, 0.357)),
    url(../assets/main-backgroun.jpeg) center/cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 45vh;
  color: white;
}

.header-content h1 {
  font: 700 4rem "Montserrat", sans-serif;
  line-height: 1.1;
  color: white;
  margin: 0;
}

.tagline {
  font: 300 28.8px "Montserrat", sans-serif;
  margin-bottom: 20px;
  color: white;
}

.subtext {
  font: 500 23.04px "Roboto", sans-serif;
  margin-top: 20px;
  display: block;
  color: white;
}

.badges-container {
  display: flex;
  align-items: center;
}

.google-rating,
.iso-badge {
  display: flex;
  align-items: center;
  flex: 0 0 200px;
  max-width: 100%;
  font: 500 15px "Roboto";
  margin-top: 1rem;
}

.google-logo {
  width: 36px;
  height: auto;
  max-width: 100%;
  margin-right: 10px;
}

.iso-badge img {
  height: auto;
  max-width: 60%;
  margin-top: 10px;
}

.rating-text span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.stars {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.score {
  font-size: 16px;
  font-weight: bold;
  margin-right: 5px;
}

.stars-wrapper i {
  color: gold;
  margin-right: 1px;
}

.iso-badge img {
  width: 80px;
}

.header-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.cost-button,
.call-button {
  font: 400 16px "SF Pro Display";
  padding: 10px 30px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  transition: 0.2s;
}

.cost-button {
  background-color: #fdca11;
  color: black;
  border: 1px solid #fdca11bc;
}

.cost-button:hover {
  background-color: #031450;
  color: white;
}

.call-button {
  background-color: rgba(255, 255, 255, 0.103);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.705);
  color: white;
  transition: 0.2s;
}

.call-button:hover {
  background-color: #031450;
  color: white;
}

.hdr-ft-bg {
  background-color: #f8f9fa;
}

.hdr-ft {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #031450;
}

.hdr-ft img {
  width: 800px;
  object-fit: cover;
  aspect-ratio: 16/11;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  clip-path: polygon(0 0, 87% 0, 100% 100%, 0% 100%);
}

.hdr-ft h2 {
  font: 700 1.7rem "Montserrat";
  color: white;
}

.hdr-ft p {
  font: 400 0.9rem "Montserrat";
  color: white;
  margin-left: 40px;
  line-height: 1.55rem;
}

@media (max-width: 768px) {
  .hdr-ft h2 {
    font-size: 1.5rem;
  }

  .hdr-ft p {
    font-size: 0.8rem;
    line-height: 1.76rem;
  }
}

@media (max-width: 480px) {
  .hdr-ft h2 {
    font-size: 1.3rem;
  }

  .hdr-ft p {
    font-size: 0.85rem;
  }
}

#wiki {
  color: white;
  font-weight: 600;
  text-decoration: underline;
  transition: 0.2s;
}

#wiki:hover {
  color: rgb(192, 192, 192);
}

.hdr-ft-text {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-right: 40px;
}

.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.sticky-placeholder {
  height: 60px;
}

.footer-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.753), rgba(0, 0, 0, 0.759)),
    url(../assets/man-and-a-women-shaking-hands-during-a-meeting.jpg)
      center/cover;
  color: white;
  padding: 60px 0 0;
  font-family: "SF Pro Display", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-col-logo {
  max-width: 300px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-about {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-heading {
  font: 600 20px "Montserrat", sans-serif;
  color: #fdca11;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #fdca11;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  will-change: transform;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #fdca11;
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.ftr-social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.ftr-social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(253, 202, 17, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s ease;
}

.ftr-social-links a:hover {
  background-color: #fdca11;
  color: #031450;
  transform: translateY(-3px);
}

.ftr-social-links a[href*="facebook"] {
  background: radial-gradient(circle at center, #3b5998, #1e2a4a);
}

.ftr-social-links a[href*="instagram"] {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.ftr-social-links a[href*="youtube"] {
  background: radial-gradient(circle at center, #ff0000, #a30000);
}

.ftr-social-links a[href*="linkedin"] {
  background: radial-gradient(circle at center, #0077b5, #004471);
}

.ftr-social-links a:hover {
  transform: scale(1.07);
  box-shadow: 0 0 12px rgba(253, 202, 17, 0.323);
  color: white;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-item i {
  color: #fdca11;
  font-size: 18px;
}

.contact-item p,
.contact-item a {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Footer Styles */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .footer-col-logo {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-bg {
    padding: 40px 0 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-col {
    margin-bottom: 20px;
  }
  
  .footer-logo {
    width: 150px;
  }
  
  .footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .footer-about {
    font-size: 15px;
  }
  
  .footer-links a {
    font-size: 15px;
  }
  
  .contact-item {
    margin-bottom: 12px;
  }
  
  .contact-item p,
  .contact-item a {
    font-size: 15px;
  }
  
  .contact-item i {
    font-size: 16px;
  }
  
  .ftr-social-links {
    gap: 12px;
  }
  
  .ftr-social-links a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer-bg {
    padding: 30px 0 0;
  }
  
  .footer-grid {
    gap: 20px;
  }
  
  .footer-logo {
    width: 130px;
  }
  
  .footer-about {
    font-size: 15px;
  }
  
  .footer-heading {
    font-size: 17px;
    margin-bottom: 15px;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    font-size: 15px;
  }
  
  .contact-item {
    margin-bottom: 10px;
  }
  
  .contact-item p,
  .contact-item a {
    font-size: 15px;
  }
  
  .contact-item i {
    font-size: 16px;
  }
  
  .ftr-social-links {
    gap: 10px;
  }
  
  .ftr-social-links a {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
  
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-bottom p {
    font-size: 14px;
  }
}

.cards {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.card {
  position: relative;
  flex: 1;
  min-width: 18.75rem;
  min-height: 21.875rem;
  color: white;
  padding: 2.5rem 1.875rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.legal-consultation::after {
  background: #1143b7d4;
}
.contract-drafting::after {
  background: rgba(4, 4, 97, 0.696);
}
.litigation::after {
  background: #1f242ace;
}
.legal-consultation:hover::after {
  background: #144ed5d4;
}
.contract-drafting:hover::after {
  background: rgba(7, 7, 133, 0.696);
}
.litigation:hover::after {
  background: #313841ce;
}

.card h3 {
  font: 700 32px "Montserrat";
  margin-bottom: 15px;
}

.card p {
  font: 400 16px "SF Pro Display";
  line-height: 1.5;
}

.legal-consultation::before {
  background: linear-gradient(rgba(0, 0, 0, 0.573), rgba(0, 0, 0, 0.442)),
    url(../assets/man-and-a-women-shaking-hands-during-a-meeting.jpg)
      center/cover;
}

.contract-drafting::before {
  background: linear-gradient(rgba(0, 0, 0, 0.573), rgba(0, 0, 0, 0.442)),
    url(../assets/contractdisputes.jpg) center/cover;
}

.litigation::before {
  background: linear-gradient(rgba(0, 0, 0, 0.573), rgba(0, 0, 0, 0.442)),
    url(../assets/law-theme-gavel-mallet-judge-600nw-2478909667.webp)
      center/cover;
}

.why-alc-section {
  background-color: #f0f1f3;
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
  color: #031450;
  background: linear-gradient(
      rgba(255, 255, 255, 0.635),
      rgba(255, 255, 255, 0.588)
    ),
    url(../assets/background2.webp) center/cover;
}

.section-heading-underline {
  margin-bottom: 20px;
  position: relative;
}

.section-heading-underline h2 {
  font-size: 2rem;
  color: #031450;
  position: relative;
  margin-bottom: 10px;
}

.heading-underline-bar {
  height: 4px;
  width: 50px;
  background-color: #fdca11;
  margin: 0 auto 20px;
  border-radius: 2px;
}
/* 
.why-alc-intro {
  text-align: center;
  font: 500 1.2rem "SF Pro Display";
  max-width: 900px;
  margin: 0 auto 30px;
  color: rgba(72, 72, 72, 0.684);
  line-height: 23px;
} */

.why-alc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto;
}

.why-alc-section .section-heading-underline::after {
  display: none !important;
}

.alc-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 300px;
  min-height: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: left;
  font-family: Montserrat;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  transition: 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.153);
  cursor: default;
}

.alc-card:hover {
  transform: scale(1.008) translateY(-4px);
}

.alc-card .alc-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(13%) sepia(17%) saturate(2315%)
    hue-rotate(170deg) brightness(93%) contrast(94%);
}

.alc-card h4 {
  font-weight: 600;
  font-size: 1.1rem;
  color: #031450;
  margin-bottom: 10px;
}

.alc-card p {
  font-family: "Roboto", sans-serif;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.alc-button {
  background-color: #018749;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.alc-button:hover {
  background-color: #016e3c;
}

.section-subtitle {
  font: 400 1.1rem "Roboto", sans-serif;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.practice-areas-modern {
  padding: 100px 0;
}

.practice-area-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 75px;
}

.practice-area-grid .practice-box {
  flex: 0 1 calc(33.333% - 50px);
  min-width: 320px;
  max-width: 400px;
}

.practice-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(20, 56, 95, 0.05);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practice-box:hover img {
  transform: scale(1.06);
}

.practice-box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: all 0.3s;
  aspect-ratio: 16/9;
}

.practice-box-content {
  padding: 35px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.practice-box-content h3 {
  font: 700 1.5rem "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-align: left;
  min-height: 3.9rem;
  word-break: break-word;
  hyphens: auto;
  width: 100%;
}

.practice-box-content p {
  font: 400 1rem "SF Pro Display", sans-serif;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.read-more {
  font: 600 0.95rem "Montserrat", sans-serif;
  color: #fdca11;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  margin-top: auto;
  padding-top: 10px;
}

.practice-box:hover .read-more {
  color: #031450;
}

.calculator-header-content-bg {
  background: linear-gradient(rgba(0, 0, 0, 0.745), rgba(0, 0, 0, 0.745)),
    url(../assets/banner1.webp) center/cover;
}
.aboutus-header-content-bg {
  min-height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.745), rgba(0, 0, 0, 0.745)),
    url(../assets/banner1.webp) center/cover;
}

.aboutus-header-content {
  position: relative;
  display: flex;
  justify-content: center;
}

.aboutus-header-content h2{
  position: absolute;
  top: 32vh;
  color: white;
  font: 700 3.125rem "Montserrat";
}

:root {
  --primary-accent: #031450;
  --secondary-accent: #fdca11;
  --text-dark: #444444;
  --text-light: #f8f9fc;
  --bg-light: #f8f9fc;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-main {
  background: var(--bg-light);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
}

.header-decoration {
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-accent),
    var(--secondary-accent)
  );
  margin: 1.5rem auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.about-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(128, 128, 128, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-accent) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(119, 119, 119, 0.1);
}

.about-card:hover::before {
  opacity: 0.03;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-accent);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.about-card:hover .card-icon {
  transform: rotate(0deg);
}

.card-content {
  position: relative;
  z-index: 1;
}

.section-label {
  font: 600 1.64rem "Montserrat", sans-serif;
  color: var(--primary-accent);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.8rem;
  letter-spacing: -0.07rem;
}

.section-label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #fdca11;
  transition: width 0.4s ease-in-out;
}

.about-card:hover .section-label::after {
  width: 100%;
}

.value-prop {
  font: 400 1.1rem "SF Pro Display", sans-serif;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 1.5rem;
  }

  .leadership-quote-container {
    padding: 2rem;
  }
}

.role {
  display: block;
  font-weight: 400;
  font-size: 0.9em;
  color: var(--text-dark);
}

.about-visual {
  position: relative;
  perspective: 1500px;
}

.image-container {
  border-radius: 20px;
  overflow: hidden;
  transform: rotate3d(0.5, 1, 0, 15deg);
  transition: var(--transition);
  box-shadow: 20px 20px 40px rgba(42, 46, 93, 0.15);
}

.image-container:hover {
  transform: rotate3d(0, 0, 0, 0deg);
}

.strategic-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(42, 46, 93, 0.1),
    rgba(212, 175, 55, 0.05)
  );
  z-index: 2;
}

.team-section-bg {
  background: linear-gradient(
      rgba(255, 255, 255, 0.692),
      rgba(255, 255, 255, 0.588)
    ),
    url(../assets/background2.webp) center/cover;
}

.team-section {
  text-align: center;
  padding: 80px 20px;
  font-family: "SF Pro Display", sans-serif;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.team-card {
  text-decoration: none;
  color: inherit;
  flex: 1 1 250px;
  display: flex;
}

.card-inner {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  will-change: transform;
  flex: 1 1 250px;
}

.team-card:hover .card-inner {
  transform: translateY(-5px);
}

.avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  background-color: #112b5f;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.card-inner h3 {
  font-size: 18px;
  font-weight: 600;
  color: #031450;
  margin: 10px 0 5px;
  font-family: "SF Pro Display", sans-serif;
}

.card-inner p {
  font-size: 14px;
  line-height: 1.15;
  color: #666666c7;
  font-family: "SF Pro Display", sans-serif;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 400 1rem "SF Pro Display";
}

.top-info i {
  color: #fdca11;
  font-size: 19px;
}

.top-info a {
  color: white;
  text-decoration: none;
  margin-right: 5px;
}

.top-info a:hover {
  text-decoration: underline;
}

.top-info .label {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: #e0e0e0;
  margin-top: 2px;
}

@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.partners-section {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.partners-carousel {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 0;
    animation: scroll 46s linear infinite; /* Increased duration slightly for smoother scroll with more items */
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none !important;
  }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-330px * 23)); /* Updated to include 23 items */
    }
}

.partner-box {
    flex: 0 0 auto;
    width: 300px;
    height: 180px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.partner-box:hover {
    transform: translateY(-5px);
}

.partner-box:hover img {
    transform: scale(1.05);
}

.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.highlight {
  color: #031450;
  font-weight: 600;
}

.value-prop {
  font: 400 1.1rem "SF Pro Display", sans-serif;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

.liability-section {
  padding-block: 100px;
  font-family: "SF Pro Display", sans-serif;
  text-align: center;
}

.liability-content p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #333;
}

.fa-bars {
  display: none;
} 

.navp2 {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fixed-nav {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
}

.hide-nav {
  transform: translateY(-100%);
}

.contact-hero-bg {
  min-height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../assets/contact-image.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 25vh;
}

.contact-hero-content {
  text-align: center;
}

.contact-hero-content h1 {
  font: 700 3.1rem "Montserrat", sans-serif;
  color: white;
  margin: 0;
}

.contact-main {
  padding: 100px 0;
  background-color: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2);
  gap: 40px;
  margin-bottom: 60px;
}

.contact-info-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  align-content: start;
}

.contact-info-card {
  background: linear-gradient(#09213ccc, #031450ef),
    url(../assets/contact-image.jpg) center/cover;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #fdca11;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #031450;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 20px;
}

.contact-info-card h3 {
  font: 600 1.3rem "Montserrat", sans-serif;
  color: white;
  margin-bottom: 15px;
}

.contact-details {
  font: 400 1rem "Roboto", sans-serif;
  color: white;
  line-height: 1.6;
}

.contact-link {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #fdca11;
}

.map-section {
  margin-top: 60px;
}

.map-section h2 {
  font: 700 1.8rem "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 30px;
  text-align: center;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.social-media-section {
  margin-top: 60px;
  text-align: center;
}

.social-media-section h2 {
  font: 700 1.8rem "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background-color: #031450;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #fdca11;
  color: #031450;
  transform: translateY(-5px);
}

.calculator-main-content {
  border-radius: 12px;
  padding: 40px;
  margin: 0 auto;
}

.calculator-header {
  text-align: center;
  margin-bottom: 30px;
}

.calculator-header h2 {
  font: 700 2.5rem "Montserrat";
  color: #031450;
  margin-bottom: 10px;
}

.calculator-header .subheader {
  font: 400 1rem "Roboto";
  color: #6c757d;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.half-width {
  flex: 1;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  width: 100%;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white;
}

.select-wrapper select:focus {
  outline: none;
  border-color: #031450;
  box-shadow: 0 0 0 3px rgba(20, 56, 95, 0.1);
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  font: 400 15px "Roboto";
  color: #495057;
  transition: border-color 0.3s;
}

input:focus {
  outline: none;
  border-color: #031450;
  box-shadow: 0 0 0 3px rgba(20, 56, 95, 0.1);
}

.phone-input {
  display: flex;
  gap: 8px;
  align-items: center;
}

.phone-input select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: white;
  font: 400 1rem "Roboto", sans-serif;
}

.phone-input input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font: 400 1rem "Roboto", sans-serif;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  font: 400 15px "Roboto";
  color: #495057;
}

.radio-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-custom {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  background-color: white;
  border: 2px solid #ced4da;
  border-radius: 50%;
  transition: all 0.3s;
}

.radio-option:hover .radio-custom {
  border-color: #031450;
}

.radio-option input:checked ~ .radio-custom {
  background-color: #031450;
  border-color: #031450;
}

.radio-custom::after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.radio-option input:checked ~ .radio-custom::after {
  display: block;
}

.form-actions {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.btn-prev,
.btn-next,
.btn-submit {
  padding: 12px 25px;
  border-radius: 8px;
  font: 500 16px "SF Pro Display";
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.btn-prev {
  background: #f8f9fa;
  color: #031450;
  border: 1px solid #031450;
}

.btn-prev:hover {
  background: #e9ecef;
}

.btn-next {
  background: #031450;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-next:hover {
  background: #0d2a4a;
}

.btn-next i {
  font-size: 14px;
}

.btn-submit {
  background: #fdca11;
  color: #031450;
}

.btn-submit:hover {
  background: #e6b800;
}

.calculator-features {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature i {
  color: #031450;
  font-size: 18px;
}

.feature p {
  font: 400 14px "Roboto";
  color: #6c757d;
}

.current-news-wrapper {
  background: #f8fafc;
}

.legal-updates-container {
  padding: 100px 0;
}

.section-heading-underline {
  font: 700 2rem/1.2 "Montserrat", sans-serif;
  color: #031450;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-heading-underline::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.25rem;
  background: #fdca11;
}

.news-feed-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.update-card-legal {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 1rem rgba(20, 56, 95, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.update-card-legal:hover .update-visual img {
  transform: scale(1.08);
}

.update-visual {
  overflow: hidden;
}

.update-visual img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  transition: all 0.3s;
}

.update-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.update-meta-date {
  display: block;
  font: 500 0.875rem/1.5 "Roboto", sans-serif;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.update-title-main {
  font: 600 1.25rem/1.3 "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 1rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 4.9em;
}

.update-cta-link {
  font: 500 1rem "SF Pro Display", sans-serif;
  color: #fdca11;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
  margin-top: auto;
}

.update-card-legal:hover .update-cta-link {
  color: #031450;
}

.featured-articles-block {
  padding: 4rem 0;
}

.article-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.legal-article-card {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  border-left: 0.25rem solid #fdca11;
  box-shadow: 0 0.25rem 0.75rem rgba(20, 56, 95, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-header-main {
  font: 600 1.125rem/1.3 "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 1rem;
}

.article-author-info {
  font: 500 0.875rem/1.5 "Roboto", sans-serif;
  color: #6b7280;
  margin-bottom: 1rem;
}

.article-summary-text {
  font: 400 1rem/1.6 "Roboto", sans-serif;
  color: #4b5563;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.article-action-btn {
  font: 500 0.9rem "SF Pro Display", sans-serif;
  color: white;
  background: #031450;
  padding: 0.55rem 1.2rem;
  border-radius: 0.375rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
  border: 1px solid #031450;
  align-self: flex-start;
  margin-top: auto;
}

.article-action-btn:hover {
  background: #fdca11;
  color: black;
}

.recent-laws-grid {
  padding: 4rem 0;
}

.law-card-item {
  background: white;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  border: 0.125rem solid #031450;
  box-shadow: 0 0.25rem 0.75rem rgba(20, 56, 95, 0.05);
  transition: 0.3s;
}

.law-card-item:hover {
  background-color: #031450;
  color: white;
}

.law-symbol {
  font-size: 2rem;
  color: #fdca11;
  margin-bottom: 1rem;
}

.law-title-primary {
  font: 600 1.1rem/1.3 "Montserrat", sans-serif;
  margin-bottom: 0.75rem;
}

.law-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: 0.3s;
}

.law-card-link:hover .law-card-item {
  background-color: #031450;
  color: white;
}

.law-items-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.law-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  height: 100%;
}

.law-card-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.careers-section {
  padding: 100px 20px;
  background: linear-gradient(rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.97)),
    url(../assets/whyalcbackground.png) center/cover;
}

.careers-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.careers-intro h2 {
  font: 700 2.8rem "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.careers-intro h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #fdca11, #031450);
  border-radius: 2px;
}

.careers-intro p {
  font: 400 1.2rem "Roboto", sans-serif;
  color: #555;
  line-height: 1.8;
}

.careers-opportunities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.careers-opportunities .career-card {
  background: white;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(3, 20, 80, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}


.careers-opportunities .career-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #031450, #0d2a4a);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.careers-opportunities .career-icon i {
  font-size: 28px !important;
  color: white !important;
}

.careers-opportunities .career-card h2 {
  font: 700 1.8rem "Montserrat", sans-serif !important;
  color: #031450;
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.career-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.careers-opportunities .career-requirements {
  margin-top: auto;
}

.careers-opportunities .career-requirements h3 {
  font: 600 1.4rem "Montserrat", sans-serif !important;
  color: #031450;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.careers-opportunities .career-requirements h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #fdca11;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .careers-opportunities .career-card {
    padding: 35px;
  }

  .careers-opportunities .career-icon {
    width: 50px;
    height: 50px;
  }

  .careers-opportunities .career-icon i {
    font-size: 24px !important;
  }

  .careers-opportunities .career-card h2 {
    font-size: 1.6rem !important;
  }

  .career-header {
    gap: 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .careers-opportunities .career-card {
    padding: 25px;
  }

  .careers-opportunities .career-icon {
    width: 45px;
    height: 45px;
  }

  .careers-opportunities .career-icon i {
    font-size: 22px !important;
  }

  .careers-opportunities .career-card h2 {
    font-size: 1.4rem !important;
  }

  .career-header {
    gap: 12px;
    margin-bottom: 15px;
  }
}

.application-process {
  background: white;
  border-radius: 20px;
  padding: 60px;
  margin-bottom: 80px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(3, 20, 80, 0.08);
  text-align: center;
}

.application-process h2 {
  font: 700 2.2rem "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 20px;
}

.application-process h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #fdca11;
  border-radius: 2px;
}

.application-process p {
  font: 400 1.2rem "SF Pro Display", sans-serif;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.email-link {
  color: #031450;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 5px;
}

.email-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fdca11;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.email-link:hover {
  color: #fdca11;
}

.email-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.application-note {
  font-style: italic;
  color: #666;
  text-align: center;
  margin-top: 35px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #fdca11;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .careers-section {
    padding: 60px 20px;
  }

  .careers-intro {
    margin-bottom: 50px;
  }

  .careers-intro h2 {
    font-size: 2.2rem;
  }

  .careers-intro p {
    font-size: 1.1rem;
  }

  .careers-opportunities {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .careers-opportunities .career-card {
    padding: 35px;
  }

  .careers-opportunities .career-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
  }

  .careers-opportunities .career-icon i {
    font-size: 32px !important;
  }

  .careers-opportunities .career-card h2 {
    font-size: 1.6rem !important;
    margin-bottom: 20px;
  }

  .careers-opportunities .career-card p {
    font-size: 1rem !important;
    margin-bottom: 25px;
  }

  .careers-opportunities .career-requirements h3 {
    font-size: 1.3rem !important;
    margin-bottom: 15px;
  }

  .careers-opportunities .career-requirements li {
    font-size: 1rem !important;
    margin-bottom: 12px;
    padding-left: 25px;
  }

  .application-process {
    padding: 40px;
  }

  .application-process h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .application-process p {
    font-size: 1.1rem;
  }

  .application-note {
    font-size: 1rem;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .careers-section {
    padding: 40px 15px;
  }

  .careers-intro {
    margin-bottom: 40px;
  }

  .careers-intro h2 {
    font-size: 1.8rem;
  }

  .careers-intro p {
    font-size: 1rem;
  }

  .careers-opportunities {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .careers-opportunities .career-card {
    padding: 25px;
  }

  .careers-opportunities .career-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .careers-opportunities .career-icon i {
    font-size: 28px !important;
  }

  .careers-opportunities .career-card h2 {
    font-size: 1.4rem !important;
    margin-bottom: 15px;
  }

  .careers-opportunities .career-card p {
    font-size: 0.95rem !important;
    margin-bottom: 20px;
  }

  .careers-opportunities .career-requirements h3 {
    font-size: 1.2rem !important;
    margin-bottom: 12px;
  }

  .careers-opportunities .career-requirements li {
    font-size: 0.95rem !important;
    margin-bottom: 10px;
    padding-left: 22px;
  }

  .application-process {
    padding: 25px;
  }

  .application-process h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .application-process p {
    font-size: 0.95rem;
  }

  .application-note {
    font-size: 0.9rem;
    padding: 12px;
  }
}

.executive-profile {
  padding: 60px 20px;
}

.executive-profile-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.executive-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.executive-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #fdca11;
}

.executive-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.executive-title-group {
  flex-grow: 1;
}

.executive-name {
  font: 600 2rem "SF Pro Display", sans-serif;
  color: #031450;
  margin-bottom: 0.5rem;
}

.executive-title {
  font: 500 1.2rem "SF Pro Display", sans-serif;
  color: #666;
}

.executive-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.executive-section {
  margin-bottom: 2rem;
}

.section-title {
  font: 600 1.3rem "SF Pro Display", sans-serif;
  color: #031450;
  margin-bottom: 1rem;
  border-bottom: 2px solid #fdca11;
  padding-bottom: 0.5rem;
}

.executive-description {
  font: 400 1.1rem "SF Pro Display", sans-serif;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.executive-description li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.executive-description li::before {
  content: "•";
  color: #fdca11;
  position: absolute;
  left: 0;
  top: 0;
}

.executive-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.executive-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.executive-contact p {
  font: 400 1rem "SF Pro Display", sans-serif;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.executive-contact i {
  color: #fdca11;
}

.executive-contact a {
  color: #031450;
  text-decoration: none;
  transition: color 0.3s ease;
}

.executive-contact a:hover {
  color: #fdca11;
}

.vcard-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  background-color: #fdca11;
  color: #031450;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font: 600 1rem "Montserrat", sans-serif;
  transition: background-color 0.3s ease;
}

.vcard-download:hover {
  background-color: #e6b800;
}

.service-section {
  background-color: #f8fafc;
  padding: 100px 20px;
  font-family: "Montserrat", sans-serif;
}

.service-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.service-text {
  color: #031450;
  margin-block: 4rem;
}

.service-text h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-text h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-text h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.3;
  margin: 2rem 0 1rem;
  color: #031450;
}
.service-text h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.3;
  margin: 2rem 0 1rem;
  color: #031450;
}

.service-text p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: disc inside;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.service-list li {
  margin-bottom: 0.75rem;
}

.service-list li strong {
  color: #031450;
  font-weight: 600;
}

.service-list-numbered {
  list-style: decimal inside;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.service-list-numbered li {
  margin-bottom: 1rem;
}

.service-list-numbered li strong {
  color: #031450;
  font-weight: 600;
}

.service-list-numbered li ul {
  list-style: disc inside;
  padding-left: 1rem;
  margin-top: 0.5rem;
}

.service-list-numbered li ul li {
  margin-bottom: 0.5rem;
}

.service-highlight {
  font-weight: 700;
  color: #fdca11;
}

.service-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.news-article-main {
  background-color: #f8fafc;
  padding: 100px 20px;
  font-family: "Montserrat", sans-serif;
}

.news-article-main .container {
  max-width: 900px;
  margin: auto;
}

.news-article-main h1 {
  font: 700 2.8rem "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 1.5rem;
}

.news-article-main .meta-date {
  font: 500 1rem "Roboto", sans-serif;
  color: #6b7280;
  margin-bottom: 30px;
}

.news-article-main img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px;
}

.news-article-main p {
  font: 400 1.125rem "Roboto", sans-serif;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.news-article-main strong {
  color: #fdca11;
  font-weight: 700;
}

.news-article-main blockquote {
  border-left: 4px solid #fdca11;
  padding-left: 20px;
  margin: 40px 0;
  font: 500 1.1rem "SF Pro Display", sans-serif;
  color: #031450;
}

.article-example-main-wrapper {
  background-color: #f8fafc;
  padding: 100px 20px;
  font-family: "Montserrat", sans-serif;
}

.article-example-container {
  max-width: 900px;
  margin: auto;
}

.article-example-title-heading {
  font: 700 2.8rem "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 1.5rem;
}

.article-example-date-meta {
  font: 500 1rem "Roboto", sans-serif;
  color: #6b7280;
  margin-bottom: 30px;
}

.article-example-featured-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 20px;
}

.article-example-paragraph {
  font: 400 1.125rem "Roboto", sans-serif;
  color: #444;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.article-example-highlight {
  color: #fdca11;
  font-weight: 700;
}

.article-example-quote {
  border-left: 4px solid #fdca11;
  padding-left: 20px;
  margin: 40px 0;
  font: 500 1.1rem "SF Pro Display", sans-serif;
  color: #031450;
}

.calculator-wrapper {
  background-color: #fdca11;
  padding: 100px 0;
  font-family: "Montserrat", sans-serif;
}

.calculator-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.calculator-left {
  flex: 1 1 450px;
  padding-left: 40px;
}

.calculator-left h2 {
  font: 700 2.5rem "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 20px;
}

.calculator-left p {
  font: 400 1.125rem "Roboto", sans-serif;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.8;
}

.calculator-right {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
}

.calc-form-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  max-width: 450px;
  width: 100%;
  text-align: center;
}

.calc-form-title {
  font: 700 1.8rem "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 10px;
}

.calc-form-subtext {
  font: 400 1rem "Roboto", sans-serif;
  color: #6c757d;
  margin-bottom: 20px;
}

.calc-step-tracker {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.calc-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 500 1rem "Montserrat", sans-serif;
}

.calc-step.active {
  background: #031450;
  color: white;
}

.calc-step-line {
  width: 30px;
  height: 2px;
  background: #e9ecef;
}

.calc-form-body {
  text-align: left;
}

.calc-form-group {
  margin-bottom: 20px;
}

.calc-form-group label {
  font: 500 1rem "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 6px;
  filter: blur(3px);
}

.calc-form-group input[type="text"],
.calc-form-group input[type="number"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  background: #f1f5f9;
  border: none;
  font: 400 1rem "Roboto", sans-serif;
  filter: blur(3px);
}

.calculator-left .cost-button:hover {
  background: none !important;
  border: 1px solid #031450 !important;
  color: #031450 !important;
}

.chatbot-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: "SF Pro Display", sans-serif;
}

.chatbot-toggle {
  background-color: #031450;
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 24px;
  transition: background-color 0.3s ease;
}

.chatbot-toggle:hover {
  background-color: #fdca11;
  color: #031450;
}

.chatbot-window {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-header {
  background-color: #031450;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.chatbot-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 400px;
  overflow-y: auto;
  background-color: #f8f9fa;
}

.chatbot-message {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  max-width: 85%;
}

.user-message {
  background-color: #fdca11;
  color: #031450;
  align-self: flex-end;
}

.bot-message {
  background-color: #031450;
  color: white;
  align-self: flex-start;
}

.chatbot-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chatbot-option {
  background-color: white;
  color: #031450;
  border: 2px solid #fdca1169;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-family: SF Pro Display;
}

.chatbot-option:hover {
  background-color: #fdca11;
  color: #031450;
}

#whatsapp-button {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background-color: #031450;
  border: none;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9998;
  transition: background-color 0.3s ease;
}

#whatsapp-button img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

#whatsapp-button:hover {
  background-color: #fdca11;
}

#whatsapp-button:hover img {
  filter: brightness(0) saturate(100%) invert(15%) sepia(90%) saturate(700%)
    hue-rotate(180deg) brightness(95%) contrast(90%);
}

.career-requirements ul,
.career-requirements ul li {
  font-family: "SF Pro Display", sans-serif !important;
  font-size: 1.1rem !important;
  color: #333;
  line-height: 2.1;
}

/* Add this to your responsive.css file or within a media query in your main CSS */

.mobile-lang-selector {
  display: none;
}

@media (max-width: 1024px) {
  .lang-dropdown {
    display: none;
  }

  .mobile-lang-selector {
    display: block;
    position: relative;
    margin-left: auto;
    padding: 20px 15px;
  }

  .mobile-lang-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font: 500 15px "Montserrat";
    cursor: pointer;
  }

  .mobile-lang-trigger img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
  }

  .mobile-lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: #031450;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 100;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
  }

  .mobile-lang-dropdown.show {
    display: block;
  }

  .mobile-lang-option {
    padding: 12px 16px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font: 500 14px "Montserrat";
    transition: background 0.2s;
  }

  .mobile-lang-option:hover {
    background: rgba(253, 202, 17, 0.2);
  }

  .mobile-lang-option img {
    width: 20px;
    height: 14px;
  }
}

@media (max-width: 1100px) {
  .calculator-form-2col {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .calculator-option {
    max-width: 100%;
    width: 100%;
  }
}

.calculator-form-2col {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
  width: 100%;
  box-sizing: border-box;
}

.calculator-features {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature i {
  color: #031450;
  font-size: 18px;
}

.feature p {
  font: 400 14px "Roboto";
  color: #6c757d;
}

@media (max-width: 1100px) {
  .calculator-form-2col {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .calculator-option {
    max-width: 100%;
    width: 100%;
  }
}

/* --- Calculator Select Styles (Consolidated) --- */
.select-wrapper select.calculator-select {
    width: 100%;
    min-width: 220px;
    padding: 14px 40px 14px 16px;
    font: 500 1rem "SF Pro Display", sans-serif;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #000;
    transition: border-color 0.2s;
    box-sizing: border-box;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.select-wrapper select.calculator-select:focus {
    outline: none;
    border-color: #031450;
}
.select-wrapper i.fa-chevron-down {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6c757d;
    font-size: 18px;
}

.calculator-toggle-btns .toggle-btn {
    background: #f8f9fa;
    border: 1.5px solid #03145034;
    border-radius: 8px;
    font: 600 1.1rem "Montserrat", sans-serif;
    letter-spacing: -0.03em;
    padding: 16px 34px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
    outline: none;
    box-shadow: 0 2px 8px rgba(3,20,80,0.04);
}
.calculator-toggle-btns .toggle-btn.active {
    background: #fdca11;
    color: #031450;
    box-shadow: 0 4px 16px rgba(253,202,17,0.08);
    z-index: 1;
}
.calculator-toggle-btns {
    overflow: hidden;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.form-group label {
  font: 500 1rem "SF Pro Display", sans-serif;
  color: #646464c8;
}
.confidentiality-msg span {
  display: inline-block;
  font-family: "SF Pro Display", "Montserrat", Arial, sans-serif;
  font-size: 0.98rem;
  color: #018748c7;        
  background: #eafaf3a2;  
  padding: 8px 18px;
  border-radius: 6px;
  margin-block: 1rem;
  box-shadow: 0 1px 4px rgba(1,135,73,0.06);
}

.calculator-main-bg.container {
    max-width: 800px;
    margin: 0 auto;
    padding-inline: 15px;
}

#calculator-summary {
  background: #f8f9fa;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px; 
  padding: 1.5rem 1.2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(3,20,80,0.04);
}

#calculator-summary h4 {
  font-family: "SF Pro Display";
  font-size: 1.15rem;
  font-weight: 700;
  color: #031450;
  margin-bottom: 1rem;
}

#calculator-summary ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#calculator-summary li {
  font-family: "SF Pro Display";
  font-size: 1.02rem;
  color: #444;
  margin-bottom: 0.7rem;
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
}

#calculator-summary li strong {
  color: #031450;
  font-weight: 500;
  display: inline-block;
  margin-right: 0.2rem;
}

.form-group textarea {
    width: 100%;
    min-height: 80px;
    padding: 14px 16px;
    font: 500 1rem "SF Pro Display", sans-serif;
    border: 1.5px solid #d1d5db;
    border-radius: 5px;
    background: #fff;
    color: #000;
    transition: border-color 0.2s;
    box-sizing: border-box;
    resize: vertical;
}

.form-group textarea:focus {
    outline: none;
    border-color: #031450;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

#calculator-summary ul li:last-child {
    margin: 0 !important;
}

#summary-service-type-li {
  margin: 0 !important;
}

.select-wrapper select.calculator-select,
input[type="number"].calculator-select {
    font: 500 1rem "SF Pro Display", sans-serif;
}

.form-group input[type="number"],
.form-group input[type="number"].calculator-select {
    font: 500 1rem "SF Pro Display", sans-serif !important;
}

.form-group input[type="number"]::placeholder {
    color: #000 !important;
    opacity: 1;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.1rem;
    pointer-events: none;
    z-index: 2;
    /* Add a little gap to the right of the icon */
    width: 22px;
    text-align: center;
}
.input-with-icon input,
.input-with-icon select {
    padding-left: 48px !important;
}
.input-with-icon.phone-input select {
    padding-left: 48px !important;
    min-width: 110px;
}
.input-with-icon.phone-input input[type="tel"] {
    padding-left: 12px !important;
}

.input-with-icon.select-with-icon select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
}
.input-with-icon.select-with-icon i.fa-chevron-down {
    left: auto;
    right: 16px;
    pointer-events: none;
    z-index: 2;
}
.input-with-icon.select-with-icon i:not(.fa-chevron-down) {
    left: 16px;
    width: 22px;
    text-align: center;
    z-index: 2;
}

.input-with-icon,
.input-with-icon input,
.input-with-icon select,
.input-with-icon .select-wrapper,
.phone-input,
.phone-input input,
.phone-input select,
.select-wrapper,
.select-wrapper select {
  height: 48px !important;
  min-height: 48px !important;
  box-sizing: border-box;
  border-radius: 8px !important;
  font-size: 1rem;
}

.input-with-icon input,
.input-with-icon select,
.phone-input input,
.phone-input select {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  line-height: 48px !important;
}

.input-with-icon {
  min-width: 0;
}

.phone-input {
  gap: 8px;
}

/* Remove conflicting border-radius and padding from phone-input children */
.phone-input input,
.phone-input select {
  border-radius: 8px !important;
  border: 1.5px solid #d1d5db !important;
}

/* Ensure select chevron and icons are vertically centered */
.input-with-icon i,
.select-wrapper i.fa-chevron-down {
  top: 50%;
  transform: translateY(-50%);
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
select,
textarea {
  font-family: 'SF Pro Display', 'Montserrat', 'Roboto', Arial, sans-serif !important;
}

/* Calculator Responsive Styles */
@media (max-width: 768px) {
  .calculator-main-content {
    padding: 20px;
  }

  .calculator-toggle-btns {
    flex-direction: column;
    gap: 10px;
  }

  .calculator-toggle-btns .toggle-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .half-width {
    width: 100%;
  }

  .calculator-features {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .feature {
    width: 100%;
  }

  #calculator-summary {
    padding: 1rem;
  }

  #calculator-summary li {
    font-size: 0.95rem;
  }

  .input-with-icon,
  .input-with-icon input,
  .input-with-icon select,
  .input-with-icon .select-wrapper,
  .phone-input,
  .phone-input input,
  .phone-input select,
  .select-wrapper,
  .select-wrapper select {
    height: 42px !important;
    min-height: 42px !important;
  }

  .input-with-icon input,
  .input-with-icon select,
  .phone-input input,
  .phone-input select {
    line-height: 42px !important;
  }

  .input-with-icon i {
    font-size: 1rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .confidentiality-msg span {
    font-size: 0.9rem;
    padding: 6px 14px;
  }

  .btn-prev,
  .btn-next,
  .btn-submit {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .form-actions {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .calculator-main-content {
    padding: 15px;
  }

  .calculator-toggle-btns .toggle-btn {
    padding: 10px 15px;
    font-size: 0.95rem;
  }

  .form-group {
    margin-bottom: 16px;
  }

  .form-row {
    margin-bottom: 16px;
  }

  .input-with-icon,
  .input-with-icon input,
  .input-with-icon select,
  .input-with-icon .select-wrapper,
  .phone-input,
  .phone-input input,
  .phone-input select,
  .select-wrapper,
  .select-wrapper select {
    height: 40px !important;
    min-height: 40px !important;
  }

  .input-with-icon input,
  .input-with-icon select,
  .phone-input input,
  .phone-input select {
    line-height: 40px !important;
    font-size: 0.95rem !important;
  }

  .input-with-icon i {
    font-size: 0.95rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .confidentiality-msg span {
    font-size: 0.85rem;
    padding: 5px 12px;
  }

  #calculator-summary {
    padding: 0.8rem;
  }

  #calculator-summary li {
    font-size: 0.9rem;
  }

  .radio-group {
    flex-direction: column;
    gap: 10px;
  }

  .radio-option {
    padding-left: 25px;
  }

  .radio-custom {
    height: 18px;
    width: 18px;
  }

  .radio-custom::after {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 480px) {
  .phone-input {
    flex-direction: column;
    gap: 10px;
    position: relative;
  }
  .phone-input .input-with-icon {
    width: 100%;
    position: relative;
  }
  .phone-input .input-with-icon i {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    z-index: 2;
    display: block;
  }
  .phone-input input[type="tel"] {
    padding-left: 48px !important;
  }
  .phone-input select {
    min-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .select-wrapper select.calculator-select {
    padding-right: 30px;
  }

  .select-wrapper i.fa-chevron-down {
    right: 10px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .form-group textarea {
    min-height: 60px;
    font-size: 0.95rem;
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  #submission-message {
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .calculator-form-container .form-group {
    margin-bottom: 18px !important;
  }
  .calculator-form-container .form-row {
    margin-bottom: 18px !important;
  }
}

.benefits-section {
  margin-bottom: 80px;
  text-align: center;
}

.benefits-section h2 {
  font: 700 2.2rem "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

.benefits-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #fdca11;
  border-radius: 2px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.benefit-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(3, 20, 80, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.benefit-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #fdca11;
  transition: transform 0.4s ease;
}

.benefit-item:hover .benefit-image {
  transform: scale(1.05);
}

.benefit-item h4 {
  font: 600 1.4rem "Montserrat", sans-serif;
  color: #031450;
  margin: 25px 0 15px;
  padding: 0 25px;
}

.benefit-item p {
  font: 400 1.1rem "Roboto", sans-serif;
  color: #555;
  line-height: 1.6;
  padding: 0 25px 25px;
  margin: 0;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .benefits-section {
    margin-bottom: 60px;
  }

  .benefits-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .benefits-grid {
    gap: 25px;
  }

  .benefit-item h4 {
    font-size: 1.3rem;
    margin: 20px 0 12px;
  }

  .benefit-item p {
    font-size: 1rem;
    padding: 0 20px 20px;
  }

  .benefit-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .benefits-section {
    margin-bottom: 40px;
  }

  .benefits-section h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .benefits-grid {
    gap: 20px;
  }

  .benefit-item h4 {
    font-size: 1.2rem;
    margin: 15px 0 10px;
  }

  .benefit-item p {
    font-size: 0.95rem;
    padding: 0 15px 15px;
  }

  .benefit-image {
    height: 160px;
  }
}

.career-card-fullwidth {
  width: 100%;
  max-width: none;
  margin: 32px 0 0 0;
  box-sizing: border-box;
  background: #f8f9fa;
  border: 2px solid #fdca11;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  padding: 45px 30px;
  text-align: left;
}
.career-card-fullwidth h3 {
  font-size: 1.5rem;
  color: #031450;
  margin-bottom: 1rem;
}
.career-card-fullwidth ul {
  font-size: 1.1rem;
  color: #444;
  padding-left: 1.2rem;
}
@media (max-width: 900px) {
  .career-card-fullwidth {
    padding: 32px 12px;
  }
}

.career-card-fullwidth {
  background: white;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  border: 1px solid rgba(3, 20, 80, 0.08);
}

.career-card-fullwidth h3 {
  font: 700 2rem "Montserrat", sans-serif;
  color: #031450;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.career-card-fullwidth h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #fdca11;
  border-radius: 2px;
}

.requirements-content {
  max-width: 1000px;
  margin: 0 auto;
}

.requirements-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
}

.requirements-content li {
  font: 400 1.1rem "SF Pro Display", sans-serif;
  color: #555;
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.requirements-content li::before {
  content: "•";
  color: #fdca11;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .career-card-fullwidth h3 {
    font-size: 1.6rem;
  }

  .requirements-content ul {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .requirements-content li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .career-card-fullwidth h3 {
    font-size: 1.4rem;
  }

  .requirements-content li {
    font-size: 0.95rem;
  }
}

.requirements-content h4 {
    color: #031450;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #fdca11;
    font-family: Montserrat;
}

.requirements-content h4:first-child {
    margin-top: 0;
}

.application-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.application-type {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.application-type h3 {
    color: #031450;
    font: 600 1.3rem "Montserrat", sans-serif;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #fdca11;
}

.application-type p {
    margin-bottom: 2rem;
    line-height: 1.6;
    font: 400 1.1rem "SF Pro Display", sans-serif;
    color: #555;
}

.application-note {
    margin-top: auto;
    font-style: italic;
    color: #666;
    text-align: center;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid #fdca11;
    font: 500 1rem "SF Pro Display", sans-serif;
}

.application-process h2 {
    font: 700 2.2rem "Montserrat", sans-serif;
    color: #031450;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}

.application-process h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #fdca11;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .application-types {
        grid-template-columns: 1fr;
    }
    
    .application-type h3 {
        font-size: 1.2rem;
    }
    
    .application-type p {
        font-size: 1rem;
    }
    
    .application-note {
        font-size: 0.95rem;
        padding: 12px;
    }
}