* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --main-color: rgb(255, 255, 255);
    --sec-color: #000000;
    --thirt-color: rgba(100, 100, 100, 0.406) ;
    --main-font-family: "Montserrat", sans-serif;
    --sec-font-family: "Poppins", sans-serif;
    --third-font-family: "Roboto", sans-serif;
    --Space-section: 120px;
    --white-10: rgba(255, 255, 255, 0.1);
    --white-20: rgba(255, 255, 255, 0.2);
}

body {
    height: 10000px;
}

.tittle {
    padding-bottom: 60px;
}

.tittle h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    display: inline-block;
    font-family: var(--main-font-family);
    position: relative;
}

.tittle h2::after {
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    background-color: var(--sec-color);
    bottom: -4px;
    left: 0;
}

.tittle p {
    font-size: 16px;
    text-align: center;
    font-family: var(--main-font-family);
}


/************************************************************************************************************************************* */

.custom-navbar {
    background-color: var(--sec-color);
    font-family: var(--sec-font-family);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 999;
}

.logo {
    color: var(--main-color);
    font-size: 30px;
    font-weight: 700;
    font-family: var(--main-font-family);
    text-decoration: none;
}

.nav-link {
    color: var(--main-color) !important;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    padding: 0;
}



.nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 2px;
    width: 0;
    background-color: var(--main-color);
    transition: all 0.5s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.dropdown-menu {
    background-color: #fff;
}

.dropdown-menu .dropdown-item {
    color: var(--sec-color);
}

.dropdown-menu .dropdown-item:hover {
    color: #000;
    background-color: #f8f9fa;
}

@media (max-width:900px) {
    .navbar-nav {
        text-align: center;
        margin-top: 50px;
    }

    .nav-link {
        display: inline-block;
    }

    .custom-navbar .navbar-brand {
        margin-bottom: 10px;
    }

    .navbar .navbar-nav {
        height: 100vh;
    }
}

/**********************************************************  END OF NAVBAR  **********************************************************/

.hero {
    position: relative;
    padding: 140px 0 60px 0;
    background-color: var(--sec-color);
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: var(--main-font-family);
    text-align: start;
}

.hero p {
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: start;
}

.hero-buttons {
    gap: 10px;
}

.btn1 {
    color: white;
    background: transparent;
    font-family: var(--main-font-family);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 14px 40px;
    border-radius: 50px;
    transition: 0.3s all ease;
    border: 2px solid white;
}

.btn1:hover {
    background-color: var(--main-color);
    color: var(--sec-color);
    border: 2px solid var(--sec-color);
    transform: scale(0.999);
}

.btn2 {
    color: white;
    background: transparent;
    font-family: var(--main-font-family);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 14px 40px;
    border-radius: 50px;
    transition: 0.3s all ease;
    border: 2px solid white;
}

.btn2:hover {
    background-color: var(--main-color);
    color: var(--sec-color);
    border: 2px solid var(--sec-color);
    transform: scale(0.999);
}

.custom-card {
    background: var(--main-color);
    color: white;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    height: 250px;
    opacity: 90%;
    transition: transform 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-10px);
}

.custom-card h4 a {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
    color: var(--sec-color);
    font-family: var(--main-font-family);
    text-decoration: none;
    opacity: 100%;
}

.custom-card i {
    color: var(--sec-color);
    margin-bottom: 20px;
    padding-top: 20%;
    font-size: 48px;
    opacity: 100%;
    line-height: 1;
}

@media (max-width:767px) {
    .custom-card {
        margin-top: 0;
        bottom: 0px;
    }

    .hero-img {
        margin-top: 0px;
    }

    .hero-img img {
        width: 100%;
    }

    .hero {
        margin-top: 0px;
    }

    .main-container {
        margin-top: 0px;
    }

    .hero .tittle-hero {
        margin-bottom: 30px;
    }

    .hero h2 {
        font-size: 40px;
        margin-top: 20px;
    }

    .btn2 {
        padding: 15px;
    }

    .btn1 {
        padding: 15px;
    }

    .hero-buttons {
        justify-content: center !important;
        gap: 20px;
    }
}

/**********************************************************  END OF HERO  **********************************************************/

#About {
    background-color: rgb(255, 255, 255);
    padding-top: var(--Space-section);
}



.About-section-content h3 {
    font-family: var(--main-font-family);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.About-section-content img {
    width: 100%;
    border-radius: 25px;
    margin-bottom: 24px;
}

.About-section-content .first-column p {
    font-size: 16px;
    font-family: "Roboto", sans-serif !important;
    margin-bottom: 16px;
    font-weight: 400;
    text-align: left !important;
}

.sec-column p {
    font-size: 16px;
    font-family: "Roboto", sans-serif !important;
    font-style: italic;
    opacity: 50%;
    font-weight: 400;
    margin-bottom: 16px;
    text-align: left !important;
}

.sec-column ul {
    list-style: none;
    padding: 0;
}

.sec-column ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 10px;
}

.sec-column ul li i {
    color: var(--sec-color);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

.sec-column ul li span {
    font-family: var(--third-font-family);
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    line-height: 1.6;
}

.sec-column .p-of-about-col-2-p2 {
    opacity: 50%;
    /* font-style: normal; */
    padding-bottom: 16px;
}

.sec-column img {
    width: 100%;
}

.video-container {
    position: relative;
    /* display: inline-block;
    width: 100%;
    max-width: 800px; */
}

.video-container .play-btn {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: var(--sec-color);
    z-index: 10;
    transition: all 0.5s ease;
}

.play-btn::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.734);
    border-radius: 50%;
    animation: Pulse 1.5s ease-out infinite;
    z-index: -1;
}

@keyframes Pulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

@media (max-width:900px) {

    #About {
        background-color: rgb(255, 255, 255);

    }

    #About .tittle {
        padding-bottom: 30px;
    }

    #About h3 {
        font-size: 20px;
        text-align: center;
    }

    #About p {
        font-size: 16px;
        text-align: center;
        font-family: var(--main-font-family);
    }

    .swiper-section {
        margin-top: 30px;
    }
}

/**********************************************************  END OF ABOUT  **********************************************************/

.swiper-section1 {
    padding-top: var(--Space-section);
}

.swiper1 {
    width: 100%;
    /* padding: 40px 20px; */
    box-sizing: border-box;
    min-height: 150px;
}

.swiper-slide1 {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 0;
    margin: 0;
}

.swiper-slide1 .img-swiper1 {
    width: 110px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.swiper-slide1 .img-swiper1:hover {
    transform: scale(1.05);
}

.swiper-pagination1 {
    display: none !important;
}


@media (max-width:900.98px) {

    .swiper-section1 {
        margin: 0;
    }

    .swiper1 {
        width: 100%;
        padding: 0px 20px;
        box-sizing: border-box;

    }

    .swiper-slide1 .img-swiper1 {
        width: 200px;
        padding-bottom: 30px;
    }

    .swiper-pagination1 {
        display: block !important;
        padding-top: 0px !important;
    }

    .swiper-pagination-bullet {
        background-color: #383838 !important;
        opacity: 1;
        width: 12px !important;
        height: 12px !important;
    }

    .swiper-pagination-bullet-active {
        background-color: var(--sec-color) !important;
    }





}


/**********************************************************  END OF SWIPER  **********************************************************/
.statics {
    padding-top: var(--Space-section);
}


.states-row-div {
    padding-top: 20px;
}

.statics img {
    width: 100%;
}

.statics .state-item {
    display: flex;
    padding: 10px;

}

.text-div {
    line-height: 2;
    padding-left: 15px;
}

.text-div .num {
    font-size: 40px;
    font-family: var(--third-font-family) !important;
    font-weight: 700;
    line-height: 40px;
}

.state-item i {
    color: var(--sec-color) !important;
}



.text-div p {
    font-family: var(--main-font-family) !important;
    padding: 0;
    margin: 0;
}

.text-div strong {
    color: rgba(0, 0, 0, 0.662);
    font-size: 14px;
    font-weight: bolder;
}

.text-div .desc {
    color: rgba(0, 0, 0, 0.507);
    font-size: 14px;
}

@media(max-width:8900.98px) {
    .statics img {
        padding-bottom: 30px;
    }

    .text-div {
        line-height: 2;
        padding-left: 15px;
    }

    .text-div .num {
        font-size: 30px;

        line-height: 20px;
    }

    .text-div p {
        font-size: 10px;
    }
}

/**********************************************************  END OF STATICS  **********************************************************/
.img-of-about {
    padding-top: var(--Space-section);
}


.img-of-about .container {
    background-image: url(../img/cta-bg.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 500px;
    border-radius: 25px;
    position: relative;
    /* overflow: hidden; */
    padding: 0;
}

.img-of-about .container img {
    width: 100%;


}

.img-of-about .layout {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: lab(0% 0 0 / 0.484);
    border-radius: 25px;

}

.img-of-about .play-btn {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: var(--sec-color);
    z-index: 10;
    transition: all 0.5s ease;
}

.img-of-about .play-btn::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    /* transform: translate(-50%, -50%); */
    background: rgba(255, 255, 255, 0.763);
    border-radius: 50%;
    animation: Pulse 1.5s ease-out infinite;
    z-index: -1;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 20px rgba(0, 131, 116, 0.5);
}


.img-of-about .container .row {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: flex-end;
    height: 80%;
}

.img-of-about .row h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--main-font-family);
}

.img-of-about .row p {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
    font-family: var(--main-font-family);

}

.img-of-about a {
    text-decoration: none;
}

.btn-about {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 40px;
    border-radius: 5px;
    border: 1px solid white;
    color: white;
    transition: 0.5s;
    margin: 10px;
    transition: all .5s ease;
}

.btn-about:hover {
    background-color: var(--sec-color);
    border: 1px solid var(--sec-color);
    color: white;
}

@media (max-width:900.98px) {
    .img-of-about .row h3 {
        font-size: 20px;
    }

    .img-of-about .row p {
        font-size: 16px;
        padding-left: 20px;
    }

    .img-of-about .play-btn {
        top: 22%;
        left: 50%;
    }

    .img-of-about .container {
        border-radius: 0px;
    }

    .img-of-about .layout {
        border-radius: 0px;
    }
}

/**********************************************************  END OF IMAGE-OF-ABOUT  **********************************************************/

#services {
    padding-top: 120px;
}



#services .card-button {
    display: block;
    text-decoration: none;
}

.service-card {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    /* text-align: start; */
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.service-card .icon {
    background: rgba(150, 150, 150, 0.107) ;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.5s ease-in-out;

}

.service-card .icon i {
    color: hsla(0, 0%, 49%, 0.5);
    font-size: 40px;
    transition: all 0.5s ease-in-out;

}

.service-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: hsla(0, 0%, 49%, 0.5);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    transition: all 0.5s ease-in-out;

}

.service-card h3::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    height: 4px;
    background-color: hsla(0, 0%, 49%, 0.5);
    margin-top: 8px;
    transition: all 0.5s ease-in-out;

}

.service-card p {
    color: hsla(0, 0%, 49%, 0.5);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: start !important;
    transition: all 0.5s ease-in-out;

}

.service-card .read-more {
    color: hsla(0, 0%, 49%, 0.5);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.5s ease-in-out;

}

.service-card .read-more i {
    margin-left: 5px;
    transition: all 0.5s ease-in-out;

}

/* card hover */

.service-card:hover h3 {
    color: var(--sec-color);
}

.service-card:hover h3::after {
    background-color: var(--sec-color);

}

.service-card:hover p {
    color: var(--sec-color);
}

.service-card:hover .icon {
    transform: scale(1.2);
}

.service-card:hover .icon i {
    color: var(--sec-color);
    transform: scale(1.2);
    transform: rotatey(360deg);
}

.service-card:hover .read-more {
    color: var(--sec-color);
}


/**********************************************************  SERVICES  **********************************************************/


.testimonials-section {
    padding-top: var(--Space-section);
}


.testimonials-section .mySwiper2 {
    padding: 20px 0;
}

.testimonials-section .swiper-slide2 {
    background: white;
    border-radius: 25px;
    box-shadow: 0 0 20px rgb(0 0 0 / 0.1);
    padding: 30px 20px 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

/* .testimonials-section .swiper-slide2:hover {
    transform: translateY(-10px);
} */

.testimonials-section .testimonial-card .user-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 5px solid var(--sec-color);
    box-shadow: 0 4px 10px rgb(0 0 0 / 0.15);
}



.testimonials-section .testimonial-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 6px;
    font-weight: 700;
    font-family: var(--main-font-family);
}



.testimonials-section .testimonial-card .stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonials-section .testimonial-card blockquote p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    font-style: italic;
    font-family: var(--main-font-family);
    text-align: justify;
}

.testimonials-section .testimonial-card blockquote i {
    color: var(--sec-color);

}

.testimonials-section .swiper-pagination2 {
    text-align: center;
    padding-top: 20px;
}

.testimonials-section .swiper-pagination-bullet {
    background: var(--sec-color);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    width: 12px;
    height: 12px;
}

.testimonials-section .swiper-pagination-bullet-active {
    opacity: 1;
}



@media (max-width: 900px) {
    .swiper-slide2 {
        padding: 20px 10px 30px 10px;
    }

    .testimonial-card blockquote p {
        max-width: 100%;
    }

    .testimonials-section .testimonial-card .user-img {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: 50%;
        margin-bottom: 20px;
        border: 5px solid var(--sec-color);
        box-shadow: 0 4px 10px rgb(0 0 0 / 0.15);
    }

    .testimonials-section .swiper-slide2 {

        padding: 10px 2px 10px 20px;

    }

}


/**********************************************************  TESTIMONOLOGIES  **********************************************************/


#portfolio-section {
    padding-top: var(--Space-section);
}


#portfolio-section .nav-link {
    color: #000 !important;
    font-size: 18px;
    font-family: var(--main-font-family);
    font-weight: 400;
    border: none;
}


#portfolio-section .nav-link::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: #95959580;
}



#portfolio-section ul {
    border: none;
    gap: 50px;
    padding-bottom: 20px;
}


#portfolio-section .nav-tabs .nav-link.active {
    border: none;
    color: var(--sec-color) !important;
    transition: all .3s ease;
}

#portfolio-section .nav-link.active::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--sec-color);
    transition: all .3s ease;

}



#portfolio-section .row .card-portfolio {
    border-radius: 25px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

#portfolio-section .row .card-portfolio .img-portfolio {
    overflow: hidden;
    border-radius: 25px 25px 0px 0px;
}

#portfolio-section .row .card-portfolio img {
    width: 100%;
    border-radius: 25px 25px 0px 0px;
    transition: all .3s ease;
}

#portfolio-section .portfolio-info {
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 5px;
}

#portfolio-section .row .card-portfolio a {
    text-align: start;
    padding-left: 15px;
    font-family: var(--main-font-family);
    font-size: 18px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
}

#portfolio-section .row .card-portfolio a:hover {
    color: var(--sec-color);
}

#portfolio-section .row .card-portfolio p {
    text-align: start;
    padding-left: 15px;
    font-family: var(--main-font-family);
    font-size: 14px;
    color: #000000a9;
}

#portfolio-section .row .card-portfolio img:hover {
    transform: scale(1.1);
}

@media(max-width: 900px) {
    #portfolio-section .nav-link {
        font-size: 17px;
    }

    #portfolio-section ul {
        gap: 25px;
    }


}


/**********************************************************  PORTFOLIO  **********************************************************/



#team {
    padding-top: var(--Space-section);
}

#team .member {
    padding: 15px;
    border-radius: 25px;
    background-color: var(--main-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

#team .member img {
    width: 100%;
    border-radius: 25px;
}

#team .member h4 {
    text-align: center;
    font-family: var(--main-font-family);
    font-size: 20px;
    color: #000;
    font-weight: 700;
    margin-top: 15px;
}

#team .member p {
    font-family: var(--main-font-family);
    font-size: 16px;
    color: #0000007a;
    text-align: center;
}

#team .member .social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#team .member .social a {
    text-decoration: none;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 0, 0, 0.503);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
}

#team .member .social a:hover {
    border: 1.5px solid var(--sec-color);
}

#team .member .social a i {
    color: rgba(0, 0, 0, 0.503);
    font-size: 20px;
    transition: all .3s ease;
}

#team .member .social a:hover i {
    color: var(--sec-color);
}


/**********************************************************  TEAM  **********************************************************/



#pricing {
    padding-top: var(--Space-section);
}

#pricing .pricing-item {
    padding: 60px 40px;
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

#pricing .pricing-item h3 {
    font-family: var(--main-font-family);
    font-size: 20px;
    color: #222222;
    font-weight: 700;
    margin: 0px 0px 15px 0px;
    text-align: center;
}

#pricing .pricing-item .icon-pricing {
    display: flex;
    justify-content: center;
    background-color: var(--sec-color);
    border-radius: 50%;
    margin: 30px auto 20px auto;
    width: 60px;
    height: 60px;
    align-items: center;
    position: relative;
}

#pricing .pricing-item .icon-pricing i {
    font-size: 28px;
    color: var(--main-color);
}

#pricing .pricing-item .icon-pricing::before,
.icon-pricing::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.icon-pricing::before {
    width: 80px;
    height: 80px;
    background-color: var(--sec-color);
    opacity: 20%;
    z-index: -10;

}

.icon-pricing::after {
    width: 100px;
    height: 100px;
    background-color: var(--sec-color);
    opacity: 10%;
    z-index: -20;
    animation: Pulse-pricing 1s ease-in infinite;

}

@keyframes Pulse-pricing {
    0% {
        transform: scale(1);
        opacity: .2;
    }

    25% {
        transform: scale(1.05);
        opacity: .2;
    }

    50% {
        transform: scale(1.08);
        opacity: .2;
    }

    75% {
        transform: scale(1.1);
        opacity: .2;
    }

    100% {
        transform: scale(1.12);
        opacity: .2;
    }
}

#pricing .pricing-item h4 {
    font-size: 48px;
    margin: 0px 0px 25px 0px;
    text-align: center;
    font-family: var(--main-font-family);
    color: var(--sec-color);
    font-weight: 700;
}

#pricing .pricing-item h4 sup {
    font-size: 28px;
}

#pricing .pricing-item h4 span {
    font-size: 18px;
    font-weight: 400;
    color: #22222281;
}

#pricing .pricing-item ul {
    list-style: none;
    text-align: start;
    padding: 20px 0px;
}

#pricing .pricing-item ul li {
    padding: 10px 0px;
}

#pricing .pricing-item ul li i {
    color: var(--sec-color);
}

#pricing .pricing-item ul li span {
    color: rgba(34, 34, 34, 0.800);
    font-family: var(--main-font-family);
    font-size: 16px;
    padding-left: 10px;
}

#pricing .pricing-item .text-center {
    display: flex;
    justify-content: center;
}

#pricing .pricing-item a {
    padding: 8px 40px 10px;
    border-radius: 50px;
    border: 1px solid rgba(34, 34, 34, 0.200);
    transition: all .3s ease;
}

#pricing .pricing-item a .btn-buynow {
    font-family: var(--main-font-family);
    color: rgba(34, 34, 34, 0.800);
    font-size: 16px;
    font-weight: 600;
    padding: 0;
}

#pricing .pricing-item a:hover {
    background-color: var(--sec-color);
}

#pricing .pricing-item a:hover .btn-buynow {
    color: var(--main-color);
}

#pricing .middle-pricing-item {
    border: 3px solid var(--sec-color);
    transform: scale(1.15);
}

#pricing .pricing-item .cancelled span {
    text-decoration: line-through;
    color: rgba(34, 34, 34, 0.200);
}

#pricing .pricing-item .cancelled i {
    color: rgba(34, 34, 34, 0.200);
}

@media(max-width: 700px) {
    #pricing .pricing-item ul {
        list-style: none;
        text-align: center;
        padding: 20px 0px;
    }
}

@media(max-width: 900px) {
    #pricing .middle-pricing-item {
        border: 3px solid var(--sec-color);
        transform: scale(1);
    }

    #pricing .pricing-item ul li span {
        font-size: 14px;
    }

}

@media(max-width: 1200px) {
    #pricing .middle-pricing-item {
        border: 3px solid var(--sec-color);
        transform: scale(1);
    }

    #pricing .pricing-item ul li span {
        font-size: 14px;
    }

    #pricing .pricing-item {
        padding: 60px 20px;

    }
}

/**********************************************************  PRICES  **********************************************************/

.blogs {
    padding-top: var(--Space-section);
}

.blogs .post {
    border-radius: 25px;
    box-shadow: 0 0 20px rgb(0, 0, 0, 0.15);
}

.blogs .post .post-img {
    overflow: hidden;
    border-radius: 25px 25px 0px 0px;
}

.blogs .post .post-img img {
    width: 100%;
    border-radius: 25px 25px 0px 0px;
    transition: all .3s ease;
    cursor: pointer;
}

.blogs .post .post-img img:hover {
    transform: scale(1.1);
}

.post-info {
    padding: 15px 30px;
}

.blogs .post p {
    font-family: var(--main-font-family);
    font-size: 16px;
    color: rgba(34, 34, 34, 0.800);
    text-align: start;
    margin-bottom: 5px;

}

.blogs .post h3 {
    margin-bottom: 25px;
    line-height: .9;
}

.blogs .post h3 a {
    font-size: 20px;
    font-family: var(--main-font-family);
    color: #172a28;
    transition: 0.3s;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
}

.blogs .post h3 a:hover {
    color: var(--sec-color);
    text-shadow: 0 0 30px rgb(0, 0, 0, 0.3);
}

.blogs .post .author-profile {
    display: flex;
    margin-bottom: 10px;
}

.blogs .post .author-profile .author-img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.blogs .post .author-profile .author-img img {
    width: 100%;
    border-radius: 50%;
}

.blogs .post .author-profile .author-info .author-name {
    font-family: var(--third-font-family);
    font-size: 14px;
    color: #222222;
    font-weight: 600;
    margin-bottom: 5px;
}

.blogs .post .author-profile .author-info .author-date {
    font-family: var(--third-font-family);
    font-size: 14px;
    color: rgba(34, 34, 34, 0.800);
    font-weight: 400;
}

@media(max-width: 700px) {
    .blogs .post p {
        font-size: 14px;

    }

    .blogs .post h3 a {
        font-size: 16px;

    }
}

/********************************************************** Blog **********************************************************/

#contact-us {
    padding-top: var(--Space-section);
}

.contact-methods {
    background-color: var(--sec-color);
    padding: 20px;
}

.contact-methods .method {
    background-color: var(--white-10);
    padding: 20px;
    margin-bottom: 20px;
}

.contact-methods .method h5 {
    font-size: 16px;
    font-family: var(--main-font-family);
    margin-bottom: 5px;
    padding: 0px;
    color: var(--main-color);
    font-weight: 700;
}

.contact-methods .method p {
    font-size: 13px;
    font-family: var(--main-font-family);
    padding: 0px;
    color: var(--main-color);
    font-weight: 500;
    margin: 0px;
}

.icon-div {
    align-items: center;
    justify-content: center;
    padding-right: 30px;
    padding-left: 10px;
    position: relative;
}

.icon-div i {
    font-size: 25px;
    color: var(--main-color);
}

.icon-div::after {
    content: '';
    background-color: var(--white-20);
    width: 50px;
    height: 50px;
    position: absolute;
    border-radius: 50px;
}

#contact-us .contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    height: 100%;
}

#contact-us .contact-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 15px;
    color: #333;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#contact-us .contact-form .form-control:focus {
    border-color: var(--sec-color);
    box-shadow: 0 0 8px rgba(0, 131, 116, 0.2);
    outline: none;
}

#contact-us .contact-form .btn-primary {
    background-color: var(--main-color);
    color: rgba(34, 34, 34, 0.800);
    border: 2px solid var(--sec-color);
    padding: 10px 36px;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

#contact-us .contact-form .btn-primary:hover {
    background-color: var(--sec-color);
    color: var(--main-color);

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/********************************************************** Contact Us **********************************************************/


#footer {
    background-color: var(--sec-color) !important;
    margin-top: var(--Space-section);
}

#footer h3,
#footer h5,
#footer p,
#footer a,
#footer .small {
    color: var(--main-color) !important;
}

.footer-link {
    color: var(--main-color);
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon {
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: var(--main-color);
    transition: all 0.3s ease;
}

.social-icon i {
    font-size: 16px;
}

#footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

#footer .small {
    font-size: 0.875rem;
}

/********************************************************** Footer **********************************************************/


.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: var(--sec-color);
    color: var(--main-color);
    padding: 10px 16px;
    border-radius: 50%;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--main-color);
    color: var(--sec-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}


.side-bar {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 9999;
    height: 100vh;
    width: 30%;
    background-color: var(--main-color);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    transition: left 0.5s ease;
}

.side-bar.active {
    left: 0;
}

.side-bar h1{
    font-size: 20px;
    font-family: var(--main-font-family);
    font-weight: 900;
    background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    text-shadow:0px 0px 50px rgba(0, 0, 0, 0.3)  ;
}
.the-colors{
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;

}
.color-change{
    width: 40px;
    height: 40px;
        background-color: black;
        border-radius: 50%;
        display: inline-block;
    cursor: pointer;
    border: 1px solid var(--sec-color);
    transition: all .3s ease;
}
.color-change:hover{
    transform: scale(1.1);
}
.color-change:nth-child(1)  { background-color: red;}
.color-change:nth-child(2)  { background-color: rgb(190, 0, 0); }
.color-change:nth-child(3)  { background-color: orange; }
.color-change:nth-child(4)  { background-color: green; }
.color-change:nth-child(5)  { background-color: blue; }
.color-change:nth-child(6)  { background-color: indigo; }
.color-change:nth-child(7)  { background-color: rgb(110, 0, 110); }
.color-change:nth-child(8)  { background-color: brown; }
.color-change:nth-child(9)  { background-color: gray; }
.color-change:nth-child(10) { background-color: rgb(168, 140, 0); }
.color-change:nth-child(11) { background-color: rgb(60, 0, 87); }
.color-change:nth-child(12) { background-color: rgb(32, 32, 32); }
.color-change:nth-child(13) { background-color: #008374; }
.color-change:nth-child(14) { background-color: navy; }
.color-change:nth-child(15) { background-color: black; }

.done-div{
    display: flex;
        justify-content: center;

}
.done{
    background-color: red;
    width: 60%;
    margin-top: 30px;
    transition: all .3s ease;
    color: white;
    font-family: var(--main-font-family);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border-radius:20px ;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1) ;
        cursor: pointer;

}
.done:hover {
    transform: scale(1.1);
    background-color: green;
        color: white;
}

@media (max-width: 768px) {
    .side-bar {
        width: 80%;
        padding: 20px;
    }

    .side-bar h1 {
        font-size: 18px;
    }

    .the-colors {
        gap: 15px;
        justify-content: center;
    }

    .color-change {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .side-bar {
        width: 100%;
        padding: 15px;
    }

    .side-bar h1 {
        font-size: 16px;
    }

    .color-change {
        width: 30px;
        height: 30px;
    }

}