* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}
.section1 {
    /* margin-top: 80px; */
    min-height: 50vh;
    background-image: url(assets/Gemini_Generated_Image_c52oqqc52oqqc52o.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.section1-content {
    /* min-height: 80vh; */
    margin-left: 15%;
}

.section1-content-h2 {
    color: #272727;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
}

.section1-content-anchor-home {
    color: #838383;
    text-decoration: none;
    font-size: 1.1rem;
    margin-right: 1.2rem;
    transition: all 0.2s linear;
}

.section1-content-anchor-home:hover {
    color: #c78766;
}

.section1-content-anchor {
    color: #c78766;
    text-decoration: none;
    font-size: 1.1rem;
}

@media (max-width: 768px) {

    .section1 {
        min-height: 35vh;
    }

    .section1-content {
        margin-left: 8%;
    }

    .section2-content {
        width: 95%;
    }

}

.section2 {
    min-height: 60vh;
    /* background-color: aliceblue; */
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    /* text-align: center; */
}

.section2-content {
    /* margin-top: 5%; */
    padding-top: 5%;
    padding-bottom: 5%;
    width: 80%;
    /* background-color: #fff; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    /* text-align: center; */
}

.section2-content-fraction {
    border: 1px solid #c78766;
    background-color: #f8f3ef;
    /* height: 40%; */
    min-height: 22rem;
    width: 100%;
   transition: all 0.35s ease;
    cursor: pointer;
}

.section2-content-fraction:hover {
    background: #f5e6e0;
    border-color: #c9917f;
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 30px rgba(176, 122, 110, 0.15);
}

.section2-content-fraction-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.section2-content-fraction-text {
    text-align: center;
}

.section2-content-fraction-in {
    margin: 1.3rem 1.2rem 1.3rem 1.2rem;
}

.section2-content-fraction-text-h2 {
    color: #414141;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.section2-content-fraction-text-para {
    color: #838383;
    font-size: 1.1rem;
}

.faction-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
}

/* section-3 */
.service-section3 {
    padding: 4rem 2rem;
    background: #fbf5f1;
}

.service-section3-inner {
    max-width: 1400px;
    width: 75%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: center;
}

.service-section3-inner-divs {
    background: #faf5f3;
    border: 0.5px solid #e8d8d2;
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-section3-inner-divs-h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d2d3a;
}

.service-section3-inner-divs-content-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-section3-inner-divs-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 0.5px solid #e8d8d2;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    gap: 1.5rem;
    transition: all 0.35s ease;
    cursor: pointer;
}

.service-section3-inner-divs-content:nth-child(even) {
    flex-direction: row-reverse;
}

.service-section3-inner-divs-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(176, 122, 110, 0.15);
    border-color: #c9917f;
    background: #f5e6e0;
}

.service-section3-inner-divs-content-h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d2d3a;
    flex: 1;
    transition: color 0.35s ease;
}

.service-section3-inner-divs-content:hover .service-section3-inner-divs-content-h3 {
    color: #b07a6e;
}

.service-section3-inner-divs-content img {
    width: 150px;
    height: 110px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.service-section3-inner-divs-anchor {
    text-decoration: none;
    margin-top: auto;
}

.service-section3-inner-divs-anchor-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1.5px solid #2d2d3a;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #2d2d3a;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.service-section3-inner-divs-anchor-btn:hover {
    background: #b07a6e;
    border-color: #b07a6e;
    color: #fff;
}

@media (max-width: 900px) {
    .service-section3-inner {
        width: 95%;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .service-section3-inner-divs-content img {
        width: 100px;
        height: 80px;
    }

    .service-section3-inner-divs-content-h3 {
        font-size: 1.1rem;
    }
}

/* ===== SECTION 4 - Call to Action ===== */
.section4 {
    padding: 60px 6%;
    background-color: #fff;
}

.section4-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.section4-inner-img-div {
    flex: 1;
    display: flex;
    gap: 16px;
    align-items: center;
}

.section4-inner-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 8px;
}

.section4-inner-text {
    flex: 1.2;
}

.section4-inner-text-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section4-inner-text-content-para1 {
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #b07060;
    text-transform: uppercase;
}

.section4-inner-text-content-h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.section4-inner-text-content-para2 {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.section4-inner-text-content-sec {
    display: flex;
    gap: 60px;
    margin-top: 8px;
}

.section4-inner-text-content-sec-h2 {
    font-size: 20px;
    font-weight: 700;
    color: #b07060;
    margin-bottom: 12px;
}

.section4-inner-text-content-sec-para {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 10px;
}

.section4-inner-text-content-sec-para-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.section4-inner-text-content-btn {
    margin-top: 10px;
    background-color: #b07060;
    border: none;
    padding: 14px 36px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    width: fit-content;
}

.section4-inner-text-content-btn:hover {
    background-color: #9a5f50;
}

.section4-inner-text-content-btn-anchor {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

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

    .section4-inner-img {
        height: 300px;
    }

    .section4-inner-text-content-h2 {
        font-size: 28px;
    }

    .section4-inner-text-content-sec {
        flex-direction: column;
        gap: 24px;
    }
}


/* Specific styling for the Pricing Card */
.section2-content-fraction.pricing-card {
    background-color: #f8f3ef; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

/* Make the whole inner area fill the card and remove underline */
.pricing-link {
    text-decoration: none;
    display: block;
    width: 100%;
}

/* Center the arrow wrapper */
.section2-content-fraction-img-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

/* Style the Arrow Image and turn it BEIGE using a CSS filter */
.faction-img-arrow {
    width: 60px; /* Adjust size as needed */
    height: auto;
    /* This filter magic converts a pure black PNG into a soft luxury beige (#f8f3ef) */
    filter: invert(94%) sepia(11%) saturate(234%) hue-rotate(334%) brightness(105%) contrast(95%);
    transition: transform 0.3s ease;
}

/* Style the "Click Here..." Text */
.section2-content-fraction-text-anchor {
    color: #1a1a1a; /* Matching beige text color */
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

/* --- HOVER EFFECTS --- */
/* Subtle premium hover effect: card goes slightly lighter, arrow moves right */
.section2-content-fraction.pricing-card:hover {
    background-color: #9a5f50;
}

.section2-content-fraction.pricing-card:hover .faction-img-arrow {
    transform: translateX(8px); /* Elegant slide animation */
}