body {
    font-family: "Jost", sans-serif !important;
}

.property-search-box {
    background: #f8fafc;
    border-radius: 30px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.4);
    width: 90%;
    padding: 35px 40px 25px;
    position: relative;
}

.property-options {
    position: absolute;
    top: -25px;
    left: 40px;
    background: #f8fafc;
    border-radius: 30px;
    padding: 10px 25px;
    display: flex;
    align-items: center;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.4);
    gap: 30px;
}

.property-options .form-check-label {
    font-weight: 600;
    font-size: 15px;
    color: #0b2c3d;
}

.property-options .form-check-input {
    accent-color: #ec6325;
    margin-right: 6px;
    border: 1px solid #6c6b6b;
}

.search-fields .form-control,
.search-fields .form-select {
    background: #eaf0f5;
    border: 1px solid #00000026 !important;
    /* height: 56px; */
    border-radius: 18px;
    padding: 18px 45px 18px 30px;
    font-size: 15px;
}

.search-fields .form-control:focus,
.search-fields .form-select:focus {
    box-shadow: none;
    border: 1px solid #ec6325 !important;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ec6325;
    font-size: 18px;
    pointer-events: none;
}

.btn-search {
    margin: 0;
    width: 100%;
    padding: 18px 30px;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    color: #fff;
    border-radius: 18px;
    background-image: linear-gradient(90deg, #ec6325, #ec6325, #0b2c3d, #0b2c3d);
    background-size: 300% 100%;
    background-position: left center;
    border: none;
    transition: all 0.5s ease;
    cursor: pointer;
}

.btn-search:hover {
    background-position: right center;
    color: #fff;
    box-shadow: 0 5px 15px rgba(236, 99, 37, 0.4);
}

@media (max-width: 992px) {
    .property-options {
        flex-wrap: wrap;
        top: -20px;
        left: 25px;
        padding: 8px 18px;
        gap: 20px;
    }

    .property-search-box {
        padding: 55px 25px 25px;
    }
}

/* -------------------------
        HERO SECTION
------------------------- */
.owl-carousel .item {
    position: relative;
    height: 60vh;
    background-size: cover;
    background-position: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.overlay h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.owl-theme .owl-dots .owl-dot.active span {
    background-color: #ec6325 !important;
}

.owl-theme .owl-dots .owl-dot span {
    margin-top: -60px !important;
    z-index: 999 !important;
    position: relative !important;
}

/* Responsive */
@media (max-width: 768px) {
    .overlay h2 {
        font-size: 2rem;
    }

    .overlay p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .overlay h2 {
        font-size: 1.5rem;
    }

    .overlay p {
        font-size: 0.9rem;
    }
}

/* -------------------------
        ABOUT SECTION
------------------------- */
.about-section {
    background-image: url('../img/about-2-shape.png');
    background-position: bottom left;
    background-repeat: no-repeat;
    padding: 70px 0;
}

.image-collage {
    position: relative;

}

.image-collage .image1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    z-index: 2;
    border: 6px solid #fff;
}

.image-collage .image2 {
    position: absolute;
    bottom: -40px;
    right: 28px;
    width: 55%;
    height: 42%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    z-index: 3;
    border: 6px solid #fff;
    transform: rotate(3deg);
    transition: transform 0.35s ease;
}

.image-collage .image2:hover {
    transform: rotate(0deg) scale(1.03);
}

.about-title {
    color: #ec6325;
    position: relative;
    letter-spacing: normal;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
    margin-left: 40px;
}

.about-title:before,
.about-title:after,
.about-title .double-line:before,
.about-title .double-line:after {
    content: "";
    position: absolute;
    height: 2px;
}

.about-title:before {
    width: 20px;
    background-color: #ec6325;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
}

.about-title:after {
    width: 12px;
    background-color: #0b2c3d;
    top: calc(50% - 5px);
    right: -32px;
    transform: translateY(-50%);
}

.about-title .double-line:before {
    width: 20px;
    background-color: #ec6325;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
}

.about-title .double-line:after {
    width: 12px;
    background-color: #0b2c3d;
    top: calc(50% - 5px);
    left: -32px;
    transform: translateY(-50%);
}

.about-content h2 {
    font-size: 1.8rem;
    color: #222;
    margin-bottom: 10px;
}

.about-content p {
    color: #000;
    line-height: 1.7;
    font-size: 17px;
}

.about-content .fw-bold {
    color: #ec6325 !important;
}

.icon-box {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 20px;
}

.icon-box i {
    color: #ec6325;
    font-size: 20px;
    background: rgba(13, 110, 253, 0.08);
    padding: 30px 27px;
    border-radius: 50px;
}

.owner-card {
    margin-top: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.owner-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ec6325;
}

@media (max-width: 991px) {
    .about-section {
        padding: 50px 0;
    }

    .image-collage {
        height: auto;
        padding-bottom: 20px;
    }

    .image-collage .image1 {
        border-width: 5px;
    }

    .image-collage .image2 {
        width: 60%;
        height: auto;
        bottom: -20px;
        right: 15px;
        transform: rotate(2deg);
    }

    .about-content {
        margin-top: 60px !important;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    .icon-box span {
        font-size: 15px;
    }

    .owner-card {
        padding: 12px;
    }
}

@media (max-width: 767px) {
    .row.align-items-center {
        flex-direction: column;
    }

    .about-section {
        padding: 40px 0;
    }

    .image-collage {
        height: auto;
        flex-direction: column;
        padding-bottom: 0;
    }

    .image-collage .image1,
    .image-collage .image2 {
        position: relative;
        width: 100%;
        height: auto;
        transform: none;
        border-width: 4px;
        margin-bottom: 15px;
    }

    .about-title {
        margin: 0 auto 12px;
        font-size: 15px;
        text-align: center;
    }

    .about-content {
        text-align: center;
        padding: 0 10px;
    }

    .about-content h2 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    .icon-box {
        flex-direction: row;
        text-align: center;
    }

    .icon-box i {
        margin-bottom: 8px;
        padding: 16px;
    }

    .owner-card {
        flex-direction: column;
        text-align: center;
    }

    .owner-card img {
        width: 70px;
        height: 70px;
    }
    
    .alert {
        width: 100% !important;
    }
}

/* -------------------------
        PROPERTY SECTION
------------------------- */
.sub-title {
    color: #ec6325;
    margin: 10px auto;
    position: relative;
    letter-spacing: normal;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: fit-content;
}

.sub-title:before {
    width: 20px;
    background-color: #ec6325;
    position: absolute;
    content: "";
    height: 2px;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
}

.sub-title:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 12px;
    background-color: #0b2c3d;
    top: calc(50% - 5px);
    right: -32px;
    transform: translateY(-50%);
}

.sub-title .double-line:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 20px;
    background-color: #ec6325;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
}

.sub-title .double-line:after {
    position: absolute;
    content: "";
    height: 2px;
    width: 12px;
    background-color: #0b2c3d;
    top: calc(50% - 5px);
    left: -32px;
    transform: translateY(-50%);
}

.animated-text span {
    display: inline-block;
}

.property-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.property-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 20px;
    background-color: #fff;
    color: #000;
    cursor: pointer;
    border: 1px solid #c7d5e1;
    transition: all 0.5s ease;
    background-image: linear-gradient(90deg, #fff, #fff, #ec6325, #ec6325);
    background-size: 300% 100%;
    background-position: left center;
}

.property-tab:hover {
    background-position: right center;
    color: #fff;
    border-color: #ec6325;
    box-shadow: 0 5px 15px rgba(236, 99, 37, 0.4);
}

.property-tab.active {
    background-color: #ec6325;
    color: #fff;
    border-color: #ec6325;
    background-image: none;
    box-shadow: 0 5px 15px rgba(236, 99, 37, 0.4);
}

.property-tab img {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    object-fit: cover;
}

.property-tab span {
    font-size: 16px;
    font-weight: 600;
    margin-left: 5px;
}

/* -------------------------
    PROPERTY CARD SECTION
------------------------- */
.property-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-img {
    position: relative;
}

.property-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.property-img .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ec6325;
    color: #fff;
    font-size: 12px;
    border-radius: 12px;
    padding: 5px 12px;
}

.property-price {
    position: absolute;
    bottom: 10px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 18px;
}

.property-info {
    padding: 20px;
}

.property-info h5 {
    font-weight: 600;
    color: #000;
}

.property-info p {
    font-size: 14px;
    color: #000;
}

.property-info .fa-location-dot {
    color: #ec6325;
}

.property-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}

.property-details i {
    color: #0b2c3d;
    margin-right: 5px;
}

.swiper-wrapper {
    padding-bottom: 55px;
}

.swiper-pagination {
    margin-top: 15px;
    position: relative;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #ec6325;
}

.alert {
    border: 1px solid #c7d5e1 !important;
    border-radius: calc(2.5em + 10px) !important;
    padding: 12px 30px !important;
    width: 35%;
    text-align: center;
    box-sizing: border-box;
}

.alert strong {
    color: red;
}

@media(max-width: 768px) {
    .property-tab {
        padding: 8px 15px;
    }
}

/* -------------------------
        SEARCH SECTION
------------------------- */
.property-card {
    border-radius: 0px;
}

.search-result {
    margin: 0;
    width: 100%;
    display: block;
    padding: 14px 30px;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: #fff;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    text-decoration: none;
    background-image: linear-gradient(90deg, #ec6325, #ec6325, #0b2c3d, #0b2c3d);
    background-size: 300% 100%;
    background-position: left center;
    border: none;
    transition: all 0.5s ease;
    cursor: pointer;
}

.search-result:hover {
    background-position: right center;
    color: #fff;
    box-shadow: 0 5px 15px rgba(236, 99, 37, 0.4);
}

/* -------------------------
PROPERTY DETAILS SECTION
------------------------- */
.gallery-container {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.main-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.property-date {
    color: #000;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fa-calendar-days {
    color: #ec6325
}

.property-description {
    font-size: 32px;
    color: #000;
    font-weight: 600;
    margin-top: 8px;
}

.property-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 15px;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
}

.call-btn {
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 18px;
    background-image: linear-gradient(90deg, #ec6325, #ec6325, #0b2c3d, #0b2c3d);
    background-size: 300% 100%;
    background-position: left center;
    border: none;
    transition: all 0.5s ease;
}

.call-btn:hover {
    background-position: right center;
    color: #fff;
    box-shadow: 0 5px 15px rgba(236, 99, 37, 0.4);
}

.location {
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 15px;
    justify-content: space-between;
}

.property-location {
    margin-bottom: 10px;
    font-size: 18px;
}

.property-location i {
    color: #ec6325;
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}

.icons i {
    color: #ec6325;
}

.accordion-button {
    background-color: #ec6325;
    color: #fff;
    font-weight: 500;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background-color: #ec6325;
    color: #fff;
}

.accordion-item {
    border: none;
    margin-top: 15px;
    border-radius: 10px !important;
}

.accordion-body {
    border-top: 1px solid #eee;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
}

.contact {
    color: #ec6325;
}

/* -------------------------
    GALLERY SECTION
------------------------- */
.collage-gallery {
    display: grid;
    grid-template-areas:
        "large medium1 medium2"
        "small1 small2 small3"
        "wide1 wide1 wide2";
    grid-gap: 1rem;
}

.collage-item {
    overflow: hidden;
    border-radius: 14px;
    position: relative;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.collage-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.collage-large {
    grid-area: large;
    height: 250px;
}

.collage-medium:nth-of-type(2) {
    grid-area: medium1;
    height: 250px;
}

.collage-medium:nth-of-type(3) {
    grid-area: medium2;
    height: 250px;
}

.collage-small:nth-of-type(4) {
    grid-area: small1;
    height: 180px;
}

.collage-small:nth-of-type(5) {
    grid-area: small2;
    height: 180px;
}

.collage-small:nth-of-type(6) {
    grid-area: small3;
    height: 180px;
}

.collage-wide:nth-of-type(7) {
    grid-area: wide1;
    height: 260px;
}

.collage-wide:nth-of-type(8) {
    grid-area: wide2;
    height: 260px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(236, 99, 37, 0.9);
}

@media (max-width: 992px) {
    .collage-gallery {
        grid-template-areas:
            "large medium1"
            "medium2 small1"
            "small2 small3"
            "wide1 wide2";
    }

    .collage-large {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .collage-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "large large"
            "medium1 medium2"
            "small1 small2"
            "small3 wide1"
            "wide2 wide2";
    }

    .collage-item {
        height: 220px !important;
    }
}

@media (max-width: 576px) {
    .collage-gallery {
        display: flex;
        flex-direction: column;
    }

    .collage-item {
        height: auto !important;
    }
}

/* -------------------------
    PARTNERS SECTION
------------------------- */
.partners-section {
    overflow: hidden;
    width: 100%;
}

.partners-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: slidePartners 25s linear infinite;
    width: max-content;
}

.partner-logo {
    max-width: 180px;
    height: auto;
    flex-shrink: 0;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.08);
    opacity: 1;
}

@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1200px) {
    .partner-logo {
        max-width: 150px;
    }
}

@media (max-width: 992px) {
    .partners-track {
        gap: 30px;
        animation-duration: 20s;
    }

    .partner-logo {
        max-width: 120px;
    }
}

@media (max-width: 768px) {
    .partners-track {
        gap: 20px;
        animation-duration: 15s;
    }

    .partner-logo {
        max-width: 100px;
    }
}

/* -------------------------
        CONTACT SECTION
------------------------- */
.contact-section {
    background-image: url('../img/bg-full-5.png');
    background-position: bottom center;
    background-repeat: no-repeat;
}

/* -------------------------
    About Us Page CSS
------------------------- */
#why-choose-us {
    background-image: url('../img/why-choose-us.png');
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-position: center;
    /* height: 80vh; */
}

.why-card {
    background: transparent;
    border: none;
    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border: 2px solid #ec6325;
    border-radius: 50%;
    background-color: #ec6325;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.why-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

.why-card:hover .why-icon {
    background-color: #0b2c3d;
    border-color: #fff;
}

.why-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ec6325;
}

.why-text {
    color: #fff;
    line-height: 1.7;
    font-size: 17px;
}

.why-card.text-center.p-4 {
    border: 1px solid white;
    border-radius: 20px;
}

.process-card { 
    background: #fff;
    box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    margin-top: 50px;
    padding: 85px 30px 40px;
    transition: 0.4s;
    z-index: 1;
}

.process-card_bg-shape {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    z-index: -1;
}

.process-card_bg-shape img {
    width: 100%;
}

.process-card_icon {
    width: 100px;
    height: auto;
    line-height: 100px;
    border-radius: 0;
    background: #fff;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.6s;
    box-shadow: 0px 6px 30px 0px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
}

.process-card_icon img {
    transition: 0.6s;
    transform: rotateY(0deg);
}

.process-card_icon:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    height: 12px;
    width: 22px;
    background: transparent;
    border-top: 12px solid #fff;
    border-right: 11px solid transparent;
    border-left: 11px solid transparent;
    border-bottom: 0;
    transform: translate(-50%, 0);
    transition: 0.4s;
}

.process-card_subtitle {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
    color: #000;
    transition: 0.4s;
}

.process-card_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
    transition: 0.4s;
    color: #000;
}

.process-card_text {
    margin-bottom: -0.5em;
    margin: 0 0 18px 0;
    color: #000;
    line-height: 1.75;
    transition: 0.4s;
}

.process-card:hover {
    background: #0b2c3d;
}

.process-card:hover .process-card_subtitle,
.process-card:hover .process-card_title,
.process-card:hover .process-card_text {
    color: #fff;
}

.process-card:hover .process-card_icon {
    background: #ec6325;
    transform: translateX(-50%) rotateY(180deg);
}

.process-card:hover .process-card_icon img {
    transform: rotateY(180deg);
}

.process-card:hover .process-card_icon:after {
    border-top-color: #ec6325;
}

@media (max-width: 992px) {
    #why-choose-us {
        background-size: cover;
        height: 102vh;
    }
} 

@media (max-width: 768px) {
    #why-choose-us {
        background-size: cover;
        height: 200vh;
    }
    
    .location {
        display: block !important;
    }
} 

/* -------------------------
    Contact Us Page CSS
------------------------- */
#contact-banner {
    position: relative;
    background-image: url('../img/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    background-color: rgba(0,0,0,0.5);
    background-blend-mode: darken;
    z-index: 1;
}

#contact-banner h2 {
    position: relative;
    z-index: 1;
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact__us--info__list {
    gap: 2rem;
    padding: 2rem;
    border-radius: 1rem;
    background: #fff;
    transition: 0.3s;
    margin-bottom: 1rem;
}

.contact__us--info__icon {
    color: #ec6325;
}

.contact__us--info__title {
    line-height: 2rem;
    font-size: 22px;
    color: #0b2c3d;
    font-weight: 600;
    transition: 0.3s;
}

.contact__us--info__text {
    font-size: 17px;
    line-height: 2rem;
    font-weight: 500;
}

.contact__us--info__text a {
    color: #000;
    transition: .5s;
}

.contact__us--info__text a:hover {
    color: #ec6325;
}

/* -------------------------
    NRI Section Page CSS
------------------------- */
.faq-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 70px;
}

.faq {
    border-bottom: 1px solid #eee;
}

.faq:last-child {
    border-bottom: none;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.faq-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0b2c3d;
    transition: .5s;
}

.faq-title:hover {
    color: #ec6325;
}

.faq.active .faq-title {
    color: #ec6325;
}

.faq-icon {
    font-size: 1.2rem;
    color: #ec6325;
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.faq.active .faq-content {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 10px;
}

.faq-content p {
    margin: 0;
    padding: 0 0 10px 0;
    color: #000;
    line-height: 1.6;
}

#cta-bg {
    background-color: #0b2c3d;
    padding: 70px;
    border-radius: 40px;
    margin-bottom: 50px;
    width: 80%;
}

.cta-title {
    color: #fff;
    text-align: center;
}

.cta-description {
    color: #fff;
    text-align: center;    
}

#cta-bg button {
    width: 20%;
}

.cta-btn {
    padding: 12px 30px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    border-radius: 18px;
    background-image: linear-gradient(90deg, #ec6325, #ec6325, #fff, #fff);
    background-size: 300% 100%;
    background-position: left center;
    border: none;
    transition: all 0.5s ease;
}

.cta-btn:hover {
    background-position: right center;
    color: #0b2c3d;
    box-shadow: 0 5px 15px rgba(236, 99, 37, 0.4);
}

@media (max-width: 992px) {
    #cta-bg {
        padding: 35px;
        width: 90%;
    }

    #cta-bg button {
        width: 80%;
    }
} 

@media (max-width: 768px) {
    #cta-bg {
        padding: 35px;
        width: 90%;
    }

    #cta-bg button {
        width: 80%;
    }
} 