/* Global Styles */
html, body {
    width: 100%;
    /* overflow-x: hidden; */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

* {
    max-width: 100vw;
    box-sizing: border-box;
}

/* Navbar adjustment for fixed positioning */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Ensures the navbar takes full width */
    max-width: 100vw; /* Prevents overflow */
}

body {
    font-family: 'outfit','Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background-color: #000;
    z-index: 9999;
    position: fixed;
    width: 100%;
    height: 100px;
    top: 0;
}

.nav-link {
    color: #fff !important;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #ffcc00 !important;
}

.btn-warning {
    background-color: #ffcc00;
    border: none;
    color: #000;
    font-weight: bold;
}
.logo{
    height: 50px;
    width: auto;
}

.dropdown-item:hover{
    color: #ffcc00;
    background-color: #000000;
}

/* Hover dropdown */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.dropdown-menu {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}


@media (max-width: 480px) {
.navbar>.container, .navbar>.container-fluid, .navbar>.container-lg, .navbar>.container-md, .navbar>.container-sm, .navbar>.container-xl, .navbar>.container-xxl{
    background-color: black;
    padding-bottom: 15px;
}
}









/* Hero Section */

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, rgba(0,0,0,1) 70%, rgba(255,204,0,1) 30%);
    color: white;
    padding: 60px 0;
    text-align: center;
    padding-bottom: 20px;
}

/* Centered Overlay Hero Image */
.hero-overlay {
    position: relative;
    width: 100%;
}

.center-hero-image {
    width: 90%;
    max-width: 1400px;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 50px;
    margin-top: 57px;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    max-width: 1200px;
    text-align: left;
}

.hero-text {
    flex: 1;
    padding: 20px;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: bold;
}



.arrow-container {
    position: absolute;
    top: 155px;
    left: 5%;
    width: 300px;
    height: auto;
}

.arrow-svg {
    width: 100%;
    height: auto;
}

.description {
    font-size: 1rem;
    margin-bottom: 20px;
    font-family: 'Inter';
}

.gigi-bg {
    position: relative;
}

.gigi-bg::after {
    content: 'GIGI';
    font-family: 'Inter';
    font-size: 13rem;
    color: rgba(255, 255, 255, 0);
    position: absolute;
    top: -20px;
    left: 0;
    z-index: -1;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #ffffff2b;
}

/* Form Container */
.form-container {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #ffcc00;
    flex: 1;
    max-width: 400px;
    margin-left: 20px;
}

.form-container h2 {
    margin-bottom: 10px;
    font-size: 30px;
    text-align: center;
}

.form-container p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-align: center;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: none;
}
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-form-control-bg);
    border-color: #ffcc00 !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem #ffcc0050 !important;
}

.form-check-label {
    font-size: 0.8rem;
    color: white;
}

.btn {
    background-color: #ffcc00;
    color: black;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover {
    background-color: #e6b800;
}

/* Social Media Links */

.social-media {
    position: absolute;
    left: -60px;
    top: 40%;
    transform: translateY(-50%) rotate(-90deg);
    display: flex;
    flex-direction: row;
    gap: 25px;
    z-index: 3;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 5px;
}

.social-link:hover {
    color: #ffcc00;
}



/* Scroll to Bottom Button */
.scroll-to-bottom {
    position: absolute;
    right: 0%;
    bottom: 36%;
    transform: translateY(-50%) rotate(-90deg);
}

.scroll-to-bottom a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.scroll-to-bottom a:hover {
    color: #ffcc00;
}

/* Responsive Design for Tablets and Smaller Screens */
@media (max-width: 768px) {
    .hero-section {
        padding: 20px 0;
        
    }

    .center-hero-image {
        max-width: 100%;
        height: 720px;
        max-height: none;
        object-fit: cover;
        border-radius: 30px;
        margin-top: 80px;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        transform: translate(-50%, 0); /* Adjust to fit content within image */
        top: 0; /* Move content up to the top */
    }

    .hero-text h1 {
        font-size: 2.2rem;
        /* margin-bottom: 15px; */
        margin-top: 90px;
        line-height: 1.5rem;
        font-weight: bold;
    }

    .highlight {
        font-size: 2rem;
    }

    .arrow-svg {
        display: none;
    }

    .description {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .gigi-bg::after {
        font-size: 4rem;
        top: 10px;
        left: 30%;
    }

    .form-container {
        padding: 15px;
        max-width: 90%;
        margin: 20px auto;
    }

    .form-container h2 {
        font-size: 1.5rem;
    }

    .form-check-label {
        font-size: 0.7rem;
    }

    .scroll-to-bottom a {
        font-size: 1.5rem;
        margin-right: -40px;
    }

    .social-media {
        display: none;
    }
}

/* Responsive Design for Mobile Screens (480px and below) */
@media (max-width: 480px) {
    .hero-section {
        padding: 20px 0;
    }

    .center-hero-image {
        max-width: 100%;
        height: 770px;
        max-height: none;
        object-fit: cover;
        border-radius: 30px;
        margin-top: 80px;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        transform: translate(-50%, 0); /* Adjust to fit content within image */
        top: 0; /* Move content up to the top */
    }

    .hero-text h1 {
        font-size: 2.2rem;
        /* margin-bottom: 15px; */
        margin-top: 70px;
        line-height: 2rem;
        font-weight: bold;
    }

    .highlight {
        font-size: 2rem;
    }

    .arrow-svg {
        display: none;
    }

    .description {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .gigi-bg::after {
        font-size: 4rem;
        top: 10px;
        left: 30%;
    }

    .form-container {
        padding: 15px;
        max-width: 90%;
        margin: 20px auto;
    }

    .form-container h2 {
        font-size: 1.5rem;
    }

    .form-check-label {
        font-size: 0.7rem;
    }

    .scroll-to-bottom a {
        font-size: 1.5rem;
        margin-right: -7px;
    }

    .social-media {
        display: none;
    }
}








/* Stats Section */
.stats-section {
    background-color: #ffcc00;
    color: #000;
    padding: 30px 0;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
}

.stats-section p {
    font-family: 'Inter';
}

@media (max-width: 768px) {
    .stats-section .counter {
        font-size: 1rem;
    }

}

@media (max-width: 480px) {
    .stats-section .counter {
        font-size: 1.5rem;
    }
}







/* Global Section Style */
.why-choose-section {
    background-color: #000; /* Black background */
    color: white;
    padding: 60px 20px;
    position: relative;
    text-align: center;
}

.why-choose-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.why-title {
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
    color: #ffcc00;
}

.hollow-text {
    font-family: 'Inter';
    font-size: 6rem;
    font-weight: bold;
    color: rgb(255 255 255 / 0%);
    position: absolute;
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    -webkit-text-stroke-color: #ffffff2b;
    -webkit-text-stroke-width: 0.5px;
}

/* Icon Box Styles */
.icon-box {
    margin-bottom: 40px;
    transition: transform 0.3s ease;
    padding: 20px;
    text-align: left;
}

.icon-wrapper {
    height: 100px;
    width: 100px;
    margin: 0 auto;
    perspective: 1000px; /* Enables 3D flipping effect */
}

.icon {
    width: 70%;
    height: auto;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    margin-left: -140%;
    border: solid;
    border-width: 1px;
    padding: 10px;
    border-radius: 10px;
}

.icon-box:hover .icon {
    transform: rotateY(360deg); /* Flip icon on hover */
}

.icon-box h3 {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: bold;
}

.icon-box p {
    margin-top: 10px;
    font-size: 1rem;
}

.whytitlerow{
    display: flex;
}


/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .hollow-text {
        font-size: 8rem;
    }

    .why-title {
        font-size: 2rem;
    }

    .why-choose-section p {
        font-size: 1rem;
    }

    .icon-box {
        padding: 15px;
        margin-bottom: 20px;
        text-align: left; /* Align text and icons to the left on mobile */
        width: 34%;
    }

    .icon-wrapper {
        margin: 0 0 10px 0; /* Ensure icons stay to the left */
    }

    .icon {
        margin-left: 0; /* Align icons left on mobile */
    }

    .icon-box h3 {
        font-size: 1.1rem; /* Smaller font size for mobile */
    }

    .icon-box p {
        font-size: 0.9rem; /* Smaller paragraph font size */
    }

    .why-choose-section {
        padding: 30px 10px; /* Reduce padding for smaller devices */
    }
}

/* Responsive Adjustments for Extra Small Screens */
@media (max-width: 480px) {
    .hollow-text {
        font-size: 4rem; /* Smaller hollow text */
        top: -45px;
    }

    .why-title {
        font-size: 1.8rem; /* Smaller section title */
    }

    .icon-box {
        padding: 10px;
        margin-bottom: 15px;
    }

    .icon-box h3 {
        font-size: 1rem;
    }

    .icon-box p {
        font-size: 0.8rem;
    }
}







/* Offer Calculation Section Style */
/* Offer Calculation Section Style */
.offer-calc-section {
    background-image: url('assests/How\ We\ Calculate\ BG.svg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding: 60px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-calc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    z-index: 0;
}

.offer-hollow-text {
    font-family: 'Inter';
    font-size: 6rem;
    font-weight: bold;
    color: rgb(255 255 255 / 0%);
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    -webkit-text-stroke: #ffffff2b;
    -webkit-text-stroke-width: 0.5px;
}

.offer-calc-title {
    font-size: 2.5rem;
    color: #ffcc00;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.offer-calc-section p {
    font-family: 'Inter';
    font-size: 1rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Box Styling */
.offer-calc-box {
    position: relative;
    margin-bottom: 30px;
    transition: transform 0.5s ease;
    display: flex;
    justify-content: center;
}

.offer-calc-content {
    background-color: #ffcc00;
    border-radius: 10px;
    border: solid;
    border-width: 2px;
    border-color: white;
    padding: 20px;
    width: 100%;
    max-width: 260px; /* Ensure the box size remains the same */
    min-width: 260px;
    min-height: 280px;
    max-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0s ease, transform 0.7s ease, background-image 0.7s ease;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}




/* Hover Effects */
.offer-calc-box:hover .offer-calc-content {
    background-color: transparent;
    background-image: url('assests/Temp\ Bg.jpg'), linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.7));
    background-blend-mode: overlay;
    transform: translateY(-10px);
    color: white;
}

.offer-calc-box:hover h3{
    color: #ffcc00;
}


/* Divider Line */
.offer-divider {
    width: 80px;
    height: 2px;
    background-color: rgb(255, 255, 255);
    rotate: 90deg;
    margin-bottom: 60px; /* Adjust the spacing */
    transition: display 0.5s ease; /* Smooth transition */
}

.offer-calc-box:hover .offer-divider {
    display: none; /* Hide divider line on hover */
}

/* Icon at the top */
.offer-icon-wrapper {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.offer-calc-icon {
    width: 50px; /* Adjust size */
    height: auto;
    margin-bottom: -45px;
}

/* Adjust H3 */
.offer-calc-content h3 {
    color: black;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 10px;
}


/* Hide descriptions initially */
.offer-description {
    display: none;
    margin-top: 15px;
    font-size: 0.9rem;
}

.offer-calc-box:hover .offer-description {
    display: block;
    font-family: 'Inter';
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .offer-hollow-text {
        font-size: 4rem;
    }

    .offer-calc-title {
        font-size: 2rem;
    }

    .offer-calc-section p {
        font-size: 1rem;
    }

    .offer-calc-box {
        margin-bottom: 20px;
    }

    .offer-calc-content {
        padding: 20px;
        /* min-height: 250px; */
        max-height: 250px;
    }

    .offer-icon-wrapper {
        height: 40px;
    }

    .offer-calc-icon {
        width: 40px;
    }

    .offer-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .offer-hollow-text {
        font-size: 4rem;
        top: 15px;
    }

    .offer-calc-title {
        font-size: 1.8rem;
    }

    .offer-calc-content {
        padding: 10px;
        width: 100%;
        /* min-height: 200px; */
        max-height: 200px;
    }

    .offer-icon-wrapper {
        height: 40px;
    }

    .offer-calc-icon {
        width: 35px;
    }

    .offer-description {
        font-size: 0.7rem;
    }
}

/* Full Page Responsiveness - Centering */
@media (min-width: 1024px) {
    .offer-calc-section {
        max-width: 100%;
        margin: 0 auto;
    }
}













/* Our Process Section Style */
/* Our Process Section Style */
.custom-process-section {
    background-color: #ffcc00; /* Yellow background */
    color: black;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; Full screen height */
}

/* Hollow Background Text */
.custom-hollow-text {
    font-family: 'Inter';
    font-size: 6rem;
    font-weight: bold;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    -webkit-text-stroke: #ffffff2b;
    -webkit-text-stroke-width: 0.5px;
}

.custom-process-title {
    font-size: 2.5rem;
    color: #ffcc00;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.custom-process-subtitle {
    font-family: 'Inter';
    font-size: 1rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

/* Black Box */
.custom-process-black-box {
    background-color: black;
    border-radius: 20px;
    padding: 40px;
    padding-top: 60px;
    width: 100%;
    max-width: 800px; /* Fixed maximum width to maintain size */
    margin: 0 auto; /* Center on screen */
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Process Box Styling */
.custom-process-box {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.custom-box-content {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    text-align: left;
    border-radius: 10px;
    padding: 10px 15px; /* Reduced padding */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    transition: transform 0.3s ease;
    min-height: 180px;
}

/* Yellow Step Label Box */
.custom-step-label {
    background-color: #ffcc00;
    color: #000000;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 10px;
    position: absolute;
    top: -22px;
    left: 40px;
    width: 140px;
    text-align: center;
}

.custom-box-content h3 {
    margin-top: 20px; /* Reduced space below the yellow step label */
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffcc00;
}

.custom-box-content p {
    font-family: 'Inter';
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-hollow-text {
        font-size: 4rem;
    }

    .custom-process-title {
        font-size: 2rem;
    }

    .custom-process-subtitle {
        font-size: 1rem;
    }

    .custom-box-content {
        padding: 10px;
        min-height: 150px;
    }

    .custom-step-label {
        font-size: 1rem;
        top: -20px;
        left: 0px;
        width: auto; /* Adjust width for smaller screens */
        padding: 5px 15px;
    }

    .custom-box-content h3 {
        font-size: 1.2rem;
    }

    .custom-box-content p {
        font-size: 0.9rem;
    }

    .custom-process-black-box {
        padding: 30px;
        max-width: 90%; /* Adjusted for smaller screens */
    }
}

@media (max-width: 480px) {
    .custom-hollow-text {
        font-size: 4rem;
    }

    .custom-process-title {
        font-size: 1.8rem;
        top: 15px;
    }

    .custom-process-subtitle {
        font-size: 0.9rem;
        top: 12px;
    }

    .custom-box-content {
        padding: 10px;
        min-height: 130px;
    }

    .custom-step-label {
        font-size: 0.9rem;
        top: -20px;
        left: 0px;
        width: auto; /* Adjust width for smaller screens */
        padding: 5px 15px;
    }

    .custom-box-content h3 {
        font-size: 1.1rem;
    }

    .custom-box-content p {
        font-size: 0.8rem;
    }

    .custom-process-black-box {
        padding: 20px;
        max-width: 95%; /* Wider black box on smaller screens */
    }
}

/* Full Page Responsiveness - Centering */
@media (min-width: 1024px) {
    .custom-process-black-box {
        max-width: 1400px; /* Fixed maximum width for centering */
    }
}












/* Unique Housing Situations Section */
.unique-housing-situations-section {
    background-color: #000;
    color: white;
    padding: 60px 20px;
    padding-bottom: 20px;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hollow Text */
.unique-hollow-text {
    font-family: 'Inter';
    font-size: 6rem;
    font-weight: bold;
    color: rgb(255 255 255 / 0%);
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    -webkit-text-stroke-color: #ffffff2b;
    -webkit-text-stroke-width: 0.5px;
}

.unique-housing-title {
    font-size: 2.5rem;
    color: #ffcc00;
    font-weight: bold;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.unique-housing-subtitle {
    font-family: 'Inter';
    font-size: 1rem;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

/* Housing Box Styling */
.unique-housing-box {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

/* Link Styling */
.unique-housing-link {
    text-decoration: none;
    color: white;
}

.unique-housing-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-housing-image {
    width: 100%;
    height: auto;
    border: 2px solid white;
    border-radius: 20px;
}

/* Shine Effect */
.unique-housing-image-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%; /* Start position off-screen */
    width: 200%; /* Larger than the container */
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transform: skewX(-45deg); /* Diagonal angle */
    transition: all 0.6s ease; /* Adjust speed for smoothness */
    pointer-events: none;
}

.unique-housing-box:hover .unique-housing-image-wrapper::before {
    left: 100%; /* Move it across to the right */
    opacity: 1; /* Make the shine visible */
}

.unique-housing-box:hover .unique-housing-image-wrapper {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.unique-housing-caption {
    font-family: 'Inter';
    margin-top: 10px;
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .unique-hollow-text {
        font-size: 5rem;
    }

    .unique-housing-title {
        font-size: 2rem;
    }

    .unique-housing-subtitle {
        font-size: 1rem;
    }

    .unique-housing-caption {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .unique-hollow-text {
        font-size: 4rem;
        top: 13px;
    }

    .unique-housing-title {
        font-size: 1.8rem;
    }

    .unique-housing-subtitle {
        font-size: 0.9rem;
    }

    .unique-housing-caption {
        font-size: 0.9rem;
    }
}

/* Centering for Full Page Responsiveness */
@media (min-width: 1024px) {
    .unique-housing-situations-section .container-fluid {
        max-width: 1200px;
        margin: 0 auto;
    }
}







/* About Us Section */
.about-section-custom {
    background-color: #000;
    color: white;
    padding: 60px 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

/* Left-Aligned Title and Subtitle */
.about-header-left {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-bottom: 40px;
}

.about-hollow-text {
    font-family: 'Inter';
    font-size: 6rem;
    font-weight: bold;
    color: rgb(255 255 255 / 0%);
    position: absolute;
    top: -54px;
    left: 15px;
    transform: translateX(-5%);
    z-index: 1;
    -webkit-text-stroke: 0.5px #ffffff2b;
}

.about-title {
    font-size: 2.5rem;
    color: #ffcc00;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-subtitle {
    font-family: 'Inter';
    font-size: 1rem;
    margin-top: 10px;
    width: 150%;
}

/* Image Row */
.about-image-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Image Box */
.about-image-box {
    text-decoration: none;
    color: white;
    text-align: center;
    transition: transform 0.3s ease;
    width: 45%;
}

.about-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    /* -webkit-mask-image: url(about-1-mask\ \(1\).png);
    mask-image: url(about-1-mask\ \(1\).png);
    mask-size: 100% 100%; */
}

/* Shine Effect */
.about-shine-effect {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 400%;
    height: 400%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transform: rotate(45deg);
    transition: opacity 0.3s, top 0.6s ease, left 0.6s ease;
}

.about-image-wrapper:hover .about-shine-effect {
    opacity: 1;
    top: 100%;
    left: 100%;
}

.about-image-box:hover .about-image-wrapper {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Bullet Points */
.about-bullet-points {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-bullet-points li {
    font-family: 'Inter';
    font-size: 1.3rem;
    font-weight: bold;
    position: relative;
    padding-left: 20px;
    text-align: left;
}

.about-bullet-points li::before {
    content: '•';
    color: #ffffff;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hollow-text {
        font-size: 4rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-subtitle {
        font-size: 1rem;
    }

    .about-image-box {
        width: 100%; /* Full width on smaller screens */
    }

    .about-bullet-points li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-hollow-text {
        font-size: 4rem;
        top: -48px;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-subtitle {
        font-size: 0.7rem;
        width: 350px;
    }

    .about-bullet-points li {
        font-size: 0.8rem;
    }
}

/* Centering and Width Constraint */
@media (min-width: 1024px) {
    .about-section-custom .container {
        max-width: 1200px;
        margin: 0 auto;
    }
}









/* Comparison Section */
.comparison-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    color: black;
    padding: 60px 20px;
    overflow: hidden;
    /* background: rgb(255,204,0); */
    background: linear-gradient(90deg, rgba(255,204,0,1) 50%, rgba(0,0,0,1) 50%);   
    padding-bottom: 0px;
}

/* Background Split */
.comparison-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.comparison-column {
    font-family: 'Inter';
    width: 50%;
    padding: 40px;
    box-sizing: border-box;
    overflow: hidden;
    margin-top: 100px;
}

/* Background colors for each side */
/* .comparison-left {
    background-color: #ffcc00;
} */

.comparison-right {
    /* background-color: #000; */
    color: white;
}



/* Title and Subtitle */
.comparison-title {
    font-size: 2.5rem;
    color: #ffcc00;
    font-weight: bold;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    margin-top: 20px;
    top: -80px;
    left: 0.5%;
}

.title-part-black {
    color: black;
}

.title-part-yellow {
    color: #ffcc00;
}


.comparison-header {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

/* List Styling */
.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
}

.comparison-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.comparison-list li::before {
    content: "✔";
    font-size: 1.2rem;
    color: #ffffff;
    margin-right: 10px;
}

/* Center Image */
.comparison-center-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 200px;
}

.comparison-center-image img {
    width: 100%;
    height: auto;
    margin-top: -430px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-container {
        flex-direction: column;
    }

    .comparison-section {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        color: black;
        padding: 60px 20px;
        overflow: hidden;
        background: rgb(255,204,0);
        /* background: linear-gradient(90deg, rgba(255,204,0,1) 50%, rgba(0,0,0,1) 50%);    */
        padding-bottom: 30px;
    }

    .comparison-column {
        width: 100%;
        padding: 20px;
    }

    .comparison-left {
        background-color: #ffcc00;
        margin: auto;
    }

    .comparison-right {
        background-color: black;
        margin: auto;
    }

    .comparison-header {
        text-align: center;
    }

    .comparison-hollow-text {
        font-size: 4rem;
    }

    .comparison-title {
        font-size: 1rem;
        background: linear-gradient(90deg, rgba(255, 204, 0, 1) 50%, rgba(0, 0, 0, 1) 50%);
        margin-top: 20px;
    }

    .comparison-list li {
        font-size: 0.9rem;
    }

    .comparison-center-image {
        display: none; /* Hide on mobile */
    }
}


/* Responsive Design */
@media (max-width: 480px) {
    .comparison-container {
        flex-direction: column;
    }

    .comparison-section {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        color: black;
        padding: 60px 20px;
        overflow: hidden;
        background: rgb(255,204,0);
        /* background: linear-gradient(90deg, rgba(255,204,0,1) 50%, rgba(0,0,0,1) 50%);    */
        padding-bottom: 30px;
    }

    .comparison-column {
        width: 100%;
        padding: 20px;
    }

    .comparison-left {
        background-color: #ffcc00;
        margin: auto;
    }

    .comparison-right {
        background-color: black;
        margin: auto;
    }

    .comparison-header {
        text-align: center;
    }

    .comparison-hollow-text {
        font-size: 4rem;
    }

    .comparison-title {
        font-size: 1rem;
        background: linear-gradient(90deg, rgba(255, 204, 0, 1) 49.5%, rgba(0, 0, 0, 1) 49.5%);
        margin-top: 20px;
    }

    .comparison-list li {
        font-size: 0.9rem;
    }

    .comparison-center-image {
        display: none; /* Hide on mobile */
    }
}








/* Vertical Feedback Carousel Styles */
/* Vertical Feedback Carousel Styles */
.vertical-feedback-carousel {
    display: flex;
    justify-content: center;
    background-color: #000;
    color: white;
    padding: 40px;
}

.vertical-feedback-carousel .feedback-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    position: relative;
}

.feedback-left {
    flex: 1;
    /* padding: 20px; */
    position: relative;
    justify-items: center;
}

.feedback-hollow-text {
    font-family: 'Inter';
    font-size: 6rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0%);
    position: absolute;
    top: -48px;
    -webkit-text-stroke: 0.5px #ffffff2b;
}

.feedback-subtitle {
    color: #ffcc00;
    font-weight: bold;
    font-size: 2.5rem;
}

.feedback-title {
    font-family: 'Inter';
    font-weight: bold;
    font-size: 2rem;
    margin: 10px 0;
    width: 70%;
}

.feedback-description {
    font-family: 'Inter';
    font-size: 1rem;
    margin-bottom: 20px;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #ffcc00;
    /* width: 100%; */
    /* margin-left: 21%; */
    
}

.play-button {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #ffcc00;
    top: 50%;
    left: 37%;
    transform: translate(-50%, -50%);
}




/* Video Overlay */
.video-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 50%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.video-overlay-content {
    position: relative;
    width: 80%;
    max-width: 600px;
    padding: 20px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vertical-feedback-carousel {
        flex-direction: column;
        align-items: center;
    }

    .feedback-container {
        flex-direction: column;
    }

    .feedback-right {
        width: 100%;
        margin-top: 20px;
    }

    .vertical-carousel-controls {
        right: 10px;
    }

    .video-thumbnail img {
        width: 100%;
        
    }
}

@media (max-width: 480px) {
    .feedback-subtitle {
        font-size: 1.8rem;
    }

    .feedback-title {
        font-size: 1.5rem;
    }

    .feedback-description {
        font-size: 0.9rem;
    }

    .feedback-hollow-text {
        font-size: 3rem;
        top: -20px;
    }
    .video-thumbnail {
        width: 100%;
        
    }
}








/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    padding-bottom: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 20px;
}

.footer-logo-social, .footer-links, .footer-blog, .footer-contact {
    flex: 1 1 200px; /* Minimum width before wrapping */
    text-align: left;
}

.footer-logo img {
    width: 150px; /* Placeholder size for logo */
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    transition: transform 0.4s ease-in-out; /* Smooth ease-in-out transition */
}

#Facebook:hover {
    transition: transform 0.4s ease-in-out; /* Smooth ease-in-out transition */
    transform: scale(1.2);
}

#Twitter:hover {
    transition: transform 0.4s ease-in-out; /* Smooth ease-in-out transition */
    transform: scale(1.2);
}

#Instagram:hover {
    transition: transform 0.4s ease-in-out; /* Smooth ease-in-out transition */
    transform: scale(1.2);
}

#Youtube:hover {
    transition: transform 0.4s ease-in-out; /* Smooth ease-in-out transition */
    transform: scale(1.2);
}

.footer-social-icons img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}









.footer-links h3, .footer-blog h3, .footer-contact h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-links ul, .footer-blog ul, .footer-contact ul {
    font-family: 'Inter';
    font-size: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 25px;
}

.footer-links li, .footer-blog li, .footer-contact li {
    margin-bottom: 8px;
}

/* Adding the semi-arrows */
.footer-links li::before, .footer-blog li::before {
    font: arial;
    content: '>';
    color: #ffcc00; /* Yellow for the arrows */
    font-weight: bold;
    margin-right: 10px;
    font-family: cursive;
    font-size: larger;
}

.footer-links a, .footer-blog a {
    text-decoration: none;
    color: #fff; /* White for the text */
}

.footer-blog a span {
    display: block;
    font-size: 0.9rem;
    color: #999;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.footer-blog a:hover, .footer-links a:hover {
    color: #ffcc00; /* Hover effect for the text */
}

.footer-contact img {
    width: 20px;
    height: 20px;
}



.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 0;
    padding-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo-social, .footer-links, .footer-blog, .footer-contact {
        text-align: center;
        flex: 1 1 auto;
    }
    
    .footer-contact ul li, .footer-social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        width: 200px;
    }
    
    .footer-social-icons img {
        width: 25px;
        height: 25px;
    }
    
    .footer-links h3, .footer-blog h3, .footer-contact h3 {
        font-size: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}










/* Divorce Page Section */
/* Top Image Section */

.divorce-top-image {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Padding at the top to create space between the image and the top of the page */
    margin: 0 auto;
    
  }
  
  .divorce-top-image img {
    max-width: 100%; /* Ensures the image scales responsively */
    height: 400px;
    width: 1000px;
    max-width: 1200px;
    object-fit: cover;
    border-radius: 50px; /* Optional: if you want rounded corners for the image */
    margin-top: 90px;
    border: 2px solid #ffcc00;
  }

/* Divorce Page Section */
.divorce-page-section {
    padding: 40px;
    background-color: #f7f7f7;
    /* margin-top: 50px; */
  }
  

  .divorce-page-section h2 {
    font-weight: bold;
  }

  .divorce-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .divorce-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .divorce-content-left h1{
    color: #ffcc00;
    font-weight: bold;
  }
  .divorce-content-left,
  .divorce-content-right {
    width: 50%;
    padding: 20px;
  }
  
  .divorce-content-full {
    width: 100%;
    padding: 20px;
  }
  
  .divorce-image-left,
  .divorce-image-right {
    width: 50%;
    padding: 20px;
  }
  
  .divorce-image-left img {
    width: 70%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid #ffcc00;
    position: relative;
    left: 15%;
  }
  .divorce-image-right img {
    width: 70%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid #ffcc00;
    position: relative;
    left: 25%;
  }
  
  .divorce-list {
    list-style-type: disc;
    margin-left: 20px;
  }



  /* Cash Offer Section */
.cash-offer-section {
    background-color: #ffcc00; /* Change to suit your preference or use a background image */
    background-image: url('YT\ Thumbnail.svg'); /* Optional: add a background image */
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: #000000;
    border-radius: 20px;
  }
  
  .cash-offer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .cash-offer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .cash-offer-content {
    width: 60%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    border-radius: 10px;
  }
  
  .cash-offer-content h2 {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 20px;
  }
  
  .cash-offer-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: white;
  }
  
  .cash-offer-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .cash-offer-content p {
    font-size: 1rem;
    color: white;
  }
  
  /* Cash Offer Form Styling */
  .cash-offer-form {
    width: 35%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    border-radius: 10px;
    border: 2px solid #ffcc00;
  }
  
  .cash-offer-form form {
    display: flex;
    flex-direction: column;
  }
  
  .cash-offer-form input {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }
  
  .cash-offer-form .btn-submit {
    background-color: #ffcc00;
    color: #000000;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
  }
  
  .cash-offer-form .btn-submit:hover {
    background-color: #e6b800;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .cash-offer-row {
      flex-direction: column;
    }
  
    .cash-offer-content,
    .cash-offer-form {
      width: 100%;
      margin-bottom: 20px;
    }
  }

  
  @media (max-width: 768px) {
    .divorce-content-left,
    .divorce-content-right,
    .divorce-image-left,
    .divorce-image-right {
      width: 100%;
    }

    .divorce-top-image img {
        border-radius: 20px;
        width: 100%;
    }
  }
  


/* Conclusion Section Styles */
.conclusion-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.conclusion-box {
    background-color: #fff;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 40px 30px;
    max-width: 900px;
    width: 100%;
    position: relative;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conclusion-box:hover {
    transform: translateY(+5px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
}

.step-indicator {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffcc00;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    width: 90%;
}

.step-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
}

.conclusion-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 20px;
}

.conclusion-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 40px;
    text-align: justify;
}

.conclusion-call-to-action {
    margin-top: 20px;
}

.conclusion-btn {
    background-color: #ffcc00;
    color: #000;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

.conclusion-btn:hover {
    background-color: #e6b800;
    color: #000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .conclusion-box {
        padding: 30px 20px;
    }

    .conclusion-title {
        font-size: 2rem;
    }

    .conclusion-text {
        font-size: 1.1rem;
        margin-top: 30px;
    }

    .conclusion-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .step-indicator {
        padding: 8px 15px;
    }

    .step-number {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .conclusion-box {
        padding: 20px;
    }

    .conclusion-title {
        font-size: 1.8rem;
    }

    .conclusion-text {
        font-size: 0.8rem;
        margin-top: 30px;
    }

    .conclusion-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .step-indicator {
        padding: 6px 10px;
    }

    .step-number {
        font-size: 0.9rem;
    }
}





/* Foreclosure Page Styles */
.foreclosure-banner-section {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: 0 auto;
}

.foreclosure-banner-img {
    height: 400px;
    width: 1000px;
    max-width: 1200px;
    object-fit: cover;
    border-radius: 50px;
    margin-top: 90px;
    border: 2px solid #ffcc00;
}

@media (max-width: 768px) {
    .foreclosure-banner-img {
        border-radius: 20px;
        width: 100%;
}
}

@media (max-width: 480px) {
    .foreclosure-banner-img {
        border-radius: 20px;
        width: 100%;
}
}


/* Foreclosure Page Layout */
.foreclosure-section {

    background-color: #f8f8f8;
    padding: 50px 20px;
}

.foreclosure-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.foreclosure-intro {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ffcc00;
}

.foreclosure-intro h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.foreclosure-intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Section Box Styling */
.foreclosure-section-box {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #ffcc00;
}

.foreclosure-section-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.foreclosure-section-box p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Custom Short Sale Section Styling */
.short-sale-box {
    background-color: #fffbf0;
    border-left: 4px solid #ffcc00;
}


/* Responsive Layout */
@media (max-width: 768px) {
    .foreclosure-intro h2, .foreclosure-section-box h3 {
        font-size: 1.6rem;
    }

    .foreclosure-intro p, .foreclosure-section-box p {
        font-size: 1rem;
    }

    .foreclosure-section {
        padding: 30px 10px;
    }
}

@media (max-width: 480px) {
    .foreclosure-intro h2, .foreclosure-section-box h3 {
        font-size: 1.4rem;
    }

    .foreclosure-intro p, .foreclosure-section-box p {
        font-size: 0.9rem;
    }
}





/* Custom Offer Section */
.custom-offer-section {
    background-color: #ffcc00; 
    padding: 40px 0;
    display: flex;
    justify-content: center;
}

.custom-offer-container {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    width: 90%;
    border-radius: 15px;
    overflow: hidden;
}

.custom-image-container {
    width: 45%; /* Slightly smaller image section */
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px 0px 0px 15px;
}

.custom-form-container {
    width: 50%;
    background-color: #fff;
    padding: 30px;
    border-radius: 0px 15px 15px 0px;
}

.custom-form-container h2 {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
}

.custom-form-container h3 {
    font-size: 1.2rem;
    color: #f8b400;
    margin-bottom: 10px;
    text-align: center;
}

.custom-offer-list {
    list-style-type: disc;
    /* margin-left: 20px; */
    margin-bottom: 15px;
    color: #333;
}

.custom-no-hidden {
    font-size: 0.9rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.custom-form-container h4 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 10px;
}

.custom-offer-form {
    display: flex;
    flex-direction: column;
}

.custom-form-input {
    padding: 8px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.9rem;
}

.custom-checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.custom-form-checkbox {
    margin-right: 10px;
}

.custom-submit-btn {
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
}

.custom-submit-btn:hover {
    background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-offer-container {
        flex-direction: column;
        align-items: center;
    }

    .custom-image-container, .custom-form-container {
        width: 100%;
    }

    .custom-form-container {
        margin-top: 20px;
        border-radius: 15px;
    }
}










/* Inheritance Section Wrapper */
.inheritance-custom-section {
    padding: 40px 20px;
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    padding-bottom: 0px;
}

.inheritance-custom-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Common Styles for Text and Images */
.inheritance-custom-text {
    width: 55%;
    padding: 20px;
}

.inheritance-custom-image {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inheritance-custom-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.inheritance-custom-process,
.inheritance-custom-legal-steps,
.inheritance-custom-property-value,
.inheritance-custom-taxes,
.inheritance-custom-selling {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* Reversing alternate sections */
.inheritance-custom-process:nth-child(odd),
.inheritance-custom-legal-steps:nth-child(even),
.inheritance-custom-property-value:nth-child(odd),
.inheritance-custom-taxes:nth-child(even),
.inheritance-custom-selling:nth-child(odd) {
    flex-direction: row-reverse;
}

.inheritance-title,
.inheritance-heading,
.inheritance-paragraph {
    color: #000;
}

.inheritance-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #ffcc00;
}

.inheritance-heading {
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.inheritance-paragraph {
    color: #333;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Shadow Effect for Text Containers */
.inheritance-custom-text {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
}


/* Section with white background */
.value-section {
    background-color: #f8f8f8;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image Overlay Box */
.image-overlay-box {
    position: relative;
    max-width: 900px;
    width: 100%;
}

.center-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.image-overlay-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 27px;
    z-index: 1;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: left;
    padding: 20px;
    z-index: 2;
    width: 90%;
}

.text-overlay h2 {
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffcc00;
}

.text-overlay p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .text-overlay {
        padding: 10px;
    }

    .text-overlay h2 {
        font-size: 1.3rem;
    }

    .text-overlay p {
        font-size: 0.85rem;
    }

    .center-image {
        width: 100%;
        height: 450px;
    }
}

@media (max-width: 480px) {
    .text-overlay {
        padding: 10px;
        width: 100%;
    }

    .text-overlay h2 {
        font-size: 1.1rem;
    }

    .text-overlay p {
        font-size: 0.8rem;
    }
}



/* Responsive Design for sections (fix for mobile) */
@media (max-width: 768px) {
    .inheritance-custom-process,
    .inheritance-custom-legal-steps,
    .inheritance-custom-property-value,
    .inheritance-custom-taxes,
    .inheritance-custom-selling {
        flex-direction: column; /* Stack text and image vertically */
        align-items: center;
    }

    .inheritance-custom-text {
        width: 100%;
        padding: 15px;
        text-align: left;
    }

    .inheritance-custom-image {
        width: 100%;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .inheritance-custom-image img {
        width: 100%; /* Ensures image takes full width */
        height: auto; /* Maintains aspect ratio */
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }

    .inheritance-heading {
        font-size: 1.5rem;
    }

    .inheritance-paragraph {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Specific adjustments for very small screens - 480px and below */
@media (max-width: 480px) {
    .inheritance-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .inheritance-heading {
        font-size: 1.3rem;
    }

    .inheritance-paragraph {
        font-size: 0.9rem;
    }

    .inheritance-custom-text {
        padding: 15px;
        text-align: left;
    }

    .inheritance-custom-image img {
        width: 100%; /* Makes sure the image fits perfectly in small screens */
        height: auto;
        border-radius: 5px;
    }
}







/* Section 1: Facing Financial Challenges */
.financial-section {
    background-color: #f8f8f8;

}

.financial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.financial-content {
    text-align: center;
    padding: 20px;
}

.financial-title {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 20px;
}

.financial-paragraph {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
}

/* Section 2: Cash Offers */
.cash-offers-section {
    background-color: #f8f8f8;
}

.cash-offers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cash-offers-image {
    width: 45%;
}

.cash-offers-image img {
    width: 100%;
    border-radius: 20px;
}

.cash-offers-content {
    width: 50%;
    padding: 20px;
}

.cash-offers-title {
    font-size: 2rem;
    color: #000;
    margin-bottom: 15px;
}

.cash-offers-paragraph {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

/* Section 3: Auction Section */
.auction-section {
    background-color: #f8f8f8;
    padding: 60px 20px;
}

.auction-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.auction-content {
    width: 50%;
    padding: 20px;
}

.auction-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.auction-paragraph {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.auction-image {
    width: 45%;
}

.auction-image img {
    width: 100%;
    border-radius: 10px;
}

/* Section 4: Finding a Realtor */
.realtor-section {
    background-color: #000000;
    padding: 60px 20px;
}

.realtor-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.realtor-image {
    width: 45%;
}

.realtor-image img {
    width: 100%;
    border-radius: 10px;
}

.realtor-content {
    width: 50%;
    padding: 20px;
}

.realtor-title {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

.realtor-paragraph {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.6;
}

/* Section 5: Selling the Home Yourself (FSBO) */
.fsbo-section {
    background-color: #f8f8f8;
    padding: 60px 20px;
}

.fsbo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.fsbo-content {
    width: 50%;
    padding: 20px;
}

.fsbo-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.fsbo-paragraph {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.fsbo-image {
    width: 45%;
}

.fsbo-image img {
    width: 100%;
    border-radius: 10px;
}

/* Section 6: Setting the Right Price */
.pricing-section {
    background-color: #f8f8f8;
    padding: 60px 20px;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-content {
    width: 50%;
    padding: 20px;
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.pricing-paragraph {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.pricing-image {
    width: 45%;
}

.pricing-image img {
    width: 100%;
    border-radius: 10px;
}

/* Form Section */
.financial-page-form-section {
    background-color: #000000;
    padding: 60px 20px;
}

.financial-page-form-overlay {
    background-color: #ffcc00;
    padding: 60px;
    border-radius: 20px;
}

.financial-page-form-container {
    max-width: 1200px;
    margin: 0 auto;
}

.financial-page-form-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.financial-page-form-left {
    width: 50%;
    color: rgb(0, 0, 0);
    padding: 20px;
}

.financial-page-form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.financial-page-form-left p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.financial-page-form-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.financial-page-form-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.financial-page-form-right {
    width: 40%;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
}

.financial-page-form-right h3 {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 20px;
}

.financial-page-form-right form {
    display: flex;
    flex-direction: column;
}

.financial-page-form-right input {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.financial-page-form-btn-submit {
    background-color: #ffcc00;
    color: black;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
}

.financial-page-form-btn-submit:hover {
    background-color: #e6b800;
}

/* Responsive Design */

/* For smaller screens - 768px and below */
@media (max-width: 768px) {
    .financial-page-form-row {
        flex-direction: column;
    }

    .financial-page-form-left,
    .financial-page-form-right {
        width: 100%;
        margin-bottom: 20px;
    }

    .cash-offers-container,
    .auction-container,
    .realtor-container,
    .fsbo-container,
    .pricing-container {
        flex-direction: column;
    }

    .cash-offers-content,
    .auction-content,
    .realtor-content,
    .fsbo-content,
    .pricing-content {
        width: 100%;
    }

    .cash-offers-image,
    .auction-image,
    .realtor-image,
    .fsbo-image,
    .pricing-image {
        width: 100%;
        margin-top: 20px;
    }
}

/* Mobile-specific styling - 480px and below */
@media (max-width: 480px) {
    .financial-title,
    .cash-offers-title,
    .auction-title,
    .realtor-title,
    .fsbo-title,
    .pricing-title {
        font-size: 1.8rem;
    }

    .financial-paragraph,
    .cash-offers-paragraph,
    .auction-paragraph,
    .realtor-paragraph,
    .fsbo-paragraph,
    .pricing-paragraph {
        font-size: 1rem;
    }

    .financial-page-form-left h2 {
        font-size: 2rem;
    }

    .financial-page-form-right h3 {
        font-size: 1.5rem;
    }

    .financial-page-form-right input {
        font-size: 0.9rem;
    }

    .financial-page-form-btn-submit {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}








/* General Styles */
.apartment-container {
   
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.apartment-intro-box, .apartment-process-box, .apartment-qualifications-box, .apartment-evolution-box, 
.apartment-types-box, .apartment-modern-box, .apartment-options-box, .apartment-why-choose-box {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.apartment-title {
    font-size: 2.5rem;
    color: #ffcc00;
    text-align: center;
}

.apartment-subheading {
    font-weight: bold;
    font-family: 'Outfit';
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #000000;
    text-align: center;
}

.apartment-paragraph {
    font-family: 'Inter';
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Tiles Container for Types and Options Sections */
.apartment-tiles-container, .apartment-options-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.apartment-tile, .apartment-option {
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    text-align: center;
    transition: transform .5s; /* Animation */
}

.apartment-option:hover{
    transform: scale(1.02); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    
}
.apartment-tile:hover{
    transform: scale(1.02); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    
}

.apartment-tile h3, .apartment-option h3 {
    font-size: 1.5rem;
    color: #ffcc00;
    margin-bottom: 10px;
}

.apartment-tile p, .apartment-option p {
    text-align: justify;
    font-size: 1rem;
    color: #555;
}

/* Contact Button */
.apartment-contact-btn {
    position: relative;
    display: inline-block;
    background-color: #ffcc00;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
}

.apartment-contact-btn:hover {
    background-color: #e6b800;
}

/* Responsive Design */
@media (max-width: 768px) {
    .apartment-tiles-container, .apartment-options-container {
        flex-direction: column;
    }
}










/* Modal Custom Styling */
.modal-content {
    border-radius: 10px;
    padding: 20px;
    max-width: 100%;
    /* height: 532px; */
    margin: auto;
    margin-top: 70px;
}

.modal-header {
    border-bottom: none;
}

.modal-title {
    font-size: 1.8rem;
    text-align: center;
    width: 100%;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 10px;
}

.required {
    color: red;
    font-weight: bold;
}

.btn-warning {
    background-color: #ffcc00;
    color: #000;
    font-weight: bold;
    border: 2px solid #ffcc00;
    transition: 0.3s;
}

.btn-primary{
    color: #000000;
    font-weight: bold;
    border: 2px solid #ffcc00;
    transition: 0.3s;
}

.btn-primary:hover{
    background-color: transparent;
    color: #000000;
    border: 2px solid #ffcc00;
    font-weight: bold;
}

.btn-warning:hover {
    background-color: transparent;
    border: 2px solid #ffcc00;
    color: #ffcc00;
}

.modal-form-check-label {
    font-size: 0.9rem;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        max-width: 90%;
        margin-top: 100px;
    }

    .modal-title {
        font-size: 1.5rem;
    }
    .btn-close{
    margin-top: -80px;
    }
}





/* Main Wrapper */
.condo-sale-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Global Section Styling */
section {
    width: 100%;
}

.section-title {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 20px;
    font-weight: bold;
}

.appeal-section-title {
    font-size: 2rem;
    color: #ffcc00;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Intro Section */
.condo-intro-section {
    background-color: #fff;
    padding: 60px 20px;
}

.intro-title {
    color: #333;
    font-size: 2.5rem;
    font-weight: bold;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Process Section */
.condo-process-section {
    background-color: #f7f7f7;
    padding: 60px 20px;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 320px;
    padding: 20px;
    transition: transform 0.3s;
}

.step-box p {
    text-align: justify;
}

.step-box:hover {
    transform: translateY(-5px);
}

.condos-step-number {
    background-color: #ffcc00;
    color: #000;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* Info Section */
.condo-info-section {
    background-color: #fff;
    padding: 60px 20px;
}

.info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.condo-image {
    border-radius: 8px;
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
}

/* Appeal Section */
.condo-appeal-section {
    background-color: #000000;
    padding: 60px 20px;
    color: #fff;
}

.appeal-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.appeal-card {
    background-color: #ffffff;
    color: #000000;
    border-radius: 8px;
    padding: 20px;
    width: 250px;
    transition: transform 0.3s;
}

.appeal-card p{
    text-align: justify;
}

.appeal-card:hover {
    transform: scale(1.05);
}

.appeal-card h3 {
    color: #ffcc00;
    font-size: 1.2rem;
}

/* CTA Section */
.condo-cta-section {
    background-color: #ffcc00;
    padding: 60px 20px;
}

.cta-title {
    color: #000000;
    font-size: 2rem;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: #000000;
    color: #ffcc00;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 20px;
    transition: 0.5s;
}

.cta-button:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: scale(1.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-steps, .appeal-cards {
        flex-direction: column;
        align-items: center;
    }

    .intro-title, .section-title, .cta-title {
        font-size: 1.8rem;
    }

    .step-box, .appeal-card {
        width: 90%;
    }
}







/* Container Styling */
.relocation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Section Titles */
.relocation-section-title {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 10px;
    text-align: center;
}

/* Content Box */
.content-box {
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    /* transition: box-shadow 3s ease-in-out; */
    transition: transform .2s;
}

.content-box:hover {
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

/* Section Backgrounds */
/* .inspection-section {
    background-color: #e6f7ff;
}

.market-analysis-section {
    background-color: #fff7e6;
}

.selling-options-section {
    background-color: #e6ffe6;
} */

/* Icons */
.section-icon {
    font-size: 1.2em;
    margin-right: 8px;
    color: #2a9d8f;
}

/* Text Styling */
.content-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.content-text {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-box {
        padding: 15px;
    }
    .section-title {
        font-size: 1.5em;
    }
    .content-title {
        font-size: 1.2em;
    }
}







/* Main Container */
.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Boxes */
.section-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    gap: 20px;
    /* max-width: 800px; */
    margin: 0 auto;
}

.section-box:hover {
    transform: scale(1.02);
}

/* Alternating Layouts */
.section-box:nth-child(even) {
    flex-direction: row-reverse;
}

/* Image Styling */
.section-image {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Text Content */
.content {
    text-align: left;
    flex: 1;
}

.section-title {
    font-size: 1.6em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;

}

.content-text {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
}

/* Background Colors for Different Sections */
.bg-blue { background-color: #f7f7f7; }
.bg-light-gray { background-color: #f7f7f7; }
.bg-green { background-color: #f7f7f7; }
.bg-yellow { background-color: #f7f7f7; }

/* Responsive Design */
@media (max-width: 768px) {
    .section-box {
        flex-direction: column;
        text-align: center;
    }
    .section-box:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-box {
        flex-direction: column;
        text-align: center;
    }
    .section-box:nth-child(even) {
        flex-direction: column;
    }
}




/* Begin Inner Page Styles */

/* Main Content Wrapper */
.downsizing-main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* Content Wrapper to Center Content */
.downsizing-content-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Page Header Section */
.downsizing-page-header {
    width: 100%;
    background-color: #f7f7f7;
    padding: 40px 0;
}

.downsizing-header-text {
    text-align: center;
    margin-bottom: 30px;
}

.downsizing-header-text h1 {
    font-size: 2.5em;
    color: #ffcc00;
    margin-bottom: 20px;
}

.downsizing-header-text p {
    font-size: 1.2em;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.downsizing-header-image img {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Steps Section */
.downsizing-steps-section {
    width: 100%;
    background-color: #fff;
    padding: 40px 0;
}

.downsizing-step-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 15px;
    border: 2px solid #ffcc00;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.downsizing-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.downsizing-step-icon {
    flex: 0 0 100px;
    margin-right: 20px;
}

.downsizing-step-icon img {
    width: 80px;
    height: 80px;
}

.downsizing-step-info {
    flex: 1;
}

.downsizing-step-info h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.downsizing-step-info p {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
}

.downsizing-step-info ul {
    list-style: none;
    padding-left: 0;
}

.downsizing-step-info ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    font-size: 1em;
    color: #555;
}

.downsizing-step-info ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #27ae60;
}

/* Closing Section */
.downsizing-closing-section {
    text-align: center;
    margin-top: 40px;
}

.downsizing-closing-section h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.downsizing-closing-section p {
    font-size: 1.1em;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .downsizing-step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .downsizing-step-icon {
        margin-bottom: 15px;
    }

    .downsizing-step-info ul li {
        padding-left: 20px;
    }

    .downsizing-step-info ul li::before {
        left: 0;
    }
}

/* Centering Content */
.downsizing-page-header, .downsizing-steps-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0px;
}

/* Fonts and Icons */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

/* Include Font Awesome for Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

/* End Inner Page Styles */






 /* Main Container */
 .grid-main-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.grid-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
    border: 2px solid #ffcc00;
}

.grid-card:hover {
    transform: translateY(-5px);
}

/* Card Background Variants */
.bg-blue { background-color: #f7f7f7; }
.bg-gray { background-color: #f5f5f5; }
.bg-green { background-color: #f3f3f3; }
.bg-yellow { background-color: #f1f1f1; }

/* Image Styling */
.grid-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Title Styling */
.grid-title {
    font-size: 1.6em;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

/* Text Styling */
.grid-text {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

/* Card Overlay for Hover Effect */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    text-align: center;
    padding: 20px;
}

.grid-card:hover .grid-overlay {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .grid-main-container {
        padding: 20px;
    }
    .grid-image {
        height: 150px;
    }
}





/* Main Container */
.mortgage-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Section Boxes */
.mortgage-box {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s;
    overflow: hidden;
}

.mortgage-box:hover {
    transform: scale(1.02);
}

/* Section Backgrounds */
.bg-light-blue { background-color: #f8f8f8; }
.bg-light-green { background-color: #f7f7f7; }
.bg-light-yellow { background-color: #f8f8f8; }
.bg-light-gray { background-color: #f7f7f7; }

/* Section Header */
.mortgage-header {
    font-size: 1.8em;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

/* Text Styling */
.mortgage-text {
    font-size: 1em;
    color: #555;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Column Layout for Content */
.mortgage-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.column-item {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
    transition: 2s ease-in-out;
}

.column-item:hover {
    transform: scale(1.05);
}

/* Image Styling */
.mortgage-image {
    width: 70%;
    height: auto;
    border-radius: 25px;
    margin-top: 10px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #ffcc00;
}

/* Info Box Styling */
.info-box {
    font-size: 0.9em;
    color: #333;
    padding: 15px;
    background-color: #fff6e6;
    border-left: 4px solid #ffbe5b;
    margin: 10px auto;
    border-radius: 5px;
    width: 800px; /* For wider alignment */
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mortgage-columns {
        flex-direction: column;
    }

    .info-box{
        width: auto;
    }
    .mortgage-image{
        width: 100%;
    }
}











.single-family-page-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Section Styles */
.single-family-page-section {
    padding: 40px 20px;
    margin: 20px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.single-family-page-section h2 {
    color: #000000;
    font-size: 2em;
    margin-bottom: 20px;
}

.single-family-page-section p, .single-family-page-section ul {
    font-size: 1em;
    line-height: 1.6;
}

.single-family-page-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.single-family-page-section ul li {
    margin-bottom: 10px;
}

/* Highlighted Subheadings */
.single-family-page-highlight {
    font-weight: bold;
    color: #ffcc00;
}

/* Flex Columns */
.single-family-page-flex-columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.single-family-page-flex-column {
    flex: 1 1 45%;
    min-width: 280px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* CTA Box */
.single-family-page-cta {
    text-align: center;
    background-color: #ffcc00;
    color: #000000;
    padding: 40px 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.single-family-page-cta-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.single-family-page-btn {
    display: inline-block;
    background-color: #000000;
    color: #ffcc00;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: 20px;
    transition: 0.5s;
}

.single-family-page-btn:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-family-page-section h2 {
        font-size: 1.5em;
    }
}






/* Townhouse Page */
.townhouse-page-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Section Styles */
.townhouse-page-section {
    padding: 40px 20px;
    margin: 20px 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.townhouse-page-section h2 {
    color: #000000;
    font-size: 2em;
    margin-bottom: 20px;
}

.townhouse-page-section p, .townhouse-page-section ul {
    font-size: 1em;
    line-height: 1.6;
}

.townhouse-page-section ul {
    list-style-type: disc;
    padding-left: 20px;
}

.townhouse-page-section ul li {
    margin-bottom: 10px;
}

/* Highlighted Subheadings */
.townhouse-highlight {
    font-weight: bold;
    color: #ffcc00;
}

/* Flex Columns */
.townhouse-flex-columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.townhouse-flex-column {
    flex: 1 1 45%;
    min-width: 280px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
}

.townhouse-flex-column:hover {
    transform: scale(1.05);
}

/* CTA Box */
.townhouse-cta {
    text-align: center;
    background-color: #ffcc00;
    color: #000000;
    padding: 40px 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.townhouse-cta-title {
    font-size: 2em;
    margin-bottom: 20px;
}

.townhouse-cta-button {
    background-color: #000000;
    color: #ffcc00;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.townhouse-cta-button:hover {
    background-color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .townhouse-page-section h2 {
        font-size: 1.5em;
    }
}






/* Container for the comparison section */
/* Container for the comparison section */
.townhouse-comparison-container {
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.townhouse-comparison-header {
    text-align: center;
    margin-bottom: 20px;
}

.townhouse-comparison-header h2 {
    font-size: 1.8em;
    color: #000000;
    font-weight: bold;
}

.townhouse-comparison-header h3 {
    font-size: 1.2em;
    color: #333;
}

/* Card container */
.townhouse-comparison-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

/* Card styling */
.townhouse-comparison-card {
    flex: 1 1 calc(50% - 10px);
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    font-size: 1em;
}

.townhouse-comparison-card p {
    margin: 0;
    font-size: 1em;
    text-align: center;
}

/* Styling for each side of the comparison */
.townhouse-comparison-gigi {
    border-left: 6px solid #000000;
    background-color: #ffcc00;
    color: #000000;
    transition: 0.2s ease-in-out;
}

.townhouse-comparison-realtor {
    border-left: 6px solid #ffcc00;
    background-color: #000000;
    color: #ffffff;
    transition: 0.2s ease-in-out;
}

.townhouse-comparison-realtor:hover {
    transform: scale(1.05) ;
}

.townhouse-comparison-gigi:hover{
    transform: scale(1.05) ;
}
/* Responsive design */
@media (max-width: 768px) {
    .townhouse-comparison-card {
        flex: 1 1 100%;
    }
}





        /* Section container styling */
        .how-works-section {
            width: 90%;
            max-width: 1200px;
            margin: 50px auto;
            padding: 20px;
            text-align: center;
        }

        /* Header styling */
        .how-works-header {
            margin-bottom: 60px;
        }

        .how-works-header h1 {
            font-size: 3em;
            color: #ffcc00;
            text-transform: uppercase;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .how-works-header p {
            font-size: 1.2em;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Timeline container */
        .timeline-container {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            width: 4px;
            height: 90%;
            background-color: #ffcc00;
            transform: translateX(-50%);
            z-index: -1;
        }

        /* Timeline item styling */
        .timeline-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 40px 0;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            max-width: 600px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
            position: relative;
            border: 2px solid #ffcc00;
        }

        /* Parallax effect on hover */
        .timeline-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
        }

        /* Icon styling */
        .timeline-icon {
            width: 60px;
            height: 60px;
            background-color: #ffcc00;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        /* Content for each step */
        .timeline-content {
            padding: 20px;
            text-align: left;
        }

        .timeline-content h3 {
            font-size: 1.6em;
            color: #000000;
            margin-bottom: 10px;
        }

        .timeline-content p {
            font-size: 1em;
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* List styling for contact options */
        .contact-options {
            list-style-type: square;
            padding-left: 20px;
        }

        .contact-options li {
            margin-bottom: 8px;
            color: #333;
        }

        /* Alternating background colors */
        .timeline-item:nth-child(even) {
            background-color: #f7f7f7;
        }

        .timeline-item:nth-child(odd) {
            background-color: #f7f7f7;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .how-works-header h1 {
                font-size: 2.4em;
            }

            .timeline-item {
                max-width: 100%;
            }

            .timeline-content {
                padding: 15px;
            }

            .timeline-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2em;
            }
        }




      /* FAQ  */   

        .overlay-text-faq {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            text-align: center;
            padding: 10px;
        }
        
        .overlay-text-faq h1 {
            font-size: 2.5em;
            margin: 0.2em 0;
            font-weight: bold;
        }
        
        .overlay-text-faq p {
            font-size: 1.2em;
            margin: 0;
            font-weight: 300;
        }
        /* Mobile styles for screens 768px and below */
            @media (max-width: 768px) {
                .overlay-text-faq h1 {
                    font-size: 1.8em;
                }

                .overlay-text-faq p {
                    font-size: 1em;
                }
            }

            /* Mobile styles for screens 480px and below */
            @media (max-width: 480px) {
                .overlay-text-faq {
                    padding: 5px;
                    top: 36%;
                }

                .overlay-text-faq h1 {
                    font-size: 1.5em;
                }

                .overlay-text-faq p {
                    font-size: 0.9em;
                }
            }
        
        /* Main container */
        .faq-container {
            max-width: 1200px;
            margin: 50px auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Header styling */
        .faq-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .faq-header h1 {
            font-size: 3em;
            color: #ffcc00;
            margin-bottom: 10px;
        }

        /* Layout structure */
        .faq-content {
            display: flex;
            width: 100%;
            gap: 30px;
        }

        /* Sidebar styling */
        .faq-sidebar {
            flex: 1;
            max-width: 250px;
            max-height: 400px;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border: 2px solid #ffcc00;
        }

        .faq-sidebar h2 {
            font-size: 1.5em;
            color: #000000;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .faq-sidebar ul {
            list-style-type: none;
            padding: 0;
            color: #555;
        }

        .faq-sidebar ul li {
            padding: 10px 0;
            cursor: pointer;
            font-size: 1em;
            transition: color 0.3s;
        }

        .faq-sidebar ul li:hover {
            color: #000000;
            font-weight: bold;
            transition: 0.2s;
        }

        .faq-sidebar ul li.faq-category-active {
            color: #000000;
            font-weight: bold;
        }

        /* FAQ list styling */
        .faq-list {
            flex: 3;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            border: 2px solid #ffcc00;
        }

        .faq-item {
            border-bottom: 1px solid #e0e0e0;
            display: none; /* Hidden by default and displayed based on filter */
        }

        .faq-item.faq-show {
            display: block; /* Show FAQ item when filtered */
        }

        .faq-question {
            font-size: 1.2em;
            /* font-weight: bold; */
            padding: 15px;
            color: #000000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: 0.3s;
        }

        .faq-question:hover {
            color: #000000;
            font-weight: bold;
        }

    


        .faq-answer {
            max-height: 0;
            overflow: hidden;
            color: #555;
            font-size: 1em;
            padding: 0 15px;
            transition: max-height 0.3s ease;
        }

        .faq-answer p {
            font-family: 'Inter';
            padding: 15px 0;
            margin: 0;
        }

        /* Plus/minus icon for expand/collapse */
        .faq-item.faq-active .faq-answer {
            max-height: 200px;
        }

        .faq-item.faq-active .faq-question:after {
            content: '-';
            font-size: 1.5rem;
            transition: transform 0.5s;
        }

        .faq-question:after {
            content: '+';
            font-size: 1.5rem;
            color: #ffcc00;
            transition: transform 0.5s;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .faq-content {
                flex-direction: column;
            }
            .faq-sidebar {
                max-width: 100%;
            }
        }




        /* Welcome Section */

        /* Center sections and adjust padding for smaller screens */
            .welcome-section,
            .commitment-section,
            .process-section,
            .contact-section {
                max-width: 1400px;
                margin: 0 auto;
                padding: 40px 20px;
            }

.welcome-section {
    display: flex;
    padding: 40px;
    background-color: #000000;
    color: #fff;
    border-radius: 0px 0px 20px 20px;
    align-items: center;
}

.welcome-content {
    flex: 1;
}

.welcome-content h1 {
    font-size: 2.5em;
}

.welcome-content h1 span {
    color: #ffcc00;
}

.welcome-content p {
    margin-top: 20px;
    font-size: 1.2em;
}

.welcome-image {
    flex: 1;
}

.welcome-image img {
    width: 80%;
    border-radius: 20px;
    border: 2px solid #ffcc00;
}

/* Commitment Section */
.commitment-section {
    display: flex;
    padding: 40px;
    align-items: center;
    gap: 20px;
    /* background-color: #ffcc00; */
    color: #000000;
    border-radius: 20px 20px 0px 0px;
}

.commitment-content {
    flex: 1;
}

.commitment-content h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.commitment-image {
    flex: 1;
}

.commitment-image img {
    width: 80%;
    border-radius: 20px;
    border: 2px solid #ffcc00;
}




/* Why Choose Us Section */
.why-choose-section-about {
    text-align: center;
    padding: 40px 20px;
    background-color: #000000;
}

.why-choose-section-about h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    color: #ffffff;
}

.why-choose-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 300px;
    border: 2px solid #ffcc00;
    transition: 0.5s;
}

.card:hover {
    transform: scale(1.05);
}

.card img {
    width: 50px;
    margin-bottom: 15px;
}

.card h3 {
    color: #ffcc00;
    font-size: 1.5em;
}

/* About Process Section */
/* About Process Section */
.about-process-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.about-process-section h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 40px;
}

.about-process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-process-step {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(50% - 20px);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.about-process-step:hover {
    transform: translateY(-10px);
}

.about-process-step img {
    width: 50px;
    margin-top: 15px; /* Adjust to create space for the step number */
    margin-bottom: 15px;
}

.about-process-step h3 {
    font-size: 1.5em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.about-process-step p {
    font-size: 1em;
    color: #333;
    line-height: 1.6;
}

/* Step Number Styling */
.about-process-step-number {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 1.2em;
    /* font-weight: bold; */
    background-color: #ffcc00;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-process-step {
        width: 100%;
    }
    
    .about-process-section h2 {
        font-size: 1.8em;
    }
    
    .about-process-step h3 {
        font-size: 1.3em;
    }
    
    .about-process-step p {
        font-size: 0.9em;
    }
}


/* Contact Section */
.contact-section {
    padding: 40px;
    background-color: #ffcc00;
    color: #000000;
    text-align: center;
    border-radius: 10px;
}

.contact-content h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

@media (max-width: 768px) {

    /* Welcome Section */
    .welcome-section {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .welcome-content h1 {
        font-size: 2em;
    }

    .welcome-content h1 span {
        font-size: 2em;
        color: #f5a623;
    }

    .welcome-content p {
        font-size: 1.1em;
        margin-top: 15px;
    }

    .welcome-image img {
        width: 90%;
        margin: 20px auto;
        border-radius: 10px;
    }

    /* Commitment Section */
    .commitment-section {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .commitment-content h2 {
        font-size: 2em;
    }

    .commitment-content p {
        font-size: 1.1em;
        margin-top: 15px;
    }

    .commitment-image img {
        width: 90%;
        margin: 20px auto;
        border-radius: 10px;
    }

    /* Why Choose Us Section */
    .why-choose-section {
        padding: 30px;
    }

    .why-choose-section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .why-choose-cards {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .card {
        width: 80%;
        padding: 25px;
    }

    .card h3 {
        font-size: 1.4em;
    }

    .card p {
        font-size: 1em;
    }

    .card img {
        width: 45px;
        margin-bottom: 10px;
    }
}





/* Contact Hero Section */
/* Contact Information Section */
.contact-info-section {
    padding: 40px 20px;
    text-align: center;
}

.contact-info-section h2 {
    font-size: 2em;
    margin-bottom: 30px;
}

.contact-info-cards {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.contact-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: 0.4s;
}

.contact-card:hover {
   transform: scale(1.05);
}


.contact-card img {
    width: 50px;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.5em;
    color: #ffcc00;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.5;
}

.contact-card button {
    background-color: #ffcc00;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 15px;
    cursor: pointer;
    font-size: 1em;
}

.contact-card button:hover {
    background-color: #000000;
    color: #ffcc00;
}

/* Appreciation Section */
.appreciation-section {
    background-color: #000000; /* Match background color to the design */
    color: #333;
    padding: 40px 20px;
    text-align: center;
    /* border-radius: 8px; */
    /* margin: 20px auto; */
    /* max-width: 1000px; */
}

.appreciation-section h2 {
    font-size: 1.8em;
    font-weight: bold;
    color: #ffcc00;
    margin: 0px auto 40px auto;
    max-width: 1100px;
}

.appreciation-section p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    text-align: justify;
}


/* Responsive Design */
@media (max-width: 768px) {
    .contact-info-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 80%;
    }

    .appreciation-section {
        padding: 30px 15px;
    }

    .appreciation-section h2 {
        font-size: 1.5em;
    }

    .appreciation-section p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {

    .contact-card {
        width: 100%;
    }

    .appreciation-section h2 {
        font-size: 1.3em;
    }

    .appreciation-section p {
        font-size: 0.95em;
    }
}









