    @import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

    *{
        padding:0;
        margin:0;
        box-sizing: border-box;
        font-family: 'Montserrat';
        --accentColor: rgb(52,160,255);
        --darkBlue: rgb(0, 52, 113);
        --lightBlue: rgb(231, 246,255);
        --lightGreen: rgb(221, 255, 253);
        --darkGreen: rgb(0, 71, 94);
        --white: rgb(255, 255, 255);
        --accentGreen: rgb(0, 214, 217);
    }

    html{
        scroll-behavior: smooth;
    }

    body{

        background-color: var(--white);
        color: var(--darkBlue);

    }

    p{
        line-height: 1.5rem;
        font-size: 1rem;


        
    }

    a{
        text-decoration: none;
        font-size: 0.8rem;
    }

    /* Navbar */

    .navbar{
        width: 100%;
        height:70px;
        display: flex;
        justify-content: space-between;
        padding:0 calc(50% - 720px);
        z-index: 1111;
        top: 0;
        position: fixed;
        background-color: var(--white);

    }


    .logo{
        display: flex;
        align-items: center;
    }

    .logoImg{
        height:50px;
    }

    .mobileOnly{
        display: none;
    }

    .menu{
        display: flex;
        list-style: none;
        align-items: center;
    }

    .menuList{
        margin:0 .5rem;
    }

    .menuItem{
        padding:10px 16px;
        font-weight: 500;
        font-size: 0.8rem;
        text-decoration: none;
        transition: all ease .5s;
        position: relative;
        border: 1px solid transparent;
        border-radius: 20px;
        color: var(--darkBlue);
    }

   

    .active{
        color:var(--darkBlue);
        border: 1px solid var(--darkBlue);
        border-radius: 20px;
    }

    .menuItem:hover{
        color:var(--darkBlue);
        border: 1px solid var(--darkBlue);
        border-radius: 20px;
        transition: all ease .5s;

    }

    .menuItem:hover.menuItem::before{
        width:100%;
        transition: all ease .5s;

    }

    .CTA, .SCTA{
        padding:10px 30px;
        font-size: 0.8rem;
        background-color: var(--accentColor);
        color: var(--white);
        font-weight: 600;
        border-radius: 15px;
        text-decoration: none;
        transition: all ease .5s;
        position: relative;
    }


    .CTA:hover{
        background-color: var(--darkBlue);
    }

    /* showcase Section */

    .showcaseSection{
        width: calc(1440px + 100px);
        margin: 70px auto;
        height: 700px;
        background-color: var(--darkGreen);
        background: linear-gradient(0deg, rgba(204,255,204,1) 0%, rgba(221,255,253,1) 100%);
        border-radius: 50px;
    }

    .container{
        width: 1440px;
        margin: 0 auto;
    }

    .showcaseGridBox{
        display: grid;
        gap: 2rem;
        grid-template-columns: 50% 50%;
        height: 100%;
        position: relative;
        height: 100%;
        color: var(--darkGreen);
        
    }

    .showcaseTextBox{

        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: center;
        gap: 1rem;
        height: 700px;
    }

    .ShowcaseHeading{
        font-size: 3rem;
        font-weight: 800;

    }

    .showcaseSubHeading, .subHeading{
        font-weight: 500;
        font-size: 1.25rem;
        line-height: 125%;

    }



    .buttonBox{
        margin-top: 1.5rem;
        display: flex;
        width: 100%;
        align-items: center;
        gap:2rem;
    }

    .SCTA{
    background-color: var(--accentGreen);
    }


    .SCTA:hover{
        background-color: var(--darkGreen);
        transition: all ease 0.5s;
        }


    .showcaseImageBox{
        height: 600px;
        position: absolute;
        bottom: 0;
        right: 0;
        
    }

    .showcaseImage{
        height: 100%;


    }

    /* USPs Section */

    .USPSection{
        background:linear-gradient(white, var(--lightGreen));
        padding: 0 0 7rem 0;
    }

    .USPGridBox{
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap:2rem;

    }

    .USPBox{
        position: relative;
        padding:2rem;
        border-radius: 30px;
        background-color: var(--white);
        text-decoration: none;
        color: var(--darkBlue);
    }

    .USPBoxText{
        width: 80%;
    }

    .USPIcon{
        position: absolute;
        bottom: 0;
        right: 0;
        height:40%;
        border-radius: 50px;
        clip-path: inset(3px 3px);


    }
    .USPLink{
        padding:1rem 2rem;
        border:1px solid var(--accentGreen);
        border-radius: 10px;
        color: var(--darkGreen);
        text-decoration: none;
        display: inline-block;
    }



    /* service Section */

    .serviceSection{
        margin: 5rem 0 5rem 0;
    }

    .sectionHeading{
        text-align: center;
        font-size: 2rem;
        margin: 2rem 0;
    }

    .subHeading{
        width: 75%;
        margin: 2rem auto;
        text-align: center;
    }

    .serviceBox{
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 5rem;
        border-radius: 30px;
        background:linear-gradient(white, var(--lightBlue));
    }

    .serviceTextBox{
        padding: 2rem 4rem 4rem;
        grid-row: 1/2;
        text-align: right;
    }

    .rightImage .serviceTextBox{
        text-align: left;
    }

    .titleBox{
        display: flex;
        gap:2rem;
        align-items: center;
        justify-content: left;

    }

    .rightImage .titleBox{
        justify-content: right;

    }

    .cardIcon{
        width:50px;
        clip-path: inset(3px 3px);
    }



    .cardText{
        margin: 2rem 0 3rem 0;
        text-align: left;
    }

    .rightImage .cardText{
        text-align: right;
    }

    .serviceImageBox{
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-radius: 30px;
        min-height: 400px;
        

    }

    .AgedCare{

        background-image: url(./Images/Age-care-service.webp);
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .hospitalStaff{
        background-image: url(./Images/Hospital-staff-service.webp);
        grid-column: 2/3;
        grid-row: 1/2;
    }

    .homeCare{
        background-image: url(./Images/Home-care-service.webp);
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .foodService{
        background-image: url(./Images/Food-service.webp);
        grid-column: 2/3;
        grid-row: 1/2;
    }

    .chef{
        background-image: url(./Images/chef-service.webp);
        grid-column: 1/2;
        grid-row: 1/2;
    }

    /* contact section */

    .contactSection{
        padding:2rem 0 5rem 0;
        background-color: var(--lightBlue);
        background-image: url(./Images/contact-us-background.webp);
    }

    .contactGridBox{
        display: grid;
        grid-template-columns: 2fr 3fr;
        gap:2rem;
        
    }

    .contactDetailBox, .contactFormBox{
        background-color: rgba(255, 255, 255, 0.25);
        border: 1px solid var(--white);
        border-radius: 30px;
        padding:2rem ;
    }

    .contactDetailBox{
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: space-between;
    }

    .contactDetails{
        text-decoration: none;
        color: var(--darkBlue);
        font-size: 1.25rem;



    }


    .cardHeading{
        font-size: 2rem;
    }
    .contactDetails:hover{
        text-decoration: underline;
        color: var(--white);
        font-size: 1rem;

    
    }

    .namePhoneBox{
        display: flex;
        width: 100%;
        gap:2rem;
    }

    .formEntryBox{
        width: 100%;
    }


    .contactDetails{
        display: flex;
        gap:1rem;
        margin-top: 2rem;
    
    }

    .optionButton{

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap:2rem;
        width: 80%;
        margin: 0 auto;
    }

    .formEntryBox{
        margin-bottom: 1rem;
    }
    .radio{
        visibility: hidden;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    ::-webkit-input-placeholder{
        color: var(--accentColor);
       
    }

    :-ms-input-placeholder{
        color: var(--accentColor);
    }

    .option{
        cursor: pointer;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding:0.75rem;

    }

    .job{
        border: 1px solid var(--darkGreen);
        background: var(--lightBlue);
    }

    .staff{
        border: 1px solid var(--darkGreen);
        background: var(--lightGreen);
    }


    .radio:checked + .job {
        background: var(--darkBlue);
        color: var(--white);
        transition: all ease-in-out .3s;
    }

    .radio:checked + .staff {
        background: var(--darkGreen);
        color: var(--white);
        transition: all ease-in-out .3s;
    }

    .formButton{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 3rem;
        padding:1rem;
        cursor: pointer;
        border: 3px solid var(--darkBlue);

    }

    .formEntryBox{
        display: flex;
        flex-direction: column;
        margin-bottom: 2rem;
        gap:1rem;
        
    }

    input{
        outline: none;
        border:3px solid transparent;
        padding:0.5rem 1rem;
        border-radius: 20px;
        color: var(--darkBlue);
        transition: all ease-in-out .3s;
        cursor: pointer;
        background-color: rgba(255, 255, 255, 0.5);

    }

    input:focus{
        
        border:3px solid var(--white);
        transition: all ease-in-out .3s;
    }

    /* FAQs Section */

    .FAQSection{
        margin:5rem 0;
    }

    .FAQBox{
        padding:2rem;
        background-color: var(--lightGreen);
        border-radius: 30px;
    }

    .FAQ{
        list-style: none;
        background-color: var(--white);
        border-radius: 20px;
        border:1px solid transparent;
        margin-bottom: 1rem;
        position: relative;

    }

    .FAQQuestion{
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding:1rem 1.5rem;
        border:1px solid transparent;
        transition: all ease 0.5s;
        border-radius: 20px;
    }

    .FAQ:hover {
        transition: all ease 0.5s;
        border:1px solid var(--darkGreen);
        border-radius: 20px;
    }


    .FAQToggler[type="radio"]{
        display: none;
    }

    .FAQAnswer{

        transition: all ease .5s;
        overflow: hidden;
        margin: -1.5rem 2.5rem 1.5rem 2.5rem;
        max-height:0;

    }

    .FAQToggler[type="radio"]:checked + .FAQAnswer{

        transition: all ease 1.5s;
        max-height: 400px;

        
    }

    /* CTA section */

    .CTASection{
        padding: 6rem 4rem;
        width: calc(1440px + 100px);
        margin: 0 auto;
        background-image: url(./Images/savior-nursing-agency-caring-people.webp);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-color: rgba(0, 29, 66, 0.741);
        background-blend-mode: multiply;
        border-radius: 50px;
        outline: 5px solid var(--accentColor);
        
    }

    .CTAText{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:2rem;
        color: var(--white);
    }

    .CTATitle{
        text-align: center;
        width:60%;
        margin: 0 auto;
    }

    .CTAHeading{
        font-size: 2.5rem;
    }

    .CTAButton{
       padding: 1rem 5rem;

    }

    /* Footer */

footer{
    padding:5rem 0 2rem 0;
    background: var(--darkBlue);
    background:linear-gradient( var(--darkBlue), rgb(3, 0, 18));
    margin:5rem 0 0 0;

}

.footerGridBox{
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap:4rem;
}

.footerLinks{
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.link{
    color: var(--white);
    text-decoration: none;
    transition: all ease 0.3s;
    font-size: 0.8rem;
}

.link:hover{
    color: var(--accentGreen);
    transition: all ease 0.3s;
}

.footerLogo{
     height: 50px;
}

.socialMediaLink{
    display: flex;
    gap:2rem;
    justify-self:  right ;
    align-items: center;
}
.socialMediaIcon{
    width: 40px;
    transition: all ease 0.3s;
    outline: 2px solid transparent;
    border-radius: 8px;

}

.socialMediaIcon:hover{
    outline: 2px solid var(--white);
    transition: all ease 0.3s;


}

.footerTextBox{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin:2rem 0 1rem 0;
    

}

.footerText{
    font-size: 0.8rem;
    color: var(--white);
}

.branding{
    font-size: 0.75rem;
    color: var(--white);
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.3s;
}

.branding:hover{
    color: var(--accentGreen);
    transition: all ease 0.3s;
}


/* service page */

.pageshowcaseSection{
    background-image: url(./Images/services-provided-Savior-nursing-agency.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width:1440px;
    margin:70px auto;
    height:400px;
    border-radius: 50px;
    background-color: rgba(0, 29, 66, 0.741);
    background-blend-mode: multiply;
}

.pagesectionHeading{
    color: var(--white);
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.footer{
    margin: 0;
}


.contactPage{
    background-image: url(./Images/savior-nursing-agency-caring-people.webp);
}

.thnaksmessage{
    width:100%;
    height: 100vh;
    color: var(--darkBlue);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:2rem;
}

/* Responsiveness */

@media only screen and (max-width: 1680px){
    
    .navbar{
        padding:0 calc(50% - 600px);
      

    }

    /* showcase Section */

    .showcaseSection{
        width: calc(1280px + 100px);
        height: 700px;
    }

    .container{
        width: 1280px;
        
    }

    .pageshowcaseSection{
        width:1280px;
        height: 400px;
        border-radius: 30px;
       
    }


    .USPIcon{
        height:30%;



    }





    /* contact section */


    .contactGridBox{
        width:100%;
        grid-template-columns: 40% 60%;
        gap:0;
        
    }

    .contactDetailBox, .contactFormBox{
        padding:2rem ;
    }

    .contactDetailBox{
        width: 90%;
    }


    .namePhoneBox{
        flex-direction: column;
        gap:0;
    }
   



    /* CTA section */

    .CTASection{
        width: 1280px;

        
    }

    .CTAText{
        text-align: center;

    }

    .CTATitle{
        width:80%;
    }



    /* Footer */



.link{
    font-size: 0.8rem;
}


.footerText{
    font-size: 0.8rem;
}

.branding{
    font-size: 0.76rem;
}

}

@media only screen and (max-width: 1280px){
    
    .navbar{
        padding:0 calc(50% - 480px);
      

    }

    /* showcase Section */

    .showcaseSection{
        width: calc(960px + 100px);
        height: 700px;
    }

    .container{
        width: 960px;
        
    }

    .pageshowcaseSection{
        width:960px;
        height: 400px;
        border-radius: 30px;
       
    }


    .USPIcon{
        height:30%;



    }





    /* contact section */


    .contactGridBox{
        width:100%;
        grid-template-columns: 40% 60%;
        gap:0;
        
    }

    .contactDetailBox, .contactFormBox{
        padding:2rem ;
    }

    .contactDetailBox{
        width: 90%;
    }


    .namePhoneBox{
        flex-direction: column;
        gap:0;
    }
   



    /* CTA section */

    .CTASection{
        width: 960px;

        
    }

    .CTAText{
        text-align: center;

    }

    .CTATitle{
        width:80%;
    }



    /* Footer */



.link{
    font-size: 0.8rem;
}


.footerText{
    font-size: 0.8rem;
}

.branding{
    font-size: 0.76rem;
}

}
   
 /* Mobile Responsiveness */

@media only screen and (max-width: 1024px){ 



    .navbar{
        height:80px;
    
        padding:0 30px;
    

    }

    .logoImg{
        height:40px;
    }

    .mobileOnly{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu{
        display: flex;
        position: absolute;
        top:80px;
        right: -100%;
        visibility:hidden;
        opacity:0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        list-style: none;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease-in;
    }

    .menu.open{
        right:0;
        
        visibility:visible;
        opacity:1;
        transition: all 0.5s ease-in;
    }

    .menuList{
        margin:20px 0;

    }

    .navbar-toggler{
        display: block;
        background-color: transparent;
        border: 3px solid transparent;
        outline: none;
        padding: 0 5px;
        cursor: pointer;
    
    }
    
    .navbar-toggler span,
    .navbar-toggler span::before, 
    .navbar-toggler span::after{
    display: block;
    content: '';
    background-color: var(--accentColor);
    height: 3px;
    width: 30px;
    border-radius: 10px;
    transition: all ease-in-out 0.3s;
    }
    .navbar-toggler span::before{
        transform: translateY(-8px);
    
    }
    .navbar-toggler span::after{
        transform: translateY(5px);
    }

    .navbar-toggler.open-navbar-toggler span
{
    background-color: transparent;
}
    .navbar-toggler.open-navbar-toggler span::before{
    transform: translateY(0px) rotate(45deg);
}
    .navbar-toggler.open-navbar-toggler span::after{
    transform: translateY(-3px) rotate(-45deg);
}



    /* showcase Section */

    .showcaseSection{
        width: 100%;
        margin: 80px auto;
        overflow: hidden;
        border-radius: 20px;
       
    }

    .container{
        width: calc(100% - 50px);
    }

    .showcaseGridBox{
        grid-template-columns: 1fr;

        
    }

    .showcaseTextBox{
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding:50px 0 0 0;
    }

    .ShowcaseHeading{
        font-size: 1.75rem;

    }

    .showcaseSubHeading, .subHeading{
        font-size: 1rem;
    }

    .buttonBox{
        flex-direction: column;
        align-items: start;

    }

    .SCTA{
    background-color: var(--accentGreen);
    }

    .buttonBox .CTA,
    .buttonBox .SCTA{
        width:50%;
        text-align: center;
    }




    .showcaseImageBox{
        height: 45%;
        right:-50px;
        

    }

    /* USPs Section */



    .USPGridBox{

        grid-template-columns: 1fr 


    }

    .USPBox{
        border-radius: 20px;

    }

    .USPBoxText{
        width: 100%;
        margin-bottom: 1rem;
    }

    .USPIcon{

        height:30%;




    }
    .USPLink{
        padding:1rem 2rem;
        border:1px solid var(--accentGreen);
        border-radius: 10px;
        color: var(--darkGreen);
        text-decoration: none;
        display: inline-block;
    }



    /* service Section */


    .serviceBox{

        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        border-radius: 30px;

    }

    .serviceTextBox{
        padding: 1.5rem;
        text-align: right;
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .rightImage .serviceTextBox{
        text-align: left;
    }

    .titleBox{
        display: flex;
        gap:1.5rem;
        align-items: center;
        justify-content: left;

    }

    .rightImage .titleBox{
        justify-content: right;

    }




    .cardText{
        margin: 1.5rem 0 2rem 0;
        text-align: left;
        
    }

    .rightImage .cardText{
        text-align: left;
    }


    .AgedCare{

   
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .hospitalStaff{
        
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .homeCare{
      
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .foodService{
        
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .chef{
       
        grid-column: 1/2;
        grid-row: 2/3;

    }
    /* contact section */


    .contactGridBox{
        display: grid;
        grid-template-columns: 1fr;
        gap:2rem;
        
    }

    .contactDetailBox, .contactFormBox{
        padding:1.5rem ;
    }

    .contactDetailBox{
        width: 100%;
    }


    .namePhoneBox{
        width:100%;
        display: flex;
        gap:0;
    }
    .optionButton{

        display: grid;
        grid-template-columns: 1fr;
        gap:1rem;
    }


    .job{
        border: 1px solid var(--darkGreen);
        background: var(--lightBlue);
    }

    .staff{
        border: 1px solid var(--darkGreen);
        background: var(--lightGreen);
    }


    .radio:checked + .job {
        background: var(--darkBlue);
        color: var(--white);
        transition: all ease-in-out .3s;
    }

    .radio:checked + .staff {
        background: var(--darkGreen);
        color: var(--white);
        transition: all ease-in-out .3s;
    }

    .formButton{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-top: 2rem;
        padding:1rem;
        cursor: pointer;
        border: none;
    }

    .formEntryBox{
        display: flex;
        flex-direction: column;
        margin-bottom: 1.5rem;
        gap:1rem;
        
    }

    input{
        outline: none;
        border:3px solid transparent;
        padding:1rem 2rem;
        border-radius: 20px;
        color: var(--darkBlue);
        transition: all ease-in-out .3s;
        cursor: pointer;
        background-color: rgba(255, 255, 255, 0.5);

    }

    input:focus{
        
        border:3px solid var(--white);
        transition: all ease-in-out .3s;
    }

    /* FAQs Section */

    .FAQSection{
        width: 100%;
        background-color: var(--lightGreen);
        padding:2rem 0 0 0;
    }

    .FAQBox{
        padding:2rem 0;
        border-radius: 20px;
    }

  
    /* CTA section */

    .CTASection{
        padding: 2rem 1.5rem;
        width: 100%;
        margin: 0 auto;
        border-radius: 0;
        outline: none
        
    }

    .subHeading{
        width: 100%;
    }




    .CTAHeading{
        font-size: 1.5rem;
    }

    .CTAButton{
       padding: 1rem 3rem;

    }

    /* Footer */

footer{
    padding:3rem 0 1.5rem 0;
    background: var(--darkBlue);
    background:linear-gradient( var(--darkBlue), rgb(3, 0, 18));
    margin:5rem 0 0 0;

}

.footerGridBox{
    display: flex;
    flex-direction: column;
    gap:2rem;
    align-items: center;
    justify-content: center;
}

.footerLinks{
    display: none;
}

.footerLogo{
     height: 50px;

}



.socialMediaIcon:hover{
    outline: 2px solid var(--white);
    transition: all ease 0.3s;


}

.CTATitle{
    width:100%;
}

.footerTextBox{
    flex-direction: column;

    

}
}