.contact-bg{
    height: 40vh;
    background: url('https://bookpropertyvisit.com/files/contact_landing_image.jpg');
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.contact-bg h3{
    font-size: 1.3rem;
    font-weight: 400;
    color:#fff;
}
.contact-bg h2{
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top:0;
    color:#fff;
}
.line div{
    margin: 0 0.2rem;
}
.line div:nth-child(1),
.line div:nth-child(3){
    height: 3px;
    width: 70px;
    background: #007BFF;
    border-radius: 5px;
}
.line{
    display: flex;
    align-items: center;
}
.line div:nth-child(2){
    width: 10px;
    height: 10px;
    background: #007BFF;
    border-radius: 50%;
}

.contact-section {
    text-align: center;
}
.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.chat-box {
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    background: #F5F7F9;
}
.chat-box:hover {
    transform: translateY(-5px);
}

.chat-box img{
    width:50px;
}

.iti{
    display:block !important
}

.py-80 {
    padding: clamp(48px, 4.167vw, 160px) 0;
}

.contact-details .heading,
.get-in-touch .heading{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: clamp(12px, 0.833vw, 24px);
}

.mb-64 {
    margin-bottom: clamp(32px, 3.33vw, 128px);
}

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #2F3D7E;
    text-transform: uppercase;
    font-size: clamp(14.5px, 1.042vw, 40px);
    font-weight: 500;
    line-height: 120%;
}

.eyebrow:before {
    content: "";
    width: clamp(24px, 1.66vw, 48px);
    height: 1px;
    background: #2F3D7E;
}

.contact-details h2,
.get-in-touch h2{
    font-size: clamp(32px, 2.552vw, 98px);
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.49px;
    color: #131110;
    margin-bottom: 0;
}

.contact-details .contact-detail-item {
    background: #F5F7F9;
    padding: 40px 12px 50px;
    border-radius: 20px;
    text-align: center;
}

.contact-details .contact-detail-item .icon-box {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    background:#246BFD;
    border-radius: 50px;
}

.contact-details img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.contact-details .contact-detail-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #131110;
}

.mb-16 {
    margin-bottom: 16px;
}

.get-in-touch{
    background: #F5F7F9;
}

.get-in-touch .contact-form {
    padding: 40px;
    border-radius: 20px;
    max-width: 600px; 
    margin: 0 auto;
}

.get-in-touch .contact-form .form-label {
    font-size: 16px;
    font-weight: 600;
    color: #131110;
    margin-bottom: 8px;
    display: block;
}

.get-in-touch .contact-form .form-control, 
.get-in-touch .contact-form .form-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.get-in-touch .contact-form .btn-primary {
    background: #246BFD;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.get-in-touch .contact-form .btn-primary:hover {
    background-color: #1E2A5C;
}

.about-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://bookpropertyvisit.com/files/mexilet office image.png') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    height:400px;
} 

.about-title {
    font-size: 3rem;
    color:#fff;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: slideIn 1.5s ease-in;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }
}

.mission-vision .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.mission-vision .section-subtitle {
    font-size: 1.2rem;
    color: #555;
}

.mission-vision .card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.mission-vision .icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f1f1;
    border-radius: 50%;
}

.mission-vision .card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.mission-vision .card-text {
    font-size: 1rem;
    color: #666;
}

@media (max-width: 768px) {
    .mission-vision .section-title {
        font-size: 2rem;
    }
    .mission-vision .section-subtitle {
        font-size: 1rem;
    }
    .mission-vision .card-title {
        font-size: 1.3rem;
    }
    .mission-vision .card-text {
        font-size: 0.9rem;
    }
    .mission-vision .card-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .mission-vision .icon-box {
        margin-bottom: 1rem;
    }
}

.who-we-are {
    background: #f9f9f9;
    overflow: hidden;
}

.who-we-are .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    animation: fadeInDown 1s ease-out;
}

.who-we-are .section-subtitle {
    font-size: 1.2rem;
    color: #555;
    animation: fadeIn 1.2s ease-out;
}

.who-we-are .who-we-are-content {
    animation: fadeInRight 1.5s ease-out;
}

.who-we-are .who-we-are-img {
    max-width: 100%;
    animation: fadeInLeft 1.5s ease-out;
    box-shadow:none !important;
}

.who-we-are .features-list {
    margin-top: 1rem;
}

.who-we-are .features-list li {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .who-we-are .who-we-are-content,
    .who-we-are .who-we-are-img {
        animation: fadeIn 1s ease-out;
    }

    .who-we-are .section-title {
        font-size: 2rem;
    }

    .who-we-are .section-subtitle {
        font-size: 1rem;
    }
}

.what-we-do {
    background: #ffffff;
}

.what-we-do .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    animation: fadeInDown 1s ease-out;
}

.what-we-do .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    animation: fadeIn 1.2s ease-out;
}

.what-we-do .service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1.5s ease-out;
}

.what-we-do .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.what-we-do .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f9f9f9;
    margin: 0 auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .what-we-do .section-title {
        font-size: 2rem;
    }

    .what-we-do .section-subtitle {
        font-size: 1rem;
    }

    .what-we-do .service-card {
        animation: fadeIn 1s ease-out;
    }
}

.our-clients {
    animation: fadeInUp 1.5s ease-out;
}

.our-clients .client-logo {
    max-width: 120px;
    margin: 0 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 50px;
}

.our-clients .client-logo:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .our-clients .section-title {
        font-size: 2rem;
    }

    .our-clients .section-subtitle {
        font-size: 1rem;
    }

    .our-clients .client-logo {
        max-width: 90px;
    }
}
