/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #1c1c1b;
    --white: #fff;
    --offwhite: #FFF0D3;
    --primary: #E4665E;
    --Dark-Red:#5D2D2F;
    --pale-yellow: #FFF0D3;
    --orange: #FFCEAB;
    --light-blue:#D9E4F8;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
}

body {
    color: #1c1c1b;
    font-family: 'Inter', sans-serif;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin: 24px 0;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#orange {
    background-color: var(--orange);
    color: var(--Dark-Red)
}

#yellow {
    background-color: var(--offwhite);
    color: var(--Dark-Red)
}

#dark-red {
    background-color: var(--Dark-Red);
    color: var(--white)
}

#light-blue {
    background-color: var(--light-blue);
    color: var(--Dark-Red)
}

#primary {
    background-color: var(--primary);
    color: var(--white)
}

#spaced {
    padding: 24px 0;
    line-height: 2;
}

#centered {
    align-self: center;
    text-align: center;
    justify-items: center;
    align-items: center;
    justify-content: center;
}

.landing-page {
    padding-bottom: 64px;
    margin: 9% 0;
}

.section {
    margin: 4% 2%;
}

.full-section {
    padding: 5% 0;
    margin: 0 0;
}

/* 🔹 Nav Links (Desktop) */
.navbar-collapse {
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 20px;
    padding-right: 20px;
}

.nav-item {
    margin: 16px;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-size: 1rem;
    font-weight: 600;
}

.nav-link:hover {
    color: var(--primary);
}

/* 🔹 Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--white);
    list-style: none;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 180px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    color: var(--black);
}

.dropdown-item:hover {
    background-color: var(--light-gray);
}

/* 🔹 Mobile Menu (Hidden by Default) */
.navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}


/* Get Started Button */
.btn-get-started {
    display: inline-block;
    grid-column-gap: 15px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    letter-spacing: -.36px;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    transition: transform .5s;
    white-space: nowrap;
}

.btn-get-started:hover {
    background-color: darken(var(--primary), 10%);
}

/* Services Section */
.dropping-texts {
    font-size: 3rem;
    display: flex; /* Ensure proper alignment */
    align-items: center;
    text-align: left;
    white-space: nowrap;
    width: 300px; /* Allows it to size dynamically */
    max-width: 100%; /* Ensures it doesn't overflow */
    overflow: hidden;
}

  .dropping-texts > div {
    font-size:0px;
    opacity:0;
    margin-left:-30px;
    position:absolute;
    font-weight:300;
  }

  .dropping-texts > div:nth-child(1) {
    animation: roll 5s linear 1 0s; /* Run once */
}
.dropping-texts > div:nth-child(2) {
    animation: roll 5s linear 1 1s; /* Run once */
}
.dropping-texts > div:nth-child(3) {
    animation: roll 5s linear 1 2s; /* Run once */
}
.dropping-texts > div:nth-child(4) {
    animation: roll2 5s linear 1 3s;
    animation-fill-mode: forwards;
}
  @keyframes roll {
    0% {
      font-size:0px;
      opacity:0;
      margin-left:-30px;
      margin-top:0px;
      transform: rotate(-25deg);
    }
    3% {
      opacity:1;
      transform: rotate(0deg);
    }
    5% {
      font-size:inherit;
      opacity:1;
      margin-left:0px;
      margin-top:0px;
    }
    20% {
      font-size:inherit;
      opacity:1;
      margin-left:0px;
      margin-top:0px;
      transform: rotate(0deg);
    }
    27% {
      font-size:0px;
      opacity:0.5;
      margin-left:20px;
      margin-top:100px;
    }
    100% {
      font-size:0px;
      opacity:0;
      margin-left:-30px;
      margin-top:0px;
      transform: rotate(15deg);
    }
  }

  @keyframes roll2 {
    0% {
      font-size:0px;
      opacity:0;
      margin-left:-30px;
      margin-top:0px;
      transform: rotate(-25deg);
    }
    3% {
      opacity:1;
      transform: rotate(0deg);
    }
    5% {
      font-size:inherit;
      opacity:1;
      margin-left:0px;
      margin-top:0px;
    }
    100% {
      font-size:inherit;
      opacity:1;
      margin-left:0px;
      margin-top:0px;
      transform: rotate(0deg);
    }
  }


.container-fluid {
    font-family: 'Inter', sans-serif; /* Default font for the body */
    width: 88%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    align-items: center;
}

*, ::after, ::before {
    box-sizing: border-box;
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}

.w-layout-grid {
    grid-row-gap: 16px;
    grid-column-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.c-button {
    display: inline-block;
    grid-column-gap: 15px;
    border: 1px solid var(--primary);
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    letter-spacing: -.36px;
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    transition: transform .5s;
    white-space: nowrap;
}

.content {
    font-family: 'Inter', sans-serif; /* Default font for the body */
    text-align: center;
    max-width: 820px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    width: 100%;
    max-width: 1500px;
}

.FAQ {
    width: 90.2%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 48px;
    padding-bottom: 118px;
}

.FAQ-section-top {
    background-color: var(--light-blue);
    background-image: url("/static/img/bottomleft.3b98e5435c53.png");
    background-size: auto 100%;
    background-repeat: no-repeat;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;
    padding: 96px 50px;
    font-size: 50px;
    line-height: 1.12;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.FAQ-list {
    grid-column-gap: 24px;
    grid-row-gap: 18px;
    flex-direction: column;
    width: 96.4%;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.FAQ-header {
    margin-left: 5%;
    font-size: 32px;
    font-weight: 450;
    text-align: left;
    padding-top: 48px;
}

.FAQ-container {
    cursor: pointer;
    border: 1px solid #efefef;
    border-radius: 16px;
    margin: 18px 0;
    padding: 24px 32px;
    transition: background-color .3s;
    text-align: left;
}

.FAQ-container.cc-active {
    max-height: auto; /* Adjust based on the content height */
    padding: 24 32px;
    border-color: var(--light-blue);
    background-color: var(--light-blue);
    text-align: left;
}

.FAQ-inner {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 24px;
    line-height: 1.2;
    display: flex;
}

.FAQ-answer {
    letter-spacing: -.36px;
    width: 90%;
    max-width: 1015px;
    max-height: 0;
    font-size: 18px;
    line-height: 1.38889;
    transition: padding .8s, max-height .4s;
    overflow: hidden;
}


.FAQ-answer.cc-show {
    max-height: 500px;
    padding-top: 20px;
}

.footer {
    background-color: var(--light-red);
    width: 100%;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-wrapper {
    background-color: var(--white);
    width: 100%;
}

.footer-inner {
    color: var(--grey);
    width: 77.5%;
    max-width: 1130px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 30px;
    position: relative;
}

.footer-header {
    margin-bottom: -12px;
    width: 100%;
}

.footer-head_top {
    background-color: var(--primary);
    color: var(--white);
    border-bottom-left-radius: 16px;
    justify-content: space-between;
    align-items: center;
    margin-right: 78px;
    margin-bottom: 78px;
    padding-top: 24px;
    padding-bottom: 27px;
    padding-left: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    line-height: 1;
    display: flex;
    position: relative;
    width: 100%;
}

.footer-flex {
    grid-column-gap: 18%;
    grid-row-gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    display: flex;
}

.footer-link_header {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.375;
}

.footer-links_wrapper {
    display: grid;
    justify-content: space-between;
    flex-grow: 1;
    align-items: flex-start;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.footer-flex_inner {
    flex: auto;
    max-width: 431px;
}

.location-details {
    font-weight: 600;
    font-size: 18;
    text-align: right;
}

.contact-details {
    display: flex;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-inner_bottom {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    justify-content: space-between;
    align-items: center;
    margin-top: 43px;
    margin-bottom: 25px;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 18px;
    line-height: 1.5;
    display: flex;
}

.footer-social-links {
    align-items: center;
    font-size: 16px;
    display: flex;
}

.social-links_flex {
    margin-right: 32px; /* Adjust margin as needed */
}

.social-link {
    margin-right: 32px; /* Adjust margin as needed */
    cursor: pointer;
    flex: none;
    width: 24px;
    height: 24px;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit; /* Keeps the text color the same as the normal state */
    text-decoration: none; /* Ensures no underline or other decoration on hover */
}


.w-inline-block {
    max-width: 100%;
    display: inline-block;
}


@media screen and (max-width: 991px) {
    .footer-head_top {
        margin-right: 60px;
        font-size: 25px;
    }

    .footer-header_bottom {
        background-size: 50%;
        width: 60px;
        height: 66px;
    }
    .footer-link {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {


    .footer-header_bottom {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
        width: 31px;
        height: 32px;
    }
    .footer-link {
        font-size: 14px;
    }
    .footer-links {
        width: 50%;
        padding-right: 50px;
    }
    .footer-links_wrapper  {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 481px) {

    .section {
        margin: 2% 5%;
    }

    .text-container {
        text-align: center;
    }

    .hello-text span {
        font-size: 5rem;
    }

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 42px;
    }

    p {
        font-size: 16px;
        line-height: 1.2;
    }
}
