:root {
    --bg-color: #fff;
    --navbar-bg: #f7f3f0;
    --text-color: #46433b;
    --hover-color: #f15e4b;
    --card-color: #f7f3f0;
}



.home-section {
    height: 60vh;
    /* 60% of the viewport height */
    position: relative;
    /* To position the logo correctly */
    background: url("../../images/Frame_1109822730.svg") no-repeat center center / cover;
    /* Background image for desktop */
    margin-bottom : 2rem;
}

body {
    font-family: "Raleway", sans-serif;
    background-color: var(--bg-color);
}

.line {
    height: 1px;
    /* Set the height of the line */
    width: 147px;
    /* Set your desired width for the line */
    margin: 0 10px;
    /* Optional: Add space between the lines and the text */
}

.logo {
    position: absolute;
    /* Position it absolutely */
    top: 50%;
    /* Center vertically */
    left: 50%;
    /* Center horizontally */
    transform: translate(-50%, -50%);
    /* Adjust for centering */
    z-index: 9;
    /* Bring it above the background */
    margin-top: 50px;
}

.logo img {
    max-width: 90%;
    /* Responsive width */
    height: auto;
    /* Maintain aspect ratio */
    margin: auto;
}

     

      
.perspective {
    perspective: 1000px; /* Add 3D perspective */
}

.flip-card {
    position: relative;
    width: 276px;
    height: 311px;
    transform-style: preserve-3d; /* Allow 3D transformation */
    transition: transform 0.6s ease-in-out;
    cursor: pointer;
    overflow: hidden; /* Hide overflow for smoother transitions */
}

.card-side {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; /* Hide back side when flipped */
    display: flex;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease-in-out; /* Smoother transitions */
}

.front {
    background-color: #f7f3f0;
    transform: rotateY(0deg); /* Default front side */
}

.back {
    background-color: #f7f3f0;
    transform: rotateY(180deg); /* Back side flipped initially */
}

.flip-card:hover .front {
    transform: rotateY(180deg);
}

.flip-card:hover .back {
    transform: rotateY(360deg); /* Complete the flip on hover */
}


.fixed-navbar {
    position: fixed;
    top: 0;
    /* left: 0; */
    z-index: 1000;
    background-color: var(--card-color);
    margin: 15px 10px;
    padding: 15px;
    border-radius: 10px;
}

.footer {
    padding-left: 10rem;
    padding-right: 10rem;
}

.individual-circle {
    top: -16%;
    left: 37%;
}

.family-circle {
    top: -15%;
    left: 0px;
}

.business-circle {
    left: 17%;
    top: 27%;
}

.circle {
    position: absolute;
    /* Positioning for overlap */
    border-radius: 50%;
    /* Makes it a circle */
    display: flex;
    /* Flexbox for centering content */
    justify-content: center;
    /* Center content horizontally */
    align-items: center;
    /* Center content vertically */
}

.circle2 {
    position: absolute;
    /* Positioning for overlap */
    /* border-radius: 50%; Makes it a circle */
    display: flex;
    /* Flexbox for centering content */
    justify-content: center;
    /* Center content horizontally */
    align-items: center;
    /* Center content vertically */
}

.self-circle {
    top: 0;
    /* Positioning to align midpoints */
    left: 74px;
    /* Positioning to align midpoints */
}

.role-circle {
    /* Border for the second circle */
    top: 0;
    /* Adjusted to create intersection */
    left: 0px;
    /* Adjusted to create intersection */
}

.circles {
    position: relative;
    /* To position circles within this container */
    width: 200px;
    /* Width of the container */
    height: 200px;
    /* Height of the container */
}

.circles2 {
    position: relative;
    /* To position circles within this container */
    width: 183px;
    /* Width of the container */
    height: 177px;
    /* Height of the container */
}

.first-line {
    color: #000;
    text-align: center;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
}

.second-line {
    color: #000;
    text-align: center;
    font-family: Raleway;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 150% */
}

.txt-inside-circle {
    color: #88180a;
    font-family: Raleway;
    font-size: 36.718px;
    font-style: normal;
    font-weight: 900;
    line-height: 55.077px;
    /* 150% */
    text-transform: capitalize;
}

.txt-inside-circle2 {
    color: #88180a;
    font-family: Raleway;
    font-size: 24.736px;
    font-style: normal;
    font-weight: 900;
    line-height: 37.104px;
    /* 150% */
    text-transform: capitalize;
}

.view-toggle {
    background-color: var(--hover-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
    border-radius: 16px;
    background: #F15E4B;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
}

/* What we do Heading */
.what-we-do-heading {
    color: #000;
    font-family: Raleway;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: 36px;
    /* 150% */
    text-transform: capitalize;
    width: 227px;
}

.what-we-do-point {
    color: #f15e4b;
    font-family: Raleway;
    font-size: 64px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: capitalize;
}

.font-400 {
    font-weight: 400;
}

.font-900 {
    font-weight: 900;
}

.font-700 {
    font-weight: 700;
}

.font-800 {
    font-weight: 800;
}

.bottom-contact {
    position: fixed;
    color: #fff;
    cursor: pointer;
    align-items: center;
    display: inline-flex;
    padding: 12px;
    border-radius: 16px;
    background: #f15e4b;
    box-shadow: 0px 0px 20px 0px rgba(241, 94, 75, 0.6);
}

.rounded-lg {
    border-radius: 12px;
}

.scrollable-card {
    background: #f15e4b40;
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    min-width: 260px;
    gap: 12px;
    border-radius: 20px;
}

.heading-font {
    font-size: 32px
}

.mail-field {
    border-radius: 0.5rem;
    background-color: var(--card-color);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
    /* Smooth transition for all changes */
    /*position: relative;*/
    overflow: hidden;
    /* Ensures content doesn't overflow when sliding */
}

.mail-field img.mail-icon {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease-in-out;
    /* Fade out the mail icon */
}

.mail-field a {
    text-decoration: none;
    /*margin-left: -66px;*/
    transition: all 0.3s ease-in-out;
    /* Smooth slide and color transition */
    transform: translateX(0);
    /* Default position */
}

.mail-field:hover a {
    color: white;
    /* Text color on hover */
    transform: translateX(-40px);
    /* Slide text to the left on hover */
}

.mail-field:hover {
    background-color: var(--hover-color);
}

.mail-field:hover img.mail-icon {
    opacity: 0;
    /* Fade out the mail image on hover */
}

.mail-field .arrow {
    position: relative;
    transition: all 0.3s ease-in-out;
    /* Smooth transition for arrow */
}

.mail-field .arrow img {
    width: 20px;
    height: 20px;
    transition: opacity 0.3s ease-in-out;
    /* Smooth icon transition */
}

.mail-field:hover .arrow img.orange-arrow {
    opacity: 0;
    /* Hide orange arrow on hover */
}

.mail-field:hover .arrow img.white-arrow {
    opacity: 1;
    /* Show white arrow on hover */
}

/* Initially hide the white arrow */
.arrow img.white-arrow {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.cards {
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}

.cards::-webkit-scrollbar {
    display: none;
    /* For Chrome, Safari, and Opera */
}

.m-know-more {
    display: none;
}

.privacy-policy {
    right: 15rem;
}

.about-card-font-p {
    font-size: 20px;
}

.about-card-font-h3 {
    font-size: 32px;
}

.contact-card-font {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;

}

.what-we-do-heading2 {
    font-size: 16px;
}

.what-we-do-para2 {
    font-size: 12px;
}

.why-we-do-para {
    font-size: 20px;
}

@media (max-width: 768px) {

    .what-we-do-para {
        font-size: 14px;
    }

    /* Adjust this value based on your breakpoint */
    .home-section {
        background: none;
        /* Remove background for mobile view */
        height: 23vh;
        width: 100%;
        /* Make the section full height for mobile */
        margin-bottom : 4rem;
    }

    .heading-font {
        font-size: 16px;
    }

    .line {
        height: 1px;
        /* Set the height of the line */
        width: 25px;
        /* Set your desired width for the line */
    }

    .logo {
        width: 100%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 5rem;
        z-index: 0;
    }

    .footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .self-circle {
        top: 0;
        /* Positioning to align midpoints */
        left: 20px;
        /* Positioning to align midpoints */
    }

    .role-circle {
        top: 0;
        /* Positioning to align midpoints */
        left: -22px;
        /* Positioning to align midpoints */
    }

    .txt-inside-circle {
        color: #88180a;
        font-family: Raleway;
        font-size: 24px;
        font-style: normal;
        font-weight: 900;
        line-height: 36px;
        /* 150% */
        text-transform: capitalize;
    }

    .individual-circle {
        top: -15%;
        left: 32%;
    }

    .family-circle {
        top: -15%;
        left: -34%;
    }

    .business-circle {
        left: 2%;
        top: 27%;
    }

    .bottom-contact {
        display: none;
    }

    .footer-line {
        height: 1px;
        width: 100%;
        margin-top: 10px;
        margin-bottom: 10px;
        background-color: var(--hover-color);
    }

    .footer_anb {
        display: none;
    }

    .m-know-more {
        color: #F15E4B;
        font-family: Raleway;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 21px;
        /* 150% */
        text-transform: capitalize;
        display: block;
        margin-left: auto;
        padding: 0px 12px 5px 2px;
    }

    .privacy-policy {
        left: 33px;
        padding: 2px;
        width: 300px;
    }

    .about-card-font-p {
        font-size: 12px;
    }

    .about-card-font-h3 {
        font-size: 24px;
    }

    .contact-card-font {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
    }

    

    .first-line {
        color: #000;
        text-align: center;
        font-family: Raleway;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px;
        /* 150% */
    }

    .second-line {
        color: #000;
        text-align: center;
        font-family: Raleway;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        /* 150% */
    }

    .why-we-do-para {
        font-size: 14px;
    }

    .long-name {
        margin-top: -26px;
    }
    
    
}