* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    background-color: #fff;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Encode Sans Condensed", sans-serif;
}

p {
    font-size: 16px;

}

ul, ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

:focus {
    outline: none;
    border: 0;
}

a {
    text-decoration: none;
    color: #000;
}

.paddingColumn {
    padding: 80px 0;
}

/* ====== Top Header Section ======= */
.topHeader {
    width: 100%;
    padding: 10px 0;
}

.logoAssets {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

    .logoAssets .column1 img {
        width: 100%;
        max-width: 130px;
    }


.column2 ul li a {
    color: #fff;
    font-weight: 400;
    padding: 6px 0;
    display: inline-block;
    font-size: 18px;
}


.navigationBarBox {
    width: 100%;
    padding:10px 0;
    background-color: #191919;
}

.navAssetsBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navAssetsBox .navLogo img {
    width: 60px;
}
.vfLogo img {
    width: 60px;
}

.navLists {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

    .navLists li {
        display: inline-block;
        padding: 16px 0;
    }

        .navLists li a {
            font-size: 16px;
            color: #fff;
            display: inline-block;
            padding: 7px 0 0 0;
            font-weight:400;
        }
        .navLists li a:hover{
            color:#4BAF47;
        }

 .dropdownUp{
    position:relative;
}

/* Dropdown */
    .navLists .dropdownMe {
        position: absolute;
        top: 75px;
        left: 0;
        background-color: #fff;
        min-width: 250px;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
        z-index: 10;
        display: block;
        border-top: 2px solid #4BAF47;
    }

    .navLists .dropdownUp:hover ul.dropdownMe {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navLists ul.dropdownMe li {
        width: 100%;
        padding:0;
    }
    .navLists .dropdownUp .fa-angle-down {
        font-size: 12px;
        position: relative;
        left: 2px;
    }

    .navLists ul.dropdownMe li a {
        color: #000000;
        padding: 12px 16px;
        display: block;
        border-radius: 0;
        border-bottom: 1px solid #e0efe0;
    }

    .navLists ul.dropdownMe li a:hover {
        color: #4BAF47 !important;
    }





.loginBox a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px 8px 25px;
    background-color: #26483a;
    border-radius: 50px;
    color: #fff;
    font-size: 16px;
}

.toggleCloseBtn {
    display: none;
}

.responsNav {
    display: none;
}

/* ====== Home Banner ======== */
.homeBanner {
    width: 100%;
    padding: 10rem 0;
    background-image: url(../images/banner.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #00000073;
    background-blend-mode: overlay;
}

.bannerContents {
    text-align: center;
    color: #fff;
}

    .bannerContents h1 {
        font-weight: 700;
        font-size: 3.5vw;
    }

    .bannerContents h3 {
        font-weight: 600;
        font-size: 2.8vw;
    }

    .bannerContents h4 {
        font-weight: 600;
        font-size: 2vw;
    }

.getStartedBtn {
    display: inline-block;
    padding: 14px 25px 10px 25px;
    background-color: #fff;
    border-radius: 50px;
    margin: 20px 0;
    border: 0;
    outline: none;
}



/*======== scroll and nav fixed ==========*/

.navigationBarBox.fixedNav {
    position: fixed;
    top: 0;
    background: #222;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transform: translateY(-20px);
    opacity: 0;
    animation: slideDown 0.4s ease forwards;
    z-index:12000;
}


/* Animation keyframes */
@keyframes slideDown {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}



/* ========== Popup button design =========== */


.modalData1 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 1200;
}

.popupContt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 1rem 1.5rem;
    width: 40rem;
    height: 400px;
    border-radius: 0.5rem;
}

.close-button {
    width: 35px;
    height: 35px;
    line-height: 36px;
    text-align: center;
    font-size: 34px;
    cursor: pointer;
    border-radius: 50px;
    background-color: #004540;
    display: block;
    position: fixed;
    top: -14px;
    right: -12px;
    color: #ffffff;
    box-shadow: 0px 0px 6px #bdbdbd3b;
    z-index: 2;
}

    .close-button:hover {
        background-color: rgb(24, 24, 24);
        color: #fff;
    }

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}


/* ============== Form Tab design =========== */
[data-tab-content] {
    display: none;
}

.active[data-tab-content] {
    display: block;
}

.tabs {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.tab {
    cursor: pointer;
    padding: 10px;
}

    .tab.active {
        background-color: #004540;
        color: #ffffff;
    }

.tab-content {
    margin-top: 15px;
}

.tabs a {
    border: 0;
    outline: 0;
    width: 100%;
    padding: 16px 0 12px 0;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    color: #004540;
    background-color: #f1f1f1;
}

#loginForm select {
    width: 100%;
    margin-bottom: 15px;
    height: 43px;
    display: inline-block;
    padding-top: 6px;
    padding-left: 5px;
    background-color: #fff;
    color: #252525;
    box-shadow: 0px 0px 10px #d9d9d970;
    border: 1px solid #91fff7;
}

#loginForm input {
    width: 100%;
    margin-bottom: 15px;
    height: 43px;
    display: inline-block;
    padding-top: 6px;
    padding-left: 5px;
    background-color: #fff;
    color: #252525;
    box-shadow: 0px 0px 10px #d9d9d970;
    border: 1px solid #91fff7;
}

    #loginForm input::placeholder {
        color: #252525;
        padding-left: 5px;
    }

    #loginForm input#btnlogin {
        width: 130px;
        font-size: 18px;
        font-weight: 500;
        margin: 0 auto;
        display: flex;
        background-color: #004540;
        border-radius: 5px;
        color: #fff;
        border: 0;
    }
.adminlogin {
  /*  width: 130px;*/
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto;
    padding: 5px 15px;
    background-color: #004540;
    border-radius: 5px;
    color: #fff;
    border: 0;
}

.orText {
    text-align: center;
    display: block;
    margin: 15px 0 5px 0;
    font-size: 18px;
    font-weight: 500;
}

.guestUserBtns {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

    .guestUserBtns button {
        border: 0;
        background: transparent;
        text-decoration: underline;
        font-size: 18px;
        color: #000;
    }



/* ====== Sign Up ======= */
div#signUpForm {
    height: 300px;
    background-color: #fff;
    overflow-y: scroll;
    padding-right: 3px;
}

    div#signUpForm::-webkit-scrollbar {
        width: 6px;
    }

    div#signUpForm::-webkit-scrollbar-track {
        box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    }

    div#signUpForm::-webkit-scrollbar-thumb {
        background-color: #004540;
        border-radius: 50px;
    }

#signUpForm select {
    width: 100%;
    margin-bottom: 15px;
    height: 43px;
    display: inline-block;
    padding-top: 6px;
    padding-left: 5px;
    background-color: #fff;
    color: #252525;
    box-shadow: 0px 0px 10px #d9d9d970;
    border: 1px solid #91fff7;
}

#signUpForm input {
    width: 100%;
    margin-bottom: 15px;
    height: 43px;
    display: inline-block;
    padding-top: 6px;
    padding-left: 5px;
    background-color: #fff;
    color: #252525;
    box-shadow: 0px 0px 10px #d9d9d970;
    border: 1px solid #91fff7;
}

    #signUpForm input::placeholder {
        color: #252525;
        padding-left: 5px;
    }

    #signUpForm input#submit {
        width: 130px;
        font-size: 18px;
        font-weight: 500;
        margin: 0 auto;
        display: flex;
        background-color: #004540;
        border-radius: 5px;
        color: #fff;
        border: 0;
        margin-bottom: 20px;
    }

.twoInputBox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.radioBtns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

    .radioBtns .r_box {
        /*display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;*/
        width:100% !important;
    } .radioBtns .r_box table{
         
        width:100% !important;
    }

        .radioBtns .r_box input {
            width: 16px !important;
            box-shadow: none !important;
            margin-bottom: 6px !important;
        }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ========== fromLocationForm ======== */
#fromLocationForm {
    display: none;
}

.closeSideBarCol {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 30px;
    display:none;
}

/* =========== Admin Popup Design ========= */
.popupAdmin-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1203;
}

/* ========== Popup box ========= */
.popupAd-box {
    background: #fff;
    width: 500px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
    position: relative;
}

    /* =========== Close button =========== */
    .popupAd-box .closeadminBtn {
        background: #26483a;
        border: none;
        color: white;
        cursor: pointer;
        position: absolute;
        top: -13px;
        right: -12px;
        z-index: 2;
        border-radius: 50px;
        font-size: 30px;
        width: 35px;
        height: 35px;
        line-height: 46px;
        box-shadow: 0px 0px 5px #8080808a;
    }

.adminTitle {
    background-color: #26483a;
    width: 100%;
    height: 45px;
    line-height: 50px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
}

#AdminPopBox .form_group {
    width: 100%;
    padding: 0px 20px 20px 20px;
}
.form_group {
    position: relative !important;
}
    .form_group span {
        position: absolute !important;
        top: -15px;
        font-size: 12px;
    }
#AdminPopBox .form_group input {
    width: 100%;
    margin-bottom: 15px;
    height: 43px;
    display: inline-block;
    padding-top: 6px;
    padding-left: 5px;
    background-color: #fff;
    color: #252525;
    box-shadow: 0px 0px 10px #d9d9d970;
    border: 1px solid #91fff7;
}

#ddlguestcity, #ddlguestbuilding {
    width: 100%;
    margin-bottom: 15px;
    height: 43px;
    display: inline-block;
    padding-top: 6px;
    padding-left: 5px;
    background-color: #fff;
    color: #252525;
    box-shadow: 0px 0px 10px #d9d9d970;
    border: 1px solid #91fff7;
}

#AdminPopBox .adminSubmitNow#btnadminlogin {
    width: 130px;
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto;
    display: flex;
    background-color: #004540;
    border-radius: 5px;
    color: #fff;
    border: 0;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 5px 10px;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}






/* forget password Popup overlay background */
.AdminPBox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 12000;
}

/* Popup box */
.AdminPBox-overlay .contentsBoxFor {
    background: #fff;
    width: 500px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
    position: relative;
}

    /* Close button */
    .AdminPBox-overlay .contentsBoxFor .forCloseBtn {
        background: #26483a;
        border: none;
        color: white;
        cursor: pointer;
        position: absolute;
        top: -13px;
        right: -12px;
        z-index: 2;
        border-radius: 50px;
        font-size: 30px;
        width: 35px;
        height: 35px;
        line-height: 36px;
        box-shadow: 0px 0px 5px #8080808a;
    }

.AdminConttTitle {
    background-color: #26483a;
    width: 100%;
    height: 45px;
    line-height: 50px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 24px;
}

#adminpannelColumn .form_group {
    padding: 0px 20px 20px 20px;
}

#adminpannelColumn input {
    width: 100%;
    margin-bottom: 15px;
    height: 43px;
    display: inline-block;
    padding-top: 6px;
    padding-left: 5px;
    background-color: #fff;
    color: #252525;
    box-shadow: 0px 0px 10px #d9d9d970;
    border: 1px solid #91fff7;
}
#adminpannelColumn input#Button1 {
    width: 140px;
    height: 45px;
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto;
    display: flex;
    background-color: #004540;
    border-radius: 5px;
    color: #fff;
    border: 0;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}





/* =========== Guest popup design ============ */
.guestBox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1201;
}

/* Popup box */
.boxColumnContt {
    background: #fff;
    width: 500px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
    position: relative;
}

    /* Close button */
    .boxColumnContt .guestCloseBtn {
        background: #26483a;
        border: none;
        color: white;
        cursor: pointer;
        position: absolute;
        top: -13px;
        right: -12px;
        z-index: 2;
        border-radius: 50px;
        font-size: 30px;
        width: 35px;
        height: 35px;
        line-height: 36px;
        box-shadow: 0px 0px 5px #8080808a;
    }

.guestTitle {
    background-color: #26483a;
    width: 100%;
    height: 45px;
    line-height: 50px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 24px;
}

.guestInputBoxList {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 0 20px 20px 20px;
}

    .guestInputBoxList #tamilList {
        width: 100%;
        height: 43px;
        display: inline-block;
        padding-top: 6px;
        padding-left: 5px;
        background-color: #fff;
        color: #252525;
        box-shadow: 0px 0px 10px #d9d9d970;
        border: 1px solid #91fff7;
    }

#guestUserPo .gurestSubmitNow {
    width: 130px;
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto;
    display: flex;
    background-color: #004540;
    border-radius: 5px;
    color: #fff;
    border: 0;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 7px 10px;
}


/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}






/* forget password Popup overlay background */
.forgetBox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1202;
}

/* Popup box */
.contentsBoxFor {
    background: #fff;
    width: 500px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
    position: relative;
}

    /* Close button */
    .contentsBoxFor .forCloseBtn {
        background: #26483a;
        border: none;
        color: white;
        cursor: pointer;
        position: absolute;
        top: -13px;
        right: -12px;
        z-index: 2;
        border-radius: 50px;
        font-size: 30px;
        width: 35px;
        height: 35px;
        line-height:36px;
        box-shadow: 0px 0px 5px #8080808a;
    }

.forgetTitle {
    background-color: #26483a;
    width: 100%;
    height: 45px;
    line-height: 50px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 24px;
}

#forgetPassColumn .form_group {
    padding: 0px 20px 20px 20px;
}

#forgetPassColumn input {
    width: 100%;
    margin-bottom: 15px;
    height: 43px;
    display: inline-block;
    padding-top: 6px;
    padding-left: 5px;
    background-color: #fff;
    color: #252525;
    box-shadow: 0px 0px 10px #d9d9d970;
    border: 1px solid #91fff7;
}
input#btnresetpassword {
    background-color: #004540 !important;
    color: #fff;
    border: 1px solid #004540;
}

#forgetPassColumn .ForgetResetSubmit {
    width: 150px;
    font-size: 18px;
    font-weight: 500;
    margin: 0 auto;
    display: flex;
    background-color: #004540;
    border-radius: 5px;
    color: #fff;
    border: 0;
    align-items: center;
    justify-content: center;
    padding: 10px 10px 5px 10px;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}




/* ======= about section ======= */

.aboutThePortal {
    width: 100%;
}

    .aboutThePortal .aboutImg img {
        width: 100%;
    }

    .aboutThePortal .aboutContents p {
        text-align: justify;
        color: #000;
    }

.aboutHeading {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 80px;
    position: relative;
    top: 10px;
}

.headingTitle h1 {
    color: #73A500;
}

.headingTitle h2 {
    color: #004540;
}

.headingTitle h1, h2 {
    margin-bottom: -10px;
    font-weight: 700;
    font-size: 36px;
    padding-left: 10px;
}


/* ========== Why Invest Solar ============ */
.whyInvestSolor {
    width: calc(100% - 100px);
    background-image: url("../images/tableBg.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0 auto;
}

.whyTitle {
    text-align: center;
    width: 45vw;
    background-color: #fff;
    display: block;
    margin: 0 auto;
    padding: 5px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

    .whyTitle h1 {
        margin-bottom: 0;
        font-weight: 500;
        color: #004540;
        text-transform: uppercase;
        font-size: 36px;
        padding: 10px 0 0 0;
    }

.whyContt {
    padding: 55px;
    background-color: #0c2f25;
    color: #fff;
}

    .whyContt p {
        text-align: justify;
    }

.customTable {
    border-collapse: collapse;
    width: 100%;
    border-spacing: 10px;
    border-spacing: 0 5px; /* vertical spacing between rows */
    border-collapse: separate; /* required for border-spacing to work */
}

    .customTable td, th {
        text-align: left;
        padding: 10px 8px 8px 8px;
        border: 1px solid #969696;
        font-size: 15px;
    }

    .customTable tr td {
        width: 50%;
        background-color: #fff;
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
    }

        .customTable tr td + th {
            border-radius: 0 !important;
        }

    .customTable tr th {
        background-color: #fff;
        border-bottom-right-radius: 20px;
        font-weight: 600;
    }

.bgColorRow {
    background: #0c2f25 !important;
    color: #fff;
    border: 1px solid #004540 !important;
}

/* ========== Key Fenefits ==========*/
.keyFenefits {
    width: 100%;
    padding: 60px 0;
}

.centralContents {
    position: relative;
    padding-right: 30px;
}

.keyTitle h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #004540;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.keyContents {
    text-align: center;
}

    .keyContents .contt h4 {
        font-size: 16px;
        margin-top: 15px;
        color: #004540;
    }

        .keyContents .contt h4 span {
            font-weight: 700;
        }

/* ============= Central Government ============ */
.centralGovernment {
    width: 100%;
}

.rooftopPicBox img {
    position: relative;
    top: 5px;
}

img.sunSetPIic {
    position: absolute;
    top: -20px;
    right: -85px;
    width: 170px;
}

.centralGovernment table tr td {
    border-radius: 0 !important;
    font-weight: 600;
}

.centralGovernment table tr th {
    background-color: #fff;
    border-bottom-right-radius: 20px !important;
    font-weight: 600;
}

.ministryAssets {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-right: 30px;
}

.centralGovernment p {
    color: #004540;
    text-align: justify;
    margin-bottom: 0;
    margin-top: 10px;
}

.ministry {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.minsContt h1 {
    font-weight: 600;
    text-transform: uppercase;
    line-height: 34px;
    color: #004540;
    margin-bottom: 0;
    font-size: 36px;
}

    .minsContt h1 span {
        font-size: 16px;
        font-weight: 500;
    }

/* ========= Solar Rooftop System ========= */
.solarRooftopSystem {
    background-color: #0c2f25;
    color: #fff;
}

    .solarRooftopSystem .solarRooftopTitle {
        text-align: center;
        width: 36vw;
        background-color: #fff;
        display: block;
        margin: 0 auto;
        padding: 5px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

        .solarRooftopSystem .solarRooftopTitle h1 {
            margin-bottom: 0;
            font-weight: 600;
            color: #004540;
            text-transform: uppercase;
            font-size: 36px;
            padding: 10px 0 0 0;
        }

.nationalImages img {
    display: block;
    margin-bottom: 20px;
}

img.picture_one {
    display: block;
    margin: 0 auto 20px auto;
}

img.picture_two {
    text-align: left;
    margin: 0;
}

.nationalImages {
    width: 100%;
}

.rooftopContt {
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px
}

    .rooftopContt h1 {
        margin-bottom: 0;
        font-weight: 600;
        font-size: 36px;
    }

    .rooftopContt p {
        text-align: left;
        font-size: 14px;
    }

.catalogueBtn {
    color: #fff;
    font-size: 18px;
    text-align: left;
    display: block;
    width: 100%;
    letter-spacing: 0.5px;
    font-weight: 300;
}

a.catalogueBtn span {
    margin-left: 10px;
    width: 15px;
    height: 15px;
    background-color: #fff;
    color: #000;
    line-height: 22px;
    text-align: center;
    font-size: 14px;
    display: inline-block;
}

a.catalogueBtn i.fas.fa-arrow-right {
    transform: rotate(327deg);
}

.peraContents {
    display: flex;
    gap: 15px;
    padding-left: 40px;
}

    .peraContents p {
        font-size: 16px;
        font-weight: 300;
        letter-spacing: 0.3px;
        text-align: justify;
    }

.fa-circle {
    font-size: 6px;
    position: relative;
    top: 5px;
}


/* ======== Use Portal ======= */
.usePortal {
    width: 100%;
}

.portalTitle {
    text-align: center;
}

    .portalTitle h1 {
        font-size: 36px;
        text-transform: uppercase;
        font-weight: 600;
        color: #004540;
    }

.portalContents p {
    margin-bottom: 0;
    padding: 20px;
    background-color: #0c2f25;
    font-size: 18px;
    color:#fff;
}

.portalImg {
    width: 100%;
    height: 300px;
    padding: 30px;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.portalImg img {
    width: 130px;
}

.exploreBtn {
    display: inline-block;
    padding: 12px 20px 6px 20px;
    border: 2px solid #000;
    border-radius: 50px;
    margin-top: 50px;
    font-size: 16px;
    background-color: #F7FFE4;
}


/* ========== Knowledge Center ========== */
.knowledgeCenter {
    width: 100%;
    padding-bottom: 80px;
}

    .knowledgeCenter .row {
        padding: 0 120px;
        margin-top: 30px;
    }

.KnowlegeBox {
    text-align: center;
}

    .KnowlegeBox img.img-fluid {
        box-shadow: 0px 0px 7px #c2c2c22b;
    }

    .KnowlegeBox h4 {
        margin-bottom: 0;
        text-transform: uppercase;
        font-weight: 600;
        color: #00223B;
    }

.allButtonBox {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

    .allButtonBox a {
        display: inline-block;
        border: 1px solid #000000;
        border-radius: 50px;
        margin-top: 10px;
        width: 100px;
        height: 35px;
        line-height: 40px;
        font-size: 16px;
        background-color: #F7FFE4;
        text-align: center;
    }

/* ========= footer Section ======== */
.footer {
    color: #fff;
    padding: 80px 0 0 0;
    background-image: url(../images/footer_bg.jpg);
    background-repeat: no-repeat;
    width: 100%;
    background-size: cover;
}

.footerAssets .leftBox h4 {
    font-size: 20px;
    cursor: pointer;
}

.footerAssets .leftBox p {
    margin-bottom: 0;
    font-size: 16px;
    letter-spacing: 0.4px;
}

.footerAssets .leftBox a {
    color: #fff;
    display: inline-block;
    padding: 5px 0;
}

.footerAssets .leftBox p.policyText {
    padding-bottom: 20px;
    border-bottom: 3px solid #fff;
}
.copyrightCol p {
    margin: 0;
    padding: 30px 0;
    text-align: center;
    border-top:1px solid #fff;
    font-size:18px;
}

.rightBox .column2 h4 {
    font-size: 20px;
}

.rightBox .column2 p {
    font-size: 18px;
    margin-bottom: 6px;
}
.rightBox .column2 h4 {
    font-size: 22px;
    font-weight: 600;
}
.footerAssets {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom:60px;
    gap:30px;
}
.footer .rightBox {
    width: 45%;
    height: 290px;
}
.footer .leftBox {
    height: 290px;
}

.leftBox img {
    width: 370px;
    padding-bottom: 30px;
}



/* =========== VasudhaContents ============= */
.VasudhaFoundation {
    width: 100%;
    background-color: #fff;
}

.vasudhaContents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

    .vasudhaContents .contt1 p {
        font-size: 16px;
    }

.imgBoxs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

    .imgBoxs img {
        width: 60px
    }


.socialMediaBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 16px;
    color: var(--heading-color);
    margin-top: 30px;
}
.socialMediaBox .mediaColumn {
        height: 30px;
        width: 30px;
        border-color: #fff;
        color: #fff;
        transition: all 0.5s ease-in-out;
        display: inline-block;
    }
.socialMediaBox .mediaColumn {
    height: 40px;
    width: 40px;
    border: 1px solid var(--body-color);
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    border: 1px solid gray;
    display:inline-block;
}
    .socialMediaBox .mediaColumn:hover {
        border-color: #4baf47;
        background-color: #4baf47;
    }


a.adminBtn {
    display: inline-block;
    background-color: #fff;
    color: #000 !important;
    text-align: center;
    padding: 10px 15px !important;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 500;
}

/* ========== Top to buttom button ========== */

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #0c2f25;
    color: rgb(0, 0, 0);
    cursor: pointer;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    box-shadow: 0px 0px 8px #80808038;
    border: 1px solid #fff;
}


@media screen and (min-device-width:992px) and (max-device-width:1200px) {
    .navLists li a {
        font-size: 14px !important;
    }
}
