@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");

body {
    font-family: "Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul {
    padding: 0px;
    margin: 0;
}

ul li {
    list-style: none;
}

p {
    margin-bottom: 0px;
}

h1 {
    margin-bottom: 0px;
}

h2,
h3,
h4,
h5 {
    margin-bottom: 0px;
}

:root {
    --black: #000;
    --white: #fff;
    --red: #da282e;
    --green: #2bbc33;
    --orange: #f5811e;
    --blue: #756fb3;
    --dark-blue: #0d76b7;
}

/* -------------- topbar css start here ------------ */
.top-bar {
    background: #000;
    padding: 5px 20px;
}

.top-bar a {
    color: #fff;
    font-size: 14px;
}

.top-bar .topbar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.top-bar .social ul {
    display: flex;
    gap: 20px;
}

.top-bar .social ul li a {
    font-size: 16px;
}

@media screen and (max-width: 767px) {
    .top-bar {
        display: none;
    }
}

/* -------------- topbar css end here --------------- */
/* fixed icons css start */
.fix-icons .whatsapp-icon {
    position: fixed;
    top: 90%;
    right: 2%;
    z-index: 999999;
}

.fix-icons .phone-icon {
    position: fixed;
    top: 91%;
    left: 2%;
    z-index: 999999;
}

.fix-icons .whatsapp-icon a {
    color: #fff;
    font-size: 24px;
    background: green;
    padding: 8px 14px;
    border-radius: 50%;
    box-shadow: rgba(26, 187, 40, 0.967) 0px 0px 5px 5px;
}

.fix-icons .phone-icon button {
    border: none;
    outline: none;
    color: #fff;
    font-size: 14px;
    background: green;
    padding: 8px 14px;
    box-shadow: rgba(26, 187, 40, 0.967) 0px 0px 5px 5px;
}

@media screen and (max-width: 767px) {
    .fix-icons .phone-icon {
        top: 90%;
    }

    .fix-icons .whatsapp-icon a {
        font-size: 16px;
        padding: 6px 10px;
    }

    .fix-icons .phone-icon button {
        font-size: 12px;
        padding: 3px 6px;
    }
}

/* end of fixed icons css */
/* top button css start here */
.top {
    display: none;
    color: var(--orange);
    font-size: 24px;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 99999999;
}

.top:hover {
    color: #cc410e;
}

/* top button css end here */
/* section css */
section {
    padding: 50px 0px;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
}

.section-head .heading {
    font-size: 28px;
    font-weight: 500;
    position: relative;
    color: var(--red);
}

.section-head .heading::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 46%;
    height: 3px;
    width: 8%;
    background-color: var(--black);
}

@media screen and (max-width:991px) {
    .section-head .heading {
        font-size: 22px;
    }
}

@media screen and (max-width: 767px) {
    p {
        font-size: 12px;
    }

    section {
        padding: 20px 0px;
    }

    .section-head {
        margin-bottom: 30px;
    }

    .section-head .heading {
        font-size: 16px;
    }

    .section-head .heading::after {
        left: 40%;
        height: 2px;
        width: 20%;
        bottom: -10px;
    }
}

/* section css */
/* footer css */
.footer {
    padding: 50px 0px;
}

@media screen and (max-width: 767px) {
    .footer {
        padding: 20px 0px;
    }
}

/* footer css */
/* custom css */
/* ------------ navbar css start ------------ */
.navbar {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.navbar img {
    width: 70px;
}

.web-name a {
    color: var(--green);
    margin-left: 20px;
    font-size: 18px;
    font-weight: 700;
}

.web-name a span {
    color: var(--dark-blue);
}

.navbar .navbar-nav .nav-link {
    font-size: 14px;
    color: var(--black);
    font-weight: 500;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--dark-blue);
}

.navbar .enq-btn {
    color: var(--white);
    background: var(--green);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    outline: none;
}

.navbar-light .navbar-toggler {
    font-size: 14px;
    border-color: black;
    padding: 2px 8px;
}

.navbar-light .navbar-toggler:focus {
    border: 1px solid var(--orange);
    box-shadow: none;
}

/* cross button in modal css start */
.modal .modal-dialog .modal-content .modal-header {
    padding: 10px;
}

.modal .modal-dialog .modal-content .modal-header button {
    color: black;
    padding: 2px 10px;
    font-size: 20px;
    transition: 0.5s ease-in-out;
}

.modal .modal-dialog .modal-content .modal-header button:hover {
    background: rgba(255, 0, 0, 0.885);
    color: #fff;
    transition: 0.5s ease-in-out;
}

.modal .modal-dialog .modal-content .modal-header h5 {
    font-size: 18px;
    background: var(--green);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 600;
}

.modal .modal-dialog .modal-content .modal-body {
    padding: 5px;
}

.modal .modal-dialog .modal-content .modal-body .contact-form {
    padding: 10px;
}

.modal .modal-dialog .modal-content .modal-body h3 {
    font-size: 16px;
}

/* cross button in modal css end */
@media screen and (max-width: 1200px) {
    .web-name a {
        font-size: 14px;
    }

    .navbar .enq-btn {
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .modal .modal-dialog .modal-content .modal-header button {
        padding: 1px 6px;
        font-size: 14px;
    }

    .modal .modal-dialog .modal-content .modal-header h5 {
        font-size: 14px;
        font-weight: 500;
    }

    .web-name a {
        margin-left: 0px;
        font-size: 18px;
    }

    .navbar .navbar-nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 10px;
    }

    .navbar .nav-btn {
        text-align: center;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .navbar img {
        width: 50px;
    }

    .navbar .navbar-nav {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        justify-content: start;
    }

    .navbar .navbar-nav .nav-item {
        margin: 0px !important;
    }

    .navbar .navbar-nav .nav-item .nav-link {
        padding-top: 0px;
    }

    .navbar .nav-btn {
        margin-bottom: 0px;
        text-align: start;
    }

    .navbar .enq-btn {
        font-size: 14px;
    }

    .navbar .enq-btn {
        padding: 2px 5px;
    }

    .web-name a {
        font-size: 17px;
    }
}

@media screen and (max-width: 359px) {
    .web-name a {
        font-size: 14px;
    }
}

/* ------------ end of navbar css here ------------ */
/* -------------------- banner css start here ------------------ */
.carousel-control-prev-icon {
    background-image: none;
    background-image: url(../img/banner/left-red.png);
}

.carousel-control-next-icon {
    background-image: none;
    background-image: url(../img/banner/right-red.png);
}

@media screen and (max-width: 767px) {
    .carousel-control-prev-icon {
        width: 15px;
        height: 15px;
    }

    .carousel-control-next-icon {
        width: 15px;
        height: 15px;
    }
}

/* ------------------ banner css ends here ----------------- */
/* ------------------------------ sub-page banner css start here ----------------------------- */
.sub-banner {
    padding: 60px 0px;
    background: linear-gradient(to right,
            rgba(224, 222, 222, 0.979),
            rgba(238, 236, 236, 0.753)),
        url(../img/banner/sub-child-banner.jpg) no-repeat center center/cover;
}

.sub-banner h1 {
    font-size: 26px;
}

.sub-banner p {
    margin-top: 10px;
    align-items: center;
}

.sub-banner p a {
    color: var(--black);
}

@media screen and (max-width: 767px) {
    .sub-banner {
        padding: 10px 0px;
    }

    .sub-banner h1 {
        font-size: 18px;
    }

    .sub-banner p {
        margin-top: 5px;
    }
}

/* ------------------------------ end of sub-page banner css here ----------------------------- */
/* ------------------ about us css start here ----------------- */
.about-us {
    text-align: justify;
}

.about-us .left-side {
    display: flex;
    justify-content: center;
    height: 100%;
}

.about-us .about-text img {
    width: 100px;
    margin-bottom: 20px;
}

.about-us .about-text p {
    margin-bottom: 20px;
}

.about-us .read-more {
    display: inline-block;
    background: var(--green);
    padding: 5px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.about-us .read-more a {
    color: var(--white);
}

/* responsive css */
@media screen and (max-width: 1200px) {
    .about-us {
        padding: 60px 0px;
    }
}

@media screen and (max-width: 991px) {
    .about-us {
        padding: 40px 0px;
    }

    .about-us .left-side img {
        margin-bottom: 20px;
    }

    .about-us .about-text img {
        width: 70px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .about-us {
        padding: 20px 0px;
    }

    .about-us .about-text img {
        width: 50px;
    }

    .about-us .read-more {
        margin-top: 0px;
        font-size: 14px;
        padding: 2px 10px;
        font-weight: 500;
    }
}

@media screen and (max-width: 520px) {
    .about-us .about-text p {
        margin-bottom: 10px;
    }
}

/* responsive css */
/* ------------------ end of about us css here ----------------- */
/* ------------------------ why choose us css start here ------------------- */
.why-choose-us .why-text {
    text-align: center;
    padding: 30px 20px;
    background: rgba(246, 239, 239, 0.886);
}

.why-choose-us .why-text h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

.why-choose-us .why-text p {
    color: #595858;
}

/* responsive css */
@media screen and (max-width: 1400px) {
    .why-choose-us .why-text {
        padding: 20px 10px;
    }

    .why-choose-us .why-text {
        min-height: 250px;
        max-height: 250px;
    }
}

@media screen and (max-width: 1200px) {
    .why-choose-us .why-text {
        padding: 20px 5px;
    }

    .why-choose-us .why-text h3 {
        margin-bottom: 10px;
    }

    .why-choose-us .why-text p {
        font-size: 14px;
    }

    .why-choose-us .why-text {
        min-height: 230px;
        max-height: 230px;
    }
}

@media screen and (max-width: 991px) {
    .why-choose-us .why-card {
        margin-bottom: 15px;
    }

    .why-choose-us .why-text {
        padding: 20px 10px;
    }

    .why-choose-us .why-text h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .why-choose-us .why-text p {
        font-size: 12px;
    }

    .why-choose-us .why-text {
        min-height: 160px;
        max-height: 160px;
    }
}

@media screen and (max-width: 767px) {
    .why-choose-us .why-card {
        margin-bottom: 20px;
    }

    .why-choose-us .why-text {
        min-height: 130px;
        max-height: 130px;
    }
}

@media screen and (max-width: 460px) {
    .why-choose-us .why-text {
        min-height: 160px;
        max-height: 160px;
    }
}

@media screen and (max-width: 360px) {
    .why-choose-us .why-text {
        min-height: 200px;
        max-height: 200px;
    }
}

/* responsive css */
/* ------------------------ end of why choose us css here ------------------- */
/* ---------------- contact us css start here ---------------- */
.contact-us {
    padding: 100px 0px;
    background: linear-gradient(rgba(7, 7, 7, 0.466), rgba(3, 3, 3, 0.856)),
        url(../img/contact/bg4.jpg) no-repeat center center/cover;
}

.contact-form {
    border-radius: 5px;
    background: var(--green);
    padding: 40px 10px;
}

.contact-form .contact-form-heading {
    text-align: center;
    color: #fff;
}

.contact-form .contact-form-heading p {
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-us .contact-form .contact-form-heading h3 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-form .form-control {
    background-color: transparent;
    font-size: 16px;
    padding: 5px 5px !important;
    border: none;
    border-bottom: 1px solid #fff;
    border-radius: 0px;
    color: #fff !important;
}

.contact-form .form-control:focus {
    color: #fff;
    box-shadow: none;
    border-color: #fff;
    background-color: transparent;
}

.contact-form .form-control::placeholder {
    color: #fff;
}

.form-btn button {
    background: var(--white);
    color: var(--black);
    padding: 5px 20px;
    border: none;
    text-align: center;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 5px;
}

/* ------------------------- captcha css start ------------------- */
.captchasep1 {
    display: flex;
}

.contact-form .captchasep1 .form-floating label {
    color: #fff;
}

.contact-form .captchasep1 .form-floating .form-control {
    padding-top: 1.625rem !important;
    padding-bottom: 0.625rem !important;
    color: #fff;
}

.captchasep1 input {
    width: 100% !important;
    height: 40px;
}

.captchasep1 .captcha-codes-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    border-radius: 5px;
}

.captchasep1 .captcha-codes-sec p {
    letter-spacing: 9px;
    font-style: italic;
    font-size: 32px;
    font-weight: 800;
    padding: 5px;
    height: 100%;
    color: #fff;
}

.captchasep1 .captcha-codes-sec {
    margin-bottom: 10px;
}

.captchasep1 .captcha-codes-sec button {
    font-style: italic;
    font-size: 22px;
    outline: none;
    height: 100%;
    border: none;
    background: none;
}

.captchasep1 .captcha-codes-sec button i {
    background: var(--dark-blue);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

/* responsive captcha */
@media screen and (max-width: 767px) {
    .captchasep1 .captcha-codes-sec p {
        letter-spacing: 2px;
        font-size: 18px;
        width: 60% !important;
    }

    .captchasep1 .captcha-codes-sec button {
        font-size: 12px;
    }

    .contact-form .captchasep1 .form-floating label {
        font-size: 14px;
        padding: 5px;
    }

    .form-floating .form-control,
    .form-floating .form-select {
        height: 2.5rem;
        line-height: 1.25;
    }
}

/* end of responsive captcha */
/* ------------------------- end of captcha css ------------------ */
/* contact us responsive css  */
@media screen and (max-width: 1200px) {
    .contact-us {
        padding: 40px 0px;
    }

    .contact-us .contact-form .contact-form-heading h3 {
        font-size: 32px;
    }
}

@media screen and (max-width: 991px) {
    .contact-us {
        padding: 20px 0px;
    }

    .contact-form {
        padding: 10px 5px;
        background: #00000060;
    }

    .contact-us .contact-form .contact-form-heading h3 {
        font-size: 28px;
    }
}

@media screen and (max-width: 767px) {
    .contact-us .contact-form .contact-form-heading p {
        margin-bottom: 5px;
        font-size: 14px;
        font-weight: 400;
    }

    .contact-us .contact-form .contact-form-heading h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .contact-form {
        padding: 10px 5px;
    }

    .form-btn button {
        padding: 2px 10px;
        font-weight: 500;
        letter-spacing: 1.5px;
    }
}

/* end of contact us responsive */
/* ---------------- end of contact us css here ----------------- */
/* ------------------ footer css start here ------------------- */
.footer .part .head h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer .part-1 .location,
.mail,
.phone {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer .part-1 p {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.footer .part-1 i {
    color: var(--green);
}

.footer .part-1 a {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.footer .part-2 .links li {
    margin-bottom: 15px;
}

.footer .part-2 .links a {
    color: #000;
    font-weight: 500;
    font-size: 14px;
}

.footer .part-2 .links a:hover {
    color: var(--dark-blue);
}

.footer .part-3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.footer .part-3 .footer-logo img {
    width: 150px;
    margin-bottom: 20px;
}

.footer .part-3 .footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer .part-3 .footer-icons img {
    width: 30px;
}

.footer-widget {
    background: var(--black);
    padding: 10px 0px;
    color: #fff;
    font-size: 12px;
}

.footer-widget .widget-text {
    display: flex;
    justify-content: space-between;
}

.footer-widget .widget-text p span {
    color: var(--green);
}

.footer-widget .widget-text p a {
    color: #fff;
}

/* responsive css */
@media screen and (max-width: 991px) {
    .footer .part {
        margin-bottom: 40px;
    }

    .footer .part-3 .footer-logo img {
        width: 150px;
        margin-bottom: 10px;
    }

    .footer-widget .widget-text {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

@media screen and (max-width: 767px) {
    .footer .part {
        margin-bottom: 20px;
    }

    .footer .part .head h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .footer .part-1 .location,
    .mail,
    .phone {
        gap: 10px;
        margin-bottom: 10px;
    }

    .footer .part-1 p {
        font-size: 12px;
    }

    .footer .part-1 a {
        font-size: 12px;
    }

    .footer .part-2 .links li {
        margin-bottom: 5px;
    }

    .footer .part-2 .links a {
        font-size: 14px;
    }

    .footer .part-3 .footer-logo img {
        width: 100px;
        margin-bottom: 10px;
    }

    .footer-widget .widget-text p {
        font-size: 10px;
    }
}

/* responsive css */
/* ------------------ end of footer css here ------------------ */
/* ----------------------- our services css start here -------------------- */
.services .service-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.services .service-card .service-img {
    position: relative;
    width: 500px;
    height: auto;
}

.services .service-card .service-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.904));
    padding: 0px 10px;
}

.services .service-card .service-text i {
    font-size: 50px;
    margin-bottom: 10px;
    color: var(--green);
}

.services .service-card .service-text h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 70px;
}

/* responsive css */
@media screen and (max-width: 1200px) {
    .services .service-card .service-text i {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .services .service-card .service-text h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .services .service-card .service-text i {
        font-size: 30px;
    }

    .services .service-card .service-text h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

/* responsive css */
/* ----------------------- end of our services css here ------------------------ */
/* ----------------------- blog section css start here -------------------------- */
.blogs {
    background: rgba(246, 239, 239, 0.886);
}

.blogs .blog-card {
    padding: 10px;
    background: var(--white);
}

.blogs .blog-card {
    position: relative;
    overflow: hidden;
}

.blogs .blog-card .blog-img {
    position: relative;
}

.blogs .blog-card .date {
    position: absolute;
    top: 2%;
    left: 2%;
}

.blogs .blog-card .date p {
    display: inline-block;
    background: var(--dark-blue);
    padding: 2px 8px;
    color: var(--white);
    font-size: 12px;
}

.blogs .blog-card .blog-img {
    margin-bottom: 10px;
}

.blogs .blog-card .blog-text h3 {
    color: var(--dark-blue);
    font-size: 18px;
    margin-bottom: 10px;
}

.blogs .blog-card .blog-text p {
    color: var(--black);
    font-size: 14px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blogs .blog-card .blog-text .more {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 0px;
}

/* responsive */
@media screen and (max-width: 767px) {
    .blogs .blog-card {
        padding: 5px;
    }

    .blogs .blog-card .blog-text h3 {
        margin-bottom: 5px;
    }

    .blogs .blog-card .blog-text p {
        font-size: 12px;
    }
}

/* responsive */
/* ----------------------- end of blog section css here ---------------------------- */
/* ----------------------- testimonial section css start here ------------------------- */
.testimonial .testimonial-card {
    background: var(--green);
    text-align: center;
    color: var(--white);
    border-radius: 5px;
    padding: 20px 40px;
}

.testimonial .testimonial-card h3 {
    margin-bottom: 50px;
}

.testimonial .testimonial-card .testimonial-text {
    background: var(--white);
    color: var(--black);
    padding: 20px 40px;
    font-style: italic;
    font-size: 14px;
    border-radius: 5px;
}

.testimonial .testimonial-card .testimonial-text .star {
    margin: 20px 0px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--dark-blue);
}

.testimonial .testimonial-card .testimonial-text h4 {
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    margin-top: 20px;
}

/* owl carousel dots css start */
/* Center the dots below the carousel */
.testimonial .owl-dots {
    text-align: center;
    margin-top: 20px;
}

/* Style for each dot */
.testimonial .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #cbc8c8 !important;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
    transition: 0.3s;
}

/* Active dot style */
.testimonial .owl-dots .owl-dot.active span {
    background: var(--dark-blue) !important;
}

@media screen and (max-width: 767px) {
    .testimonial .owl-dots {
        display: none;
    }
}

/* owl carousel dots css end */
/* responsive css */
@media screen and (max-width: 991px) {
    .testimonial .testimonial-card {
        padding: 20px;
    }

    .testimonial .testimonial-card h3 {
        margin-bottom: 20px;
        font-size: 22px;
    }

    .testimonial .testimonial-card .testimonial-text {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .testimonial .testimonial-card {
        padding: 10px;
    }

    .testimonial .testimonial-card h3 {
        font-size: 18px;
    }

    .testimonial .testimonial-card .testimonial-text {
        padding: 10px;
        font-size: 12px;
    }

    .testimonial .testimonial-card .testimonial-text .star {
        margin: 10px 0px 5px;
        gap: 5px;
        color: var(--orange);
    }

    .testimonial .testimonial-card .testimonial-text h4 {
        font-size: 18px;
        margin-top: 10px;
    }
}

/* responsive css */
/* ----------------------- end of testimonial section css here ------------------------- */
/* ------------------- challenge-1 css start here ------------------ */
.challenge-1 .section-head {
    margin-bottom: 40px;
}

.challenge-1 .challenge-text {
    margin-bottom: 20px;
}

.challenge-1 .challenge-text p {
    text-align: center;
    font-size: 12px;
}

@media screen and (max-width: 1200px) {
    .challenge-1 .head-para {
        margin-bottom: 10px;
    }

    .challenge-1 .challenge-text {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 991px) {
    .challenge-1 .head-para {
        text-align: justify;
        font-size: 14px;
    }

    .challenge-1 .challenge-text {
        margin-bottom: 10px;
    }

    .challenge-1 .challenge-text p {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .challenge-1 .head-para {
        font-size: 12px;
    }
}

/* --------------------- end of challenge 1 css here ---------------------- */
/* ===================================================================================================== */
/* ===================================================================================================== */
/* ================================ about page css start here ================================ */
.about-us .abt-text {
    margin-top: 20px;
}

.about-us .abt-text p {
    margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
    .about-us .abt-text {
        margin-top: 0px;
    }
}

/* -------- counsellor css start here ---------- */
.counsellor .t-img {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;
}

.counsellor .cs-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.counsellor .cs-text .head .left p {
    font-weight: 600;
    color: var(--green);
    margin-bottom: 5px;
}

.counsellor .cs-text .head .left h3,
h4 {
    margin-bottom: 5px;
}

.counsellor .cs-text .head .left h5 {
    margin-bottom: 10px;
}

.counsellor .cs-text .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counsellor .cs-text .head .right p {
    background: var(--dark-blue);
    color: var(--white);
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.counsellor .cs-text .ab-cs p {
    text-align: justify;
    margin-bottom: 5px;
}

/* responsive css */
@media screen and (max-width: 1200px) {
    .counsellor .cs-text .head .left h3 {
        font-size: 20px;
    }

    .counsellor .cs-text .head .left h4 {
        font-size: 18px;
    }

    .counsellor .cs-text .head .left h5 {
        font-size: 16px;
    }

    .counsellor .cs-text .head .right p {
        font-size: 16px;
    }
}

@media screen and (max-width: 991px) {
    .counsellor .t-img img {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {

    .counsellor .cs-text .head .left h3,
    h4 {
        margin-bottom: 2px;
    }

    .counsellor .cs-text .head .left h5 {
        margin-bottom: 5px;
    }

    .counsellor .cs-text .head .left h3 {
        font-size: 16px;
    }

    .counsellor .cs-text .head .left h4 {
        font-size: 12px;
    }

    .counsellor .cs-text .head .left h5 {
        font-size: 12px;
    }

    .counsellor .cs-text .head .right p {
        padding: 5px;
        font-size: 12px;
    }
}

/* responsive css */
/* --------- end of counsellor css here -------- */
/* --------- methods css start here ----------- */
.methods .c-circle {
    display: flex;
    justify-content: center;
}

.methods .method-circle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #dbd9d98a;
    border-radius: 50%;
    min-height: 400px;
    max-height: 400px;
    min-width: 400px;
    max-width: 400px;
    padding: 20px;
}

.methods .method-circle i {
    font-size: 24px;
    color: var(--green);
    margin-bottom: 5px;
}

.methods .method-circle h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.methods .method-circle li {
    margin-bottom: 5px;
}

/* responsive css */
@media screen and (max-width: 1400px) {
    .methods .method-circle {
        min-height: 350px;
        max-height: 350px;
        min-width: 350px;
        max-width: 350px;
    }

    .methods .method-circle h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .methods .method-circle li {
        font-size: 14px;
    }
}

@media screen and (max-width: 1200px) {
    .methods .method-circle {
        min-height: 310px;
        max-height: 310px;
        min-width: 310px;
        max-width: 310px;
    }

    .methods .method-circle h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .methods .method-circle li {
        font-size: 12px;
    }
}

@media screen and (max-width: 991px) {
    .methods .method-circle {
        min-height: 350px;
        max-height: 350px;
        min-width: 350px;
        max-width: 350px;
        margin-bottom: 10px;
    }

    .methods .method-circle h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .methods .method-circle li {
        font-size: 14px;
    }
}

@media screen and (max-width: 767px) {
    .methods .method-circle {
        min-height: 350px;
        max-height: 350px;
        min-width: 350px;
        max-width: 350px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 420px) {
    .methods .method-circle {
        min-height: 300px;
        max-height: 300px;
        min-width: 300px;
        max-width: 300px;
    }

    .methods .method-circle i {
        font-size: 16px;
    }

    .methods .method-circle h3 {
        font-size: 16px;
    }

    .methods .method-circle li {
        margin-bottom: 2px;
        font-size: 12px;
    }
}

/* responsive css */
/* --------- end of methods css here ----------- */
/* mission vision css start here */
.misvis {
    background: url(../img/about/misvis.webp) no-repeat center center/cover;
}

.misvis .misvis-content h3 {
    font-size: 14px;
    color: var(--green);
    margin-bottom: 5px;
    font-weight: 600;
}

.misvis .misvis-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.misvis .misvis-content p {
    text-align: justify;
    margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .misvis .misvis-content h3 {
        font-size: 12px;
        margin-bottom: 2px;
        font-weight: 500;
    }

    .misvis .misvis-content h4 {
        font-weight: 500;
        font-size: 16px;
    }

    .misvis .misvis-content p {
        margin-bottom: 5px;
    }
}

/*  end of mission vision css */
/* ================================ end of about page css here ================================ */
/* ============================================================================================================ */
/* ============================================================================================================ */
/* ============================== contact page css start here ================================== */
.location .location-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.location .location-content .address {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.location .location-content .address h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
}

.location .location-content .address i {
    color: var(--green);
    border: 2px dashed var(--green);
    border-radius: 50%;
    padding: 10px;
    font-size: 20px;
}

.location .location-content .address a {
    color: var(--black);
}

.map-location,
.map-location iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 1px solid #bdbbbb80;
}

@media screen and (max-width: 767px) {

    .map-location,
    .map-location iframe {
        min-height: 200px;
    }
}

/* ============================== end of contact page css here ================================ */
/* ============================================================================================================ */
/* ============================================================================================================ */
/* ============================== blog detail page css start here ================================== */
.blog-detail .blog-img img {
    margin-bottom: 5px;
}

.blog-detail .blog-text .date {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 5px 10px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-detail .blog-text h3 {
    margin-bottom: 10px;
}

.blog-detail .blog-text p {
    text-align: justify;
    margin-bottom: 20px;
}

.blog-detail .contact-form {
    background: var(--green);
}

@media screen and (max-width: 767px) {
    .blog-detail .blog-text h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .blog-detail .blog-text .date {
        margin-bottom: 10px;
    }

    .blog-detail .blog-text p {
        margin-bottom: 10px;
    }
}

/* ============================== end of blog detail page css here ================================== */
/* ========================================================================================================== */
/* ========================================================================================================== */
/* ================================ service detail page css start here =================================== */
.service-detail {
    background: rgba(246, 239, 239, 0.886);
}

.service-detail .detail p {
    text-align: justify;
    margin-bottom: 20px;
}

.service-detail .detail h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.service-detail .detail li {
    font-size: 16px;
}

.related-services {
    background: rgba(246, 239, 239, 0.886);
}

.appointment .contact-form {
    background: var(--green);
}

/* responsive css start */
@media screen and (max-width: 991px) {
    .service-detail .service-img img {
        margin-bottom: 10px;
    }

    .service-detail .detail p {
        margin-bottom: 10px;
    }

    .service-detail .detail li {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .service-detail .detail p {
        margin-bottom: 5px;
    }

    .service-detail .detail h3 {
        font-size: 16px;
    }

    .service-detail .detail li {
        font-size: 12px;
        margin-bottom: 5px;
    }
}

/* responsive css end */
/* ================================ end of service detail page css here =================================== */