body{
    font-family: Arial, Helvetica, sans-serif;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* -------------------------- Navbar --------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* 
   Navbar styles are now handled by main.css for consistency across all pages.
   All navbar styling has been moved to main.css to ensure uniform appearance.
*/

/* --------------------------- Services Dropdown -------------------------------- */
/* 
   All navbar styles including dropdowns are now handled by main.css 
   for consistency across all pages. These styles have been removed to 
   prevent conflicts with main.css.
*/

/* --------------------------- Industries Dropdown -------------------------------- */
/* 
   All navbar styles including dropdowns and appointment button 
   are now handled by main.css for consistency across all pages.
*/


/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* -------------------------- Services Hero -------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

.servicesimageouterdiv{
    position: relative;
    overflow: hidden;
}

.servicesimageinnerdiv{
    height: 50vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

/* Services Carousel Slides */
.services-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 1s ease-in-out, opacity 0.5s ease-in-out;
    z-index: 0;
}

.services-carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
    transition: transform 1s ease-in-out, opacity 0.5s ease-in-out;
}

.services-carousel-slide.immediate-visible {
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: none !important;
}

.services-carousel-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
    z-index: 0;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 51, 141, 0.35) 0%, rgba(0, 31, 84, 0.45) 100%);
    z-index: 2;
}

.servicesoverlaydiv{
    width: 100%;
    height: 50vh;
    min-height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    z-index: 3;
    background: transparent;
}

.servicesOverlayContent{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-align: center;
    justify-content: center;
}

.servicesheading{
    color: white;
    font-size: 55px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#servicesoverlaySlogan{
    width: 75vw;
    max-width: 900px;
    font-size: 25px;
    text-align: center;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive styles for services carousel */
@media (max-width: 1024px) {
    .servicesimageinnerdiv, .servicesoverlaydiv {
        height: 45vh;
        min-height: 350px;
    }

    .servicesheading {
        font-size: 42px;
    }

    #servicesoverlaySlogan {
        font-size: 20px;
        width: 85vw;
    }
}

@media (max-width: 768px) {
    .servicesimageinnerdiv, .servicesoverlaydiv {
        height: 40vh;
        min-height: 300px;
    }

    .servicesheading {
        font-size: 32px;
    }

    #servicesoverlaySlogan {
        font-size: 16px;
        width: 90vw;
    }
}

@media (max-width: 480px) {
    .servicesimageinnerdiv, .servicesoverlaydiv {
        height: 35vh;
        min-height: 250px;
    }

    .servicesheading {
        font-size: 24px;
        margin-bottom: 15px;
    }

    #servicesoverlaySlogan {
        font-size: 14px;
        width: 95vw;
    }
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* -------------------------- WhatsApp ------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* 
   WhatsApp styles are now handled by main.css for consistency across all pages.
   All WhatsApp styling has been moved to main.css to ensure uniform appearance.
*/

.texts{
    margin: 5%;
    justify-content: space-evenly;
    font-size: 20px;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ---------------------- Services Cards Div ------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

#allServicesCardsDiv{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background-color: rgb(247, 247, 247);
    padding: 5%;
}

.servicesCard{
    background-color: white;
    border: 1px solid rgba(0, 51, 141, 0.1);
    border-radius: 16px;
    padding: 35px;
    height: 100%;
    min-height: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.servicesCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, rgb(0, 51, 141) 0%, rgb(8, 37, 88) 100%);
    border-radius: 16px 16px 0 0;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.servicesCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 51, 141, 0.15);
}

.servicesCard:hover::before {
    transform: scaleX(1);
}

.allCardsHeadings{
    font-size: 26px;
    font-weight: 600;
    color: rgb(0, 51, 141);
    margin: 0 0 20px 0;
    display: block;
    position: relative;
    padding-left: 15px;
    transition: color 0.3s ease;
    width: 100%;
    flex-shrink: 0;
}

.allCardsHeadings::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, rgb(0, 51, 141) 0%, rgb(8, 37, 88) 100%);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.servicesCard:hover .allCardsHeadings::before {
    height: 40px;
}

.servicesCardParagraph{
    line-height: 1.8;
    margin: 0 0 25px 0;
    display: block;
    color: #555;
    font-size: 15px;
    width: 100%;
    flex-grow: 1;
}

.servicesCardButton{
    color: rgb(0, 51, 141);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    margin-top: auto;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(0, 51, 141, 0.05) 0%, rgba(8, 37, 88, 0.05) 100%);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
    width: fit-content;
    flex-shrink: 0;
}

.servicesCardButton::after {
    content: '→';
    transition: transform 0.3s ease;
    display: inline-block;
}

.servicesCardButton:hover{
    background: linear-gradient(135deg, rgb(0, 51, 141) 0%, rgb(8, 37, 88) 100%);
    color: white;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 51, 141, 0.3);
}

.servicesCardButton:hover::after {
    transform: translateX(4px);
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------- Services Scrap Section Div -------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

.scrapCards{
    display: none;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------- Financial Reporting Div ----------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

#financialreportingimagediv{
    background-image: url(../images/financialReporting.jpg);
    
}

.preparationdiv, .accuratediv, .regulatorydiv, .budgetingdiv, .Consolidationdiv, .managementdiv{
    font-size: 15px;
}

#preparationpra1, #accuratepra1, #regulatorypra1, #budgetpra1, #consolidationpra1, #managementpra1{
    font-weight: bold;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ---------------------------- Audit Div ---------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */


#auditimagediv{
    background-image: url(../images/pexels-leeloothefirst-8970297.jpg);
}

.financialstatementdiv, .internalauditdiv, .regulatorycompliancediv, .forensicauditdiv, .performancediv, .frauddetectiondiv{
    font-size: 15px;
}

#financialstatementpra1, #internalauditpra1, #regulatorycompliancepra1, #forensicauditpra1, #performancepra1, #frauddetectionpra1{
    font-weight: bolder;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ---------------------------- Tax Div ------------------------------ */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

#taximagediv{
    background-image: url(../images/pexels-n-voitkevich-6863336.jpg);
}

.corporatetaxdiv, .internationaltaxdiv, .indirecttaxdiv, .taxreturndiv, .transfertaxdiv, .taxauditdiv{
    font-size: 15px;
}

#corporatetaxpra1, #internationaltaxpra1, #indirecttaxpra1, #taxreturnpra1, #transfertaxpra1, #taxauditpra1{
    font-weight: bolder;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ----------------------- Advisory Div ------------------------------ */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

#advisoryimagediv{
    background-image: url(../images/pexels-shkrabaanthony-5816299.jpg);
}

.financialrestructuringdiv, .investmenttadvisorydiv, .financialreportingadvisorydiv, .internalcontrolsdiv, .financialanalysisdiv{
    font-size: 15px;
}

#financialrestructuringpra1, #investmenttadvisorypra1, #financialreportingadvisorypra1, #internalcontrolspra1, #financialanalysispra1{
    font-weight: bolder;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* --------------------- Book Keeping Section ------------------------ */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

#bookkeepingimagediv{
    background-image: url(../images/pexels-cottonbro-4107100.jpg);
}

.accuratebookdiv, .preparationbookdiv, .accountbookdiv, .bankbookdiv, .financialanalysisbookdiv, .payrollbookdiv{
    font-size: 15px;
}

#accuratebookpra1, #preparationbookpra1, #accountbookpra1, #bankbookpra1, #financialanalysisbookpra1, #payrollbookpra1{
    font-weight: bolder;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ---------------- Integrated Solution Section ---------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */


#integratedsolutionimagediv{
    background-image: url(../images/integrated\ solution.jpg);
}

.financialintegrateddiv, .auditoryintegrateddiv, .taxintegrateddiv, .riskintegrateddiv, .bussinessintegrateddiv, .bookintegrateddiv, .regulatoryintegrateddiv{
    font-size: 15px;
}

#financialintegratedpra1, #auditoryintegratedpra1, #taxintegratedpra1, #riskintegratedpra1, #bussinessintegratedpra1, #bookintegratedpra1, #regulatoryintegratedpra1{
    font-weight: bolder;
}


/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------- Read More For All Sections -------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

.readmorebutton{
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.readmorebutton:hover{
    text-decoration: underline;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------ All Images & Cards Setting --------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

.imageAndCardDiv{
    display: flex;
    position: relative;   
    height: fit-content;
    padding: 2%;
    gap: 2%;
}

@media (max-width: 1024px) {
    .imageAndCardDiv {
        flex-direction: column;
        padding: 3%;
    }

    .eachServiceImage {
        width: 100%;
        height: 300px;
        margin: 0 0 20px 0;
    }

    .eachServiceCard {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .imageAndCardDiv {
        padding: 2%;
    }

    .eachServiceImage {
        height: 250px;
    }

    .eachServiceCard {
        padding: 3%;
    }
}

@media (max-width: 600px) {
    .imageAndCardDiv {
        padding: 2%;
    }

    .eachServiceImage {
        height: 200px;
    }
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* --------------------- All Images Setting -------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

.eachServiceImage{
    height: 555px;
    cursor: pointer;
    width: 45%;
    background-size: cover;
    margin: 2%;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* --------------------- All Cards Setting --------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

.eachServiceCard{
    padding: 2%;
    background-color: rgb(0, 51, 141);
    color: white;
    position: absolute;
    /* height: 475px; */
    height: fit-content;

    /* width: 45%; */
    /* top: 330px; */
    top: 25%;
    left: 40%;

    /* position: relative; */
    overflow: hidden;
    transition: color 0.5s ease;
    z-index: 1;
    /* color: rgb(1, 1, 98); */
    /* background-color: white; */
    /* height: 275px; */
    /* padding: 5%; */
    cursor: pointer;
}

.eachServiceCard:hover .allCardsHeadings{
    position: relative;
    z-index: 2; 
    transition: all .3s ease;
    color: rgb(0, 51, 141);
}

.eachServiceCard:hover .readmorebutton{
    position: relative;
    z-index: 2; 
    transition: all .3s ease;
    color: rgb(0, 51, 141);
}

.eachServiceCard:hover .servicesCardPara{
    color: rgb(0, 51, 141);
    transition: all .3s ease;
    z-index: 2;
    position: relative;
}

.eachServiceCard::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: white;
      transform: translateY(100%);
      transition: transform 0.6s ease;
      color: navy;
      z-index: 0;
}

.eachServiceCard:hover::before {
      transform: translateY(0);
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* --------------------- Expert Guidance Section --------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */


.expertguidancediv{
    background-color: rgb(0, 51, 141);  
    display: flex;
    padding: 2%;
}

.expertheadingdiv{
    margin-left: 2%;
    color: white;
    font-size: 20px;
    font-weight: bolder;
    width: 40vw;
}

.expertheading{
    width: 100%;
}

.expertpradiv{
    font-size: 20px;
}

#expertpra{
    font-weight: lighter;
}

.expertimageupperdiv{
    /* margin-top: 2%; */
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    row-gap: 7.5%;
    /* justify-content: space-evenly; */
    /* border: 2px solid white; */
    width: 60vw;
    /* justify-content: space-evenly; */
    /* row-gap: 20px; */
    /* margin-top: 3.5%; */
}

.expertimg{
    /* background-color: aquamarine; */
    width: 200px;
    height: 150px;
    display: block;
}

.expertimg:hover{
    cursor: pointer;
    transform: scale(1.05);
    transition: .25s;
}

#expertimg1{
    background-image: url(../images/quickbooks.webp);
    background-size: cover;
    object-fit: cover;
}

#expertimg2{
    background-image: url(../images/sage.webp);
    background-size: cover;
    /* object-fit: cover; */
}

#expertimg3{
    background-image: url(../images/xero.jpg);
    background-size: cover;
}

#expertimg4{
    background-image: url(../images/zoho.webp);
    background-size: cover;
}

#expertimg5{
    background-image: url(../images/odoo.webp);
    background-size: cover;
}

#expertimg6{
    background-image: url(../images/oracle.jpg);
    background-size: cover;
}

#expertimg7{
    background-image: url(../images/office365.jpg);
    background-size: cover;
}

#expertimg8{
    background-image: url(../images/sap.webp);
    background-size: cover;
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------ Help Section ----------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

.helpdiv{
    padding: 1%;
    background: linear-gradient(to right, #eaf1f8, #f8f9fb, #eaf1f8);
    background-size: cover;
    background-position: center;
}

.helpheadingdiv{
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* height: 200px; */
    padding: 2%;
}

#helpheading{
    font-size: 50px;
    font-weight: bolder;
    /* margin: 0%; */
}

.helppradiv{
    font-size: 25px;
    font-weight: lighter;
    width: 50%;
    text-align: center;
    margin: 2%;
}

#reachoutbutton{
    font-size: 20px;
    background-color: rgb(0, 51, 141);
    color: white;
    border: none;
    padding: 2%;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}

#reachoutbutton:focus{
    text-decoration: none;
}

#reachoutbutton:hover{
    background-color: rgb(0, 51, 141, .75);
}

/* 
   Footer styles are now handled by main.css for consistency across all pages.
   All footer styling has been moved to main.css to ensure uniform appearance.
   The footer styles below have been commented out to prevent conflicts.
*/

/* Responsive styles for services cards */
@media (max-width: 1024px) {
    #allServicesCardsDiv {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 4%;
    }
}

@media (max-width: 768px) {
    #allServicesCardsDiv {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 3%;
    }

    .servicesCard {
        padding: 4%;
    }

    .allCardsHeadings {
        font-size: 22px;
    }

    .servicesCardParagraph {
        font-size: 14px;
    }
}

@media (max-width: 600px){

    
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ---------------------- Nav And Hero Section ----------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* 
       Navbar responsive styles are now handled by main.css for consistency.
       All navbar styling has been moved to main.css.
    */

    .heroDiv{
        display: flex;
        justify-content: center;
        align-items: center;
        /* background-color: rgba(32, 16, 47, 0.9);     */
    }

    .heroh1{
        font-size: 30px;
        position: relative;
        left: 29px;
        width: 87%;
        text-align: center;
       /* border: 2px solid white; */
       margin-bottom: 50px;
    }

    .herop1{
        font-size: 20px;
        width: 80%;
        margin-left: 3%;
        position: relative;
        bottom: 15px;
        left: 36px;
    }

    .herop2{
        font-size: 17px;
        width: 80%;
        margin-left: 41px;
        position: relative;
        bottom: 35px;
    }

    .b1, .b2{
        font-size: 15px;
        border-radius: 40px;
        padding: 7.5px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60%;
        margin-top: 5%;
        color: white;
    }

    .b2{
        color: black;
    }

    .buttonsdiv{
        text-align: center;
        margin-left: 120px;
    }

        
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------- Hero Section ---------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */

    .servicesoverlaydiv{
        width: 100%;
        height: 50vh;
        background-color: rgb(0, 51, 141, .5);
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .servicesimageinnerdiv, .servicesoverlaydiv{
        height: 35vh;
        min-height: 250px;
    }

    .servicesheading {
        font-size: 24px;
        margin-bottom: 15px;
    }

    #servicesoverlaySlogan {
        font-size: 14px;
        width: 95vw;
    }

    .servicesheading{
        font-size: 25px;
    }
    
    #servicesoverlaySlogan{
        font-size: 15px;
        font-weight: lighter;
    }
        
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* --------------------------- WhatsApp Section ---------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* 
       WhatsApp responsive styles are now handled by main.css for consistency.
       All WhatsApp styling has been moved to main.css.
    */

    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* --------------- Services Cards Section ---------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */

    #allServicesCardsDiv{
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 3%;
    }

    .servicesCard {
        margin: 0;
    }

    .servicesCardParagraph{
        font-size: 15px;
    }

    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* --------------- Financial Reporting Section ----------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */

    .financialreportingdiv, .Auditdiv, .taxdiv, .advisorydiv, .bookkeepingdiv, .integratedsolutiondiv{
        display: block;
    }

    #financialreportingheading{
        font-size: 20px;
    }

    .preparationdiv, .accuratediv, .regulatorydiv, .budgetingdiv, .Consolidationdiv, .managementdiv{
        font-size: 10px;
    }
        
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------- Audit Section --------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */

    #auditheading{
        font-size: 20px;
    }

    .financialstatementdiv, .internalauditdiv, .regulatorycompliancediv, .forensicauditdiv, .performancediv, .frauddetectiondiv{
        font-size: 10px;
    }
        
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* --------------------------- Tax Section --------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */

    #taxheading{
        font-size: 20px;
    }

    .corporatetaxdiv, .internationaltaxdiv, .indirecttaxdiv, .taxreturndiv, .transfertaxdiv, .taxauditdiv{
        font-size: 10px;
    }

    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ---------------------- Advisory Section --------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */

    #advisoryheading{
        font-size: 20px;
    }

    .financialrestructuringdiv, .investmenttadvisorydiv, .financialreportingadvisorydiv, .internalcontrolsdiv, .financialanalysisdiv{
        font-size: 10px;
    }

    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ---------------------- Book Keeping Section ----------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */

    #bookkeepingheading{
        font-size: 20px;
    }
    .accuratebookdiv, .preparationbookdiv, .accountbookdiv, .bankbookdiv, .financialanalysisbookdiv, .payrollbookdiv{
        font-size: 10px;
    }

    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ----------------- Integrated Solution Section --------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */

    #integratedsolutionheading{
        font-size: 20px;
    }

    .financialintegrateddiv, .auditoryintegrateddiv, .taxintegrateddiv, .riskintegrateddiv, .bussinessintegrateddiv, .bookintegrateddiv, .regulatoryintegrateddiv{
        font-size: 10px;
    }

    .financialreportingimagediv, .auditimagediv, .taximagediv, .advisoryimagediv, .bookkeepingimagediv, .integratedsolutionimagediv{
        width: 95%;
        margin: 2%;
        height: 33vh;
        background-size: cover;
        background-repeat: no-repeat;
    }

    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* --------------------------- Read More Button ---------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */


    #readmorebutton{
        font-size: 10px;
        padding: 7.5px;
    }

    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* -------------------- Expert Guidance Section ---------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */

    .expertguidancediv{
        display: block;
    }

    .expertheadingdiv{
        font-size: 10px;
        width: 100%;
        text-align: center;
    }

    .expertpradiv{
        font-size: 12.5px;
        line-height: 20px;
    }

    #expertpra{
        font-weight: lighter;
    }

    .expertimageupperdiv{
        display: grid;
        grid-template-columns: 45% 45%;
        column-gap: 1%;
        justify-content: space-evenly;
        width: 100%;
        height: 525px;
    }

    .expertimg{
        background-color: aquamarine;
        width: auto;
        height: 100px;
        margin: 0%;
    }

    #expertimg1{
        background-image: url(../images/quickbooks.webp);
        background-size: contain;
        /* object-fit: cover; */
    }

    #expertimg2{
        background-image: url(../images/sage.webp);
        background-size: contain;
        /* object-fit: cover; */
    }

    #expertimg3{
        background-image: url(../images/xero.jpg);
        background-size: contain;
        /* background-size: cover; */
    }

    #expertimg4{
        background-image: url(../images/zoho.webp);
        background-size: contain;
        /* background-size: cover; */
    }

    #expertimg5{
        background-image: url(../images/odoo.webp);
        background-size: contain;
        /* background-size: 190px; */
    }

    #expertimg6{
        background-image: url(../images/oracle.jpg);
        background-size: contain;
        /* background-size: cover; */
    }

    #expertimg7{
        background-image: url(../images/office365.jpg);
        background-size: contain;
        /* background-size: 210px; */
    }

    #expertimg8{
        background-image: url(../images/sap.webp);
        background-size: contain;
        /* background-size: 210px; */
    }

    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* -------------------------- Help Section --------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */

    .helpheadingdiv{
        display: block;
    }

    #helpheading{
        font-size: 25px;
        text-align: center;
    }

    .helppradiv{
        font-size: 15px;
        width: 95%;
        /* margin-left: 7%; */
        /* height: 0%; */
        /* margin-bottom: 150px; */
    }

    .reachoutdiv{
        text-align: center;
        /* position: relative; */
        /* bottom: 80px; */
        /* right: 260px; */
    }

    #reachoutbutton{
        /* margin-top: 100px; */
        font-size: 15px;
        padding: 5px;

    }
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* -------------------------- Footer Section ------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */
    /* ------------------------------------------------------------------- */

    /* Footer responsive styles are now handled by main.css for consistency */
}

/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* -------------------------- Dark Mode Styles ----------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */
/* ------------------------------------------------------------------- */

/* Dark Mode Hero Section */
body.dark .services-overlay {
    background: var(--heroOverlay) !important;
}

body.dark .servicesheading {
    color: var(--hero-text-primary) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

body.dark #servicesoverlaySlogan {
    color: var(--hero-text-secondary) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

/* Dark Mode Services Cards Section */
body.dark #allServicesCardsDiv {
    background: var(--services-bg) !important;
}

body.dark .servicesCard {
    background: var(--services-cards-bg) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

body.dark .servicesCard:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

body.dark .servicesCard .allCardsHeadings {
    color: white !important;
}

body.dark .servicesCard p {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.dark .servicesCard a {
    color: var(--hero-accent) !important;
}

body.dark .servicesCard a:hover {
    color: var(--hero-accent-gradient) !important;
}

/* Dark Mode Services Cards Overlay Effects */
body.dark .overlayServices {
    background: rgba(2, 6, 23, 0.8) !important;
}

/* Section Separators */
#allServicesCardsDiv::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 51, 141, 0.3), transparent);
    margin-top: 80px;
    position: relative;
}

body.dark #allServicesCardsDiv::after {
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.3), transparent) !important;
}

/* Dark Mode Expert Guidance Section */
body.dark .expertguidancediv {
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.8) 100%) !important;
    border: 1px solid rgba(76, 175, 80, 0.1) !important;
}

body.dark .expertheading {
    color: var(--hero-text-primary) !important;
}

body.dark #expertpra {
    color: rgba(255, 255, 255, 0.8) !important;
}


/* Dark Mode Help Section */
body.dark .helpdiv {
    background: var(--about-bg) !important;
}

body.dark #helpheading {
    color: var(--values-cards-text) !important;
}

body.dark #helppra {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.dark #reachoutbutton {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.8) 0%, rgba(34, 211, 238, 0.8) 100%) !important;
    color: white !important;
}

body.dark #reachoutbutton:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 1) 0%, rgba(34, 211, 238, 1) 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4) !important;
}

/* Section Separators with Greenish Touch */

.helpdiv::before {
    content: '';
    display: block;
    width: 80%;
    height: 1px;
    background: rgba(0, 51, 141, 0.2);
    margin: 0 auto 40px auto;
    border-radius: 1px;
}

body.dark .helpdiv::before {
    background: rgba(76, 175, 80, 0.3) !important;
}