
body {
    /* height: 1900vh; */
    z-index: 8;
    overflow-x: hidden;
}


/* ---------------------- Banner (START) --------------------------- */

.banner {
    /* height: 400px; */
    background-color: var(--primary-color);
    padding: 0 40px;
    padding-top: 90px;
}

.banner .shapes {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner .shapes img[alt="Boost Now"] {
    width: 70vw;
    /* width: 90vw; */
    z-index: 1;
}

.banner .shapes img[alt="Mic"] {
    position: absolute;
    top: 50%;
    /* transform: translateY(-50%); */
    left: 30px;
    animation: mic 2s ease-in-out infinite alternate;
    /* transform: translateX(50px); */
}

@keyframes mic {
    0% {
        transform: translate(0px, -50%);
    }
    100% {
        transform: translate(50px, -50%);
    }
}

.banner .shapes img[alt="Energy"] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    animation: energy 2s ease-in-out infinite alternate;
}

@keyframes energy {
    0% {
        transform: translateY(-50%) translateY(15px);
    }
    100% {
        transform: translateY(-50%) translateY(-15px);
    }
}

.mobile-btns {
    justify-content: center;
    margin-top: 40px;
    display: none;
}

.mobile-btns .get-quote-btn {
    text-decoration: none;
    background-color: #c6f806;
    color: #000;
    border: none;
    padding: 12px 25px;
    margin-left: 10px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
}

.banner-content {
    /* text-align: center; */
    margin-top: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    /* height: ; */
}

.banner-content > div {
    flex: 1;
    display: flex;
    justify-content: center;
}

.banner-content > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.banner-content > div:first-child h1 {
    font-size: 60px;
    font-weight: 600;
}

.banner-content > div:nth-child(2) img {
    height: 500px;
    /* height: 50vw; */
    /* object-fit: cover; */
}

.banner-content > div:last-child {
    /* display: flex; */
    flex-direction: column;
}

.banner-content .rotating-img {
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    
}


/* ---------------------- Banner (END) --------------------------- */


/* ---------------------- Services (START) --------------------------- */

.services {
    margin-top: 80px;
}

.services h1 {
    font-size: 48px;
}
.services h2 {
    font-size: 46px;
}

.services .read-more-link {
    color: #000;
    transition: .5s;
}
.services .read-more-link:hover {
    color: var(--primary-color) !important;
}

/* ---------------------- Services (END) --------------------------- */


/* ---------------------- About Comapny (START) --------------------------- */

.about-company {
    margin-top: 100px;
    background-color: #f6f3fe;
    padding: 80px 0;
}

.about-company > div {
    flex: 1;
}

.about-company .img-container {
    position: relative;
}

.about-company .img-container .floating-img {
    position: absolute;
    z-index: 1;
}

.about-company .img-container .floating-img.left {
    left: 0;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    animation: float_y 3s ease-in-out infinite alternate;
}
.about-company .img-container .floating-img.graph {
    bottom: 0;
    left: 50%;
    animation: float_x 2.5s ease-in-out infinite alternate;
}
.about-company .img-container .floating-img.box {
    right: 0;
    animation: float_y 3s ease-in-out infinite alternate;
}
.about-company .img-container .floating-img.emoji {
    right: 60%;
    top: 0;
    animation: float_x 3s ease-in-out infinite alternate;
}

@keyframes float_x {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(30px);
    }
}

@keyframes float_y {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(30px);
    }
}

.progress-circle {
    min-width: 100px;
    min-height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.progress-circle-65 {
    background: conic-gradient(#6a47ed 0% 65%, #dfe2ff 65% 100%);
}
.progress-circle-95 {
    background: conic-gradient(#6a47ed 0% 95%, #dfe2ff 95% 100%);
}
  
.inner-circle {
    min-width: 90px;
    min-height: 90px;
    background: #f6f3fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ---------------------- About Comapny (END) --------------------------- */



/* ---------------------- Projects (START) --------------------------- */

.projects {
    margin-top: 100px;
    /* padding: 0 70px; */
}

.projects h1 {
    font-size: 48px;
}
.projects h2 {
    font-size: 46px;
}

.projects .projects-cards {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.projects .projects-cards > div {
    height: 330px;
}

.projects .projects-cards .s-number {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
}

.projects .projects-cards .main-card {
    background-image: url(../img/home/01-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 300px; */
    /* width: 100%; */
    flex-basis: 80%;
    border-radius: 30px;
}

.projects .projects-cards .main-card a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #d1d1d186;
    border: 1px solid #fff;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

.projects .projects-cards .main-card a .arrow {
    transform: rotate(-45deg);
    margin-left: 5px;
}

.projects .projects-cards .my-card {
    color: #fff;
}

.projects .projects-cards .my-card.active .before {
    display: none;
}

.projects .projects-cards .my-card.active .after {
    /* display: flex; */
    width: 100%;
    visibility: visible;
    height: 100%;
}

.projects .projects-cards .my-card .before {
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 10px;
    border-radius: 20px;
    
}

.projects .projects-cards .my-card .before span {
    transform: rotate(180deg);
    font-size: 18px;
    writing-mode: vertical-rl;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    left: 5px;
}


.projects .projects-cards .my-card .after {
    border-radius: 30px;
    /* display: flex; */
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    position: relative;
    overflow: hidden;

    width: 0;
    overflow: hidden;
    visibility: hidden;
    transition: width .2s ease;

    display: flex;
    /* display: none; */
}

.projects .projects-cards .my-card .after .background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(../img/home/05.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(22px);
    width: 100%;
    height: 100%;
}

/* ---------------------- Projects (END) --------------------------- */



/* ---------------------- Success Stories (START) --------------------------- */

.success-stories {
    display: flex;
    gap: 20px;
    margin-top: 100px;
    background-image: url(../img/home/background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.success-stories .left {
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.success-stories .right {
    flex-basis: 60%;
    display: flex;
    align-items: center;
}

.success-stories .right img {
    border-radius: 20px;
}

.success-stories .right > div {
    display: flex;
    background-color: #fff;
    color: #000;
    padding: 20px;
    height: 350px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}


.success-stories .right > div > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.success-stories .right > div > div > div:nth-child(2) p {
    font-size: 14px;
}

/* ---------------------- Success Stories (END) --------------------------- */



/* ---------------------- Features (START) --------------------------- */


.features {
    display: flex;
    gap: 80px;
    margin-top: 100px;
    padding: 0 90px;
}

.features .img-div {
    background-image: url(../img/home/shape-img.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}


.features > div {
    flex-basis: 50%;
}


.features .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.features .content .features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.features .content .features-list .fa-check {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 5px;
}


/* ---------------------- Features (END) --------------------------- */


/* ---------------------- Testimonials (START) --------------------------- */

.testimonials {
    margin-top: 100px;
    padding: 0 90px;
}

.testimonials .head span {
    border-left: 2px solid var(--primary-color);
    font-style: italic;
    font-size: 14px;
}

.testimonials .content {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    /* flex-direction: column; */
}

.testimonials .arrows span:nth-child(2) {
    background-color: var(--primary-color);
    color: #fff;
}

.testimonials .content > div:first-child {
    flex-basis: 200px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonials .content .reviews {
    /* background-color: red; */
    flex-basis: 85%;
    
}

.testimonials .swiper {
    width: 70vw;
}


.testimonials .content .reviews .review {
    background-color: #f6f3fe;
    border-radius: 20px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.testimonials .content .reviews .review .img-div {
    width: 100%;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.testimonials .content .reviews .review .img-div img:first-child {
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25); */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.testimonials .content .reviews .review p {
    margin-top: 10px;
    font-size: 15px;
}

.testimonials .content .reviews .review span {
    font-style: italic;
    color: #6a6a6a;
}

/* ---------------------- Testimonials (END) --------------------------- */


/* ---------------------- Contact (START) --------------------------- */

.contact {
    margin-top: 100px;
    padding: 80px 90px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
}

.contact .head span {
    border-left: 2px solid #fff;
    font-style: italic;
    font-size: 14px;
}

.contact .content {
    padding: 40px;
    background-color: #fff;
    color: #000;
    display: flex;
    gap: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.contact .content > div {
    /* border: 1px; */
    flex-basis: 50%;

}

.contact .content .form {
    padding: 30px;
}

.contact .content .form div {
    display: flex;
    column-gap: 10px;
}

.contact .content .form input,
.contact .content .form select,
.contact .content .form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;

}

.contact .content .map {
    position: relative;
}

.contact .content .map .contact-info {
    position: absolute;
    background-color: var(--primary-color);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    padding: 20px;
    width: 70%;
    border-radius: 10px;
}

.contact .content .map .contact-info .shape-left {
    position: absolute;
    top: 0;
    left: -23px;
}

.contact .content .map .contact-info .shape-right {
    position: absolute;
    top: 0;
    right: -23px;
}

.contact .content .map .contact-info .info {
    border-bottom: 1px solid #8f77f0;
    padding: 20px 0;
}

.contact .content .map .contact-info .icons-span {
    background-color: #795aef;
    width: 40px;
    height: 40px;
    font-size: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}


.contact .content .map iframe {
    width: 600px;
    height: 450px;
}

/* ---------------------- Contact (END) --------------------------- */


/* ---------------------- Blogs (START) --------------------------- */

.blogs {
    /* margin-top: 100px; */
    padding: 100px 50px 250px;
    background-color: #F6F3FE;
}

.blogs .head {
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
}


.blogs .head img {
    position: absolute;
    top: 0;
    left: 0;
}

.blogs .cards {
    /* display: flex; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.blogs .cards .card {
    padding: 15px 19px 30px;
    border-radius: 20px;
    border: none;
}

/* .blogs .cards .card h4 {

} */

.blogs .cards .card .info-div {
    display: flex;
    justify-content: space-between;
    /* margin: 10px 0; */
    font-size: 14px;
}

.blogs .cards .card .info-div .icons {
    color: var(--primary-color) !important;
}

/* ----------------------- Blogs (END) --------------------------- */








@media (max-width: 1250px) {
    .contact .content {
        flex-direction: column;
    }

    .contact .content > div {
        flex-basis: 100%;
    }

    .contact .content .map iframe {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    

    /* --------------------------------------------------------------- */

    .banner-content {
        flex-wrap: wrap;
    }

    .banner-content > div:nth-child(3) {
        padding-bottom: 30px;
    }

    .mobile-btns {
        display: flex;
        
    }

    /* --------------------------------------------------------------- */

    .services .services-cards {
        flex-wrap: wrap;
        /* flex-basis: 300px; */
    }

    .services .services-cards > div {
        min-width: 300px;
        /* margin-bottom: 20px; */
    }

    /* --------------------------------------------------------------- */

    .about-company {
        flex-wrap: wrap;
    }

    .about-company > div:nth-child(2) {
        padding: 90px 40px 0;
    }

    /* --------------------------------------------------------------- */

    .projects .projects-cards {
        flex-wrap: wrap;
    }

    .projects .projects-cards .main-card {
        flex-basis: 100%;
        height: 300px;
    }

    .projects .projects-cards .my-card {
        flex-basis: 45%;
        height: 260px;
    }

    .projects .projects-cards .my-card .before {
        display: none;
    }

    .projects .projects-cards .my-card .after {
        width: 100%;
        height: 100%;
        visibility: visible;
    }

    /* --------------------------------------------------------------- */

    .success-stories {
        flex-wrap: wrap;
        gap: 60px;
    }

    .success-stories .left, .success-stories .right {
        flex-basis: 100%;
    }

    /* --------------------------------------------------------------- */

    .features {
        flex-direction: column;
        /* padding: 0 20px; */
    }

    /* --------------------------------------------------------------- */

    .testimonials {
        padding: 0 20px;
    }

    .testimonials .head {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .testimonials .head h1 {
        width: 100% !important;
    }

    .testimonials .head span {
        width: 80% !important;
    }

    .testimonials .content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .testimonials .content > div:first-child {
        flex-basis: unset;
        align-items: center;
    }

    .testimonials .content .reviews .swiper {
        width: 95vw;
    }

    /* --------------------------------------------------------------- */


    .contact .head {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .contact .head h1 {
        width: 100% !important;
    }

    .contact .head span {
        width: 80% !important;
    }

    /* --------------------------------------------------------------- */

    .blogs .cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* --------------------------------------------------------------- */



}

@media (max-width: 600px) {
    .blogs .head {
        align-items: flex-start !important;
    }

    .blogs .head h1 {
        width: 100% !important;
        text-align: left !important;
        z-index: 2;
    }

    .blogs .head img {
        right: 0;
        left: unset;
        z-index: 1;
    }

    .blogs .cards {
        grid-template-columns: repeat(1, 1fr);
    }
}


@media (max-width: 768px) {
    .projects .projects-cards .my-card {
        flex-basis: 100%;
    }

    .banner-content > div:nth-child(2) img {
        height: 50vw;
    }

    /* --------------------------------------------------------------- */

    .success-stories .right  {
        flex-direction: column;
        /* flex-basis: 100%; */
    }
    
    .success-stories .right > div {
        border-radius: 20px;
        height: unset;
    }

    /* --------------------------------------------------------------- */

    .features {
        padding: 0 30px;
        flex-direction: column;
    }

    /* --------------------------------------------------------------- */

    .contact {
        padding: 30px;
    }

    .contact .content .form div {
        flex-direction: column;
        /* padding: 20px; */
    }


}

@media (max-width: 425px) {
    .banner-content{
        gap: 20px;
    }

    .banner .shapes img[alt="Boost Now"] {
        width: 90vw;
    }

    .banner-content > div:nth-child(2) img {
        height: 300px;
    }

    .mobile-btns {
        flex-direction: column;
        margin-top: 90px;
        gap: 10px;
    }

    /* --------------------------------------------------------------- */

    .services {
        padding: 0 10px !important;
    }

    .services h1, .services h2 {
        font-size: 30px;
    }

    /* --------------------------------------------------------------- */

    .about-company .floating-img {
        display: none;
    }

    .about-company > div:first-child img {
        width: 270px;
    }

    .about-company > div:nth-child(2) {
        padding: 90px 20px 0;
    }

    /* --------------------------------------------------------------- */
    
    .projects h1, .projects h2 {
        font-size: 30px;
    }

    /* --------------------------------------------------------------- */

    .success-stories .right img {
        width: 100%;
        height: auto;
    }

    .success-stories .right > div {
        flex-direction: column;
        gap: 40px;
        margin-top: 10px;
    }

    /* --------------------------------------------------------------- */

    .features .content .features-list {
        grid-template-columns: 1fr;
    }

    /* --------------------------------------------------------------- */

    .contact .content {
        padding: 0px;
    }

    .contact .content .form {
        padding: 15px;
    }

    .contact .content .map .contact-info {
        width: 80%;
    }

    /* --------------------------------------------------------------- */

    .blogs {
        padding: 50px 25px 170px;
    }

    .blogs .info-div {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}
