/* Importing Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Importing Google Fonts */

/* Css Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

:root {
    --primary-color: #F0F8FF;
    --background1-color: #edf9f2;
    --background2-color: #F1EBFF;
    --arrow-icon: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg);
}

.custom-placeholder::placeholder {
    font-size: 8px;
    color: gray;
}

/* Css Reset */
/* Top Header */
.section-bg {
    position: relative;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(38, 208, 206, 1) 0%, rgba(26, 41, 128, 1) 100%);
}

.icon-frame {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: rgba(220, 220, 220, 0.3);
    transition: background-color .3s ease;
}

    .icon-frame:hover {
        background-color: rgba(220, 220, 220, 1);
        cursor: pointer;
    }

    .icon-frame i {
        font-size: 18px;
        color: #fff;
        opacity: 1;
        transition: color .3s ease;
    }

    .icon-frame:hover i {
        color: #000;
    }

/* Footer icons */

/* Footer icons */

/* Top Header */
/* Navbar */
.navbar {
   

    display: flex !important;

}
.nav-list {
    text-align: left;
}

.nav-tags {
    font-weight: 500;
    font-size: 14px;
    color: #000;
    position: relative;
    padding-bottom: 2px;
}

    .nav-tags::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(to right, #26D0CE 0%, #1A2980 100%);
        transition: width .3s ease, left .3s ease;
    }

    .nav-tags:hover {
        color: #26D0CE;
    }

        .nav-tags:hover::before {
            width: 100%;
            left: 0;
        }

.primary-btn {
    padding: 6px 10px;
    font-weight: 600;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 4px;
    background: linear-gradient(to right, #26D0CE 0%, #1A2980 100%);
    background-size: 120% 100%;
    transition: background-position 0.5s ease;
}

    .primary-btn:hover {
        color: #fff;
        background-position: 650% 130%;
    }

.secondary-btn {
    padding: 6px 10px;
    font-weight: 600;
    border: none;
    outline: none;
    background-clip: padding-box;
    background-color: transparent;
    border: 1.4px solid transparent;
    border-image: linear-gradient(to right, #26D0CE 0%, #1A2980 100%) 1 round;
    position: relative;
}

    .secondary-btn::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(to right, #26D0CE 0%, #1A2980 100%);
        z-index: -1;
        transition: width .3s ease;
    }

    .secondary-btn:hover::before {
        width: 100%;
        color: #fff;
    }

    .secondary-btn:hover {
        color: #fff;
    }


.gradient-text {
    font-weight: 600;
    background: linear-gradient(to right, #26D0CE 0%, #1A2980 100%);
    -webkit-background-clip: text;
    color: transparent;
    cursor: pointer;
}

/* Navbar */
/* Offcanvas Navbar */
.offcanvas-bars i {
    font-size: 26px;
}

.custom-offcanvas {
    /* background: linear-gradient(to right, #3749ae 0%, #26d0cdcf 100%); */
    background-color: #fffffffb;
}

.custombtn-close {
    font-weight: 700;
}

/* Offcanvas Navbar */
/* Hero Section */
.hero-carousel .carousel-inner .carousel-item img {
    aspect-ratio: 16/5;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.hero-carousel .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 50%;
}




.carousel-chips {
    font-weight: 500;
    width: fit-content;
    padding: 4px 16px;
    font-size: 14px;
    border-radius: 20px;
    background: linear-gradient(45deg, rgba(38, 208, 206, .5) 0%, rgba(26, 41, 128, .7) 100%);
}

.carousel-title {
    font-size: 32px;
    font-weight: 600;
}


.carousel-caption .custom-btn {
    padding: 6px 10px;
    font-weight: 600;
    border: none;
    outline: none;
    border: 2px solid transparent;
    border-image: linear-gradient(to right, #26D0CE 0%, #1A2980 100%) 1;
    position: relative;
    z-index: 1;
}

    .carousel-caption .custom-btn::before {
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        background: linear-gradient(to right, #26D0CE 0%, #1A2980 100%);
        transition: width .4s ease;
        z-index: -1;
    }

    .carousel-caption .custom-btn:hover::before {
        width: 100%;
    }

.hero-carousel .carousel-indicators [data-bs-target] {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    transform: translateY(20px);
    background-color: #fff;
}

    .hero-carousel .carousel-indicators [data-bs-target].active {
        background-color: #26D0CE;
    }

/* Hero Section */
/* Platform Section */
.chips {
    padding: 4px 14px;
    background-color: var(--primary-color);
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    color: #000000d8;
}

.title-heading {
    font-size: 32px;
}

.section-descriptions {
    color: #5D5D5D;
    font-weight: 500;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* grid-template-rows: auto; */
    align-items: stretch;
    gap: 20px;
}

.box-title {
    font-size: 18px;
    font-weight: 500;
}

.box-para {
    font-size: 14px;
    font-weight: 400;
}

.grid-box-img {
    height: 86px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item {
    border-radius: 4px;
}

.item1 {
    background-color: var(--background1-color);
}

.item2 {
    background-color: var(--primary-color);
}

.item3 {
    background-color: var(--background2-color);
}

/* Platform Section */
/* Features Platform */
.features {
    background-color: var(--primary-color);
}

.grid-container .card {
    border: none;
}

/* Features Platform */
/* Succes tory */
.stories {
    background-color: var(--primary-color);
}

.solaraid {
    background: url(images/green-solar-panel.svg) no-repeat center center/cover;
}

.solaraid-bg {
    background-color: rgba(38, 208, 206, 0.698);
    color: #fff;
}

.card-img-cover img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Succes tory */


/* Process tabs */
.process-tabs {
    /* gap: 250px; */
    color: #fff;
}

    .process-tabs .nav-item a.active {
        height: 30px;
        width: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(to right, #26D0CE 0%, #1A2980 100%);
        color: #fff;
    }

    .process-tabs .nav-item a {
        color: #000;
        font-weight: 600;
        height: 30px;
        width: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
    }

    .process-tabs .nav-item span {
        color: #000;
        letter-spacing: 4px;
        display: inline;
    }

.grid-container2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    align-items: stretch;
    gap: 20px;
}

/* Process tabs */
/* How it works */
.hover-num {
    height: 30px;
    width: 30px;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all .4s ease;
}

.dash {
    letter-spacing: 5px;
    white-space: nowrap;
}

/*  */
.moving-area {
    position: relative;
    background-color: #26D0CE;
    width: 65%;
}

.moving-dashes {
    height: 2px;
    position: absolute;
    width: 10px;
    background-color: #26D0CE;
    animation: moveleft 3s infinite linear;
    animation-play-state: running;
    /* animation: animateOnLoad 2s forwards; */
}

/* .card:hover .moving-dashes{
    animation-play-state:running;

} */

.dash-1 {
    animation-delay: 0s;
}

.dash-2 {
    animation-delay: .3s;
}

.dash-3 {
    animation-delay: .6s;
}

.dash-4 {
    animation-delay: .9s;
}

.dash-5 {
    animation-delay: 1.2s;
}

.dash-6 {
    animation-delay: 1.5s;
}

.dash-7 {
    animation-delay: 1.8s;
}

.dash-8 {
    animation-delay: 2.1s;
}

.dash-9 {
    animation-delay: 2.4s;
}

.dash-10 {
    animation-delay: 2.7s;
}

/* Animation */

.hover-ef {
    margin-bottom: 8px;
}

.card:hover .hover-num {
    background: linear-gradient(to right, #26D0CE 0%, #1A2980 100%);
    color: #fff;
}

/* How it works page  */
.moving-area-vertical {
    position: relative;
    /* background-color: #f3f3f3; */
    width: 30px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.moving-dashes-vertical {
    position: absolute;
    width: 2px;
    height: 10px;
    background-color: #26D0CE;
    animation: movedown 3s infinite linear;
    animation-play-state: running;
    /* animation-play-state:paused; */
    /* animation: animateOnLoad 2s forwards; */
}

.vdash-1 {
    animation-delay: 0s;
}

.vdash-2 {
    animation-delay: .5s;
}

.vdash-3 {
    animation-delay: 1s;
}

.vdash-4 {
    animation-delay: 1.5s;
}

.vdash-5 {
    animation-delay: 2.5s;
}

.vdash-6 {
    animation-delay: 3.0s;
}

.vdash-7 {
    animation-delay: 3.5s;
}

.vdash-8 {
    animation-delay: 4s;
}

.vdash-9 {
    animation-delay: 4.5s;
}

.vdash-10 {
    animation-delay: 5s;
}

.gc2-item .item .hover-ef > .hover-num {
    background-color: rgba(243, 243, 243, 0.756);
}

.gc2-item .item:hover .hover-ef > .hover-num {
    background: linear-gradient(to right, #26D0CE 0%, #1A2980 100%);
    color: #fff;
}

/* How it works page */












/* How it works */

/* Testimonial */

.ellipse {
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

.testimonial-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: .5px;
}

.testimonial-description {
    font-size: 12px;
    font-weight: 400;
}

/* swiper */
.swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.navigator-frame {
    position: absolute;
    top: 10px;
    right: 0px;
    height: 40px;
    width: 85px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 14px;
    background-color: #26D0CE;
    padding: 12px 14px;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    transition: all .3s ease;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover:after {
    background: linear-gradient(to right, #26D0CE 0%, #1A2980 100%);
}

.swiper-slide {
    text-align: start;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    color: #000;
    border-radius: 4px;
}

/* .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  } */

.swiper-slide-active {
    background: linear-gradient(to right, #26D0CE 0%, #1A2980 100%);
    color: #fff;
}

/* swiper */
/* Testimonial */
/* Footer */
.footer {
    color: #fff;
    background-color: #1A2980;
}

.medium-para {
    font-size: 16px;
}

.tag-heading {
    font-size: 20px;
    margin-bottom: 0px;
    font-weight: 600;
}

.quick-links {
    list-style: none;
    padding-left: 0px;
}

    .quick-links li a {
        font-size: 16px;
        color: #fff;
        font-weight: 500;
        transition: color .4s ease;
    }

    .quick-links li::before {
        content: "";
        height: 12.5px;
        width: 8px;
        display: inline-block;
        background-image: url(images/vector.svg);
        background-position: center;
        background-size: cover;
        margin-right: 10px;
    }

.conatct-us i {
    color: #26D0CE;
    font-size: 16px;
    margin-right: 6px;
}

.copyright-symbol {
    font-size: 18px;
}

.quick-links li a:hover {
    color: #26D0CE;
}

/* Footer */
/* About Us Page */
.about-hero {
    background: url(images/about-hero.svg)no-repeat center center/cover;
    /* background-size: 100%; */
}

.p-hero > *:first-child {
    padding: 8%;
}

.about-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* About Us Page */
/* For-CSR Page */
.forcsr-hero {
    background: url(images/for-csr-herobg.svg)no-repeat center center/cover;
}

/* For-CSR Page */
/* For-NGO Page */
.forngo-hero {
    background: url(images/forngo-hero.svg)no-repeat center center/cover;
}

/* For-NGO Page */

/* Contact Us */
.contact-us-form {
    padding: 2%;
    border-radius: 4px;
}

.form-title {
    font-size: 24px;
    font-weight: 500;
    color: #000000;
}

.group-inputbox {
    border: 1px solid transparent !important;
    border-image: linear-gradient(to right, #26D0CE 0%, #1A2980 100%) 1 !important;
}

    .group-inputbox input {
        padding: 2% 0% 2% 3%;
        border-radius: 0px;
        font-size: 15px;
        background-color: #fff !important;
        border: none;
    }

        .group-inputbox input::placeholder {
            color: #acacac;
        }

    .group-inputbox textarea::placeholder {
        color: #acacac;
    }

    .group-inputbox span i {
        color: #fff;
        font-size: 12px;
    }

    .group-inputbox span {
        flex: .05;
        border-radius: 0px;
        border: none;
        background: linear-gradient(to right, #26D0CE 0%, #1A2980 100%);
    }

    .group-inputbox textarea {
        padding: 2% 0% 2% 3%;
        border-radius: 0px;
        border: none;
    }

.submit-button {
    padding: 2.2%;
    border: none;
    outline: none;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    width: 100%;
    border-radius: 4px;
}

.contact-icon-frame {
    height: 60px;
    width: 60px;
    background-color: #dee3e890;
    border-radius: 50%;
}

.specialicon-frame i {
    color: #04a5ab;
}



.contact-icon-frame i {
    font-size: 24px;
    color: #26D0CE;
}

.mailbox-heading {
    font-size: 18px;
    font-weight: 600;
    color: #414040;
}

.mailbox-para {
    font-size: 14px;
    color: #5D5D5D;
}

/* Login Page */
.tabs-button .nav-item a {
    text-decoration: none;
    color: #000;
    font-size: 12px;
    padding: 10px;
    background-color: #020b3c11;
    border-radius: 4px;
}

    .tabs-button .nav-item a.active {
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        font-size: 12px;
        padding: 10px 26px;
        background-color: #04a5ab;
        border-radius: 4px;
    }




.otp-input input {
    width: 30px;
    height: 30px;
    margin: 0 5px;
    text-align: center;
    font-size: 12px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: transparent;
    color: #000;
}

    .otp-input input::-webkit-outer-spin-button,
    .otp-input input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .otp-input input[type=number] {
        -moz-appearance: textfield;
    }

.self-btn {
    font-size: 16px;
}

/* Login Page */




/* Contact Us */
/* Privacy Policy */
.privacypolicy-hero {
    background: url(images/privacypolicy.svg) no-repeat center center/cover;
}

.normal-para {
    font-size: 16px;
    color: #5D5D5D;
    font-weight: 500;
}

.data-list li {
    color: #5D5D5D;
    font-size: 14px;
}

/* Privacy Policy */
/* Projects details */
.projectdetail-hero {
    background: url(images/project-detail-bg.svg) no-repeat center center/cover;
}

.filter-selectbox {
    appearance: none;
    border: 1px solid silver;
    outline: 0;
    font: inherit;
    width: 13rem;
    padding: .5rem 2.2rem .5rem .5rem;
    background: var(--arrow-icon) no-repeat right 0.8em center / 1.4em, linear-gradient(to left, #25C1C7 3em, transparent 3em);
    color: #000;
    border-radius: 2px;
    font-size: 12px;
    overflow: hidden;
    cursor: pointer;
    &::-ms-expand

{
    display: none;
}

&:focus {
    outline: none;
}

option {
    color: inherit;
    background-color: #fff;
}

}

.filter-selectbox-reg {
    appearance: none;
    border: 1px solid transparent;
    border-right: none;
    border-image: linear-gradient(to right, #26D0CE 0%, #1A2980 100%) 1 !important;
    outline: 0;
    font: inherit;
    width: 100%;
    padding: 2.7%;
    background: var(--arrow-icon) no-repeat right 1em center / 1.4em, linear-gradient(to right, #26D0CE 0%, #1A2980 100%) no-repeat right center /3.2em;
    ;
    color: #000;
    border-radius: 2px;
    font-size: 13px;
    overflow: hidden;
    cursor: pointer;
    &::-ms-expand

{
    display: none;
}

&:focus {
    outline: none;
}

option {
    color: inherit;
    background-color: #fff;
}

}

.filter-btn {
    padding: .4rem 2.2rem .4rem 2.2rem;
}

.completed-projects {
    opacity: .5;
}

.bars-filter-cover img {
    height: 14px;
    width: 14px;
    object-fit: cover;
}

.filter-offcanvas-btn {
    padding: 8px 13px;
    border: none;
    outline: none;
    border-radius: 24px;
    background: linear-gradient(90deg, rgba(38, 208, 205, 0.281) 0%, rgba(26, 41, 128, 0.349) 100%);
}

.filter-text {
    font-size: 12px;
    font-weight: 500;
}

/* Projects details */
/* Key Features */
.keyfeatures {
    background: url(images/key_feature_bg.svg) no-repeat center center/cover;
}

.grid-container3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    align-items: stretch;
    gap: 20px;
}

/* Key Features */
/* Sign Up page */
.signup {
    background-color: #CCCCCC80;
}

.signup-form {
    padding: 5% 6% 2% 6%;
}

.sign-left {
    background: url(images/signup-bg.svg) no-repeat center center/cover;
}

    .sign-left .title-heading {
        font-weight: 700;
    }

.signup-title {
    color: #25C1C7;
    /* font-size: 28px; */
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

.csr-text {
    font-weight: bold;
    color: #23A8BB;
}


.signup-form form input {
    padding: 2%;
    width: 100%;
    background-color: #F4F4F4;
    border: none;
    outline: none;
    font-size: 12px;
    border-radius: 4px;
}

    .signup-form form input::placeholder {
        font-size: 11px;
        padding-left: 8px;
    }

.signup-form form button {
    padding: 1.6%;
    color: #fff;
    background-color: #25C1C7;
    width: 75%;
    border: none;
    outline: none;
    border-radius: 4px;
}

    .signup-form form button:hover {
        background-color: #18aeb3;
    }

.signup-or {
    color: #8a8989c3;
    font-weight: 400;
}






/* Sign Up page */
/* Resources Page */


.tabs-title {
    color: #000;
    font-size: 20px;
    font-weight: 600;
}

.tabs-box {
    background-color: #F0F8FF;
    border-radius: 4px;
}

    .tabs-box ul .nav-item a {
        color: #000;
        text-decoration: none;
    }

    .tabs-box ul .nav-item {
        background-color: transparent;
        margin-bottom: 6px;
        font-size: 14px;
        font-weight: 400;
        padding: 8px 20px 8px 20px;
        border-bottom: 1px solid silver;
        transition: background-color .2s ease;
    }

        .tabs-box ul .nav-item:has(a.active) {
            background-color: #26D0CE;
            border-radius: 4px;
            border-bottom: 0px;
        }

            .tabs-box ul .nav-item:has(a.active) a {
                color: #fff;
            }

/* Resources Page */
/* Csr registration  */
.csr-registration-form {
    width: 85%;
}

.form-inputs input {
    padding: 2.5%;
    width: 100%;
    background-color: #fff;
    /* border: 1px solid silver; */
    outline: none;
    border-radius: 4px;
    font-size: 14px;
}


.form-selectbox {
    padding: 2.5%;
    width: 100%;
    background-color: #fff;
    border: 1px solid silver;
    outline: none;
    border-radius: 4px;
    font-size: 14px;
    font-size: 14px;
    position: relative;
    color: #000;
}


.calender-input {
    position: relative;
}

.calender-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0%;
    padding: 2.3%;
    height: 100.9%;
}

/* #calendar-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 102%;
    padding: 2.2%;
  
} */

.select-wrapper {
    position: relative;
}

    .select-wrapper .form-selectbox {
        width: 100%;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .select-wrapper i {
        position: absolute;
        right: 4%;
        top: 50%;
        color: #6e6e6e;
        transform: translateY(-50%);
        pointer-events: none;
    }

.checkbox-input input {
    font-size: 10px;
    color: #000;
}

.submit-btn button {
    border: none;
    outline: none;
    background-color: #25C1C7;
    padding: 1% 15%;
    font-size: 20px;
    color: #fff;
    border-radius: 4px;
}

    .submit-btn button:hover {
        background-color: #04a5ab;
    }

.file-inputbox input {
    padding: 2%;
    border: 1px solid transparent !important;
    border-image: linear-gradient(to right, #26D0CE 0%, #1A2980 100%) 1 !important;
}

/* Csr registration */
.choose-file-label {
    font-size: 12px;
    padding-left: 10px;
    color: #6e6e6e;
    font-weight: 400;
}



@media (max-width:1150px) {
    .hero-carousel .carousel-inner .carousel-item img {
        aspect-ratio: 16/6;
    }

    .hero-carousel .carousel-inner .carousel-item .carousel-caption {
        position: absolute;
        top: 4%;
        left: 5%;
        width: 55%;
    }
}

/* Media Queries */
@media (max-width:992px) {
    .hero-carousel .carousel-inner .carousel-item img {
        aspect-ratio: 16/8;
    }

    .hero-carousel .carousel-inner .carousel-item .carousel-caption {
        position: absolute;
        top: 2%;
        left: 5%;
        width: 70%;
    }

    .nav-tags:hover {
        color: #04a5ab;
    }

    /* Paragraphs */
    .medium-para {
        font-size: 14px;
    }

    /* Paragraphs */
    .grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-box-img {
        height: 60px;
    }

        .grid-box-img img {
            height: 50px;
        }

    .box-title {
        font-size: 16px;
        font-weight: 600;
    }

    .box-para {
        font-size: 12px;
        font-weight: 400;
    }

    .chips {
        font-size: 12px;
    }

    .title-heading {
        font-size: 22px;
    }

    .section-descriptions {
        font-size: 14px;
    }

    .grid-container2 {
        grid-template-columns: repeat(3, 1fr);
    }

    .quick-links li a {
        font-size: 13px;
    }

    .tag-heading {
        font-size: 16px;
    }

    .conatct-us p {
        font-size: 13px;
    }

    .grid-container3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .csr-registration-form {
        width: 94%;
    }
}

@media (max-width:768px) {
    .hero-carousel .carousel-inner .carousel-item img {
        aspect-ratio: 16/7;
    }

    .hero-carousel .carousel-inner .carousel-item .carousel-caption {
        position: absolute;
        top: 0%;
        left: 5%;
        width: 90%;
    }

    .carousel-title {
        font-size: 24px;
        font-weight: 600;
    }

    .carousel-chips {
        font-size: 12px;
    }

    .title-description {
        font-size: 14px;
    }

    .carousel-caption .custom-btn {
        padding: 4px 8px;
        font-size: 14px;
    }

    .primary-btn {
        padding: 4px 8px;
        font-size: 14px;
    }



    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .box-title {
        font-size: 14px;
        font-weight: 500;
    }

    .box-para {
        font-size: 12px;
        font-weight: 400;
    }

    .grid-container2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-carousel .carousel-inner .carousel-item .carousel-caption {
        top: 5%;
        left: 6%;
        width: 80%;
    }

    /* Contact Us Page */

    .form-title {
        font-size: 20px;
    }

    .submit-button {
        font-size: 16px;
        padding: 8px;
    }

    .contact-icon-frame {
        height: 50px;
        width: 50px;
    }

        .contact-icon-frame i {
            font-size: 20px;
            color: #26D0CE;
        }

    .mailbox-heading {
        font-size: 16px;
        font-weight: 600
    }

    .mailbox-para {
        font-size: 12px;
        color: #5D5D5D;
    }


    /* Contact Us Page */
    /* csr registration */
    .csr-registration-form {
        width: 100%;
    }

    .submit-btn button {
        font-size: 18px;
    }

    .form-inputs input {
        padding: 4%;
        font-size: 12px;
    }

    .form-selectbox {
        padding: 4%;
        font-size: 12px;
    }

    .file-inputbox input {
        padding: 1.5%;
    }

    .calender-icon {
        padding: 1.59%;
    }

    /* csr registration */
    /* Filter Projects */
    .filter-btn {
        padding: .4rem 2.2rem .4rem .5rem;
    }

    /* Filter Projects */
    /* Forms */
    .group-inputbox input {
        padding: 2%;
        font-size: 12px;
    }

    .filter-selectbox-reg {
        padding: 2%;
        font-size: 12px;
    }

    .form-selectbox {
        padding: 2%;
    }

    /* Forms */
    /* login page */


    /* login page */

}

@media (max-width:640px) {
    .hero-carousel .carousel-inner .carousel-item img {
        aspect-ratio: 16/9;
    }

    .hero-carousel .carousel-inner .carousel-item .carousel-caption {
        left: 3%;
        width: 96%;
    }

    .file-inputbox input {
        padding: 3.5%;
    }
}

.error-text {
    color: #d9534f;
    font-size: 13px; /* Text size small */
    font-weight: 500;
    margin-top: 3px;
}

@media (max-width:540px) {
    .hero-carousel .carousel-inner .carousel-item img {
        aspect-ratio: 16/10;
    }

    .carousel-title {
        font-size: 20px;
    }

    .title-description {
        font-size: 12px;
    }

    .grid-container3 {
        grid-template-columns: repeat(1, 1fr);
    }



    /* Projects Filter */
    .filter-btn {
        width: 13rem;
        padding: .4rem 2.2rem .4rem 2.2rem;
    }

    /* Projects Filter */
    /* Forms */
    .group-inputbox input {
        padding: 4%;
        font-size: 12px;
    }

    .form-selectbox {
        padding: 4%;
    }

    .group-inputbox span {
        flex: .1;
        border-radius: 0px;
        background: linear-gradient(to right, #26D0CE 0%, #1A2980 100%);
        border: none;
    }

    .filter-selectbox-reg {
        padding: 4%;
    }

    .calender-icon {
        padding: 3%;
    }


    /* OTP Input Box Styling */
    .otp-boxes {
        width: 240px;
        height: 50px;
        font-size: 1.5rem;
        text-align: center;
        letter-spacing: 10px; /* Space between characters */
        border: 2px solid #007bff;
        border-radius: 8px;
        outline: none;
        font-weight: bold;
        background-color: white;
        transition: all 0.2s ease-in-out;
    }

        .otp-boxes:focus {
            border-color: #0056b3;
            box-shadow: 0 0 8px rgba(0, 91, 187, 0.5);
        }

    /* Timer Text */
    .timer-text {
        font-size: 1rem;
        color: #ff0000;
        font-weight: bold;
    }

    /* Mobile Responsive */
    
    

@media (max-width:460px) {
    .hero-carousel .carousel-inner .carousel-item img {
        aspect-ratio: 16/13;
    }

    .carousel-title {
        font-size: 18px;
    }

    .grid-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .grid-container2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .signup-form form input {
        padding: 4%;
    }

    /* Projects Page */
    .active-csr-font {
        font-size: 18px;
    }

    /* Projects Page */
    /* Login */
    .otp-input input {
        width: 25px;
        height: 25px;
    }

    /* login page */


    /* Login */
}

@media (max-width:343px) {
    .hero-carousel .carousel-inner .carousel-item img {
        aspect-ratio: 16/18;
    }

    .carousel-chips {
        font-size: 10px;
    }
}

    @media (max-width: 480px) {
        .otp-boxes {
            width: 200px;
            font-size: 1.2rem;
            letter-spacing: 8px;
        }
        /* KeyFrames Section */

        @keyframes moveleft {
            from {
                left: 0%;
            }

            to {
                left: 120%;
            }
        }

        @keyframes movedown {
            from {
                top: 0;
            }

            to {
                top: 110%;
            }
        }

        /* KeyFrames Section */
