@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    box-sizing: border-box;
    border: none;
    outline: none;
    font-family: "Jost", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

.top-banner {
    font-family: "Jost", serif;
    background-color: rgb(27, 98, 184);
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.top-banner-left{
    text-transform: uppercase;
    color: white;
    font-size: 2rem;
    font-weight: 700;

    @media(max-width:1299px) {
        font-size: 1.1rem;
    }

    @media(max-width:768px) {
        font-size: .95rem;
    }
}

.top-banner-right{
    text-transform: uppercase;
    color: white;
    font-size: 2rem;
    font-weight: 700;

    a{
        text-decoration: none;
        color: white;
        cursor: pointer;
    }

    @media(max-width:1299px) {
        font-size: 1.1rem;
    }

    @media(max-width:768px) {
        font-size: .95rem;
    }
}

.nav-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 1.25rem;
    width: 85%;
    margin: 0 auto;

    @media(max-width:1149px) {
        width: 95%;
    }

    @media(max-width:768px) {
        justify-content: center;
    }
}

.nav-banner-left-logos {
    width: 220px;
    height: auto;

    @media(max-width:1024px) {
        width: 180px;
    }
}

.nav-banner-right{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    min-width: 320px;

    a{
        font-size: 2.6rem;
        font-weight: 700;
        text-decoration: none;
        color: #003882;

        @media(max-width: 599px) {
            font-size: 1.6rem;
        }
    }

    svg{
        width: 42px;
        fill: #003882;

        @media(max-width: 599px) {
            width: 26px;
        }
    }
}

.main-banner {
    background-image: url("../img/HERO.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    gap: 2rem;

    @media(max-width: 1089px) {
        flex-wrap: wrap;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

.main-banner-right-content{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 700px;
    
    @media(max-width:1089px) {
        min-height: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.main-banner-left-content{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 700px;
    padding: 2rem 0;

    @media(max-width:1089px) {
        min-height: fit-content;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    img{
        width: 400px;

        @media(max-width:699px) {
            width: 275px;
        }
    }
}

.main-banner-form-div {
    padding: 1rem 2rem;
    width: 700px;
    min-height: 700px;
    background-color: #ffffff99;

    @media(max-width: 1399px) {
        width: 550px;
    }

    @media(max-width: 529px) {
        width: 100%;
    }
}

.offer-form {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.form-row {
    display: flex;
    gap: .75rem;
}

.full-width {
    width: 100%;
}

select{
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 3px rgba(0,0,0,.15);
    cursor:pointer;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;

    @media(max-width: 789px) {
        padding: 1rem;
    }

    @media(max-width: 529px) {
        padding: .75rem;
        font-size: .9rem;
    }
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 3px rgba(0,0,0,.15);

    @media(max-width: 789px) {
        padding: 1rem;
    }

    @media(max-width: 529px) {
        padding: .75rem;
        font-size: .9rem;
    }
}

.hiden_label{
    font-size: 1px;
    position: absolute;
  }

.form-button {
    font-family: 'Open Sans', sans-serif;
    padding: 1rem;
    font-size: 2rem;
    font-weight: 500;
    background-color: rgb(27, 98, 184);
    color: white;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 1rem;
    text-transform: uppercase;

    @media(max-width: 789px) {
        padding: .75rem;
        font-size: 1.4rem;
    }

    @media(max-width: 529px) {
       font-size: 1.2rem;
    }
}

.claim-offer {
    background-color: rgb(27, 98, 184);
    border-radius: 12px;
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2rem;
    padding-left: .25rem;
    padding-right: .25rem;

    @media(max-width: 1399px) {
        font-size: 2.4rem;
    }

    @media(max-width: 789px) {
       font-size: 1.8rem;
    }

    @media(max-width: 589px) {
        font-size: 1.2rem;
     }
}

.inputDiv{
    line-height: 18px;
    font-size: .95rem;
    color: black;
    font-weight: 500;

    @media(max-width: 789px) {
        font-size: .85rem;
    }

    a{
        color: black;
    }
}

.first-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    gap: 4rem;

    @media(max-width: 1099px) {
        flex-wrap: wrap;
        padding: 2rem;
    }

    @media(max-width: 786px) {
        padding: 2rem 1rem;
    }
}

.first-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    width: 45%;
    min-width: 480px;

    @media(max-width: 1099px) {
        min-width: 98%;
        width: 98%;
    }

    h2 {
        font-size: 3rem;
        color: #003882;

        @media(max-width: 1299px) {
            font-size: 2rem;
        }
    }

    p{
        font-size: 1.4rem;

        @media(max-width: 1299px) {
            font-size: 1.2rem;
        }

        @media(max-width: 599px) {
           font-size: 1rem;
        }
    }
}

.first-right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;

    @media(max-width: 599px) {
        width: 98%;
    }

    img{
        width: 620px;
        border-radius: 2rem;

        @media(max-width: 1299px) {
            width: 520px;
        }

        @media(max-width: 599px) {
            width: 100%;
        }
    }
}

.second-section{
    background-color: #EFEFEF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    padding: 4rem;

    @media(max-width: 1099px) {
        gap: 2rem;
        padding: 2rem;
    }

    @media(max-width: 786px) {
        padding: 2rem 1rem;
    }

    h2 {
        font-size: 3rem;
        color: #003882;
        text-align: center;

        @media(max-width: 1299px) {
            font-size: 2rem;
        }
    }
}

.second-inside{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.second-single{
    width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    height: 350px;

    @media(max-width: 780px) {
        width: 98%;
        gap: 1rem;
        height: 300px;
    }

    svg {
        width: 64px;
        fill: #003882;
    }

    h3 {
        font-size: 1.5rem;
        color: #003882;
        text-align: center;

        height: 80px;

        @media(max-width: 1099px) {
            height: 40px;
        }

        @media(max-width: 786px) {
            font-size: 1.25rem;
        }
    }

    p{
        font-size: 1.2rem;
        text-align: left;

        @media(max-width: 786px) {
            font-size: 1rem;
        }
    }

    a{
        color: #003882;
    }
}

.blue-banner {
    background-color: #003882;
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;

    @media(max-width: 1289px) {
        flex-wrap: wrap;
        justify-content: center;
    }

    @media(max-width: 786px) {
        padding: 2rem 1rem;
    }

    h3 {
        font-size: 2rem;
        color: white;
        text-align: center;

        @media(max-width: 786px) {
            font-size: 1.4rem;
        }
    }

    a{
        font-family: 'Open Sans', sans-serif;
        padding: 1rem 2rem;
        font-size: 1.6rem;
        font-weight: 700;
        background-color: #BF4C50;
        color: white;
        border-radius: 12px;
        cursor: pointer;
        color: white;
        text-decoration: none;

        @media(max-width: 789px) {
            padding: .75rem;
            font-size: 1.2rem;
        }
    }
}

.third-section{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    gap: 2rem;

    @media(max-width: 1199px) {
        flex-wrap: wrap;
    }

    @media(max-width: 786px) {
        padding: 2rem 1rem;
    }
}

.third-left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;

    @media(max-width: 1199px) {
        width: 98%;
    }

    img{
        height: 520px;
        width: 520px;
        border-radius: 2rem;

        @media(max-width: 786px) {
            height: 420px;
            width: 420px;
        }

        @media(max-width: 599px) {
            width: 80%;
        }

        @media(max-width: 499px) {
            width: 98%;
        }
    }
}

.third-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    width: 45%;
    min-width: 590px;

    @media(max-width: 1199px) {
        min-width: 98%;
        width: 98%;
        gap: 2rem;
    }

    h2 {
        font-size: 3rem;
        color: #003882;

        @media(max-width: 1299px) {
            font-size: 2rem;
        }
    }

    p{
        font-size: 1.4rem;

        @media(max-width: 1299px) {
            font-size: 1.2rem;
        }

        @media(max-width: 786px) {
            font-size: 1rem;
        }
    }

    a{
        font-family: 'Open Sans', sans-serif;
        padding: 1rem 3rem;
        font-size: 1.6rem;
        font-weight: 700;
        background-color: #003882;
        color: white;
        border-radius: 12px;
        cursor: pointer;
        width: fit-content;
                color: white;
        text-decoration: none;

        @media(max-width: 789px) {
            padding: .75rem;
            font-size: 1.4rem;
        }

        @media(max-width: 529px) {
        font-size: 1.2rem;
        }
    }
}

.fourth-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 4rem 2rem;
    gap: 6rem;

    @media(max-width: 1199px) {
        flex-wrap: wrap;
    }

    @media(max-width: 786px) {
        padding: 2rem 1rem;
    }

    h2 {
        font-size: 3rem;
        color: #003882;

        @media(max-width: 1299px) {
            font-size: 2rem;
        }
    }
}

.fourth-inside{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.fourth-single{
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    height: 140px;
    background-color: #3A98E015;
    border-radius: 12px;

    img {
        width: 24px;
        fill: #003882;
    }

    p{
        font-size: 1.1rem;
        color: #003882;
        font-weight: 600;
        text-align: center;
    }
}

.customers {
    position: relative;
    margin-top: 6rem;
    background-image: url("../img/client_say.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 620px;
    padding-left: 1rem;
    padding-right: 1rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    h2 {
        color: white;
        font-size: 2rem;
        position: relative;
        z-index: 1;

        @media(max-width: 1099px) {
            font-size: 1.6rem;
        }

        @media(max-width: 649px) {
            font-size: 1.2rem;
            text-align: center;
        }
    }

    svg {
        width: 32px;
        position: relative;
        z-index: 1;
        fill: white;
        
        @media(max-width: 1099px) {
            width: 24px;
        }
    }

    &::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.3); 
        z-index: 0;
    }
}

.customer-say{
    color: white;
    width: 50%;
    position: relative;
    z-index: 1;
    font-size: 1.2rem;

    @media(max-width: 1099px) {
        font-size: 1rem;
        width: 75%;
    }

    @media(max-width: 786px) {
        width: 98%;
    }
}

.customer-name{
    color: white;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    font-weight: 700;

    @media(max-width: 1099px) {
        font-size: 1.2rem;
    }

    @media(max-width: 649px) {
        font-size: 1rem;
    }
}

.dots{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;

    @media(max-width: 1099px) {
        margin-top: 0;
    }

    position: relative;
    z-index: 1;
}

.dot{
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 1;

    @media(max-width: 1099px) {
        width: 14px;
        height: 14px;
    }
}

.review {
    display: none;
    text-align: center;
  }
  
  .review.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  
  .dot.active {
    background-color: #003882;
  }

.fifth-section{
    margin-top: 4rem;

    @media(max-width: 599px) {
        margin-top: 2rem;
    }

 h2{
    font-size: 3rem;
    color: #003882;
    text-align: center;
    margin-bottom: 2rem;

    @media(max-width: 1299px) {
        font-size: 2rem;
    }
 }
}

.carousel-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .main-image-wrapper {
    position: relative;
  }

  #mainImage {
    width: 100%;
    height: auto;
    border-radius: 8px;

    @media(max-width: 1099px) {
        width: 80%;
    }
  }

  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    border: none;
    color: #2F4E6B;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 1;
  }

  .arrow.left {
    left: -70px;

    @media(max-width: 1099px) {
        left: 10px;
        font-size: 2rem;
    }

    @media(max-width: 599px) {
        left: 0;
    }
  }

  .arrow.right {
    right: -70px;

    @media(max-width: 1099px) {
        right: 10px;
        font-size: 2rem;
    }

    @media(max-width: 599px) {
        right: 0;
    }
  }

  .thumbnail-row {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .thumbnail {
    width: 100px;
    height: auto;
    cursor: pointer;
    opacity: 0.7;
    border-radius: 4px;
    transition: 0.3s ease;

    @media(max-width: 699px) {
        width: 64px;
    }

    @media(max-width: 599px) {
        width: 48px;
    }
  }

  .thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
  }

.footer {
    background-color: #003882;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;

    @media(max-width:1024px) {
        padding: 2rem;
    }

    @media(max-width:768px) {
        padding: 1rem;
    }

    p{
        color: white;
        font-size: 1.1rem;
        width: 70%;
        text-align: center;

        @media(max-width: 786px) {
            width: 98%;
            font-size: .9rem;
        }
    }

    a{
        color: white;
    }
}

#successContent {
    display: none;
    padding: 4rem;
    background-color: white;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    @media(max-width:1024px) {
        padding: 2rem;
    }
}

#thankYou {
    color: rgb(27, 98, 184);
    font-size: 4rem;
    font-family: "Bree Serif", serif;
    text-align: center;
    font-weight: 300;
    margin-top: 1rem;

    @media(max-width:1024px) {
       font-size: 2rem;
    }
  }
  
  #yourRequest {
    color: rgb(27, 98, 184);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 1rem;
    width: 100%;

    @media(max-width:1024px) {
        font-size: 1rem;
     }
  }
  
  #successCheckIcon {
    width: 200px;
    fill: rgb(27, 98, 184);
    margin-left: auto;
    margin-right: auto;
    display: block;

    @media(max-width:1024px) {
        width: 80px;
     }
  }

  .error-message {
    color: red;
    display: none;
    font-weight: 500;
    font-size: .9rem;

    @media(max-width:768px) {
        font-size: .7rem;
    }
  }

  .floating-container {
    font-family: 'Roboto', sans-serif;
    background-color: white;
    padding: 1.5rem;
    border-radius: 24px 24px 0 24px;
    box-shadow: 3px 5px 8px rgba(0,0,0,.15);
    position: fixed;
    right: 2%;
    bottom: 3%;
    text-align: left;
    font-size: .9rem;
    line-height: 1.5rem;
    width: 540px;
    z-index: 9;
  
    @media(max-width:1024px) {
        width: 75%;
        padding: 1.5rem;
    }
  
    @media(max-width:768px) {
        width: 95%;
    }
  
    a{
        color: #0077b6;
    }
  }
  
  .floating-container-buttons{
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  }
  
  .floating-button {
    padding: 1rem;
    font-size: 1rem;
    min-width: 140px;
    margin: 0;
    cursor: pointer;
    background-color: #204D9C;
    color: white;
    border-radius: 12px;
  
    @media(max-width:1024px) {
        padding: .75rem;
    }
  }
  
  .floating-fake-button{
    text-decoration: underline;
    cursor: pointer;
    font-size: .95rem;
  }
  
  .declined-content {
    text-align: center;
    color: white;
    margin-top: 30%;
    
    @media (max-width: 1373px) {
        margin-top: 50%;
    }
    
    @media (max-width: 1024px) {
        margin-top: 0;
    }
    
    
  }
  
  .declined-content h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
  
    @media(max-width:1373px) {
        font-size: 2rem;
    }
  
  }
  
  .declined-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 5px 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
  
    @media(max-width:1373px) {
        font-size: 1.6rem;
    }
      
  }
  
  .reset-span {
    text-decoration: underline;
    cursor: pointer;
  }


  .not-accepted-disclaimer{
    display: none;
    min-width: 320px;

    h2{
        color: white;
        font-size: 3.5rem;
        text-align: center;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);

        @media (max-width: 1024px) {
            font-size: 2rem;
        }
    }

    p{
        color: white;
        font-size: 2.5rem;
        text-align: center;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);

        @media (max-width: 1024px) {
            font-size: 1.4rem;
        }
    }
  }

  .checkbox_label{
    margin-right: .5rem;
  }

  .active-thumbnail {
    border: 2px solid #007bff; /* Blue border */
    border-radius: 5px;
    opacity: 0.7;
  }