@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body{
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    box-sizing: content-box;
    font-family: "Merriweather Sans", serif;
}

.navbar-expand-lg .offcanvas {
    flex-grow: 0;
}

ul {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
}
.wow {
    visibility: hidden;
  }
.tophead {
    background: linear-gradient(45deg, #a54585 50%, #a54585 50%);
    /* background: linear-gradient(45deg, #fff 85%, #000 25%); */
    padding: 10px 2%;
}

.tophead ul {
    margin: 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tophead ul li span {
    width: 1px;
    height: 20px;
    display: block;
    background-color: #ffffff87;
}

.tophead ul i {
    margin-right: 5px;
}

.tophead ul a {
    color: #fff;
}

.tophead .social a {
    margin: 0 10px;
}

.header-logo img {
    width: 150px;
}

.nav-link {
    font-family: "Merriweather Sans", serif;
    color: #07539a;
    font-weight: 500;
    margin-left: 16px;
}

.space {
    padding: 80px 0;
}

.about-box {
    padding: 0 0 0 50px;
}

.about-box h3 {
    font-family: "Merriweather Sans", serif;
    font-weight: bold;
    margin-bottom: 40px;
    font-size: 60px;
    color: #005197;
}

.custom-btn {
    font-family: "Merriweather Sans", serif;
    background: #f5811c;
    color: white;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 10px;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
}

.custom-btn .icon {
    background: #ec008b;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 10px;
    right: 0.3em;
    transition: all 0.3s;
}


.custom-btn:hover .icon {
    width: calc(100% - 0.6em);
}

.custom-btn .icon i {
    width: 1.1em;
    transition: transform 0.3s;
    color: #fff;
}

.custom-btn:hover .icon i {
    transform: translateX(0.1em);
}

.custom-btn:active .icon {
    transform: scale(0.95);
}

.about-img {
    position: relative;

}

.about-img .main-img img {
    transition: 1s;
    width: 100%;
    object-fit: contain;
}

.about-img .main-img {
    animation: moveTopBottom 4s ease-in-out infinite;
    transition: 1s;
    border: 8px solid #fff;
    border-radius: 20px;
    -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.about-img .main-img img:hover {
    transition: 1s;
    transform: scale(1.1) translate(0px, -20px);
}

.about-img .shape-1 img {
    position: absolute;
    bottom: -10%;
    z-index: -1;
    left: -10%;
    filter: brightness(0) saturate(100%) invert(76%) sepia(74%) saturate(1946%) hue-rotate(354deg) brightness(104%) contrast(102%);
    animation: moveTopBottom 4s ease-in-out infinite;
}

.about-img .shape-2 img {
    position: absolute;
    top: -10%;
    z-index: -1;
    right: -10%;
    filter: brightness(0) saturate(100%) invert(76%) sepia(74%) saturate(1946%) hue-rotate(354deg) brightness(104%) contrast(102%);
    animation: moveTopBottom 4s ease-in-out infinite;
}

@keyframes moveTopBottom {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-10px);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 0.8;
    }
}

.headline_title h3 {
    font-family: "Merriweather Sans", serif;
    font-size: 44px;
    font-weight: bold;
}

.expertise {
    height: 100%;
    border: 1px solid #ffffffa1;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.expertise .icons {
    width: 40px;
    min-width: 40px;
    height: 40px;
    color: #005197;
    background: #ffffffa1;

    border-radius: 50%;
    display: grid;
    place-content: center;
}

.expertise .content h3 {
    font-family: "Merriweather Sans", serif;
    color: #fff;
    font-size: 18px;
}

.expertise .content p {
    font-size: 14px;
    color: #fff;
}

.expertise-img img {
    border-radius: 20px;
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: fill;
}

.services-box {
    padding-top: 50px;
}

.services-box-btn a {
    border-left: 1px solid #504d4d7d;
    padding: 10px 20px;
}

.services-box-btn a.active {
    background-color: #ffe5f4;
    border-left: 5px solid #ed0189;
    border-top: 1px solid #ed0189;
    border-right: 1px solid #ed0189;
    border-bottom: 1px solid #ed0189;
}

.services-box-btn h3 {
    font-weight: bold;
    color: #000;
    font-size: 16px;
}

.services-box-btn p {
    font-weight: 100;
    font-size: 14px;
    margin: 0;
    color: #504d4d;
}

.why_choose_us {
    padding: 20px;
    border: 1px solid #c6c6c6;
    height: 100%;
    border-radius: 16px;
}

.why_choose_us .counter {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 20px;
}

.why_choose_us h3 {
    font-size: 18px;
}

.why_choose_us p {
    margin: 0;
    font-weight: 100;
}

.call_to_action {
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background: linear-gradient(180deg, #014f99, #01284c 47.92%, #000000);
}

.call_to_action h2 {
    line-height: 1.5;
}
.services-box .tab-content img{
  object-fit: contain;
    height: 500px;
}













.footer-two {
    padding-top: 100px;
    background-color: #122f2a;
    position: relative;
    z-index: 1;
}

.footer-two .footer-two__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    padding: 10px 0px;
}

.footer-two .footer-two__widget .footer-two__widget-logo {
    margin-bottom: 30px;
}

.footer-two__widget-logo a {
    margin: 0 auto;
    display: block;
}

.footer-two__widget-logo a img {
    width: 150px;
    margin: 0 auto;
    display: block;
}

.footer-two .footer-two__widget p {
    color: #fff;
    font-weight: 100;
    font-size: 14px;
    line-height: 1.5;
}

.footer-two .footer-two__widget .social {
    gap: 14px;
    margin-top: 35px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.footer-two .footer-two__widget .social a {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 14px;
}

.footer-two .footer-two__widget .footer-two__widget-intro {
    margin-bottom: 30px;
}

.footer-two .footer-two__widget h5 {
    font-weight: 800;
    color: white;
    margin-top: -8px;
}

.footer-two .footer-two__widget .line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
}

.footer-two .footer-two__widget .large-line {
    width: 50px;
}

.footer-two .footer-two__widget span {
    background-color: #f97f18;
    height: 2px;
    width: 10px;
}

.footer-two .footer-two__widget span {
    background-color: #f97f18;
    height: 2px;
    width: 10px;
}

.footer-two .footer-two__widget span {
    background-color: #f97f18;
    height: 2px;
    width: 10px;
}

.footer-two .footer-two__widget li {
    margin-bottom: 12px;
}

.footer-two .footer-two__widget li a {
    font-size: 14px;
    color: #FFF;
    position: relative;
}

.footer-two .footer-two__widget li a:hover {
    color: #f97f18;
}

.footer-two .footer-two__widget li a i {
    margin: 0 5px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.footer-two__widget-content--contact i {
    transform: rotate(0deg) !important;
}

.footer-two .footer-two__copyright-inner p {
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.footer-two .footer-two__copyright-inner p a {
    color: #f97f18;
}

.footer-two .footer-two__widget .social a:hover {
    background-color: #f97f18;
    color: white;
    border-color: #f97f18;
}


.common-banner {
    padding: 80px 0px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.common-banner::before {
    content: "";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background: #122f2ad1;
    /* background: linear-gradient(-104deg, rgba(12, 26, 23, 0) 1.9%, rgba(9, 31, 27, 0.48) 37.31%, rgba(9, 31, 27, 0.17) 40.18%, rgba(9, 31, 27, 0.37) 47.05%, rgba(9, 31, 27, 0.67) 56.36%, #091f1b 73.4%, #091f1b 95.2%, rgba(9, 31, 27, 0.91) 103.44%); */
    z-index: -2;
}

.common-banner .banner-bg {
    position: absolute;
    inset: 0px;
    z-index: -3;
    overflow: hidden;
}

.common-banner .banner-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.common-banner ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
}

.common-banner ul a {
    color: #f97f18;
    font-weight: 800;
}

.common-banner h2 {
    font-size: 50px;
    color: #ffffff;
    font-weight: 800;
    line-height: 95px;
}

.contact-info-item {
    border: 2px solid #153c331a;
    border-radius: 30px;
    padding: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
}

.contact-info-item .icon-box {
    background: #e1f3fb;
    border-radius: 10px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-info-item .icon-box img {
    max-width: 30px;
}

.contact-info-item .contact-info-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.contact-info-item .contact-info-content p {
    margin: 0;
}

.contact-form {
    margin-left: 25px;
}

.section-title {
    margin-bottom: 30px;
}

.section-title h3 {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    background-color: #e1f3fb;
    color: #45b2e7;
    border-radius: 99px;
    padding: 10px 20px;
    margin-bottom: 20px;
}

.contact-form .form-control {
    padding: 15px 20px;
    background-color: transparent;
    border: 2px solid #153c331a;
    border-radius: 10px;
    color: #2d3e68;
    box-shadow: none;
}



.about-box h3 {
    color: #f5811e;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 40px;
}

.missionvision {
    transition: 0.5s;
    border-top: 2px solid #f5811e;
    padding-top: 16px;
}

.missionvision img {
    margin-bottom: 20px;
    width: 100%;
    object-fit: cover;
    height: 250px;
}

.missionvision span {
    color: #f5811e;
    font-weight: 600;
}

.missionvision h5 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.missionvision:hover {
    padding: 10px;
    background-color: #f5811e2b;
    transition: 0.5s;
    transform: translate(5px, 5px) scale(1.02);
}

.testimonial-header .testimonial-content p {
    color: #000;
    font-weight: 100;
    margin: 0;
}

.testimonial-item {
    background: #ffffff;
    border: 1px solid #f5811e;
    border-radius: 30px;
    padding: 40px;
}

.testimonial-body .author-content {
    width: calc(100% - 66px);
}

.testimonial-body {
    gap: 20px;
    display: flex;
    align-items: center;
}

.testimonial-body .author-image img {
    width: 40px;
    height: 40px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-rating {

    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #f5811e;
}

.testimonial-body .author-content h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
}

.education_list ul li {
    margin-bottom: 30px;
    border-bottom: 1px solid #cdcdcd;
}

.education_list ul li:last-child {
    border-bottom: 0;
}

.education_list ul li h3 {
    color: #03a9ec;
    font-size: 18px;
    font-weight: bold;
}

.education_list ul li p {
    font-weight: 200;
}

.awards {
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #ec0b8f;
    border-radius: 20px;
}

.awards h3 {

    font-size: 18px;
    font-weight: bold;
}

.awards p {
    margin-bottom: 0;
}

.errorMsgArrow {
    color: red;
    font-size: 14px;
    font-weight: 100;
}

@media (max-width:1080px) {

    .headline_title h3 {
        font-size: 36px;
    }
}

@media (max-width:991px) {
    .tophead {
        display: none;
    }

    .about-box h3 {
        font-size: 36px;
    }

    .headline_title h3 {
        font-size: 28px;
    }

    .expertise {
        display: block;
    }

    .expertise .icons {
        margin-bottom: 1rem;
    }






























}


@media (max-width:480px){
    .about-box h3 {
        font-size: 30px;
        margin: 20px 0;
    }
}

.timeline {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    position: relative;
  }
  .timeline__event {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    border-radius: 6px;
    align-self: center;
  }
  .timeline__event:nth-child(2n+1) {
    flex-direction: row-reverse;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__date {
    border-radius: 0 6px 6px 0;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__content {
    border-radius: 6px 0 0 6px;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__icon:before {
    content: "";
    width: 2px;
    height: 100%;
    background: #f6a4ec;
    position: absolute;
    top: 0%;
    left: 50%;
    right: auto;
    z-index: -1;
    transform: translateX(-50%);
    -webkit-animation: fillTop 2s forwards 4s ease-in-out;
            animation: fillTop 2s forwards 4s ease-in-out;
  }
  .timeline__event:nth-child(2n+1) .timeline__event__icon:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #f6a4ec;
    position: absolute;
    right: 0;
    z-index: -1;
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    -webkit-animation: fillLeft 2s forwards 4s ease-in-out;
            animation: fillLeft 2s forwards 4s ease-in-out;
  }
  .timeline__event__title {
    font-size: 16px;
    color: #9251ac;
    font-weight: bold;
    margin-bottom: 12px;
  }
  .timeline__event__content {
    padding: 20px;  
    background: #fff;
    width: calc(40vw - 84px);
    border-radius: 0 6px 6px 0;
  }
  .timeline__event__date {
    color: #f6a4ec;
    font-size: 1.5rem;
    font-weight: 600;
    background: #9251ac;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 20px;
    border-radius: 6px 0 0 6px;
  }
  .timeline__event__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9251ac;
    padding: 20px;
    align-self: center;
    margin: 0 20px;
    background: #f6a4ec;
    border-radius: 100%;
    width: 40px;
    padding: 40px;
    height: 40px;
    position: relative;
  }
  .timeline__event__icon i {
    font-size: 32px;
  }
  .timeline__event__icon:before {
    content: "";
    width: 2px;
    height: 100%;
    background: #f6a4ec;
    position: absolute;
    top: 0%;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    -webkit-animation: fillTop 2s forwards 4s ease-in-out;
            animation: fillTop 2s forwards 4s ease-in-out;
  }
  .timeline__event__icon:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #f6a4ec;
    position: absolute;
    left: 0%;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    -webkit-animation: fillLeftOdd 2s forwards 4s ease-in-out;
            animation: fillLeftOdd 2s forwards 4s ease-in-out;
  }
  .timeline__event__description {
    flex-basis: 100%;
  }
  .timeline__event__description p{
    margin: 0;
    font-weight: 200;
    font-size: 14px;
  }
  .timeline__event--type2:after {
    background: #555ac0;
  }
  .timeline__event--type2 .timeline__event__date {
    color: #87bbfe;
    background: #555ac0;
  }
  .timeline__event--type2:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type2:nth-child(2n+1) .timeline__event__icon:after {
    background: #87bbfe;
  }
  .timeline__event--type2 .timeline__event__icon {
    background: #87bbfe;
    color: #555ac0;
  }
  .timeline__event--type2 .timeline__event__icon:before, .timeline__event--type2 .timeline__event__icon:after {
    background: #87bbfe;
  }
  .timeline__event--type2 .timeline__event__title {
    color: #555ac0;
  }
  .timeline__event--type3:after {
    background: #24b47e;
  }
  .timeline__event--type3 .timeline__event__date {
    color: #aff1b6;
    background-color: #24b47e;
  }
  .timeline__event--type3:nth-child(2n+1) .timeline__event__icon:before, .timeline__event--type3:nth-child(2n+1) .timeline__event__icon:after {
    background: #aff1b6;
  }
  .timeline__event--type3 .timeline__event__icon {
    background: #aff1b6;
    color: #24b47e;
  }
  .timeline__event--type3 .timeline__event__icon:before, .timeline__event--type3 .timeline__event__icon:after {
    background: #aff1b6;
  }
  .timeline__event--type3 .timeline__event__title {
    color: #24b47e;
  }
  .timeline__event:last-child .timeline__event__icon:before {
    content: none;
  }

  
  
  @media (max-width: 786px) {
    .timeline__event {  width: 100%;
      flex-direction: column;
      align-self: center;
    }
    .timeline__event__content {
      width: 100%;
    }
    .timeline__event__icon {
      border-radius: 6px 6px 0 0;
      width: 100%;
      margin: 0;
      box-shadow: none;
    }
    .timeline__event__icon:before, .timeline__event__icon:after {
      display: none;
    }
    .timeline__event__date {
      border-radius: 0;
      padding: 20px;
    }
    .timeline__event:nth-child(2n+1) {
      flex-direction: column;
      align-self: center;
    }
    .timeline__event:nth-child(2n+1) .timeline__event__date {
      border-radius: 0;
      padding: 20px;
    }
    .timeline__event:nth-child(2n+1) .timeline__event__icon {
      border-radius: 6px 6px 0 0;
      margin: 0;
    }
  }
  @-webkit-keyframes fillLeft {
    100% {
      right: 100%;
    }
  }
  @keyframes fillLeft {
    100% {
      right: 100%;
    }
  }
  @-webkit-keyframes fillTop {
    100% {
      top: 100%;
    }
  }
  @keyframes fillTop {
    100% {
      top: 100%;
    }
  }
  @-webkit-keyframes fillLeftOdd {
    100% {
      left: 100%;
    }
  }
  @keyframes fillLeftOdd {
    100% {
      left: 100%;
    }
  }