* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    height: 100vh;
    font-family: 'Poppins', sans-serif;
    background-color: #1E305E;
}

/* Header Styles */
header {
    width: 100%;
    position: fixed;
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background-image: linear-gradient(to right, white 30%, #1E305E 50%);
}

.site-identity a img {
    max-height: 60px;
    vertical-align: middle;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    display: inline-block;
    position: relative;
    margin: 0 20px;
}


nav ul li .dropdown-trigger {
    font-weight: 500;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

nav ul li .dropdown-trigger:hover {
    color: #CD9D49;
}

nav ul li .dropdown-trigger .dropdown-arrow {
    display: inline-block;
    margin-left: 5px;
    font-size: 0.8em;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

nav ul li:hover .dropdown-trigger .dropdown-arrow {
    transform: rotate(180deg);
}

ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2A4066;
    border-radius: 4px;
    margin-top: 0.2em;
    min-width: 200px;
    padding: 0.5em 0;
    z-index: 1001;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

ul li:hover ul {
    display: block;
}

ul li ul:hover {
    display: block;
}

ul li ul li {
    width: 100%;
    padding: 5px 15px;
}

ul li ul li a {
    color: #CD9D49;
    font-weight: 500;
    width: 100%;
    text-decoration: none;
    display: block;
    padding: 0.3em 0;
    transition: color 0.3s ease;
}

ul li ul li a:hover {
    color: white;
    background-color: #3A5576;
    border-radius: 0.3em;
}

ul li::after {
    content: '';
    height: 2px;
    width: 0;
    background: white;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: 0.5s;
}

ul li:hover::after {
    width: 90%;
    max-width: 100%;
}

ul li a {
    font-weight: 500;
    transition: all 0.3s ease 0s;
    color: white;
    text-decoration: none;
}

ul li a:hover {
    color: #CD9D49;
}

a.active {
    color: #CD9D49;
    font-weight: 600;
}

.checkbtn {
    font-size: 30px;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check {
    display: none;
}

.hero-container {
    background-image: url(images/Hero-image-01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    padding-top: 10em;
}

.scroll-down {
    position: absolute;
    bottom: .8em;
    width: 100%;
    display: flex;
    justify-content: center;
}

.scroll-down:hover {
    font-size: 1.5em;
}

.hero-content {
    font-size: 2rem;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10% 8% 5%;
}

.hero-wrapper {
    line-height: 2.0em;
}

.hero-wrapper > h1 {
    font-size: 3.5rem;
}

h2 {
    text-align: center;
    color: #1E305E;
    font-size: 1.6rem;
}

h1 {
    line-height: 1em;
    color: #1E305E;
    text-align: center;
}

.to-excellence {
    color: #CD9D49;
    font-size: 4.6rem;
}

h3 {
    font-size: 1.7rem;
    text-align: center;
    line-height: 1.2em;
    margin: 2em 0 .5em 0;
}

.txt-rotate {
    color: #CD9D49;
}

.btn-learn-more {
    font-size: .7rem;
    background-color: #1E305E;
    border: none;
    border-radius: 16px;
    color: white;
    font-weight: 700;
    padding: 10px 30px;
    cursor: pointer;
    transition: 0.8s ease-out;
}

.btn-learn-more:hover {
    background-color: white;
    color: #1E305E;
}

.section-one {
    background-image: url(images/Asset_01.png);
    background-position: bottom;
    background-position-x: left;
    background-repeat: no-repeat;
    background-size: auto;
}

.section-one-top {
    width: 100%;
    height: 716px;
    padding-left: 5%;
    margin-top: .5em;
    display: flex;
    justify-content: space-evenly;
    background-image: url(images/Asset_04.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.section-one-top-container {
    width: 50%;
    height: 70%;
    position: relative;
    text-align: center;
    background-size: cover;
    margin: auto;
}

h5 {
    color: #CD9D49;
}

h4 {
    color: white;
}

h3 {
    color: #1E305E;
}

p {
    color: white;
}

.get-legal-advice {
    width: 40%;
    height: 50%;
    margin: 3em;
    padding-top: 2.5em;
}

.get-legal-advice-title {
    margin-bottom: 1.5em;
    line-height: 1.5em;
}

.get-legal-advice-info {
    line-height: 2em;
    text-align: justify;
}

.tailored-services,
.available-and-flexible,
.court-performance {
    position: absolute;
    width: 60%;
    animation-duration: 20s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.tailored-services {
    animation-name: anim-1;
}

.available-and-flexible {
    animation-name: anim-2;
}

.court-performance {
    animation-name: anim-3;
}

@keyframes anim-1 {

    0%,
    8.3% {
        left: -40%;
        opacity: 0;
    }

    8.3%,
    25% {
        left: 25%;
        opacity: 1;
    }

    33.33%,
    100% {
        left: 0%;
        opacity: 0;
    }
}

@keyframes anim-2 {

    0%,
    33.33% {
        left: -40%;
        opacity: 0;
    }

    41.63%,
    58.29% {
        left: 25%;
        opacity: 1;
    }

    66.66%,
    100% {
        left: 0%;
        opacity: 0;
    }
}

@keyframes anim-3 {

    0%,
    66.66% {
        left: -40%;
        opacity: 0;
    }

    74.96%,
    91.62% {
        left: 25%;
        opacity: 1;
    }

    100% {
        left: 0%;
        opacity: 0;
    }
}

.home-social-media-links {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: 8.2em;
    margin-right: auto;
    margin-top: 5em;
    font-size: 1.5em;
}

.section-one-bottom {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
}

.why-select-us {
    width: 30%;
    margin-left: 60%;
    padding-bottom: 2em;
}

.why-select-us-title {
    margin-bottom: 1.5em;
    line-height: 1.5em;
}

.why-select-us-info {
    line-height: 2em;
    text-align: justify;
}

.icon-02 {
    position: absolute;
    left: 90%;
    top: 110em;
}

.section-two-top {
    width: 100%;
    height: 638px;
    background-image: url(images/Asset_03.png);
    background-repeat: no-repeat;
    background-size: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: 1em;
}

.practice-overview-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.overview-practice-card {
  flex: 1 1 280px;
  max-width: 320px;
  min-height: 350px;
  border-radius: 14px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  color: #0d2b49;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease;
}

.overview-practice-card:hover {
  transform: translateY(-5px);
}

.overview-practice-card .icon {
  color: #235789;
  margin-bottom: 1rem;
  display: inline-block;
}

.overview-practice-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.overview-practice-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #333;
}

.explore-btn {
  background-color: #235789;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  display: inline-block;
}

.explore-btn:hover {
  background-color: #1a3f68;
}

.see-all-container {
  text-align: center;
  margin-top: 2rem;
}

.see-all-btn {
  background-color: #235789;
  color: white;
  padding: 0.7rem 1.6rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.see-all-btn:hover {
  background-color: #1a3f68;
}


/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}


.section-two-bottom {
    width: 100%;
    height: 607px;
    padding-top: 2em;
    padding-bottom: 2em;
    margin-top: 1em;
    background-image: url(images/Quick-booking-01.png);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-content h4 {
    color: #1E305E;
    margin-bottom: 10px;
}

.popup-content p {
    color: #1E305E;
    margin-bottom: 20px;
}

#close-popup {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #1E305E;
    color: white;
    cursor: pointer;
}

#close-popup:hover {
    background-color: #CD9D49;
    color: #1E305E;
}

.quick-booking {
    line-height: 1.2em;
    font-size: 2rem;
    text-align: right;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.quick-booking h4 {
    color: #1E305E;
    font-size: 3rem;
}

.fcf-form-class {
    width: 50%;
}

.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2em;
    color: white;
    background-color: #1E305E;
    background-clip: padding-box;
    border: 2px solid #CD9D49;
    outline: none;
    border-radius: 2rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    font-family: 'Poppins', sans-serif;
}

.fcf-form-control:focus {
    border: 2px solid white;
    background-color: black;
}

select.fcf-form-control[size],
select.fcf-form-control[multiple] {
    height: auto;
}

textarea.fcf-form-control {
    height: auto;
}

label.fcf-label {
    display: inline-block;
    margin-bottom: 0.2rem;
    font-weight: 700;
    color: #1E305E;
}


.fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #1E305E;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 2px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
}

.fcf-btn:hover {
    color: #1E305E;
    text-decoration: none;
}

.fcf-btn:focus,
.fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem #1E305E;
}

.fcf-btn-primary {
    color: white;
    background-color: #1E305E;
    border-color: white;
}

.fcf-btn-primary:hover {
    color: #1E305E;
    background-color: white;
    border-color: #1E305E;
}

.fcf-btn-primary:focus,
.fcf-btn-primary.focus {
    color: white;
    background-color: #CD9D49;
    border-color: white;
    box-shadow: 0 0 0 0.2rem #CD9D49;
}

.fcf-btn-lg,
.fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 2rem;
}

.fcf-btn-block {
    display: block;
    width: 50%;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
}

.fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].fcf-btn-block,
input[type="reset"].fcf-btn-block,
input[type="button"].fcf-btn-block {
    width: 100%;
}

.client-logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    background-color: #CD9D49;
    padding: 10px 0;
}
.client-logo-static {
    text-align: center;
    padding: 5px 0;
}
.client-logo-static h4 {
    color: white;
    font-size: 2rem;
    margin: 0;
}
.client-logo-slide {
    display: flex;
    align-items: center;
    width: 200%; 
}
.client-logo-slide img {
    height: 80px;
    margin: 0 20px;
    object-fit: contain;
}
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.client-logo-slide {
    animation: slide 10s linear infinite;
}
.client-logo-slide:hover {
    animation-play-state: paused;
}

/* Footer Styles */
footer {
    width: 100%;
    background-color: #1E305E;
    color: #CD9D49;
}

.footer-top {
    display: flex;
    justify-content: space-around;
    padding: 3em 5%;
    background-color: #F2E4CD;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 0 1em;
}

.footer-about .footer-logo {
    height: 120px;
    width: auto;
    margin-bottom: 0.7em;
}


.footer-description {
    font-size: 0.95em;
    line-height: 1.6em;
    color: #1E305E;
    padding: 0 1em;
    text-align: left;
}

.footer-description p {
    color: #1E305E;
}

.footer-find-us p,
.footer-contact-us p,
.footer-business-hours p {
    font-size: 0.9em;
    line-height: 1.6em;
    margin: 0.5em 0;
    color: #1E305E;
}

.footer-quick-links h5,
.footer-find-us h5,
.footer-contact-us h5,
.footer-business-hours h5 {
    color: #CD9D49;
    margin-bottom: 1em;
    font-size: 1.2em;
}

.footer-quick-links ul {
    list-style: none;
    padding: 0;
    flex-direction: column;
}

.footer-quick-links ul li {
    margin: 0.3em 0;
}

.footer-quick-links ul li a {
    color: #0F2339;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-quick-links ul li a:hover {
    color: #CD9D49;
}

.footer-map {
    margin-top: 1em;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


.footer-social-media-links {
    display: flex;
    justify-content: center;
    gap: 2em;
    margin-top: 1.5em;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-social-media-links a {
    font-size: 1.8em;
    color: #0F2339;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-media-links a:hover {
    color: #CD9D49;
    transform: scale(1.2);
}

.footer-business-hours {
    margin-top: 1.3em;
}


a {
    text-decoration: none;
    color: #1E305E;
    transition: 0.2s;
}

a:hover {
    color: #CD9D49;
}

a.fa.fa-linkedin {
    text-decoration: none;
    color: #1E305E;
    width: 100%;
}

a.fa.fa-linkedin:hover {
    color: #CD9D49;
    font-size: 1.2em;
}

a.fa.fa-facebook {
    text-decoration: none;
    color: #1E305E;
    width: 100%;
}

a.fa.fa-facebook:hover {
    color: #CD9D49;
    font-size: 1.2em;
}

a.fa.fa-twitter {
    text-decoration: none;
    color: #1E305E;
    width: 100%;
}

a.fa.fa-twitter:hover {
    color: #CD9D49;
    font-size: 1.2em;
}

a.fa.fa-instagram {
    text-decoration: none;
    color: #1E305E;
    width: 100%;
}

a.fa.fa-instagram:hover {
    color: #CD9D49;
    font-size: 1.2em;
}

.business-hours {
    color: #1E305E;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    width: 392px;
    line-height: 2em;
    font-weight: 700;
    margin-left: auto;
    margin: auto;
}

.open-hours {
    margin-bottom: 1em;
    margin-top: 1em;
}

.h5-footer {
    font-size: 1.5rem;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    background-color: #1E305E;
    color: white;
    line-height: 1.6em;
    padding: .5em 0 .5em 0;
    font-size: .7em;
}

.call-us:hover,
.email-us:hover {
    font-size: 1.1em;
}

.acp {
    text-decoration: none;
    color: #CD9D49;
    cursor: pointer;
}

.acp:hover {
    color: white;
    font-size: 1.1em;
}

/* Make dropdowns in footer nav open upward */





/* Small devices (landscape phones, 576px and up) */

@media (min-width: 320px) and (max-width:576px) {}




/* Medium devices (tablets, 768px and up) */

@media (min-width: 320px) and (max-width: 768px) {

    body {
        background-color: #1E305E;
        overflow-x: hidden;
    }

    header {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .checkbtn {
        font-size: 2rem;
        color: white;
        margin-right: auto;
        cursor: pointer;
        display: block;
    }

    nav ul {
        position: fixed;
        width: 100%;
        height: 100%;
        background: #1E305E;
        display: flex;
        flex-direction: column;
        text-align: center;
        top: 9em;
        left: -100%;
        line-height: 2.3em;
        transition: all .5s;
    }
    ul li::after {
        content: '';
        height: 2px;
        width: 0;
        background: white;
        position: absolute;
        left: 0;
        bottom: -2px;
        transition: 0.5s;
    }
    ul li:hover::after {
        width: 90%;
        max-width: fit-content;
    }

    #check:checked~ul {
        left: 0;
    }

    #check:checked~label #cancel {
        padding-bottom: 1.5em;
        padding-top: 0.3em;
        margin: 0;
        display: block;
        color: #CD9D49;
    }

    #check:checked~label #btn {
        display: none;
    }

    nav ul li {
        display: block;
        margin:10px 0;
        position: relative;
    }

    nav ul li .dropdown-trigger {
        font-weight: 500;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
        text-align: center;
    }

    ul li .dropdown-trigger .dropdown-arrow {
        margin-left: 5px;
        transition: transform 0.3s ease;
    }

    ul li ul {
        position: static;
        display: none;
        background: #2A4066;
        border-radius: 0;
        margin-top: 0.5em;
        padding: 0.5em 0;
        box-shadow: none;
        transform: none;
        left: 0;
        z-index: 1001;
    }

    ul li.active-dropdown ul {
        display: block;
        margin-bottom: 2em;
    }

    ul li ul li {
        width: 100%;
        padding: 0.5em 1em;
    }

    ul li ul li a {
        padding: 0.3em 0;
    }

    label #cancel {
        display: none;
    }
    
    .header-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        background-image: linear-gradient(to bottom, white 40%, #1E305E 0);
    }

    .hero-container {
        background-image: url(images/Hero-image-01_002.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: auto;
        padding-bottom: 4em;
    }

    .hero-content {
        font-size: 2rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 2.2em;
        padding-top: 1.5em;
    }

    .hero-wrapper {
        font-size: 1rem;
        line-height: 2em;
    }

    h2 {
        text-align: center;
        color: #1E305E;
        font-size: 1.4rem;
        padding-bottom: 0.8em;
    }

    h1 {
        line-height: 1.1em;
        color: #1E305E;
        text-align: center;
        font-size: 3rem;
    }

    h3 {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.2em;
        margin: 2em 0 .5em 0;
    }

    h4 {
        color: #1E305E;
    }

    .to-excellence {
        color: #CD9D49;
        font-size: 4rem;
    }

    .scroll-down {
        /*position: absolute;
        width: 100%;
        display: flex;
        justify-content: center;*/
        display: none;
    }

    .section-one-top {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        background-image: none;
        background-color: white;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .get-legal-advice {
        width: 60%;
        height: auto;
        margin-top: 8em;
        margin-bottom: 1.2em;
    }

    .get-legal-advice-info {
        line-height: 1.7em;
        color: #1E305E;
        margin-bottom: 1.2em;
        text-align: justify;
    }

    .section-one-top-container {
        display: flex;
        width: 100%;
        height: 50vh;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2.5em;
        margin-bottom: 10em;
    }

    .section-one {
        width: 100%;
        background-image: none;
        background-color: #1E305E;
    }

    .home-social-media-links {
        width: 80%;
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        margin-top: 22em;
        font-size: 1.5em;
        padding-left: 2em;
        padding-right: 2em;
    }

    .why-select-us {
        width: 60%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        margin-top: 1.2em;
    }

    .why-select-us h4 {
        color: white;
    }

    .section-one-bottom {
        width: 100%;

    }

    .why-select-us-info {
        line-height: 1.7em;
        color: white;
        text-align: left;
    }

    .icon-02 {
        /* width: 10%;
        position: absolute;
        margin-left: auto;
        margin-right: auto;
        left: 44%;
        top: 43em;*/
        display: none;
    }

    .tailored-services {
        width: 50%;
    }

    .available-and-flexible {
        width: 50%;
    }

    .court-performance {
        width: 50%;
    }

    .section-two-top {
        width: 100%;
        height: 50%;
        background-image: none;
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 2em;
        padding-bottom: 2em;
    }

    .overview-practice-card-home {
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .section-two-bottom {
        width: 100%;
        background-image: none;
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.1em;
    }

    .popup-content {
        width: 80%;
    }
    
    .quick-booking {
        line-height: 1.4em;
        font-size: 1.5rem;
        text-align: center;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0.8em;
    }

    .quick-booking h4 {
        color: #1E305E;
        font-size: 2rem;
    }

    .quick-booking hr {
        width: 100%;
        display: none;
    }

    .fcf-btn-block {
        display: block;
        width: 80%;
        margin-top: 1em;
        margin-bottom: 1em;
        margin-left: auto;
        margin-right: auto;
    }

    footer {
        width: 100%;

    }

    .footer-top {
        flex-direction: column;
        padding: 2em 5%;
    }

    .footer-column {
        width: 100%;
        margin: 1.5em 0;
    }

    .footer-about .footer-logo {
        height: 100px;
    }

    .footer-description {
        padding: 0;
    }

    .footer-quick-links {
        display: none; /* Hides the Quick Links section on mobile */
    }

    .footer-map iframe {
        height: 200px;
    }
    

    .visit-about-us {
        background-color: white;
        padding-top: 9em;
        padding-bottom: 1.2em;
    }

}










/* Large devices (desktops, 992px and up) */

@media (min-width: 769px) and (max-width:992px) {

    .hero-container {
        background-image: url(images/Hero-image-01.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 100vh;
        padding-top: 10em;
    }

    .scroll-down {
        position: absolute;
        bottom: .8em;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .scroll-down:hover {
        font-size: 1.5em;
    }

    .hero-content {
        font-size: 2rem;
        width: 70%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 15% 8% 2%;
    }

    .section-one-top {
        width: 100%;
        height: 716px;
        padding-left: 5%;
        margin-top: .5em;
        display: flex;
        justify-content: space-evenly;
        background-image: url(images/Asset_04_002.png);
        background-repeat: no-repeat;
        background-position: right;
        background-size: auto;
    }

    .why-select-us {
        width: 40%;
        margin-left: 63%;
        padding-bottom: 0em;
        padding-top: 2em;
    }

    .get-legal-advice {
        width: 34%;
        height: 50%;
        margin: 0em;
        padding-top: 5em;
    }

    .home-social-media-links {
        width: 50%;
        height: 100%;
        display: flex;
        align-items: center;
        margin-left: 7.2em;
        margin-right: auto;
        margin-top: 8em;
        font-size: 1.5em;
    }

    .contact-hero-container {
        width: 100%;
        height: 100vh;
        background-image: url(images/Contact-hero-image_004.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-color: white;
    }

    .contact-hero-content {
        font-size: 2rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 0%;
        padding-top: 0;
        margin-left: auto;
        line-height: 1.5em;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2%;
        background-image: linear-gradient(to right, white 28%, #1E305E 38%);
    }

    .header-container ul li a {
        font-size: 0.8rem;
    }

    .our-clientelle-logos {
        width: 68%;
    }

    .section-one {
        background-image: url(images/Asset_01_002.png);
        background-position: bottom;
        background-position-x: left;
        background-repeat: no-repeat;
        background-size: auto;
    }

    .section-one-top {
        width: 100%;
        height: 716px;
        padding-left: 5%;
        margin-top: .5em;
        display: flex;
        justify-content: space-evenly;
        background-image: url(images/Asset_04.png);
        background-repeat: no-repeat;
        background-position: right;
        background-size: contain;
    }

    .section-one-top-container {
        width: 60%;
        height: 70%;
        position: relative;
        text-align: center;
        background-size: cover;
        margin: auto;
        padding-top: 0.5em;
    }

    .tailored-services h4 {
        font-size: 1.5rem;
    }

    .available-and-flexible h4 {
        font-size: 1.5rem;
    }

    .court-performance h4 {
        font-size: 1.5rem;
    }

    .section-two-top {
        width: 100%;
        height: 540px;
        background-image: url(images/Asset_03.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin-top: 0em;
    }

    .section-two-bottom {
        width: 100%;
        height: 716px;
        padding-top: 0em;
        padding-bottom: 0em;
        margin-top: 0em;
        background-image: url(images/Quick-booking-02.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-us-quick-booking {
        background-image: url(images/Harriette\ Chiggai_The_Firm-01.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: left;
        background-color: white;
        width: 100%;
        padding: 0em;
    }

    .about-us-quick-booking-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 35%;
        padding-top: 0.8em;
    }

    .email-us {
        font-size: 0.8rem;
    }

    .email-us:hover {
        font-size: 0.9rem;
    }

    .fcf-btn-block {
        display: block;
        width: 80%;
        margin-top: 1em;
        margin-bottom: 1em;
        margin-left: auto;
        margin-right: auto;
    }

    .about-us-hero {
        background-image: url(images/TheFirm_Hero_Img_003.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 100vh;
        padding-right: 2em;
    }

    .about-us-hero-content {
        width: 65%;
        margin-left: auto;
        margin-right: 50%;
        height: 50vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 22.5em;
    }

    .about-us-hero-content-description {
        font-size: 1.4rem;
    }

    .about-us-title {
        font-size: 1.5rem;
    }

    .our-team-info,
    .our-team-info-two {
        padding: 1.5em 2em;
        gap: 1.5em;
    }

    .our-team-banner img {
        max-width: 250px;
    }

    .our-team-description,
    .our-team-description-two {
        font-size: 0.9rem;
    }

    .practice-areas-hero-container {
        background-image: url(images/practice-areas-hero-image_003.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100vh;
        padding-top: 10em;
    }

    .practice-areas-hero-content {
        font-size: 2rem;
        width: 65%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 8% 8% 0%;
    }


    .legal-services-hero-container {
        background-image: url(images/Legal-services-hero-image_003.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100vh;
        padding-top: 10em;
    }

    .legal-services-hero-content {
        font-size: 2rem;
        width: 60%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 10% 8% 5%;
        line-height: 3em;
    }

    .footer-top {
        padding: 2em 3%;
    }

    .footer-column {
        min-width: 200px;
    }

}

@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');




/* Responsive Design */

@media screen and (max-width: 999px){
    
    header{
        padding-left: 0px;
    }

}

@media screen and (max-width: 690px){
    header nav a{
        font-size: 14px;
        margin-right: 0;
    }
}

/* Extra large devices (large desktops, 1200px and up) */

@media (min-width: 993px) and (max-width:1200px) {}

/* Large Screens (1440px and above) */
@media (min-width: 1440px) {
    .section-one {
        background-size: auto;
        background-position: bottom left;
        background-repeat: no-repeat;
        padding: 0 4%;
    }

    
  .section-one-top-container {
    width: 60%;
    padding: 2em 4em;
    font-size: 1.3rem;
    line-height: 2em;
  }

  .get-legal-advice {
    width: 48%;
    padding-top: 0.5em;
    font-size: 0.8rem;
  }

  
  .why-select-us {
    width: 48%;
    padding-top: 2em;
  }

  .why-select-us-info,
  .get-legal-advice-info {
    font-size: 1.1rem;
    line-height: 1.8em;
  }

  .home-social-media-links {
    margin-top: 8em;
    font-size: 1.8rem;
    gap: 2em;
  }

   .icon-02 {
        display: block;
        width: 70px;
        position: absolute;
        top: 850px;
        left: calc(50% - 35px); /* centers based on icon width */
    }
        
  .section-two-top {
    height: 700px;
    background-size: cover;
    background-position: center;
    margin-top: 2em;
    padding: 2rem 0;
  }

  .practice-overview-cards {
    gap: 3rem;
    padding: 3rem 5%;
    max-width: 1600px;
    margin: 0 auto;
  }

  .overview-practice-card {
    flex: 1 1 320px;
    max-width: 380px;
    min-height: 400px;
    padding: 2rem;
    font-size: 1.05rem;
  }

  .overview-practice-card h3 {
    font-size: 1.4rem;
  }

  .overview-practice-card p {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .explore-btn,
  .see-all-btn {
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
  }

  .section-two-bottom {
    height: 680px;
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
  }

  .quick-booking {
    width: 40%;
    font-size: 2.2rem;
  }

  .quick-booking h4 {
    font-size: 3.5rem;
  }

  .fcf-form-class {
    width: 40%;
  }

  .fcf-form-control {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }

  .fcf-btn {
    font-size: 1.1rem;
  }

  .fcf-btn-lg {
    font-size: 1.3rem;
    padding: 0.6rem 1.2rem;
  }

}
