/*=======================
  styling hero section
=========================*/
#hero {
    margin-top: 30px;
    background-color: white;
    position: relative;
    z-index: 10;
    border-bottom-left-radius: var(--large-radius);
    border-bottom-right-radius: var(--large-radius);

    &::after,
    &::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 50px;
        z-index: 1;
        width: 60%;
        height: 45%;
        border-radius: 50%;
        border: 2px solid rgba(0, 0, 0, 0.1);
        transform: rotateZ(15deg);
    }

    &::before {
        width: calc(60% + 80px);
        height: calc(45% + 35px);
        top: 15px;
        left: 15px;
    }

    .hero-section {
        position: relative;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;

        .info {
            margin-top: -60px;
            flex: 1;

            .title {
                font-weight: normal;
            }

            .content {
                margin-top: 20px;

                h4 {
                    margin-bottom: 10px;
                    font-size: 24px;
                    font-weight: 600;
                }

                .ctm-accordian {
                    margin-bottom: 8px;

                    .accord-content {
                        p {
                            font-weight: 500;
                            margin-bottom: 5px;
                        }

                        ul li {
                            display: flex;
                            align-items: center;
                            gap: 20px;

                            i {
                                color: #D3C312;
                            }
                        }
                    }
                }
            }
        }

        .image {
            max-width: 650px;

            img {
                width: 100%;
                margin-bottom: -6px;
            }
        }

        .quote {
            max-width: 250px;

            .icon {
                display: block;
                margin-bottom: 15px;
            }

            .text {
                color: var(--text-muted);
                font-style: italic;
            }
        }
    }
}

/*=======================
    styling services section
  =========================*/
#services {
    padding-top: 150px;
    margin-top: -50px;
    color: white;
    position: relative;

    &::after {
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        right: 0;
        width: 100%;
        height: calc(50% + 50px);
        background: var(--main-gradient);
    }

    .head {
        display: flex;
        align-items: center;
        justify-content: space-between;

        .title {
            font-size: 40px;
        }

        .description {
            font-size: 20px;
            width: 50%;
            padding-inline: 30px;
        }
    }

    .cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 15px;
        margin-top: 50px;

        .card {
            overflow: hidden;
            border-radius: var(--main-radius);
            max-height: 300px;
            position: relative;

            img {
                width: 100%;
                height: 100%;
            }

            .info {
                position: absolute;
                bottom: 0;
                right: 0;
                width: 100%;
                z-index: 5;
                display: flex;
                flex-direction: column;
                justify-content: end;
                padding: 25px;

                .title {
                    font-size: 20px;
                    font-weight: 600;
                    margin-bottom: 20px;
                }

                .description {
                    font-weight: 400;
                    line-height: 24px;
                }
            }

        }

        .one {
            .info {
                background: linear-gradient(to bottom, #D3C31200, #D3C312);
            }
        }

        .two {
            .info {
                background: linear-gradient(to bottom, #0FA98A00, #0FA98A);
            }
        }

        .three {
            .info {
                background: linear-gradient(to bottom, #61A90F00, #61A90F);
            }
        }

        .four {
            .info {
                background: linear-gradient(to bottom, #2EB8DB00, #2EB8DB);
            }
        }

        .five {
            .info {
                background: linear-gradient(to bottom, #57873A00, #57873A);
            }

        }

        .six {
            .info {
                background: linear-gradient(to bottom, #639EBA00, #639EBA);
            }
        }
    }
}

/*============================
    styling testimonial section
  ==============================*/
#testimonial {
    padding-block: 50px;
    overflow: hidden;

    .head {
        text-transform: capitalize;
        margin-bottom: 30px;
    }

    .swiper {
        position: relative;
        width: 100%;
        margin-inline: auto;
        height: 500px;
        overflow: visible !important;

        .swiper-slide {
            scale: .8;
            border-radius: var(--main-radius);
            overflow: hidden;

            img {
                width: 100%;
                height: 100%;
                margin-inline: auto !important;
            }
        }

        .swiper-slide-active {
            /* scale: 1.1; */
        }

        .swiper-button-next,
        .swiper-button-prev {
            position: absolute !important;
            top: -55px !important;
            left: 0 !important;
            width: fit-content !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            min-width: 50px;
            min-height: 50px;
            z-index: 20;
            padding: 20px !important;
            background: var(--main-gradient);
            width: fit-content;
            border-radius: 50%;
            color: white;

            &::after {
                font-size: 20px;
            }
        }

        .swiper-button-prev {
            left: 60px !important;
            margin-inline-start: auto !important;
        }

        .swiper-pagination-bullet-active {
            background-color: #0FA98A;
        }
    }
}

/*=======================
    styling mission section
  =========================*/
#mession {
    padding-block: 50px;
    text-transform: capitalize;

    .content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;

        .info {
            h4 {
                margin-bottom: 20px;
            }

            p {
                font-weight: normal;
            }

            button {
                margin-top: 80px;
            }
        }

        .image {
            position: relative;
            padding-inline-end: 10%;

            &::after {
                content: '';
                position: absolute;
                border-top-right-radius: var(--main-radius);
                border-bottom-right-radius: var(--main-radius);
                background: var(--main-gradient-revers);
                left: -50px;
                top: 0;
                width: 150px;
                height: 100%;
            }

            .doc-image {
                width: 550px;
                height: 410px;
                border-radius: var(--main-radius);

                img {
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }
}

/*=======================
    styling vision section
  =========================*/
#vision {
    padding-block: 50px;
    text-transform: capitalize;

    .content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;

        .info {
            flex: 1;

            h4 {
                margin-bottom: 20px;
            }

            p {
                font-weight: normal;
            }

            button {
                margin-top: 80px;
            }
        }

        .image {
            position: relative;
            padding-inline-start: 10%;
            flex: 1;

            &::after {
                content: '';
                position: absolute;
                border-top-left-radius: var(--main-radius);
                border-bottom-left-radius: var(--main-radius);
                background: var(--main-gradient);
                right: -50px;
                top: 0;
                width: 150px;
                height: 100%;
            }

            .doc-image {
                width: 550px;
                height: 350px;
                border-radius: var(--main-radius);

                img {
                    width: 100%;
                    height: 100%;
                    max-height: 400px;
                    border-radius: var(--main-radius);
                }
            }
        }
    }
}

/*=============================
    styling core values section
  ===============================*/
#core-values {
    padding-block: 50px;

    .content {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        text-transform: capitalize;

        .values {
            min-height: 550px;
            h4 {
                margin-bottom: 20px;
            }

            .values-cards {
                padding-bottom: 150px;

                .row-one,
                .row-two {
                    display: flex;
                    align-items: center;
                    gap: 20px;

                    .card {
                        padding: 25px 50px;
                        text-align: center;
                        box-shadow: var(--main-shadow);
                        border-radius: var(--main-radius);
                        background-color: white;

                        .icon {
                            margin-bottom: 20px;
                        }

                        .title {
                            font-size: 20px;
                            font-weight: 500;
                            text-wrap: nowrap;
                        }
                    }
                }

                .row-two {
                    position: absolute;
                    margin-top: 20px;
                    width: 100%;
                    bottom: 0;
                    right: 0;
                    justify-content: center;
                }
            }
        }

        .image {
            img {
                width: 100%;
            }
        }
    }
}

/*============== 
    TV Screens 
  ================*/
@media(min-width: 1441px) {

    /* styling hero section */
    #hero {
        .hero-section {
            .info {
                flex: 1;
            }

            .image {
                flex: 1;
            }
        }
    }

    /* styling services section */
    #services {
        .cards {
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;

            .card {
                max-height: 400px;
            }
        }
    }

    /* styling testimonial section */
    .swiper {
        height: 700px !important;
    }

    /* styling mission section */
    #mession {
        .content {
            gap: 50px;

            .info {
                flex: 1;

            }

            .image {
                flex: 1;
                padding-inline-end: 100px;

                &::after {
                    left: -100px;
                    width: 300px;
                    height: 100%;
                }

                .doc-image {
                    width: 650px;
                    height: 450px;
                }
            }
        }
    }

    /* styling vision section */
    #vision {
        .content {
            gap: 10px;

            .info {
                flex: 1;
            }

            .image {
                flex: 1;
                padding-inline-start: 150px;

                &::after {
                    right: -100px;
                    width: 200px;
                    height: 100%;
                }

                .doc-image {
                    width: 650px;
                    max-height: 500px;
                }
            }
        }
    }

    /* styling core values section */
    #core-values {
        padding-block: 50px;

        .content {
            gap: 50px;

            .values {
                flex: 1;

                .values-cards {
                    padding-bottom: 100px;

                    .row-one,
                    .row-two {
                        gap: 30px;

                        .card {
                            padding: 35px 60px;

                            .icon {
                                margin-bottom: 30px;
                            }

                            .title {
                                font-size: 30px;
                            }
                        }
                    }

                    .row-two {
                        bottom: 40px;
                    }
                }
            }

            .image {
                flex: 1;
                max-width: 700px;

                img {
                    width: 100%;
                }
            }
        }
    }
}

/*============== 
    Extra Large 
  ================*/
@media(max-width: 1440px) {
    /*  */
}

/*============== 
       Large 
  ================*/
@media(max-width: 1280px) {

    /* styling mession section */
    #mession {
        .content {
            .info {
                width: 50%;

                button {
                    margin-top: 50px;
                }
            }

            .image {
                width: 50%;
                padding-inline-end: 40px;

                &::after {
                    width: 70px;
                    height: 100%;
                }

                .doc-image {
                    width: 100%;
                    height: 100%;
                    max-width: 550px;
                    max-height: 350px;

                }
            }
        }
    }

    /* styling vision section */
    #vision {
        .content {
            .info {
                button {
                    margin-top: 50px;
                }
            }

            .image {
                padding-inline-start: 40px;

                &::after {
                    width: 70px;
                    height: 100%;
                }

                .doc-image {
                    width: 100%;
                    height: 100%;
                    max-width: 550px;
                    max-height: 350px;
                }
            }
        }
    }

    /* styling core values section */
    #core-values {
        padding-block: 30px;

        .content {
            .values {
                .values-cards {
                    padding-bottom: 50px;

                    .row-two {
                        position: relative;
                    }
                }
            }
        }
    }
}

/*============== 
       Medium 
  ================*/
@media(max-width: 1025px) {

    /* styling hero section */
    #hero {
        padding-top: 40px;

        &::after,
        &::before {
            display: none;
        }

        .hero-section {
            gap: 50px;

            .image {
                display: none;
            }

            .info {
                margin: 0;
            }
        }
    }

    /* styling mession section */
    #mession {
        .content {
            gap: 30px;

            .info {
                width: 80%;
                text-align: center;

                h4 {
                    margin-inline: auto;
                    margin-bottom: 10px;
                }

                button {
                    margin-top: 50px;
                }
            }

            .image {
                padding-inline-end: 40px;

                &::after {
                    width: 70px;
                    height: 100%;
                }

                .doc-image {
                    width: 100%;
                    height: 100%;
                    max-width: 650px;
                    max-height: 510px;

                    img {
                        width: 100%;
                    }
                }
            }
        }
    }

    /* styling vision section */
    #vision {
        .content {
            gap: 30px;

            .info {
                text-align: center;

                h4 {
                    margin-inline: auto;
                    margin-bottom: 10px;
                }

                button {
                    margin-top: 50px;
                }
            }

            .image {
                padding-inline-start: 40px;

                &::after {
                    width: 70px;
                    height: 100%;
                }

                .doc-image {
                    width: 100%;
                    height: 100%;
                    max-width: 650px;
                    max-height: 510px;
                }
            }
        }
    }

    /* styling core values section */
    #core-values {

        .content {

            .values {
                width: 100%;

                h4 {
                    margin: 30px;
                }

                .values-cards {
                    padding-bottom: 80px;

                    .row-one,
                    .row-two {
                        justify-content: center;
                        flex-wrap: wrap;
                    }

                    .row-two {
                        position: relative;
                    }
                }
            }

            .image {
                display: none;
            }
        }
    }

}

/*============== 
      Tablet 
  ================*/
@media(max-width: 768px) {

    /* styling hero section */
    #hero {
        padding-block: 40px;

        &::after,
        &::before {
            display: none;
        }

        .hero-section {
            text-align: center;
            flex-direction: column;
            gap: 30px;

            .image {
                display: none;
            }

            .info {
                margin: 0;

                .content {
                    h4 {
                        font-size: 20px;

                    }

                    .ctm-accordian {
                        text-align: start;

                        .title {
                            font-size: 14px;
                        }
                    }
                }
            }

            .quote {
                max-width: 450px;
            }
        }
    }

    /* styling services section */
    #services {
        padding-top: 100px;

        .head {
            justify-content: center;
            flex-direction: column;
            text-align: center;

            .title {
                font-size: 30px;
            }

            .description {
                margin-top: 15px;
                font-size: 16px;
                width: 100%;
                padding-inline: 0px;
            }
        }

        .cards {
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

        }
    }

    /* styling mission section */
    #mession {
        padding-block: 40px;

        .content {
            flex-direction: column-reverse;
            gap: 40px;

            .info {
                text-align: center;

                h4 {
                    margin-inline: auto;
                    margin-bottom: 10px;
                }

                button {
                    margin-top: 30px;
                }
            }

            .image {
                padding: 0;

                &::after {
                    width: 0;
                    height: 0;
                }

            }
        }
    }

    /* styling vision section */
    #vision {
        padding-block: 40px;

        .content {
            flex-direction: column;
            gap: 40px;

            .info {
                text-align: center;

                h4 {
                    margin-inline: auto;
                    margin-bottom: 10px;
                }

                button {
                    margin-top: 30px;
                }
            }

            .image {
                padding: 0;

                &::after {
                    width: 0;
                    height: 0;
                }

                .doc-image {
                    width: 100%;
                    height: 100%;
                    max-width: 650px;
                    max-height: 510px;
                }
            }
        }
    }

    /* styling core values section */
    #core-values {
        padding-block: 30px;

        .content {
            gap: 0px;

            .values {
                h4 {
                    margin: 30px auto;
                }

                .values-cards {

                    .row-one,
                    .row-two {
                        justify-content: center;
                        flex-wrap: wrap;

                        .card {

                            .icon {
                                margin-bottom: 20px;
                            }

                            .title {}
                        }
                    }

                    .row-two {
                        position: relative;
                    }
                }
            }

            .image {
                display: none;
            }
        }
    }

}

/*============== 
       Mobile 
  ================*/
@media(max-width: 576px) {

    /* styling hero section */
    #hero {
        padding-block: 40px;

        &::after,
        &::before {
            display: none;
        }

        .hero-section {
            text-align: center;
            flex-direction: column;
            gap: 30px;

            .image {
                display: none;
            }

            .info {
                margin: 0;

                .ctm-accordian {
                    text-align: start;
                }
            }
        }
    }

    /* styling services section */
    #services {
        padding-top: 100px;

        .head {
            justify-content: center;
            flex-direction: column;
            text-align: center;

            .title {
                font-size: 30px;
            }

            .description {
                margin-top: 15px;
                font-size: 16px;
                width: 100%;
                padding-inline: 0px;
            }
        }

        .cards {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

            .info {
                .title {
                    margin-bottom: 10px !important;
                    font-size: 18px !important;
                }

                .description {
                    line-height: 20px !important;
                    font-size: 14px !important;
                }
            }
        }
    }

    /*  styling testimonial section */
    #testimonial {
        .swiper {
            height: 300px;

            .swiper-button-next,
            .swiper-button-prev {
                max-width: 40px;
                max-height: 40px;
                min-width: 40px;
                min-height: 40px;
                padding: 10px !important;

                &::after {
                    font-size: 16px;
                }
            }

            .swiper-button-prev {
                left: 50px !important;
            }
        }
    }

    /* styling mission section */
    #mession {
        padding-block: 30px;

        .content {
            flex-direction: column-reverse;
            gap: 40px;

            .info {
                text-align: center;

                h4 {
                    margin-inline: auto;
                    margin-bottom: 10px;
                }

                button {
                    margin-top: 40px;
                }
            }

            .image {
                width: 100%;
                padding-inline-end: 0;

                &::after {
                    width: 0;
                    height: 0;
                }

                .doc-image {

                    img {
                        max-width: 100%;
                        max-height: 100%;
                    }
                }
            }
        }
    }

    /* styling vision section */
    #vision {
        padding-block: 30px;

        .content {
            flex-direction: column;
            gap: 20px;

            .info {
                text-align: center;

                h4 {
                    margin-inline: auto;
                    margin-bottom: 10px;
                }

                button {
                    margin-top: 40px;
                }
            }

            .image {
                padding: 0;

                &::after {
                    width: 0;
                    height: 0;
                }

                .doc-image {

                    img {
                        max-width: 100%;
                    }
                }
            }
        }
    }

    /* styling core values section */
    #core-values {
        padding-block: 30px;

        .content {
            gap: 0px;

            .values {
                h4 {
                    margin: 0px auto 30px;
                }

                .values-cards {
                    padding-bottom: 30px;

                    .row-one,
                    .row-two {
                        justify-content: center;
                        flex-wrap: wrap;

                        .card {
                            width: 100%;

                            .icon {
                                margin-bottom: 20px;
                            }

                            .title {
                                font-size: 16px;
                            }
                        }
                    }

                    .row-two {
                        position: relative;
                    }
                }
            }

            .image {
                display: none;
            }
        }
    }
}


















#self-intro {
    padding-block: 100px;
    margin-top: -50px;
    background: var(--b-gradient);
    color: white;
  
    .content {
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
      gap: 100px;
  
      .ceo {
        .ceo-image {
          max-width: 400px;
          max-height: 420px;
          overflow: hidden;
          border-radius: var(--main-radius);
          margin-bottom: 10px;
  
          img {
            border-radius: var(--main-radius);
            width: 100%;
          }
        }
  
        .ceo-title {
          width: 300px;
          margin: auto;
          font-weight: 600;
          font-size: 25px;
          line-height: 30px;
          text-align: center;
  
          span {
            font-size: 18px;
            font-weight: normal;
          }
        }
      }
  
      .text {
        font-weight: 600;
        line-height: 24px;
  
        .para {
          margin: 20px auto;
        }
      }
    }
  
  }
  /*============== 
    TV Screens 
  ================*/
  @media(min-width: 1441px) {
  
    /* styling hero section */
    #hero {
      .hero-section {
        .info {
          flex: 1;
        }
  
        .image {
          flex: 1;
        }
      }
    }
  
    /* styling services section */
    #services {
      .cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
  
        .card {
          max-height: 400px;
        }
      }
    }
  
    /* styling testimonial section */
    .swiper {
      height: 700px !important;
    }
  
    /* styling mission section */
    #mession {
      .content {
        gap: 50px;
  
        .info {
          flex: 1;
  
        }
  
        .image {
          flex: 1;
          padding-inline-end: 100px;
  
          &::after {
            left: -100px;
            width: 300px;
            height: 100%;
          }
  
          .doc-image {
            width: 650px;
            height: 450px;
          }
        }
      }
    }
  
    /* styling vision section */
    #vision {
      .content {
        gap: 10px;
  
        .info {
          flex: 1;
        }
  
        .image {
          flex: 1;
          padding-inline-start: 150px;
  
          &::after {
            right: -100px;
            width: 200px;
            height: 100%;
          }
  
          .doc-image {
            width: 650px;
            height: 450px;
          }
        }
      }
    }
  
    /* styling core values section */
    #core-values {
      padding-block: 50px;
  
      .content {
        gap: 50px;
  
        .values {
          flex: 1;
  
          .values-cards {
            padding-bottom: 100px;
  
            .row-one,
            .row-two {
              gap: 30px;
  
              .card {
                padding: 35px 60px;
  
                .icon {
                  margin-bottom: 30px;
                }
  
                .title {
                  font-size: 30px;
                }
              }
            }
  
            .row-two {
              bottom: 40px;
            }
          }
        }
  
        .image {
          flex: 1;
          max-width: 700px;
  
          img {
            width: 100%;
          }
        }
      }
    }
  }
  
  /*============== 
    Extra Large 
  ================*/
  @media(max-width: 1440px) {
    /*  */
  }
  
  /*============== 
       Large 
  ================*/
  @media(max-width: 1280px) {
  
    /* styling mession section */
    #mession {
      .content {
        .info {
          width: 50%;
  
          button {
            margin-top: 50px;
          }
        }
  
        .image {
          width: 50%;
          padding-inline-end: 40px;
  
          &::after {
            width: 70px;
            height: 100%;
          }
  
          .doc-image {
            width: 100%;
            height: 100%;
            max-width: 550px;
            max-height: 350px;
  
          }
        }
      }
    }
  
    /* styling vision section */
    #vision {
      .content {
        .info {
          button {
            margin-top: 50px;
          }
        }
  
        .image {
          padding-inline-start: 40px;
  
          &::after {
            width: 70px;
            height: 100%;
          }
  
          .doc-image {
            width: 100%;
            height: 100%;
            max-width: 550px;
            max-height: 350px;
          }
        }
      }
    }
  
    /* styling core values section */
    #core-values {
      padding-block: 30px;
  
      .content {
        .values {
          .values-cards {
            padding-bottom: 50px;
  
            .row-two {
              position: relative;
            }
          }
        }
      }
    }
  }
  
  /*============== 
       Medium 
  ================*/
  @media(max-width: 1025px) {
  
    /* styling hero section */
    #hero {
      padding-top: 40px;
  
      &::after,
      &::before {
        display: none;
      }
  
      .hero-section {
        gap: 50px;
  
        .image {
          display: none;
        }
  
        .info {
          margin: 0;
        }
      }
    }
  
    /* styling mession section */
    #mession {
      .content {
        gap: 30px;
  
        .info {
          width: 80%;
          text-align: center;
  
          h4 {
            margin-inline: auto;
            margin-bottom: 10px;
          }
  
          button {
            margin-top: 50px;
          }
        }
  
        .image {
          padding-inline-end: 40px;
  
          &::after {
            width: 70px;
            height: 100%;
          }
  
          .doc-image {
            width: 100%;
            height: 100%;
            max-width: 650px;
            max-height: 510px;
  
            img {
              width: 100%;
            }
          }
        }
      }
    }
  
    /* styling vision section */
    #vision {
      .content {
        gap: 30px;
  
        .info {
          text-align: center;
  
          h4 {
            margin-inline: auto;
            margin-bottom: 10px;
          }
  
          button {
            margin-top: 50px;
          }
        }
  
        .image {
          padding-inline-start: 40px;
  
          &::after {
            width: 70px;
            height: 100%;
          }
  
          .doc-image {
            width: 100%;
            height: 100%;
            max-width: 650px;
            max-height: 510px;
          }
        }
      }
    }
  
    /* styling core values section */
    #core-values {
  
      .content {
  
        .values {
          width: 100%;
  
          h4 {
            margin: 30px;
          }
  
          .values-cards {
            padding-bottom: 80px;
  
            .row-one,
            .row-two {
              justify-content: center;
              flex-wrap: wrap;
            }
  
            .row-two {
              position: relative;
            }
          }
        }
  
        .image {
          display: none;
        }
      }
    }
  
  }
  
  /*============== 
      Tablet 
  ================*/
  @media(max-width: 768px) {
  
    /* styling hero section */
    #hero {
      padding-block: 40px;
  
      &::after,
      &::before {
        display: none;
      }
  
      .hero-section {
        text-align: center;
        flex-direction: column;
        gap: 30px;
  
        .image {
          display: none;
        }
  
        .info {
          margin: 0;
  
          .content {
            h4 {
              font-size: 20px;
  
            }
  
            .ctm-accordian {
              text-align: start;
  
              .title {
                font-size: 14px;
              }
            }
          }
        }
  
        .quote {
          max-width: 450px;
        }
      }
    }
  
    /* styling self intro section */
    #self-intro {
      padding-block: 100px;
  
      .content {
        flex-direction: column;
        gap: 30px;
  
        .ceo {
          .ceo-image {
            min-width: 400px;
            min-height: 420px;
          }
  
          .ceo-title {
            width: 300px;
          }
        }
  
        .text {
          text-align: center;
  
          .para {
            margin: 20px auto;
          }
        }
      }
  
    }
  
    /* styling services section */
    #services {
      padding-top: 100px;
  
      .head {
        justify-content: center;
        flex-direction: column;
        text-align: center;
  
        .title {
          font-size: 30px;
        }
  
        .description {
          margin-top: 15px;
          font-size: 16px;
          width: 100%;
          padding-inline: 0px;
        }
      }
  
      .cards {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  
      }
    }
  
    /* styling mission section */
    #mession {
      padding-block: 40px;
  
      .content {
        flex-direction: column-reverse;
        gap: 40px;
  
        .info {
          text-align: center;
  
          h4 {
            margin-inline: auto;
            margin-bottom: 10px;
          }
  
          button {
            margin-top: 30px;
          }
        }
  
        .image {
          padding: 0;
  
          &::after {
            width: 0;
            height: 0;
          }
  
        }
      }
    }
  
    /* styling vision section */
    #vision {
      padding-block: 40px;
  
      .content {
        flex-direction: column;
        gap: 40px;
  
        .info {
          text-align: center;
  
          h4 {
            margin-inline: auto;
            margin-bottom: 10px;
          }
  
          button {
            margin-top: 30px;
          }
        }
  
        .image {
          padding: 0;
  
          &::after {
            width: 0;
            height: 0;
          }
  
          .doc-image {
            width: 100%;
            height: 100%;
            max-width: 650px;
            max-height: 510px;
          }
        }
      }
    }
  
    /* styling core values section */
    #core-values {
      padding-block: 30px;
  
      .content {
        gap: 0px;
  
        .values {
          h4 {
            margin: 30px auto;
          }
  
          .values-cards {
  
            .row-one,
            .row-two {
              justify-content: center;
              flex-wrap: wrap;
  
              .card {
  
                .icon {
                  margin-bottom: 20px;
                }
  
                .title {}
              }
            }
  
            .row-two {
              position: relative;
            }
          }
        }
  
        .image {
          display: none;
        }
      }
    }
  }
  
  /*============== 
       Mobile 
  ================*/
  @media(max-width: 576px) {
  
    /* styling hero section */
    #hero {
      padding-block: 40px;
  
      &::after,
      &::before {
        display: none;
      }
  
      .hero-section {
        text-align: center;
        flex-direction: column;
        gap: 30px;
  
        .image {
          display: none;
        }
  
        .info {
          min-width: 200px;
          margin: 0;
  
          .title {
            font-size: 20px;
            line-height: 30px;
          }
  
          .ctm-accordian {
            text-align: start;
          }
        }
      }
    }
  
    /* styling self intro section */
    #self-intro {
      padding-block: 100px;
  
      .content {
        flex-direction: column;
        gap: 0px;
  
        .ceo {
          margin-bottom: 20px;
  
          .ceo-image {
            text-align: center;
            width: auto;
            min-height: fit-content;
  
            img {
              max-width: 250px;
            }
          }
  
          .ceo-title {
            width: 250px;
            font-size: 20px;
            span {
              margin-bottom: 10px;
            }
          }
        }
  
        .text {
          text-align: center;
  
          .para {
            margin: 20px auto;
          }
        }
      }
  
    }
  
    /* styling self intro section */
    #self-intro {
        background: var(--b-gradient);
  
      .ceo {
        margin-bottom: 30px;
      }
  
      .text {
        width: 100%;
      }
    }
  
    /*  styling testimonial section */
    #testimonial {
      .swiper {
        height: 300px;
  
        .swiper-button-next,
        .swiper-button-prev {
          max-width: 40px;
          max-height: 40px;
          min-width: 40px;
          min-height: 40px;
          padding: 10px !important;
  
          &::after {
            font-size: 16px;
          }
        }
  
        .swiper-button-prev {
          left: 50px !important;
        }
      }
    }
  
    /* styling mission section */
    #mession {
      padding-block: 30px;
  
      .content {
        flex-direction: column-reverse;
        gap: 40px;
  
        .info {
          text-align: center;
  
          h4 {
            margin-inline: auto;
            margin-bottom: 10px;
          }
  
          button {
            margin-top: 40px;
          }
        }
  
        .image {
          width: 100%;
          padding-inline-end: 0;
  
          &::after {
            width: 0;
            height: 0;
          }
  
          .doc-image {
  
            img {
              max-width: 100%;
              max-height: 100%;
            }
          }
        }
      }
    }
  
    /* styling vision section */
    #vision {
      padding-block: 30px;
  
      .content {
        flex-direction: column;
        gap: 20px;
  
        .info {
          text-align: center;
  
          h4 {
            margin-inline: auto;
            margin-bottom: 10px;
          }
  
          button {
            margin-top: 40px;
          }
        }
  
        .image {
          padding: 0;
  
          &::after {
            width: 0;
            height: 0;
          }
  
          .doc-image {
  
       %