@font-face {
    font-family: main-font;
    src: url(../fonts/Gilroy-Medium.ttf);
}
@font-face {
    font-family: main-font-bold;
    src: url(../fonts/Gilroy-Bold.ttf);
}
@font-face {
    font-family: main-font-regular;
    src: url(../fonts/Gilroy-Regular.ttf);
}


:root{
    --yellow: #ffd25f;
    --gray: #383738;
    --green: #7cecc5;
    --lightgray: #f7f5f1;

    --body-bg: #fff;
    --text-color: #383738;
    --card2-color: #fff;
    --text2-color: #fff;
    --text3-color:#f7f5f1;
    --text4-color: #383738;
    --header-bg:#f7f5f1;
    --header2-bg:#383738;
    --dashboard-btn: #383738;
    --footer-bg: #383738;
    --form-btn-hover: #383738;
    --card-month-color: gray;
    --card-hover: #f7f5f1;
    --box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);

}

.theme-dark{
    --body-bg: #121212;
    --header-bg:#1e293b;
    --header2-bg:#1e293b;
    --card-color: #1e293b;
    --card2-color: #5f7699;
    --text-color: #fff;
    --text2-color: #383738;
    --text3-color:#5f7699;
    --text4-color: #ffd25f;
    --dashboard-btn: #f7f5f1;
    --footer-bg: #1e293b;
    --placeholder: #fff;
    --form-btn-hover: #ffd25f;
    --card-month-color: #ffd25f;
    --card-hover: #5f7699;;
    --box-shadow: 0px 0px 5px rgba(255, 255, 255, 0.2);
    
}

body{
    font-family: main-font !important;
    background-color: var(--body-bg) !important;
}

/* ==== MAIN ==== */

/* Heading */
.main-heading{
    font-family: main-font-bold;
    color: var(--text-color);
}
.main-para{
    font-weight: 500;
    color: var(--text-color);
}
.h_1{
    color: var(--text-color);
}
.bg-yellow{
    background-color: var(--yellow);
}
/* Heading end */

/* Buttons */
.main-btn-1{
    width: fit-content !important;
    background-color: var(--yellow);
    color: var(--gray);
    border: 1px solid var(--yellow);
    padding: 17px 40px;
    border-radius: 50px;
    font-size: 14.5px;
    text-decoration: none;
}
.main-btn-1:hover{
    color: var(--yellow);
    background: none;
    transition: 0.3s;
}
.main-btn-2{
    width: fit-content !important;
    background-color: var(--gray);
    color: white;
    border: 1px solid var(--gray);
    padding: 17px 40px;
    border-radius: 50px;
    font-size: 14.5px;
    text-decoration: none;
}
.main-btn-2:hover{
    color: var(--gray);
    background-color: white;
    transition: 0.3s;
}
/* Buttons end */
/* ==== MAIN END ==== */

/* ============ Index ============ */
/* Top Section */
.top-section{
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-section .content{
    margin: auto;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.top-section a{
    color: var(--text-color);
    font-weight: 500;
}
.top-section a:hover{
    color: var(--yellow);
    transition: 0.1s;
}
.top-section .support-btn{
    text-decoration: none;
}
/* Top Section end */

/* Navbar */
.navbar .logo{
    width: 200px;
}
.navbar .login{
    display: flex;  
    align-items: center;
    margin-right: 40px;
}
.navbar .login img{
    width: 14.5px;
}
.navbar .login a{
    padding-left: 10px;
    text-decoration: none;
    font-size: 16px;
    color: var(--text-color);
}
.navbar .dropdown-menu{
    border: none;
    background-color: #E3E1D9;
    width: 360px;
    padding: 20px;
    border-radius: 7px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5); /* Example box-shadow */
}
.navbar .dropdown-menu li i{
    margin-left: 10px;
    font-size: 23px;
    background-color: gray;
    padding: 9px 0;
    width: 40px;
    text-align: center;
    border-radius: 5px;
    color: var(--lightgray);
}
.navbar .dropdown-menu li a{
    font-family: main-font-bold;
    padding: 0;
    background-color: transparent;
}
.navbar .dropdown-menu li p{
    font-size: 14px;
    color: gray;
}
.navbar .dropdown-menu li:hover{
    background-color: #dbd9d9;
    border-radius: 5px;
}
.navbar .nav-link{
    color: var(--text-color) !important;
    margin: 0 20px;
    font-size: 16px;
    font-family: main-font-bold;
}
.navbar .nav-btn{
    margin-right: 10px;
    text-decoration: none;
    color: black;
    font-family: main-font-bold;
    padding: 10px 35px;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0.10);
}
.navbar .nav-btn:hover{
    background-color: var(--gray);
    color: white;
    transition: 0.3s;
}
/* Navbar end */

/* Dashboard Navbar */
.navbar-2 .cd__main{
    display: block !important;
    background: linear-gradient(to right, #00b09b, #96c93d) !important;
    min-height: 720px;
}
/* Profile Picture */
.navbar-2 .profile-pic{
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
}

.navbar-2 .profile-pic img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.navbar-2 .profile-menu .dropdown-menu {
    right: 0;
    left: unset;
}
.navbar-2 .dropdown-menu li i{
    margin-left: 0px;
    font-size: 23px;
    background: none;
    padding: 9px 0;
    width: 30px;
    text-align: center;
    border-radius: 5px;
    color: var(--gray);
}
.navbar-2 .profile-menu .fa-fw {
    margin-right: 10px;
}

.navbar-2 .toggle-change::after {
    border-top: 0;
    border-bottom: 0.3em solid;
}

.navbar-2 .dashboard-btn{
    display: flex;  
    align-items: center;
}
.navbar-2 .dashboard-btn img{
    width: 14.5px;
}
.navbar-2 .dashboard-btn a{
    padding: 7px 12px;
    background-color: var(--dashboard-btn);
    font-family: main-font-bold;
    color: var(--text2-color);
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    border: 1px solid var(--gray);
}
.navbar-2 .dashboard-btn a:hover{
    background-color: var(--lightgray);
    color: var(--gray);
    transition: 0.5s;
    border: 1px solid var(--gray);
}
/* Dark Mode Toggle Button */
.navbar-2 .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 29px;
}
.navbar-2 .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.navbar-2 .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.navbar-2 .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
.navbar-2 input:checked + .slider {
    background-color: #2196F3;
}
.navbar-2 input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}
.navbar-2 input:checked + .slider:before {
    -webkit-transform: translateX(23px);
    -ms-transform: translateX(23px);
    transform: translateX(23px);
}
.navbar-2 .slider.round {
    border-radius: 34px;
}
.navbar-2 .slider.round:before {
    border-radius: 50%;
}
@media screen and (max-width: 991px){
    .navbar-2 input:checked + .slider:before {
        -webkit-transform: translateX(14px);
        -ms-transform: translateX(14px);
        transform: translateX(14px);
    }
}
/* Dark Mode Toggle Button end */

/* Dashboard Navbar End */

/* Heder Section */
.header-section{
    width: 93%;
    height: auto;
    padding-bottom: 150px;
    background-color: var(--header-bg);
    margin: auto;
    border-radius: 30px;
}

.index-page .header-content{
    margin-top: 10px;
}
.index-page .header-content h1{
    text-align: center;
    font-size: 10vmin;
    font-weight: bolder;
    color: var(--text-color);
}
.index-page .header-content p{
    text-align: center;
    margin-top: 20px;
    font-weight: 550;
    color: var(--text-color);
}
.index-page .input-div{
    margin: 25px auto 0;
    width: 60%;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 8px 10px;
    border-radius: 50px;
}
.index-page .input-div .url-ic{
    height: 30px;
    padding: 0 10px 0 16px ;
}
.index-page .input-div input{
    border: none;
    outline: none;
    width: 29vw;
}
.index-page .input-div input::placeholder{
    color: var(--gray);
}
.index-page .input-div .btn-1{
    color: var(--gray);
    background-color: var(--yellow);
    font-weight: 600;
    border: none;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 14.5px;
}
.index-page .input-div .btn-1:hover{
    background-color: var(--gray);
    color: var(--yellow);
    transition: 0.3s;
    font-weight: 400;
}
.index-page .input-div .btn-2{
    margin-left: 9px;
    color: white;
    background-color: var(--gray);
    border: none;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 14.5px;
}
.index-page .input-div .btn-2:hover{
    background-color: var(--yellow);
    color: var(--gray);
    transition: 0.3s;
}

/* Advance Toggle */
#advanceCollapse{
    padding: 10px 10px 10px;
}
#advanceCollapse h5{
    font-family: main-font-bold;
    text-decoration: underline;
}
#advanceCollapse label{
    font-family: main-font-bold;
}
#advanceCollapse input{
    padding: 10px 0 12px 12px;
    border-radius: 50px;
    width: 100% !important;
    box-shadow: var(--box-shadow);
}


/* Input div Small Screen */
.index-page .input-container-sm{
    display: none;
}
.index-page .input-div-sm{
    margin: 25px auto 0;
    width: 95%;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 8px 10px;
    border-radius: 50px;
}
.index-page .input-div-sm input{
    border: none;
    width: 60vw;
}
.index-page .input-div-sm input:focus{
    outline: none;
}
.index-page .input-div-sm img .url-ic{
    padding-right: 3px;
    width: 20px;
}
.index-page .input-container-sm .btn-1{
    color: var(--gray);
    background-color: var(--yellow);
    font-weight: 600;
    border: none;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 13px;
}
.index-page .input-container-sm .btn-1:hover{
    background-color: var(--gray);
    color: var(--yellow);
    transition: 0.3s;
    font-weight: 400;
}
.index-page .input-container-sm input::placeholder{
    font-size: 14px;
}
.index-page .input-container-sm .btn-2{
    margin-left: 9px;
    color: white;
    background-color: var(--gray);
    border: none;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 13px;
}
.index-page .input-container-sm .btn-2:hover{
    background-color: var(--yellow);
    color: var(--gray);
    transition: 0.3s;
}
/* Input div Small Screen */
/* Header end */

/* Counter-up */
.counter-up{
    margin: auto;
    transform: translateY(-50px);
}
.counter-up h2{
    font-family: main-font-bold;
    color: white;
}
.counter-up .content{
    padding: 40px 60px 150px;
    margin: auto;
    width: 90%;
    border-radius: 50px;
    background-color: var(--gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.counter-div{
    transform: translateY(-80px);
    width: 85% !important;
}
.counter-div .counter-col{
    padding: 20px 0;
    text-align: center;
    background-color: var(--header-bg);
    border-radius: 30px;
}
.counter-col .col-heading{
    font-family: main-font-bold;
    font-size: 19px;
    color: var(--text-color);
}
.counter-col .plus{
    font-size: 60px;
    font-family: main-font-bold;
    color: var(--text-color);
}
.counter-col h1{
    font-family: main-font-bold;
    font-size: 9vmin;
    color: var(--text-color);
}
.counter-col h5{
    margin: auto;
    padding: 6px 30px;
    width: fit-content;
    background-color: var(--yellow);
    border-radius: 50px;
}

/* Short-link */

.short-link{
    margin-top: 30px;
}
.short-link .box{
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 0 0 0.1px rgba(0, 0, 0, 0.10);
    background-color: var(--card-color);
}
.short-link .box:hover{
    background-color: var(--card-hover);
    transition: 0.3s;
}
.short-link h5{
    font-family: main-font-bold;
}
.short-link p{
    margin-top: 20px;
    width: 68%;
}
.short-link h4{
    font-weight: 600;
    color: var(--text-color);
}
.short-link h6{
    color: var(--text-color);
}
.short-link span{
    padding-top: 20px !important;
    margin-top: 20px;
}
/* Short-link end */

/* OPtimize Section */
.optimize-section{
    margin: 150px auto 0;
    width: 90%;
}

.optimize-section .col_2 .box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
    padding: 20px 20px;
    border-radius: 20px;
    background-color: var(--card-color);
}
.optimize-section .col_2 .box .text h6{
    font-family: main-font-bold;
    color: var(--text-color);
}
.optimize-section .col_2 .box .text p{
    font-size: 14px;
    padding: 0;
    margin: 0;
    color: var(--text-color);
}

.optimize-section .col_2 .box .time{
    background-color: var(--green);
    width: fit-content;
    font-size: 14px;
    padding: 3px 20px;
    border-radius: 50px;
}
.optimize-section .h6{
    background-color: var(--green);
    width: fit-content;
    padding: 6px 20px;
    border-radius: 50px;
}
.optimize-section p{
    font-size: 14.5px;
    width: 95%;
}
.optimize-section .img-2{
    margin-top: 80px;
}
/* Optimize Section end */

/* Features Section */
.features-section{
    margin-top: 150px;
}
.features-section .box{
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 0 0 0.1px rgba(0, 0, 0, 0.10);
    background-color: var(--card-color);
    z-index: 1;
}
.features-section .box .icon{
    background-color: rgb(255, 248, 249);
    border-radius: 50px;
}
.features-section .box:hover{
    background-color: var(--card-hover);
    transition: 0.3s;
}
.features-section .box h4{
    font-weight: 600;
    color: var(--text-color);
}
.features-section .box p{
    color: gray;
    font-size: 14.3px;
}
/* Features Section end*/

/* Collaborator */
.collab-section{
    width: 90%;
    margin: 160px auto 0;
}
.collab-section h6{
    width: fit-content;
    background-color: #fff2cf;
    padding: 8px 20px;
    border-radius: 50px;
}
.collab-section p{
    width: 95%;
}
.collab-section img{
    width: 100%;
}
/* Collaborator end*/

/* Integration */
.integrate-section{
    margin-top: 150px;
}
.integrate-section img{
    margin-top: 10px;
    width: 80%;
}
/* Integration end */

/* Card */
.card-section{
    margin-top: 100px;
   width: 90% !important;
}
.card-div{
    background-image: url(../images/card.png);
    height: 210px;
    width: 100%;
    background-size: 100% 100%;
}
.card-div .content {
    padding-left: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.card-div h3{
    font-weight: bold;
}

.card-div .content p{
    padding-top: 10px;
    font-size: 14.5px;
    width: 90%;
}
/* Card section end */

/* Footer Section */
.footer-section{
    margin-top: 100px;
    background-color: var(--footer-bg);
    color: white;
    padding: 60px 70px 0;

}
.footer-section h6{
    font-weight: 500;
    color: var(--yellow);
}
.footer-section .col_1 p{
    width: 100%;
    font-size: 13.5px;
    font-weight: 100;
    color: lightgray;
}
.footer-section ul{
    padding-left: 0;
}
.footer-section ul li{
    margin-top: 25px;
    list-style: none;
}
.footer-section ul li a{
    text-decoration: none;
    color: white;
}
.footer-section ul li a:hover{
    color: var(--yellow);
    transition: 0.1s;
}
.footer-section .col_4 img {
    width: 23px;
}
.footer-section .col_4 .number{
    font-size: 18px;
    color: white;
    padding: 4px 0 0 13px;
}
.footer-section .col_4 .icons i{
    color: var(--gray);
    background-color: white;
    padding: 5px;
    margin: 0 4px;
    border-radius: 50px
}
.footer-section .col_4 .icons i:hover{
    background-color: var(--yellow);
    transition: 0.1s;
}
.footer-section hr{
    margin-top: 20px;
    height: 2px !important;
}
.copy-right{
    padding: 10px 0;
}
.copy-right p{
    font-size: 14px;
    color: lightgray;
}
/* ============ Index End ============ */

/* ============ QR Code ============ */
/* Header */
.qr-code-page .header-content h1{
    font-size: 65px;
}
.qr-code-page .header-content p{
    width: 75%;
}
.qr-code-page .head-line{
    width: 340px;
}
/* Header end*/

/* Custon Qr */
.custom-qr-section form{
    border-radius: 20px !important;
}
.custom-qr-section .edit-col .card{
    border-radius: 10px !important;
}
.custom-qr-section .edit-col .txt-area{
    height: 160px;
}
.custom-qr-section .switch-btn a{
    background-color: var(--lightgray);
    border-radius: 50px;
    margin-right: 15px !important; 
}
.custom-qr-section .switch-btn i{
    color: #fcc847;
}
.custom-qr-section .switch-btn a:hover{
    background-color: var(--gray);
    color: #fff !important;
}
.custom-qr-section .switch-btn a:active{
    background-color: var(--gray);
    color: #fff !important;
}
.custom-qr-section .qr-div{
    border-radius: 10px;
    box-shadow: var(--box-shadow);
} 
.custom-qr-section .qr-div button img{
    width: 20px;
}
.custom-qr-section .register-btn{
    padding: 10px 0;
    background-color: var(--yellow);
    border-radius: 50px;
    border: none;
    color: var(--gray);
    border: 1px solid var(--yellow);
}
.custom-qr-section .register-btn:hover{
    background-color: transparent;
    color: var(--yellow);
    border: 1px solid var(--yellow);
}
.edit-pill-bg-color{
    background-color: var(--lightgray);
}

/* Control */
.qr-code-page .control-div .content{
    padding: 40px 0 60px;
    text-align: center;
    margin: auto;
    width: 90%;
    border-radius: 50px;
    background-color: var(--gray);  
}
.qr-code-page .control-div{
    margin: auto;
    transform: translateY(-50px);
}
.qr-code-page .control-div h2{
    font-family: main-font-bold;
    color: white;
}
.qr-code-page .control-div p{
    color: white;
    font-size: 15px;
}
/* Control end*/

/* Standard */
.qr-code-page .standard-section .container-fluid{
    width: 90%;
}
.qr-code-page .standard-section hr{
    color: lightgray;
    height: 2px;
    margin-top: 5.5px;
    padding: 0;
}
.standard-section .box h6{
    font-family: main-font-bold;
}
.qr-code-page .standard-section{
    margin-top: 100px;
}
.qr-code-page .standard-img{
    width: 100%;
}
.qr-code-page .head-text h1{
    font-size: 6vmin;
}
.qr-code-page .head-text p{
    font-size: 15px;
}
.qr-code-page .box .text p{
    width: 100%;
    font-size: 13.5px;
    color: gray;
}
.qr-code-page .box .text p{
    width: 100%;
}
/* Standard end */

/* Integration */
.map-section{
    margin-top: 150px;
}
.map-section p{
    width: 70%;
}
.map-section img{
    margin-top: 70px;
    width: 70%;
}
/* Integration end */
/* ============ QR Code End ============ */

/* ============ Bio Page ============ */
.bio-page .header-content h1{
    font-size: 65px;
}
/* Control */
.bio-page .control-div .content{
    padding: 40px 0 60px;
    text-align: center;
    margin: auto;
    width: 90%;
    border-radius: 50px;
    background-color: var(--gray);  
}
.bio-page .control-div{
    margin: auto;
    transform: translateY(-50px);
}
.bio-page .control-div h2{
    font-family: main-font-bold;
    color: white;
}
.bio-page .control-div p{
    color: white;
}
/* Control end*/

/* Standard */
.standard-section .container-fluid{
    width: 90%;
}
.bio-page .standard-section{
    margin-top: 100px;
}
.bio-page .standard-section hr{
    color: lightgray;
    height: 2px;
    margin-top: 5.5px;
    padding: 0;
}
.bio-page .bio-img{
    /* width: 80%; */
    width: 400px;
}
.bio-page .head-text h1{
    font-size: 6vmin;
}
.bio-page .head-text p{
    font-size: 15px;
}
.bio-page .box .text p{
    width: 100%;
    font-size: 13.5px;
    color: gray;
}
/* Standard end */
/* ============ Bio Page End ============ */

/* ============ Privacy ============ */
.privacy-page .header-section{
    height: 500px;
}
.privacy-page .header-content{
    margin-top: 30px !important;
}
.privacy-page .header-content h1{
    color: var(--text-color);
    transform: translateY(-20px);
    left: 14%;
    font-size: 70px;
    position: absolute;
    z-index: 1;
}
.privacy-page .privacy-img{
    position: relative;
    display: flex;
    justify-content: center;
    margin: auto;
    transform: translateY(-273px);
    width: 85%;
}
.privacy-page .policy-content{
    margin-top: 0px;
}
.policy-content h5{
    font-family: main-font-bold;
    color: var(--text-color);
}
.policy-content p,
.policy-content li{
    color: var(--text-color);
}
/* ============ Privacy End ============ */

/* ============ Contact Us ============ */
.contact-page .navbar ul li a,
.contact-page .login a
{
    color: var(--lightgray) !important;
}
.contact-page .navbar .dropdown-menu li a{
    color: var(--gray) !important;
}
.contact-page .header-section{
    height: 500px;
    background-color: var(--header2-bg);
}
.contact-page .header-content{
    margin-top: 30px !important;
}
.contact-page .header-content h1{
    color: var(--yellow);
    transform: translateY(-20px);
    left: 14%;
    font-size: 70px;
    position: absolute;
    z-index: 1;
}
.contact-page .header-content span{
    color: white;
}
.contact-page .contact-img{
    position: relative;
    display: flex;
    justify-content: center;
    margin: auto;
    transform: translateY(-273px);
    width: 85%;
    
}
.contact-page .section-2{
    margin: 0 auto 0 !important;
    width: 90%;
}
.contact-page .section-2 .col_1 h1{
    width: 110%;
    font-family: main-font-bold;
}
.contact-page .section-2 .col_1 .icons i{
    margin: 0 10px;
    padding: 8px;
    border-radius: 50px;
    color: var(--gray);
    background-color: var(--lightgray);
    font-size: 18px;
}
.contact-page .section-2 .col_1 .icons i:hover{
    color: var(--yellow);
    transition: 0.2s;
}
.contact-page .form input{
    background-color: var(--card-color);
    margin-top: 10px;
    padding: 0 0 0 20px;
    outline: none;
    border: none;
    border-radius: 10px;
    width: 100%;
    height: 65px;
    box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0.10);
}
.contact-page .form input::placeholder{
    color: var(--placeholder);
}
.contact-page .form input:focus{
    color: var(--placeholder);
}
.contact-page textarea{
    background-color: var(--card-color);
    color: var(--placeholder);
    margin-top: 10px;
    padding: 20px 0 0 20px;
    outline: none;
    border: none;
    border-radius: 10px;
    width: 100%;
    height: 120px;
    box-shadow: 0 1px 8px 1px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(0, 0, 0, 0.10);
}
.contact-page .section-3{
    border-radius: 100px;
    width: 90%;
    margin: 100px auto 0 !important;
    background-color: var(--header-bg);
    padding: 40px;
}
.contact-page .section-3 p{
    font-size: 17px;
}
/* ============ Contact Us End============ */

/* ============ Report Link ============ */
.report-page .header-section{
    height: 500px;
}
.report-page .header-content{
    margin-top: 30px !important;
}
.report-page .header-content h1{
    color: var(--text-color);
    transform: translateY(-20px);
    left: 14%;
    font-size: 70px;
    position: absolute;
    z-index: 1;
}
.report-page .header-content span{
    color: white;
}
.report-page .report-img{
    position: relative;
    display: flex;
    justify-content: center;
    margin: auto;
    transform: translateY(-273px);
    width: 85%;
    
}
.report-page .section-2 .col_1 h1{
    font-family: main-font-bold;
}
.report-page .section-2 .col_1 p{
    width: 90%;
}
.report-page .form input{
    background-color: var(--card-color);
    color: var(--text-color);
    margin-top: 10px;
    padding: 0 0 0 20px;
    outline: none;
    border: none;
    border-radius: 10px;
    width: 100%;
    height: 65px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
/* ============ Report Link End ============ */


/* ============ Login Page ============ */
.login-page .form-div .logo{
    transform: translateX(-20px);
}
.login-page .img-col{
    height: 100vh;
    background-image: url(../images/login-img.png);
    background-size: 100% 100%;
}
.login-page .form-div{
    width: 60%;
}
.login-page .col_1 h1{
    font-family: main-font-bold;
}
.login-page .col_1 .heading-line{
    width: 210px;
    transform: translateY(-10px);
}
.login-page .form-fields input label{
    font-size: 14px;
}
.login-page .form-fields input{
    margin-top: 10px;
    width: 100%;
    padding: 10px 0 10px 20px ;
    border: 1px solid gray;
    background-color: var(--card-color);
    color: var(--text-color);
    border-radius: 6px;
    font-size: 14px;
}
.login-page .form-fields input::placeholder{
    color: var(--text-color);
}
.login-page .form-fields input:focus{
    outline: none;
    border: 1px solid var(--yellow);
}
.login-page .form-div .login-btn{
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
    font-weight: bold;
    width: 100%;
    padding: 10px 0;
    border-radius: 50px;
}
.login-page .form-div .login-btn:hover{
    background: none;
    transition: 0.3s;
    color: var(--form-btn-hover);
}
.login-page .form-div a{
    text-decoration: none;
}
.reg-now-btn{
    transform: translateY(-10px);
}
.forget-pass-btn a{
    font-size: 13.5px;
}
.hr-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.hr-container hr {
    width: 100px; /* Adjust width as needed */
    margin: 0;
}
.hr-text {
    font-size: 13px;
    margin: 0 10px;
    color: gray;
}
.login-with a{
    padding: 5px 40px;
    border: 1px solid var(--yellow);
}
/* ============ Login Page End ============ */

/* ============ Signup Page ============ */
.signup-page .form-div .logo{
    transform: translateX(-20px);
}
.signup-page .img-col{
    height: 100vh;
    background-image: url(../images/signup-img.png);
    background-size: cover;
}
.signup-page .form-div{
    width: 60%;
}
.signup-page .form-div .para{
    font-size: 14px;
}
.signup-page .col_1 h1{
    font-size: 6vmin;
    font-family: main-font-bold;
}
.signup-page .col_1 .heading-line{
    width: 210px;
    transform: translateY(-10px);
}
.signup-page .form-fields label{
    font-size: 14px;
}
.signup-page .form-fields input{
    font-size: 14px;
    margin-top: 5px;
    width: 100%;
    padding: 10px 0 10px 20px ;
    border: 1px solid gray;
    border-radius: 6px;
    background-color: var(--card-color);
    color: var(--text-color);
}
.signup-page .form-fields input::placeholder{
    color: var(--text-color);
}
.signup-page .form-fields input:focus{
    outline: none;
    border: 1px solid var(--yellow);
}
.signup-page .form-div .login-btn{
    background-color: var(--yellow);
    color: var(--gray);
    border: 1px solid var(--yellow);
    font-weight: bold;
    width: 100%;
    padding: 10px 0;
    border-radius: 50px;
}
.signup-page .form-div .login-btn:hover{
    background: none;
    transition: 0.3s;
    color: var(--form-btn-hover);
}
.signup-page .form-div a{
    text-decoration: none;
}
.reg-now-btn{
    transform: translateY(-10px);
}
/* ============ Signup End ============ */

/* ============ Forgot Page ============ */
.forgot-page p{
    font-size: 15px;
}
/* ============ Forgot Page end ============ */

/* ============ Stats ============ */
.stats-page .head-section{
    padding: 30px 30px 0 30px;
    width: 90% !important;
    border-radius: 30px;
    background-color: var(--header-bg);
}
.stats-page .head-section h3{
    font-family: main-font-bold;
}
.stats-page .head-section a{
    color: var(--text-color);
}
.stats-page .box-sec-1{
    padding: 20px 20px;
    margin-top: 20px !important;
    width: 90%;
    margin: auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 0 0 0.1px rgba(0, 0, 0, 0.10);
    background-color: var(--card-color);
}
.stats-page .box-sec-1 .box{
    background-color: var(--yellow);
    padding: 18px 30px 10px;
    border-radius: 50px;
    width: 90%;
    margin: auto;
}
.stats-page .box-sec-1 .col_4 .box h5{
    font-size: 13px;
}
.flag-box{
    background-color: var(--yellow);
    padding: 3px 10px 3px 30px;
    border-radius: 50px;
    width: 90%;
    margin: auto;
}
.stats-page .box-sec-2 {
    margin-top: 40px;
    width: 93%;
}
.stats-page .box-sec-2 .box{
    align-items: center ;
    background-color: var(--text3-color);
    color: var(--text-color);
    padding: 15px 0;
    justify-content: center;
    border-radius: 50px;
}
.stats-page .calender-div{
    width: 93%;
    margin: 80px auto 0;
}
.stats-page .calender-div h3{
    font-family: main-font-bold;
}
.stats-page .calender{
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--header-bg);
    width: fit-content;
}
.stats-page .calender p{
    font-size: 14px;
}
.stats-page .graph img{
    width: 93%;
}
.recent-activity{
    margin: 60px auto 0;
    width: 93% !important;
}
.recent-activity h3{
    font-family: main-font-bold;
}
.recent-activity .box-sec-3{
    background-color: var(--text3-color);
    color: var(--text-color);
    /* width: 93% !important; */
    padding: 30px 40px;
    border-radius: 50px;
    
}
.recent-activity .box-sec-3 .col_1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.recent-activity .box-sec-3 .col_1 h6{
    padding: 10px 0 0 10px;
}
.recent-activity .box-sec-3 .time{
    padding: 4px 15px;
    border-radius: 50px;
    background-color: var(--green);
    color: var(--gray);
}
/* ============ Stats End ============ */

/* ============ Blog ============ */
.blog-page .navbar ul li a,
.blog-page .login a
{
    color: var(--lightgray) !important;
}
.blog-page .navbar .dropdown-menu li a{
    color: var(--gray) !important;
}
.blog-page .header-section{
    background-color: var(--header2-bg);
}
.blog-page .header-content{
    margin-top: 30px !important;
}
.blog-page .header-content h6{
    background-color: var(--green);
    padding: 8px 30px;
    margin-bottom: 10px;
    width: fit-content;
    border-radius: 50px;
    font-weight: bold;
}
.blog-page .header-content h1{
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    color: white;
}
.blog-page .blog-img{
    display: flex;
    justify-content: center;
    margin: auto;
    transform: translateY(-50px);
    width: 85%;
}
/* main-section */
.blog-page .main-section {
    margin-top: 120px;
}
.blog-page .main-section .col_1 img{
    width: 100%;
}
.blog-page .main-section h2{
    font-size: 35px;
}
.blog-page .main-section ul{
    list-style: none;
    padding: 0 0 0 20px;
}
.blog-page .main-section ul li{
    
    display: inline;
    color: gray;
    border: 1px solid lightgrey;
    font-size: 14px;
    padding: 5px 20px;
    margin: 0px 6px;
    border-radius: 50px;
}
.blog-page .main-section .search-div{
    padding: 15px 0 40px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--card-color);
}
.blog-page .main-section .search-div hr{
    color: var(--dashboard-btn);
}
.blog-page .main-section .search-div input{
    border: 1px solid var(--dashboard-btn);
    width: 90%;
    background-image: url('../icons/search-ic.png');
    background-position: 90%;
    padding: 0 90px 0 20px;
    height: 60px;
    border-radius: 15px;
    background-repeat: no-repeat;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--card-color);
    color: var(--text-color);
}
.blog-page .main-section .search-div input::placeholder{
    color: var(--text-color);
}
.blog-page .main-section .search-div input:focus{
    outline: none;
}
.blog-page .main-section .posts-div{
    padding: 15px 13px 40px;
    border-radius: 15px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.blog-page .main-section .posts-div .para{
    line-height: 1.3;
}
.blog-page .main-section .posts-div .date{
    color: gray;
    font-size: 13px;
    transform: translateY(-4px);
    
}
.blog-page .main-section .posts-div img{
    width: 75px !important;
    height: 75px;
}
/* main-section end*/

/* Comment-section */
.blog-page .comment-form h3{
    font-family: main-font-bold;
}
.blog-page .comment-form input{
    margin: 10px 0 0;
    padding: 0 0 0 20px;
    outline: none;
    border: none;
    border-radius: 15px;
    width: 30%;
    height: 60px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--card-color);
}
.blog-page .comment-form input::placeholder{
    color: var(--text-color);
}
.blog-page .comment-form textarea{
    color: var(--text-color);
    padding: 20px 0 0 20px;
    margin: 13px 0 0;   
    outline: none;
    border: none;
    border-radius: 15px;
    width: 93.3%;
    height: 140px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--card-color);
}
.blog-page .comment-form .check-div input{
    width: 17px;
    height: 17px;
    box-shadow: none;
}
.blog-page .comment-form .check-div span{
    padding-left: 10px;
    color: gray;
    font-size: 15px;
}
.blog-page .comment-form img{
    width: 100%;
}
/* Comment-section end */

/* Cards */
.blog-card-section{
    margin-top: 100px;
}
.blog-card-section .heading-line{
    width: 250px;
    margin-bottom: 25px;
}
.blog-page .blog-card-div .box{
    border-radius: 30px;
    padding: 10px 10px 40px;
    box-shadow: var(--box-shadow);
}
.blog-page .blog-card-div .head-img{
    width: 100%;
}
.blog-page .blog-card-div .box .content-col{
    width: 90%;
    margin: auto;
}
.blog-page .blog-card-div .box .para-1{
    font-size: 14px;
    padding: 1px 16px;
    border-radius: 50px;
    background-color: var(--yellow);
    width: fit-content;
}
.blog-page .blog-card-div .box .para-2{
    font-family: main-font-bold;
    font-size: 18px;
}
.blog-page .blog-card-div .box h6{
    font-weight: bold;
}
.blog-page .blog-card-div .box span{
    color: gray;
    font-size: 14px;
}
.blog-page .blog-card-div .box .profile-img{
    width: 57px;
}
/* Cards end */
/* ============ Blog End ============ */

/* ============ Support ============ */
.help-page .header-content{
    margin-top: 25px;
}
.help-page .header-content h1{
    text-align: center;
    font-family: main-font-bold;
    color: var(--text-color);
}
.help-page .header-content p{
    text-align: center;
    margin-top: 20px;
    font-weight: 550;
}
.help-page .header-content .head-line{
    width: 36vmin;
}
.help-page .input-div{
    margin: 25px auto 0;
    width: 520px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 4px 10px;
    border-radius: 50px;
}
.help-page .input-div input{
    width: 100%;
    padding: 0 0 0 20px;
    border: none;
    outline: none;
}
.help-page .input-div input::placeholder{
    color: var(--gray);
}
.help-page .input-div .btn-2{
    margin-left: 9px;
    color: white;
    background-color: var(--gray);
    border: none;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 14.5px;
}
.help-page .input-div .btn-2:hover{
    background-color: var(--yellow);
    color: var(--gray);
    transition: 0.3s;
}
/* Input Small Screen */
.help-page .input-div-sm{
    margin: 25px auto 0;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 8px 10px;
    border-radius: 50px;
}
.help-page .input-div-sm input{
    padding: 0 0 0 20px;
    width: 60cqmin;
    border: none;
    outline: none;
}
.help-page .input-div-sm input::placeholder{
    color: var(--gray);
}
.help-page .input-container-sm .btn-2{
    margin-left: 9px;
    color: white;
    background-color: var(--gray);
    border: none;
    padding: 15px 36px;
    border-radius: 50px;
    font-size: 14.5px;
}
.help-page .input-container-sm .btn-2:hover{
    background-color: var(--yellow);
    color: var(--gray);
    transition: 0.3s;
}
.help-page .input-container-sm{
    display: none;
}
/* Input Small Screen end*/

/* Main Section */
.help-page .main-section{
    transform: translateY(-60px);
    width: 88%;
}
.help-page .main-section .main-col{
    background-color: var(--text2-color);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 100px;
    width: 85%;
    margin: auto;
}
.help-page .main-section .box{
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    padding: 30px 30px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s ease;
}
.help-page .main-section .box:hover{
    background-color: var(--lightgray);

}
.help-page .main-section .box h4{
    font-family: main-font-bold;
    text-decoration: underline;
}
.help-page .main-section .box p{
    font-family: main-font-regular;
    font-size: 15px;
}
.help-page .main-section .box span{
    color: gray;
    font-weight: 100;
    font-size: 13px;
    text-decoration: underline;
}

.help-page .main-section .head-line{
    width: 200px;
    padding-bottom: 0px;
}
.help-page .main-section .artical .learn-more{
    color: var(--gray);
    font-family: main-font-bold;
}
.help-page .main-section .artical h5{
    font-family: main-font-bold;
}
.help-page .main-section .artical .main-btn-1{
    padding: 10px 20px;
    font-family: main-font-bold;
}

/* Main Section end */
/* ============ Support End ============ */

/* ============ Pricing ============ */
.pricing-page .header-section{
    height: auto;
    padding-bottom: 180px;
}

.pricing-page .header-content{
    margin-top: 40px;
}
.pricing-page .header-content h1{
    text-align: center;
    font-size: 9vmin;
    font-family: main-font-bold;
}
.pricing-page .header-content .top-heading{
    background-color: var(--yellow);
    border-radius: 50px;
    width: fit-content;
    padding: 6px 25px;
}
/* Switch btn */
.pricing-page .switch-btn{
    margin-top: 70px;
    display: flex;
    justify-content: center;
}
.switch-btn .switch {
    margin: 0 23px;
    position: relative;
    display: inline-block;
    width: 55px;
    height: 25px;
}
.switch-btn .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.switch-btn .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--yellow);
    -webkit-transition: .4s;
    transition: .4s;
}

.switch-btn .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: var(--gray);
    -webkit-transition: .4s;
    transition: .4s;
}

.switch-btn input:checked + .slider {
    background-color: gray;
}

.switch-btn input:focus + .slider {
    box-shadow: 0 0 1px gray;
}

.switch-btn input:checked + .slider:before {
    -webkit-transform: translateX(29px);
    -ms-transform: translateX(29px);
    transform: translateX(29px);
}

/* Rounded sliders */
.switch-btn .slider.round {
    border-radius: 34px;
}

.switch-btn .slider.round:before {
    border-radius: 50%;
}
/* Switch btn end */

/* Pricing */
.month-clr{
    color: var(--card-month-color);
}
.pricing-section{
    transform: translateY(-80px);
}
.pricing-section .h-1{
    font-family: main-font-bold;
    color: var(--text4-color);
}
.pricing-section ul li{
    font-size: 13px;
    color: var(--text-color);
}
.pricing-section i{
    padding-top: 3px;
    font-size: 13px;
    color: var(--text-color);
}
.pricing-section p{
    font-size: 13px;
    color: var(--text-color);
}
.pricing-section .card-col .card{
    background-color: var(--card2-color);
    border: none;
    border-radius: 25px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);

}
.pricing-section .card .number{
    font-family: main-font-bold;
    font-size: 35px;
    color: var(--text-color);
}
.pricing-section .card .month{
    color: var(--card-month-color);
}
.pricing-section .btn{
    background-color: #fff6df;
    font-family: main-font-bold ;
    padding: 10px 45px;
    border-radius: 10px;
}
.pricing-section .yellow-card .card{
    background-color: var(--yellow);
    transform: translateY(-50px);
}
.pricing-section .yellow-card .card .h-1{
    color: var(--gray);
}
.pricing-section .yellow-card .card .month{
    color: gray;
}
.pricing-section .yellow-card .card .btn{
    background-color: white;
}
/* Custom Pricing */
.custom-pricing{
    background-color: var(--header2-bg);
    width: 90% !important; 
    margin: 0 auto 0;
    color: white;
    padding: 30px 30px !important;
    border-radius: 50px;
}
.custom-pricing h2{
    font-family: main-font-bold;
}
.custom-pricing .head-line{
    width: 40vmin;
}
/* Custom Pricing end */

/* Feature Compare table */
.price-compare{
    margin-top: 100px;
}
.price-compare h1{
    font-family: main-font-bold;
}
.price-compare table{
    width: 90%;
    margin: 50px auto 0;
}
.price-compare table p{
    font-weight: 100;
    font-size: 13px;
    color: var(--text-color);
}
.price-compare table .para{
    padding-top: 15px;
    font-size: 15px;
}
.price-compare table td{
    text-align: center;
    color: var(--text-color);
}
.price-compare table th{
    color: var(--text-color);
}
.price-compare table h3,
.price-compare table h5{
    font-family: main-font-bold;
    color: var(--text-color);
}
.price-compare table .number{
    font-family: main-font-bold;
    font-size: 35px;
    color: var(--text-color);
}
.price-compare table .month{
    color: gray;
    font-size: 18px;
}
.price-compare table .switch-btn{
    justify-content: start;
}
.price-compare table .btn{
    background-color: var(--yellow);
    font-family: main-font-bold ;
    padding: 10px 30px;
    border-radius: 10px;
}
.price-compare table .btn-2{
    background-color: var(--gray);
    color: white;
    font-family: main-font-bold ;
    padding: 10px 30px;
    border-radius: 10px;
}
.price-compare table tbody th{
    font-weight: 200;
}
.price-compare .table tbody tr:last-child td,
.price-compare .table tbody tr:last-child th {
    border-bottom: none;
}
.price-compare .table tbody tr:first-child td,
.price-compare .table tbody tr:first-child th {
    border-top: none;
}
/* Feature Compare table end */

/* Price Compare Small Screen */
.price-compare-sm{
    margin-top: 100px;
    width: 95% !important;
}
.price-compare-sm .column{
    height: 120px;
}
.price-compare-sm .col-stripe{
    background-color:  var(--header-bg);
}
.price-compare-sm .btn{
    background-color: var(--yellow);
}
.price-compare-sm sub{
    color: gray;
}
.price-compare-sm p{
    color: gray;
    margin: 0 0 10px;
}
.price-compare-sm h5{
    color: var(--text-color);
}
/* Toggle Table */
.pricing-toggle-tbl-sm {
    width: 98% !important;
}
.pricing-toggle-tbl-sm i{
    color: var(--text-color);
}
.pricing-toggle-tbl-sm .table th,
.pricing-toggle-tbl-sm .table td,
.pricing-toggle-tbl-sm .table tr {
    border: none;
    font-size: 18px;
    color: var(--text-color);
}
.pricing-toggle-tbl-sm .table th{
    color: var(--text4-color);
}
.pricing-toggle-tbl-sm .table td{
    padding: 12px 10px;
}
/* Toggle Table end */
/* ============ Pricing End ============ */





/* ======================== MEDIA QUERY ========================*/


@media screen and (max-width: 480px){

    /* ==== Main ==== */
    .main-btn-1{
        padding: 10px 30px;
    }
    .main-btn-2{
        padding: 11px 30px;
    }
    /* ==== Main end ==== */

    /* ============ Index ============ */
    /* Top Section */
    .top-section{
        height: 40px;
    }
    .top-section .content{
        padding-top: 5px;
        width: 96%;
    }
    /* Top SEction end */

    /* Navbar */
    .navbar .logo{
        width: 140px;
    }
    .navbar .nav-btn{
        font-size: 13px;
    }
    /* Navbar end */

    /* Header */
    .index-page .header-section{
        width: 100%;
        /* height: 90vh; */
        margin: auto;
        border-radius: 0;
    }
    .index-page .header-content h1{
        margin-top: 20px !important;
        font-size: 40px;
        width: 330px;
        margin: auto;
    }
    .index-page .header-content p{
        margin: 25px auto 0;
        width: 95%;
        font-size: 13px;
    }
    .index-page .header-content br{
        display: none;
    }
    .index-page .header-content .head-line{
        width: 180px;
    }
    .index-page .header-content .input-div{
        display: none;
    }
    .index-page .input-container-sm{
        display: block;
    }
    .index-page .input-div-sm input{
        width: 77vw;
    }
    .index-page .input-div-sm .qr-img-sm{
        width: 90px;
    }
    /* Header end */

    /* Counter up */
    .counter-up .content{
        padding: 30px 20px 40px;
        width: 100%;
        border-radius: 30px;
        background-color: var(--gray);
        display: flex;
        text-align: center;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .counter-div{
        transform: translateY(0px);
      
    }
    .counter-col{
        margin: 10px 10px 0;
    }
    .counter-col h1{
        font-size: 45px;
    }
    .counter-col .plus{
        font-size: 40px;
    }
    .counter-col h5{
        font-size: 14px;
    }
    /* Counter-up end */

    /* Short link */
    .short-link{
        margin-top: 60px;
    }
    .short-link h5{
        font-size: 18px;
    }
    .short-link h1{
        width: 90%;
    }
    .short-link p{
        margin-top: 0;
        width: 85%;
        line-height: 1.4;
    }
    /* Short link */

    /* Features Section */
    .features-section{
        margin-top: 100px;
    }
    .features-section .main-heading{
        text-align: center;
        width: 80%;
        margin: auto;
    }
    .features-section .main-para{
        text-align: center;
        width: 90%;
        margin: 10px auto 0;
    }
    /* FeatturesSecton end */

    /* collab Section */
    .collab-section{
        margin-top: 120px;
        width: 100%;
    }
    .collab-section{
        text-align: center;
    }
    .collab-section h6,
    .collab-section p
    {
        margin: auto;
    }
    .collab-section img{
        margin-top: 30px;
    }
    /* Collab end */

    /* Integrate */
    .integrate-section {
        margin-top: 100px;
    }
    .integrate-section img{
        margin-top: 30px;
        width: 100%;
    }
    /* Integrate end */

    /* card Section */
    .card-section{
        width: 100% !important;
    }
    .card-div{
        margin-top: 10px;
        height: 180px;
    }
    .card-div .content {
        padding-left: 20px;
    }
    /* Card end */
    /* ============ Index End ============ */

    /* ============ Blog ============ */
    .blog-page .main-section {
        /* margin-top: 50dvw; */
        margin-top: 50px;
    }
    .blog-page .main-section h2{
        font-size: 27px;
    }
    .blog-page .header-content h6{
        font-size: 13px;
        padding: 4px 20px;
    }
    .blog-page .header-content h1{
        margin-top: 20px !important;
        font-size: 35px; 
        margin: auto;
    }
    .blog-page .header-content br{
        display: none;
    }
    /* ============ Blog End ============ */

    /* ============ Privacy ============ */
    .privacy-page .policy-content p{
        font-size: 13px;
    }
    /* ============ Privacy End ============ */

    /* ============ Contact ============ */
    .contact-page .section-2{
        width: 100%;
    }
    .contact-page .section-2 .content{
        width: 80%;
        margin: auto;
    }
    /* ============ Contact End ============ */


    /* ============ Pricing ============ */
    .pricing-page .custom-pricing{
        width: 93% !important;
        border-radius: 20px;
        padding: 10px 10px 25px !important;
    }
    .pricing-page .custom-pricing p{

        font-size: 14px;
    }
    /* ============ Pricing End ============ */

    /* ============ Stats ============ */
    .stats-page .head-section{
        padding: 30px 16px 0 16px;
        width: 95% !important;
    }
    .stats-page .head-section p{
        font-size: 15px;
    }
    .stats-page .box-sec-1{
       
        width: 95%;
    }
    /* ============ Stats End ============ */

     /* ============ Help ============ */
     .help-page .main-section .main-col{
        padding: 30px 15px;
    }
    .help-page .main-section .box{
        padding: 20px 20px 20px;
    }

    /*  */
    .hr-container hr {
        width: 80px; /* Adjust width as needed */
    }
    .login-with a{
        padding: 5px 20px;
    }
}

@media screen and (max-width: 576px){

    /* ==== Navbar ==== */
    .navbar .dropdown-menu{
        width: 100%;
    }
    /* ==== Navbar end ==== */
    
    /* ============ Stats ============ */
    .stats-page .calender-div{
        width: 100%;
        margin: 80px auto 0;
    }
    /* ============ Stats End ============ */

    
}

@media screen and (min-width: 577px) and (max-width: 990px){
    /* ==== Navbar ==== */
    .navbar .dropdown-menu{
        width: 90%;
        margin: auto;
    }
    /* ==== Navbar end ==== */
}

@media screen and  (max-width: 768px){

    /* Optimize Section */
    .optimize-section{
        margin-top: 100px;
    }
    .optimize-section {
        padding: 30px 0 0;
    }
    .optimize-section .box{
        flex-direction: column;
    }
    .optimize-section .box .b-2{
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .optimize-section .box .time{ 
        margin-top: 10px;
        width: 140px;
        text-align: center;
        font-size: 13px !important;
        padding: 3px 10px;
    }
    /* Optimize Section end */

    /* Footer */
    .footer-section{
        padding: 40px 0 0;
    }
    .footer-section{
        text-align: center;
    }
    .footer-section h6{
        margin-top: 20px;
    }
    .footer-section ul li{
        margin-top: 20px;
    }
    .footer-section .col_1 p{
        font-size: 14px;
    }
    .footer-section .number-div{
        /* border: 1px solid white; */
        width: fit-content;
        margin: auto;
    }
    .footer-section .number{
        font-size: 16px !important;
        margin-top: 0;
        padding-top: 0px !important;
    }
    /* Footer end */

    /* ============ Contact ============ */
    .contact-page .section-2 img{
        display: none;
    }
    .contact-page .content{
        text-align: center;
    }
    .contact-page .section-2 .col_1 h1{
        width: 100%;
        font-family: main-font-bold;
    }
    .contact-page .section-3{
        border-radius: 0;
    }
    /* ============ Contact End ============ */

    /* ============ Pricing ============ */
    .pricing-page .header-section{
        width: 100%;
        border-radius: 0;
    }
    .pricing-page .header-content .head-line{
        width: 60vmin;
    }
    .pricing-page .header-content p{
        width: 90%;
    }
    /* ============ Pricing End ============ */

    /* ============ Stats ============ */
    .calender img{
        width: 25px;
    }
    .calender p{
        font-size: 13px !important;
    }
    .stats-page .box-sec-2 .box{
        padding: 8px 0;
        font-size: 14px;
    }
    .stats-page .box-sec-2 .box img{
        width: 23px;
    }
    /* ============ Stats End ============ */

    /* ============ Help ============ */
    .help-page .input-container-sm{
        display: block;
    }
    .help-page .input-div{
        display: none;
    }
    .help-page .input-div-sm img{
        width: 20px;
    }
    .help-page .input-div-sm input{
        padding: 0 0 0 10px;
    }
    /* ============ Help ============ */

    /* ============ Bio ============ */
    .bio-page .control-div .content{
        padding: 20px 10px 30px;
        text-align: center;
        margin: auto;
        width: 100%;
        border-radius: 10px;
        background-color: var(--gray);  
    }
    .bio-page .control-div{
        margin: 30px auto 0;
        transform: translateY(0px);
    }
    /* ============ Bio ============ */

    /* ============ Help ============ */
    .help-page .main-section .main-col{
        width: 100%;
    }

    /* ============ Qr Code ============ */
    .custom-qr-section .switch-btn a{
        margin-right: 5px !important; 
    }
    .qr-code-page .header-content p{
        width: 85%;
    }
}

@media screen and (max-width: 991px) {

    /* Index */
    .index-page .input-div-sm .main-btn-1{
        padding: 7px 18px;
    }
    .index-page .input-div-sm .url-ic{
        width: 20px;
    }

     /* Optimze Section */
     .optimize-section .head-text{
        text-align: center;
    }
    .optimize-section .head-text h6{
        margin: auto;
    }
    .optimize-section .head-text p{
        margin: auto;
    }
    .optimize-section .img-1,
    .optimize-section .img-2{
        display: none;
    }
    /* Optimze Section */

    /* ============ Bio Page ============ */
    .bio-page .header-content{
        text-align: center;
    }
    .bio-page .header-content h1{
        font-size: 50px;
    }
    .bio-page .header-content .head-line{
        width: 50vw;
    }
    .bio-page .header-content .header-img{
        display: none;
    }

    
    .standard-section .col_2 .head-text{
        text-align: center;
    }
    .bio-page .control-div .content p{
        font-size: 14px;
    }
    .bio-page .bio-img{
        display: none;
    }
    .bio-page .box .b-2{
        display: flex;
        flex-direction: column;
        margin: auto;
        text-align: center;
    }
    .bio-page .box .text h6{
        margin-top: 10px;
    }
    .bio-page .map-section,
    .qr-code-page .map-section{
        margin-top: 100px;
    }
    .bio-page .map-section .main-para,
    .qr-code-page .map-section .main-para{
        width: 90%;
        font-size: 14px;
    }
    .bio-page .map-section img,
    .qr-code-page .map-section img{
        width: 95%;
    }
    /* ============ Bio Page end ============ */
    
    /*  */
    .qr-code-page .header-content{
        text-align: center;
    }
    .qr-code-page .header-content h1{
        font-size: 50px;
    }
    .qr-code-page .header-content .head-line{
        width: 50vw;
    }
    .qr-code-page .header-content .header-img{
        display: none;
    }
    .qr-code-page .control-div{
        margin: 30px auto 0;
        transform: translateY(0px);
    }
    .qr-code-page .control-div .content{
        padding: 20px 10px 30px;
        text-align: center;
        margin: auto;
        width: 100%;
        border-radius: 10px;
        background-color: var(--gray);  
    }
    .bqr-codepage .control-div .content p{
        font-size: 14px;
    }
    .qr-code-page .standard-img{
        display: none;
    }
    .qr-code-page .box .b-2{
        display: flex;
        flex-direction: column;
        margin: auto;
        text-align: center;
    }
    .qr-code-page .box .text h6{
        margin-top: 10px;
    }

    /* ============ Report Page ============ */
    .report-page .section-2{
        text-align: center;
    }
    .report-page .section-2 .col_1 p{
        width: 90%;
        margin: auto;
    }
    .report-page .section-2 .col_1 img{
        width: 80%;
        margin-bottom: 50px;
    }
    /* ============ Report Page end ============ */

    /* ============ Pricing ============ */

    /* ============ Pricing ============ */
    .pricing-section .yellow-card .card{
        transform: translateY(0);
        border: none !important;
    }
    .pricing-section .card-col .card{
        border: 1px solid var(--gray);
    }
    .custom-pricing .col_1,
    .custom-pricing .col_3
    {
        display: none !important;
    }
    /* .pricing-page .header-content .switch-btn{
        margin-top: 100px;
    } */

    /* ========== BLog ========== */
    .blog-page .header-content .head-line{
        width: 200px;
    }
    .blog-page .comment-form input{
        width: 100%;
    }
    .blog-page .comment-form textarea{
        width: 100%;
    }
    .blog-page .comment-form img{
        display: none;
    }
    .blog-page .header-section,
    .bio-page .header-section,
    .qr-code-page .header-section
    {
        width: 97% !important;
    }
    /* ========== BLog ========== */

    /* ========== Privacy / Report ========== */
    .privacy-page .header-section,
    .report-page .header-section,
    .contact-page .header-section{
        height: auto;
        width: 97%;
    }
    .privacy-page .header-content h1,
    .report-page .header-content h1,
    .contact-page .header-content h1{
        transform: translateY(-10px);
        font-size: 13vmin;
        text-align: center;
        position: static;
    }
    .privacy-page .privacy-img,
    .report-page .report-img,
    .contact-page .contact-img{
        transform: translateY(-80px);
        width: 85%;
    }
    .report-page .header-content span{
        color: var(--gray);
    }
    /* ========== Privacy / Report ========== */

    /* ========== Stats Page ========== */
    .recent-activity .box-sec-3 .col_1{
        display: block;
    }
    .recent-activity .box-sec-3 .col_1 .text{
        padding: 10px 0;
        justify-content: center;
    }
    /* ========== Stats Page ========== */
    
}

@media screen and (min-width: 1200px) {
    .qr-code-page .head-text p{
        width: 85%;
    }
}

@media screen and (min-width: 992px){
    .privacy-page .policy-content{
        margin-top: -140px;
    }

    .report-page .section-2{
        margin-top: -140px;
    }
}

@media screen and (min-width: 502px) and (max-width: 991px){
    .blog-page .posts-div .div-col{
        margin-top: 14px; 
    }
    
}


@media screen and (min-width: 320px) and (max-width: 575px){
    .login-page .img-col{
        display: none !important;
    }
    .login-page .col_1{
        margin-top: 50px;
    }
    .login-page .form-div{
        width: 85%;
    }
    .login-page .form-div .logo{
        width: 160px;
    }

    .signup-page .img-col{
        display: none !important;
    }
    .signup-page .col_1{
        margin-top: 50px;
    }
    .signup-page .form-div{
        width: 85%;
    }
    .signup-page .form-div .logo{
        width: 160px;
    }
    /* ============ Login End ============ */
}

@media (min-width: 537px) and (max-width: 767px){
    .login-page .img-col{
        display: none !important;
    }
    .login-page .col_1{
        margin-top: 50px;
    }
    .login-page .form-div{
        width: 70%;
    }
    .login-page .form-div .logo{
        width: 160px;
    }

    .signup-page .img-col{
        display: none !important;
    }
    .signup-page .col_1{
        margin-top: 50px;
    }
    .signup-page .form-div{
        width: 70%;
    }
    .signup-page .form-div .logo{
        width: 160px;
    }

}

@media (min-width: 768px) and (max-width: 991px){
    .login-page .img-col{
        display: none !important;
    }
    .login-page .col_1{
        margin-top: 50px;
    }
    .login-page .form-div{
        width: 60%;
    }
    .login-page .form-div .logo{
        width: 180px;
    }

    .signup-page .img-col{
        display: none !important;
    }
    .signup-page .col_1{
        margin-top: 50px;
    }
    .signup-page .form-div{
        width: 60%;
    }
    .signup-page .form-div .logo{
        width: 180px;
    }

}



@media (min-width: 481px) and (max-width: 536px){
    .index-page .input-div-sm input{
        width: 400px;
    }

}

@media screen and (min-width: 481px) and (max-width: 768px){

    /* ==== Main ==== */
    .main-btn-1{
        padding: 10px 30px;
    }
    .main-btn-2{
        padding: 10px 30px;
    }
    /* ==== Main end ==== */

    /* ============ Index Page ============ */
     /* Top Section */
    .top-section{
        height: 40px;
    }
    .top-section .content{
        padding-top: 5px;
        width: 96%;
    }
    /* Top Section end */

    /* Navbar */
    .navbar .logo{
        width: 140px;
    }
    /* .navbar-nav .nav-link{
        text-align: center;
    } */
    .navbar .nav-btn{
        font-size: 13px;
    }
    /* Navbar end */

    /* Header */
    .index-page .header-section{
        width: 100%;
        /* height: 90vh; */
        margin: auto;
        border-radius: 0;
    }
    .index-page .header-content h1{
        margin-top: 20px !important;
        font-size: 45px;
        width: 460px;
        margin: auto;
    }
    .index-page .header-content p{
        margin: 25px auto 0;
        width: 95%;
        font-size: 13px;
    }
    .index-page .header-content br{
        display: none;
    }
    .index-page .header-content .head-line{
        width: 180px;
    }
    .index-page .header-content .input-div{
        display: none;
    }
    .index-page .input-container-sm{
        display: block;
    }
    .index-page .input-div-sm input{
        width: 440px;
    }
    /* Header end */

    /* Counter up */
    .counter-up{
        margin: auto;
        transform: translateY(-70px);
    }
    .counter-up .content{
        padding: 30px 20px 40px;
        width: 100%;
        border-radius: 30px;
        background-color: var(--gray);
        display: flex;
        text-align: center;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    .counter-div{
        transform: translateY(0px);
      
    }
    .counter-col{
        margin: 10px 10px 0;
    }
    .counter-col h1{
        font-size: 50px;

    }
    .counter-col .plus{
        font-size: 45px;
    }
    .counter-col h5{
        font-size: 14px;
    }
    /* Counter-up end */

    /* collab Section */
    .collab-section{
        margin-top: 120px;
        width: 100%;
    }
    .collab-section{
        text-align: center;
    }
    .collab-section h6,
    .collab-section p
    {
        margin: auto;
    }
    .collab-section img{
        margin-top: 30px;
    }
    /* Collab end */

     /* Integrate */
     .integrate-section img{
        margin-top: 30px;
        width: 98%;
    }
    /* Integrate end */

    /* card Section */
    .card-section{
        width: 90% !important;
    }
    .card-div{
        margin-top: 10px;
        height: 180px;
    }
    .card-div .content {
        padding-left: 20px;
    }
    /* Card end */
    /* ============ Index Page end ============ */

    /* ============ Blog ============ */
    .blog-page .main-section {
        /* margin-top: 50dvw; */
        margin-top: 80px;
    }
    .blog-page .header-content{
        margin-top: 10px !important;
    }
    .blog-page .header-content h6{
        font-size: 13px;
        padding: 4px 20px;
    }
    .blog-page .header-content h1{
        margin-top: 20px !important;
        font-size: 7vmin; 
        margin: auto;
    }
    /* ============ Blog End ============ */
}

@media screen and (min-width:481px) and (max-width: 533px){
    .index-page .input-div-sm input{
        width: 80vw;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px){

    .navbar .logo{
        width: 140px;
    }

    /* ============ Index Page ============ */
    /* Header */
    /* .index-page .header-section{
        height: 90vh;
    } */
    .index-page .header-content h1{
        margin-top: 20px !important;
        font-size: 45px;
        width: 580px;
        margin: auto;
    }
    .index-page .header-content p{
        margin: 25px auto 0;
        width: 95%;
        font-size: 13px;
    }
    .index-page .header-content br{
        display: none;
    }
    .index-page .header-content .head-line{
        width: 180px;
    }
    .index-page .header-content .input-div{
        display: none;
    }
    .index-page .input-container-sm{
        display: block;
    }
    .index-page .input-div-sm input{
        width: 600px;
    }
    /* Header end */

    /* Counter */
    .counter-col{
        margin-top: 13px;
    }
    .counter-up .content{
        padding: 40px 20px 150px;
        margin: auto;
        width: 90%;
        border-radius: 50px;
        background-color: var(--gray);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .counter-col h1{
        font-size: 6.5vmin;
    }
    .counter-col h5{
        font-size: 17px;
        margin: auto;
        padding: 6px 20px;
    }
    .counter-col .plus{
        font-size: 40px;
        font-family: main-font-bold;
    }

    /* Features */
    .features-section .box{
        padding: 20px 10px;
    }
    .features-section .main-heading{
        text-align: center;
    }
    .features-section .main-para{
        padding-bottom: 30px;
        text-align: center;
    }
    /* Features end */

    /* collab Section */
    .collab-section{
        margin-top: 120px;
        width: 100%;
    }
    .collab-section{
        text-align: center;
    }
    .collab-section h6,
    .collab-section p
    {
        margin: auto;
    }
    .collab-section img{
        margin-top: 30px;
        width: 90%;
    }
    /* Collab end */

    /* card Section */
    .card-section{
        width: 95% !important;
    }
    .card-div{
        margin-top: 10px;
        height: 180px;
    }
    .card-div .content {
        padding-left: 20px;
    }
    /* Card end */
    /* ============ Index Page end ============ */

    /* ============ Contact Page ============ */
    
    .contact-page .section-2{
        width: 80%;
    }
    .contact-page .section-2 .btn-div{
        text-align: center;
    }
    /* ============ Contact Page end ============ */

    /* ============ Blog ============ */
    .blog-page .header-content{
        margin-top: 10px !important;
    }
  
    .blog-page .header-content h1{
        margin-top: 20px !important;
        font-size: 7vmin; 
        margin: auto;
    }
    /* ============ Blog End ============ */

    /* Footer */
    .footer-section .footer-logo{
        width: 110px;
    }
    .footer-section{
        padding: 40px 0 0 20px;
    }
    .footer-section h6{
        margin-top: 20px;
    }
    .footer-section .number{
        font-size: 16px !important;
        margin-top: 0;
        padding-top: 5px !important;
    }
    .footer-section .copy-right{
        text-align: center;
    }
    /* Footer end */
}
@media screen and (min-width: 992px) and (max-width: 1279px){
    .index-page .input-div{
        width: 70%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1279px){

    /* ============ Index Page ============ */
    /* Header */
    .counter-col h1{
        font-size: 47px;
    }
    .counter-col .plus{
        font-size: 40px;
        font-family: main-font-bold;
    }
    .counter-col h5{
        font-size: 17px;
        margin: auto;
        padding: 6px 20px;
    }

    /* Optimze Section */
    .optimize-section .img-1,
    .optimize-section .img-2{
        width: 80%;
    }
    /* Optimze Section end */
    /* ============ Index Page end ============ */

    /* ============ Contact ============ */
    .contact-page .section-2{
        margin-top: 20dvw !important;
    }
    /* ============ Contact End ============ */
}

@media screen and (max-width: 1023px){
    .price-compare{
        display: none;
    }
    .pricing-page .switch-btn{
        margin-top: 0px;
        display: inline-flex;
    }
}
@media screen and (min-width: 1024px){
    .price-compare-sm{
        display: none;
    }
    .pricing-toggle-tbl-sm {
        display: none;
    }
}
@media screen and (max-width: 1199px){
    .custom-qr-section .edit-col .txt-area{
        height: 120px;
    }
}

