body{font:18px/20px "Microsoft YaHei", Arial, sans-serif;}
html {
  scroll-behavior: smooth;
}
.btn-holder{
  display: flex;
  gap: 15px;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.cta:hover {
  text-decoration: none;
  color: #fff;
}
.primary-btn,
.primary-btn:focus {
  min-width: 255px;
  background-color: #0062ff;
  border: 1px solid #0062ff;
  color: #fff;
  align-self: self-start;
  font-size: 14px;
  font-weight: bold;
  outline: none;
}
.primary-btn:hover {
  box-shadow: 0 30px 22px -20px #788ace;
}

.secondary-btn,
.secondary-btn:focus {
  min-width: 200px;
  background-color: #ffffff;
  border: 1px solid #0062ff;
  color: #0062ff;
  align-self: self-start;
  font-size: 20px;
}
.secondary-btn:hover {
  box-shadow: 0 30px 22px -20px #788ace;
  color: #0062ff;

}
section {
  padding: 90px 0 0 0;
}
section h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 32px;
  color: #13161b;
}
@media (max-width: 768px) {
  section h2 {
  font-size: 24px;
  line-height: 32px;
  }
  .btn-holder{
    flex-direction: column;
  }
  .secondary-btn, .primary-btn{
    width: 100%;
    text-align: center;
  }
}
#hm-aboutus .aboutus-title{
      background: url(../../../../images/about-us-drop.png) no-repeat scroll 132px 23px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-60 {
  margin-top: 60px;
}
/* hero section start */
.hero-section{
    padding: 28px 0 0 0;
    background: linear-gradient( 180deg,#FFFFFF 0%, #F8FBFF 18%, #EAF4FF 45%, #F2F8FF 68%, #FFFFFF 100%
  );
}
.hero-text {
  padding:25px 40px 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 36px;
  color: #020618;
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 40px;
  color: #020618;
}

.hero-btn {
  border-radius: 50px;
  padding: 10px 30px;
}

.stats-list {
  list-style: none;
  padding: 0 10px;
  margin: 0;
  display: flex;
  gap: 24px;
  margin-top: 50px;
}

.stat-item {
  padding: 0 40px 0 0;
  border-right: 1px solid #CAD5E7;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  background: linear-gradient(
        288.2deg,
        #7C86FF 7.01%,
        #372AAC 96.7%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.stat-label {
  display: block;
  color: #051E57;
  font-size: 14px;
  line-height: 20px;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .hero-section{
  padding: 20px;
}
  .hero-title {
    font-size: 28px;
  }

}

@media (max-width: 767px) {
  .hero-text {
    padding: 0;
  }

  .hero-btn {
    display: block;
    width: 100%;
  }
}
/* hero section end */

/* services offered section start  */
.services-offered-section {
    width: 100%;
    box-sizing: border-box;
}

.service-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    box-sizing: border-box;
}

.s-card {
    min-width: 0;
    background: #ffffff;
    border: 1px solid #CAD5E2;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    min-height: 350px;
}

.service-icon {
    margin-bottom: 12px;
}
.s-card h3 {
    margin: 0 0 12px;
    color: #071b41;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.s-card p {
    margin: 0 0 2px;
    color: #101522;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.s-card p + p {
    margin-top: 0;
}

@media (min-width: 1200px) {
    .service-container {
        gap: 20px;
    }

    .s-card {
        padding-left: 23px;
        padding-right: 23px;
    }
}

@media (max-width: 991px) {
    .service-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .s-card {
        height: auto;
        min-height: 320px;
    }
}

@media (max-width: 575px) {
    .service-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .s-card {
        height: auto;
        min-height: unset;
        padding: 20px;
    }

    .service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 13px;
    }

    .s-card h3 {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .s-card p {
        font-size: 15px;
        line-height: 1.55;
    }
}
/* service offered section end */

/* ai-tools-section start */
.ai-tools-section {
    width: 100%;
    box-sizing: border-box;
    color: #020618;
}
.ai-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 23px;
    box-sizing: border-box;
}
.ai-tool-card {
    box-sizing: border-box;
    min-width: 0;
    min-height: 181px;
    padding: 25px 23px 20px;
    border-radius: 10px;
    border: 1px solid transparent;
}
/* .ai-tool-card:nth-child(1),
.ai-tool-card:nth-child(2),
.ai-tool-card:nth-child(3) {
    grid-column: span 2;
}
.ai-tool-card:nth-child(4) {
    grid-column: 2 / span 2;
}
.ai-tool-card:nth-child(5) {
    grid-column: 4 / span 2;
} */
.ai-tool-card h3 {
    margin: 0 0 14px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}
.ai-tool-card p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
.card-yellow {
    background: #FFFBEB;
    border-color: #FEF3C6;
}
.card-blue {
    background: #F0F9FF;
    border-color: #DFF2FE;
}
.card-green {
    background: #F7FEE7;
    border-color: #ECFCCA;
}
.card-purple {
    background: #F5F3FF;
    border-color: #EDE9FE;
}
.card-pink {
    background: #FEF2F2;
    border-color: #FFE2E2;
}

@media (min-width: 1200px) {
    .ai-tools-grid {
        gap: 23px;
    }
}

@media (max-width: 991px) {
    .ai-tools-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    .ai-tools-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .ai-tool-card:nth-child(1),
    .ai-tool-card:nth-child(2),
    .ai-tool-card:nth-child(3),
    .ai-tool-card:nth-child(4),
    .ai-tool-card:nth-child(5) {
        grid-column: auto;
    }
    .ai-tool-card {
        min-height: 180px;
    }
}

@media (max-width: 575px) {
    .ai-tools-title {
        font-size: 22px;
        line-height: 1.45;
        margin-bottom: 20px;
    }
    .ai-tools-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .ai-tool-card {
        min-height: unset;
        padding: 20px 18px;
    }
    .ai-tool-card h3 {
        font-size: 17px;
        line-height: 1.45;
        margin-bottom: 10px;
    }
    .ai-tool-card p {
        font-size: 15px;
        line-height: 1.55;
    }
}
/* ai-tools-section end */

/* sample section start */
.sample-section .sample-image{
  border-radius: 20px;
  border: 1px solid #CAD5E2;
  padding: 26px;

}
/* sample section end */

/* ai comparision section start */

.ai-comparison-section {
    position: relative;
    background: radial-gradient(ellipse at center, rgba(185, 220, 255, 0.95) 0%, rgba(201, 228, 255, 0.88) 42%, rgba(225, 241, 255, 0.55) 58%, rgba(245, 250, 255, 0.75) 72%, rgba(255, 255, 255, 0.98) 88%, #FFFFFF 100%); color: #020618;
}

.ai-comparison-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:radial-gradient(ellipse at center, transparent 48%, rgba(255, 255, 255, 0.45) 73%, #ffffff 100%);
}

.ai-comparison-container {
    position: relative;
}

.ai-comparison-heading {
    margin-bottom: 60px;
}

.ai-comparison-heading h2 {
    margin-bottom: 15px;
}

.ai-comparison-heading p {
    margin: 0;
    color: #23354a;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 600;
}

.comparison-wrapper {
    width: 100%;
    position: relative;
    overflow: visible;
}

.comparison-table {
    width: 100%;
    display: grid;
    grid-template-columns: 18.5% 33.5% 48%;
    grid-template-rows:92px 104px 104px 104px 104px;
    position: relative;
    border: 1px solid #cbd4df;
    border-radius: 12px;
    background: #ffffff;
    box-sizing: border-box;
    border-right: 0;
}
.comparison-cell {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 20px 22px;
    color: #111827;
    font-size: 18px;
    line-height: 1.45;
    border-right: 1px solid #d2d9e2;
}
.comparison-cell:nth-last-child(3) {
    border-bottom-left-radius: 10px;
}

.comparison-cell:first-child {
    border-top-left-radius: 10px;
}

.comparison-header {
    font-size: 21px;
    font-weight: 700;
    color: #1F2937;
    background: #ffffff;
    border-bottom: 1px solid #CBD5E1;
}

.comparison-item-header {
    justify-content: flex-start;
}

.ai-tool-header {
    justify-content: center;
    position: relative;
    border-top: 5px solid #d83d2f;
}

.post-ai-header {
    justify-content: center;
    position: relative;
    border-left: 1px solid #113DCD;
    border-right: 1px solid #113DCD;
    border-bottom: 1px solid #113DCD;
    border-radius: 0;
}

.comparison-item {
    background: #F7F9FF;
    font-weight: 700;
}

.ai-tool-cell {
    justify-content: center;
    text-align: center;
    background: #ffffff;
}

.expert-cell {
    justify-content: center;
    text-align: center;
    font-weight: 700;
    background: #ffffff;
    position: relative;
    z-index: 2;
    border-left: 1px solid #2465e8;
    border-right: 1px solid #2465e8;
}

.comparison-table::after {
    content: "";
    position: absolute;
    left: 52%;
    top: -25px;
    bottom: -24px;
    width: 48%;
    background: #ffffff;
    border-top: 5px solid #113DCD;
    border-left: 1px solid #113DCD;
    border-right: 1px solid #113DCD;
    border-bottom: 1px solid #113DCD;
    border-radius: 10px;
    box-sizing: border-box;
    z-index: 1;
    pointer-events: none;
}

.post-ai-header,
.expert-cell {
    z-index: 3;
}

@media (max-width: 991px) {

    .ai-comparison-section {
        padding: 50px 20px 45px;
        overflow: hidden;
    }
    .ai-comparison-heading {
        margin-bottom: 55px;
    }
    .ai-comparison-heading h2 {
        font-size: 31px;
    }
    .ai-comparison-heading p {
        font-size: 18px;
    }
    .comparison-wrapper {
        width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        width: 1370px;
        min-width: 1370px;
        grid-template-columns:
            18.5%
            33.5%
            48%;
        grid-template-rows:
            92px
            104px
            104px
            104px
            104px;
    }
    .comparison-cell {
        padding: 20px 22px;
        font-size: 18px;
    }
    .comparison-header {
        font-size: 21px;
    }
    .comparison-table::after {
        top: -25px;
        bottom: -24px;
        left: 52%;
        width: 48%;
    }
}

@media (max-width: 767px) {

    .ai-comparison-section {
        padding: 40px 15px;
        overflow: hidden;
    }

    .ai-comparison-heading {
        margin-bottom: 35px;
    }

    .ai-comparison-heading h2 {
        font-size: 25px;
        line-height: 1.4;
    }

    .ai-comparison-heading p {
        font-size: 16px;
        line-height: 1.5;
    }

    .comparison-wrapper {
        width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }


    .comparison-table {
        display: grid;
        width: 1370px;
        min-width: 1370px;
        grid-template-columns:
            18.5%
            33.5%
            48%;

        grid-template-rows:
            92px
            104px
            104px
            104px
            104px;

        gap: 0;
    }


    .comparison-cell {
        padding: 20px 22px;
        font-size: 18px;
        line-height: 1.45;
    }

    .comparison-header {
        font-size: 21px;
    }

    .comparison-table::after {
        display: block;
        top: -25px;
        bottom: -24px;
        left: 52%;
        width: 48%;
    }
}
/* ai comparision section end */

/* tabs and caruusel for expert section start */
.editor-section {
padding-bottom: 30px;
}
#expert-carousel .carousel-item {
  min-height: 200px;
  padding-top: 20px;
}
#expert-carousel .expert-profile-card {
  padding: 18px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
}
#expert-carousel .badge {
  background: linear-gradient(288.2deg, #7C86FF 7.01%, #372AAC 96.7%);
  position: absolute;
  top: 10px;
  right: 27px;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
}

.expert-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid #CAD5E2;
  color: #020618;
  min-height: 430px;
}
.expert-box .expert-info {
  display: flex;
  align-items: center;
}
.expert-box .expert-info .left-img {
  margin-right: 20px;
  position: relative;
  float: unset;
  width: unset;
  padding: 0;
}
.expert-box .expert-info .left-img .flag {
  position: absolute;
  border-radius: 9999px;
  background-repeat: no-repeat;
  right: 10px;
  bottom: 6px;
  background-image: url("../assets/images/flag-sprite.png");
  width: 28px;
  height: 28px;
  border: 2px solid #ffffff;
}
.expert-box .details {
    list-style: none;
    padding: 0;
    border-top: 1px solid #CAD5E2;
    border-bottom: 1px solid #CAD5E2;
    margin-top: 16px;
    margin-bottom: 16px;
    color: #020618;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
 .expert-box .details li {
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    width: auto;
    margin: 16px 0;
    text-align: left; 
    font-size: 13px;
  }
 .expert-box .details .icon {
    width: 20px;
    height: 20px;
    margin-right: 5px; 
    background-size: contain;
    flex-shrink: 0;
  }
  .expert-box .details .experience {
  background: url("../assets/images/expert.svg") no-repeat center;
}
.expert-box .details .quality {
  background: url("../assets/images/quality.svg") no-repeat center;
}
.expert-box .expert-info .left-img .flag.flag-us {
  background-position: -611px -507px;
}
.expert-box .expert-info .left-img .flag.flag-uk {
  background-position: -311px -7px;
}
.expert-box .expert-info .left-img .flag.flag-ro {
  background-position: -162px -357px;
}
.expert-box .expert-info .left-img .flag.flag-za {
  background-position: -262px -257px;
}
.expert-box .expert-info .left-img .flag.flag-fr {
  background-position: -212px -657px;
}
.expert-box .expert-info .left-img .flag.flag-au {
  background-position: -261px -407px;
}
.expert-box .expert-info .left-img .flag.flag-jp {
  background-position: -262px -307px;
}
.expert-box .expert-info .left-img .flag.flag-de {
  background-position: -462px -607px;
}
.expert-box .expert-info .left-img .flag.flag-it{
    background-position: -62px -357px;
}
.expert-box .expert-info .left-img .flag.flag-cn {
    background-position: -62px -557px;
}
.expert-box .expert-info .left-img .flag.flag-ng {
    background-position: -362px -407px;
}

.expert-box .expert-info .left-img span.lm {
  background-image: url("../assets/images/editors/laura-murley.webp");
}
.expert-box .expert-info .left-img span.al {
  background-image: url("../assets/images/editors/alexandre-lewalle.webp");
}
.expert-box .expert-info .left-img span.hw {
  background-image: url("../assets/images/editors/helen-whalley.webp");
}
.expert-box .expert-info .left-img span.rd {
  background-image: url("../assets/images/editors/rachel-daniels.webp");
}
.expert-box .expert-info .left-img span.sg {
  background-image: url("../assets/images/editors/susanna-gendreau.webp");
}
.expert-box .expert-info .left-img span.cl {
  background-image: url("../assets/images/editors/craig-layman.webp");
}
.expert-box .expert-info .left-img span.sb {
  background-image: url("../assets/images/editors/sotirios-botsios.webp");
}
.expert-box .expert-info .left-img span.tt {
  background-image: url("../assets/images/editors/talin-tasciyan.webp");
}
.expert-box .expert-info .left-img span.ap {
  background-image: url("../assets/images/editors/alexey-putov.webp");
}
.expert-box .expert-info .left-img span.br {
  background-image: url("../assets/images/editors/benjamin-ridgway.webp");
}
.expert-box .expert-info .left-img span.mv {
  background-image: url("../assets/images/editors/manlio-vinciguera.webp");
}
.expert-box .expert-info .left-img span.mk {
  background-image: url("../assets/images/editors/matthew-kirkman.webp");
}
.expert-box .expert-info .left-img span.ta {
  background-image: url("../assets/images/editors/todd-astorino.webp");
}
.expert-box .expert-info .left-img span.cs {
  background-image: url("../assets/images/editors/carl-schiesser.webp");
}
.expert-box .expert-info .left-img span.ei {
  background-image: url("../assets/images/editors/emmanuel-igumbor.webp");
}
.expert-box .expert-info .left-img span.ss {
  background-image: url("../assets/images/editors/simon-su.webp");
}
.expert-box .expert-info .left-img span.tx {
  background-image: url("../assets/images/editors/teng-xiao.webp");
}

.expert-box .expert-info .left-img span {
  width: 124px;
  height: 124px;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
}
.expert-box .expert-info .right-t-details h5 {
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.expert-box .expert-info .right-t-details span {
  display: block;
  font-size: 16px;
  padding-bottom:0;
  position: relative;
}

.expert-box .expert-edu {
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.expert-box .sub-area-list {
  line-height: 24px;
  font-size: 16px;
  font-weight: bold;
}

#expert-carousel .owl-stage {
  margin: 0 auto;
}
#expert-carousel .tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: no-repeat;
  border-radius: 10px;
  border: none;
  padding: 2px;
  width: 100%;
  margin: 20px auto;
}
#expert-carousel .tab-link {
    padding: 12px 20px;
    border: 1px solid #90A1B9;
    background: #ffffff;
    cursor: pointer;
    border-radius: 50px;
    width: 17%;
    color: #314158;
}
#expert-carousel .tab-link:hover {
  color: #0062FF;
  border: 1px solid #0062FF;
}
#expert-carousel .tab-link.active {
  color: #0062FF;
  border: 1px solid #0062FF;
}
#expert-carousel .carousel-container {
  display: none;
}
#expert-carousel .carousel-container.active {
  display: block;
  border: none;
}

#expert-carousel .owl-theme .owl-dots {
  margin-top: 10px;
}
#expert-carousel .owl-theme .owl-dots .owl-dot.active span {
  background: #113dcd !important;
}
#expert-carousel .owl-theme .owl-dots .owl-dot span {
  border-radius: 10px !important;
  width: 10px !important;
  height: 10px !important;
  background: #CAD5E2 !important;
}
#expert-carousel .owl-carousel {
  position: relative;
}
#expert-carousel .owl-carousel .owl-nav button.owl-next {
  background: url(../../../images/circle-arrow-blue-right.svg) no-repeat !important;
  width: 50px;
  height: 50px;
  color: transparent !important;
  position: absolute;
  right: -34px;
  top: 36%;
}
#expert-carousel .owl-carousel .owl-nav button.owl-prev {
  background: url(../../../images/circle-arrow-blue-left.svg) no-repeat !important;
  width: 50px;
  height: 50px;
  color: transparent !important;
  position: absolute;
  left: -20px;
  top: 36%;
}
#expert-carousel .owl-theme .owl-nav .disabled{
  display: none;
}
@media (max-width: 767px) {
  #expert-carousel .tabs{
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; 
    padding-bottom: 6px;
    justify-content: flex-start;
  }
  #expert-carousel .tab-link {
    width: auto;
  }

}
/* tabs and carousel for expert section end */

/* features section start */
    .features-section {
      background-image: linear-gradient(180deg,
      #fefeff 0%,
      #ffe78529 15%,
      #ffe78529 65%,
      #fefeff 100%);
      color: #020618;
    }
    .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: #ffffff;
      border: 1.5px solid #cccccc;
      border-radius: 12px;
    }

    .feature {
      min-width: 0;
      min-height: 430px;
      padding: 40px 24px;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
    }

    .feature:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 1px;
      height: 100%;
      background: #cbd6e5;
    }

    .feature-title {
      font-size: 18px;
      line-height: 28px;
      font-weight: 700;
      margin: 30px 0;
    }

    .feature-description {
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
    }
    .feature-description ul {
      padding-left: 26px;
      margin: 5px 0 2px;
    }

    .feature-description li {
      padding-left: 2px;
      margin-bottom: 1px;
      list-style-type: disc;

    }

    @media (max-width: 1100px) {
      .feature {
        min-height: 580px;
        padding: 38px 24px;
      }

      .icon-box {
        margin-bottom: 38px;
      }

      .feature-title {
        font-size: 22px;
        margin-bottom: 28px;
      }

      .feature-description {
        font-size: 17px;
        line-height: 1.58;
      }
    }

    @media (max-width: 780px) {
      .features {
        grid-template-columns: 1fr;
        border-radius: 16px;
      }

      .feature {
        min-height: auto;
        padding: 34px 28px 38px;
      }

      .feature:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;

        width: 100%;
        height: 1px;
      }

      .icon-box {
        width: 54px;
        height: 54px;
        margin-bottom: 25px;
      }

      .feature-title {
        font-size: 22px;
        margin-bottom: 20px;
      }

      .feature-description {
        font-size: 17px;
        line-height: 1.65;
      }
    }

    @media (max-width: 430px) {
      .feature {
        padding: 28px 22px 32px;
      }

      .icon-box {
        width: 50px;
        height: 50px;
        border-radius: 7px;
        margin-bottom: 22px;
      }

      .icon {
        width: 30px;
        height: 30px;
      }

      .feature-title {
        font-size: 20px;
        margin-bottom: 17px;
      }

      .feature-description {
        font-size: 16px;
        line-height: 1.68;
      }

      .feature-description ul {
        padding-left: 22px;
      }
    }
/* features section end  */

/* tabs and caruusel for service section start */

.service-block {
  background: #ffffff;
  padding-bottom: 30px;
}

#service-carousel .carousel-item {
  min-height: 200px;
  padding-top: 20px;
}

#service-carousel .expert-profile-card {
  padding: 18px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
}

#service-carousel .badge {
  background: linear-gradient(288.2deg, #7C86FF 7.01%, #372AAC 96.7%);
  position: absolute;
  top: 10px;
  right: 27px;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
}

.service-card {
  max-width: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #CAD5E2;
  color: #1F2937;
  transition: all 0.2s ease;
}

.service-card:hover {
  border: 1px solid #0062FF;
}

.service-card .card-badge {
  background: #EDF3FF;
  font-size: 12px;
  padding: 10px 16px;
  font-weight: bold;
}

.service-card .card-body {
  padding: 20px;
}

.service-card .card-body .content-block {
  min-height: 325px;
}

.service-card .card-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1f2933;
}

.service-card .card-desc {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 16px;
}

.service-card .card-subtitle {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #374151;
}

.service-card .feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.service-card .feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #1F2937;
  font-weight: normal;
}

.service-card .feature-list li::before {
  background: url(../assets/images/black-tick.svg) no-repeat center center;
  width: 11px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
}

.service-card .card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.service-card .btn-primary {
  background: #ffffff;
  color: #0062FF;
  border: 1px solid #0062FF;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-card .btn-primary:hover {
  background: #0062FF;
  color: #ffffff;
}

.service-card .btn-link {
  font-size: 14px;
  line-height: 20px;
  padding: 10px;
  color: #0062FF;
  text-decoration: none;
  font-weight: bold;
}

.service-card .btn-link:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .service-card {
    width: 100%;
  }

  .service-card .card-actions {
    flex-direction: column;
    gap: 10px;
  }

  .service-card .btn-primary {
    width: 100%;
    text-align: center;
  }
}

#service-carousel .owl-stage {
  margin: 0 auto;
}

#service-carousel .tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: no-repeat;
  border-radius: 10px;
  border: none;
  padding: 2px;
  width: 100%;
  margin: 20px auto;
}

#service-carousel .tab-link2 {
  padding: 12px 20px;
  border: 1px solid #90A1B9;
  background: #ffffff;
  cursor: pointer;
  border-radius: 50px;
  width: 17%;
  color: #314158;
}

#service-carousel .tab-link2:hover {
  color: #0062FF;
  border: 1px solid #0062FF;
}

#service-carousel .tab-link2.active {
  color: #0062FF;
  border: 1px solid #0062FF;
}

#service-carousel .carousel-container2 {
  display: none;
}

#service-carousel .carousel-container2.active {
  display: block;
  border: none;
}

#service-carousel .owl-theme .owl-dots {
  margin-top: 10px;
}

#service-carousel .owl-theme .owl-dots .owl-dot.active span {
  background: #113dcd !important;
}

#service-carousel .owl-theme .owl-dots .owl-dot span {
  border-radius: 10px !important;
  width: 10px !important;
  height: 10px !important;
  background: #CAD5E2 !important;
}

#service-carousel .owl-carousel {
  position: relative;
}

#service-carousel .owl-carousel .owl-nav button.owl-next {
  background: url(../../../images/circle-arrow-blue-right.svg) no-repeat !important;
  width: 50px;
  height: 50px;
  color: transparent !important;
  position: absolute;
  right: -34px;
  top: 36%;
}

#service-carousel .owl-carousel .owl-nav button.owl-prev {
  background: url(../../../images/circle-arrow-blue-left.svg) no-repeat !important;
  width: 50px;
  height: 50px;
  color: transparent !important;
  position: absolute;
  left: -20px;
  top: 36%;
}

#service-carousel .owl-theme .owl-nav .disabled {
  display: none;
}

@media (max-width: 767px) {
  #service-carousel .tabs {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    justify-content: flex-start;
  }

  #service-carousel .tab-link2 {
    width: auto;
  }

}
/* tabs and caruusel for service section end */

/* carousel for testimonial section start */
#carousel-section .owl-theme .owl-nav .disabled {
  display: none;
}

.testimonial-block {
  background-image: linear-gradient(180deg, #fefeff, #f1fafe 15% 75%, #f1fafeb3 90%, #fefeff);
  padding-bottom: 30px;
  color: #0F172B;
}

.testimonial-card {
  max-width: 100%;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #CAD5E2;
}

.testimonial-body {
  padding: 24px 22px 20px;
}

.testimonial-body .content {
  min-height: 250px;
}

.testimonial-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 26px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.author-info {
  display: flex;
  flex-direction: column;
  color: #374151;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
}

.author-org {
  font-size: 14px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  background: #e6edff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #2b5fd9;
}

.testimonial-footer {
  font-size: 16px;
  border-top: 1px solid #9CA3AF;
  padding-top: 15px;
}

.testimonial-footer a {
  color: #0062FF;
  text-decoration: none;
}

.testimonial-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .testimonial-card {
    width: 100%;
  }
  .testimonial-title {
    font-size: 20px;
  }
  .author-avatar {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}

/* carousel for testimonial section end */

/* subject area section start */

.subject-block {
  background: #ffffff;
}
.subject-title {
  text-align: center;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 40px;
}
.subject-holder {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.subject-item {
  display: flex;
  width: 20%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* CARD */
.subject-card {
  text-align: center;
}

.subject-icon {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 162px;
  height: 162px;
  margin: 0 auto 20px;
}

.icon-medicine {
  background-image: url("../assets/images/sub-icon1.png");
}

.icon-life {
  background-image: url("../assets/images/sub-icon2.png");
}

.icon-engineering {
  background-image: url("../assets/images/sub-icon3.png");
}

.icon-social {
  background-image: url("../assets/images/sub-icon4.png");
}

.icon-business {
  background-image: url("../assets/images/sub-icon5.png");
}
.subject-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1C4DC0;
}

.subject-meta {
  font-size: 16px;
  line-height: 24px;
  color: #020618;
}

.subject-meta span {
  font-weight: normal;
}
@media (max-width: 991px) {
  .subject-title {
    font-size: 26px;
  }

  .subject-icon {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 767px) {
  .subject-title {
    font-size: 22px;
    line-height: 1.4;
  }
  .subject-holder {
    flex-direction: column;
  }
  .subject-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .subject-card {
    display: flex;
    align-items: center;
    text-align: left;
  }

  .subject-icon {
    margin: 0;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .subject-content {
    padding-left: 15px;
  }
}
/* subject area section ends */

/* academic documents section start */
    .document-grid {
      display: flex;
      gap: 25px 40px;
      align-items: center;
      flex-wrap: wrap;
      width: 70%;
      margin: 0 auto;
      justify-content: center;
    }
    .document-card {
      border-radius: 21px;
      background: linear-gradient(300.37deg, #E3F0FF 26.64%, #FFFFFF 97.84%);
      display: flex;
      align-items: center;
      padding: 20px 16px;
    }
    .document-icon {
      width: 40px;
      height: 40px;
      margin-right: 14px;
      background-repeat: no-repeat;
      background-size: contain;
    }
    .doc1{
      background-image: url(../assets/images/doc1.svg);
    }
    .doc2{
      background-image: url(../assets/images/doc2.svg);
    }
    .doc3{
      background-image: url(../assets/images/doc3.svg);
    }
    .doc4{
      background-image: url(../assets/images/doc4.svg);
    }
    .doc5{
      background-image: url(../assets/images/doc5.svg);
    }
    .doc6{
      background-image: url(../assets/images/doc6.svg);
    }
    .doc7{
      background-image: url(../assets/images/doc7.svg);
    }

    .document-name {
      color: #1F2937;
      font-size: 20px;
      font-weight: 500;
      line-height: 30px;
      margin-bottom: 0;
    }

    @media (max-width: 1100px) {
      .academic-documents {
        padding: 45px 24px 60px;
      }
      .document-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
      }

      .document-card,
      .document-card:nth-child(n) {
        grid-column: auto;
      }

      .document-card {
        min-height: 130px;
        padding: 25px 28px;
      }

      .document-icon {
        width: 62px;
        height: 62px;
        margin-right: 20px;
      }

      .document-name {
        font-size: 24px;
      }
    }

    @media (max-width: 680px) {

      .academic-documents {
        padding: 38px 18px 50px;
      }
      .document-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .document-card,
      .document-card:nth-child(n) {
        grid-column: auto;
        min-height: 105px;
        padding: 20px 22px;
        border-radius: 17px;
      }

      .document-icon {
        width: 53px;
        height: 53px;
        margin-right: 17px;
      }

      .document-name {
        font-size: 21px;
        white-space: normal;
      }
    }
    @media (max-width: 400px) {
      .academic-documents {
        padding-left: 14px;
        padding-right: 14px;
      }
      .document-card {
        min-height: 95px !important;
        padding: 17px 18px !important;
      }

      .document-icon {
        width: 47px;
        height: 47px;
        margin-right: 14px;
      }

      .document-name {
        font-size: 19px;
      }
    }
/* academic documents section end */

/* quality section starts */
.quality-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: #ffffff;
    border: 1px solid #d6dce5;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.quality-card {
    min-width: 0;
    padding: 27px 25px 30px;
    box-sizing: border-box;
    background: #ffffff;
    position: relative;
}
.quality-card + .quality-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #d9dee7;
}

.quality-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 19px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

.quality-icon img {
    width: 90px;
    height: 90px;
    display: block;
    object-fit: contain;
}

.quality-card h3 {
    margin: 0 0 15px;
    color: #101b2d;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 700;
}

.quality-card p {
    margin: 0;
    color: #182231;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
}
@media (min-width: 1200px) {
  .quality-card {
        padding-left: 25px;
        padding-right: 25px;
    }
}
@media (max-width: 991px) {
  .quality-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quality-card {
        padding: 25px 22px 28px;
    }

    .quality-card + .quality-card::before {
        display: none;
    }

    .quality-card:nth-child(2n)::before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 1px;
        background: #d9dee7;
    }

    .quality-card:nth-child(n + 3) {
        border-top: 1px solid #d9dee7;
    }

    .quality-card h3 {
        font-size: 19px;
    }

    .quality-card p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
  .quality-grid {
        grid-template-columns: 1fr;
        border-radius: 10px;
    }

    .quality-card {
        padding: 23px 20px 26px;
    }

    .quality-card + .quality-card::before {
        display: none !important;
    }

    .quality-card + .quality-card {
        border-top: 1px solid #d9dee7;
    }

    .quality-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 15px;
    }

    .quality-icon img {
        width: 75px;
        height: 75px;
    }

    .quality-card h3 {
        font-size: 18px;
        line-height: 1.45;
        margin-bottom: 11px;
    }

    .quality-card p {
        font-size: 15px;
        line-height: 1.6;
    }
}
/* quality section ends */

/* faq section starts */
.brand-faqs{
  margin-bottom: 60px;
  color: #020618;
}
.brand-faqs .panel-heading a{display:flex;align-items:center;display: flex; padding-right: 30px; align-items: flex-start; font-size: 14px;}
.brand-faqs .panel-heading a:hover{color: #113dcd; text-decoration:none;}
.brand-faqs .panel-heading a .control-icon{margin-right:10px;transition:transform 0.3s ease;background: url(../images/graphical-abstract/minus-icon.svg) no-repeat; right: 0; position: absolute; width:13px ; height:3px; }
.brand-faqs .panel-heading.collapsed a .control-icon{position:absolute;right:0;background: url(../images/graphical-abstract/plus-icon.svg) no-repeat; width:13px ; height:13px;}
.brand-faqs .panel-heading a:focus .control-icon,.brand-faqs .panel-heading a:active .control-icon{outline:none;}
.panel-default>.panel-heading{
  background-color:#fff;border:none; color: #113dcd;font-weight:800;font-size:14px;line-height:21px;
}
.brand-faqs .panel-default>.panel-heading.collapsed{color:#262626;}
.brand-faqs .panel-body p,.brand-faqs  .panel-body ul li{font-size:14px; line-height: 24px;}
.brand-faqs .panel-heading{position:relative; padding: 15px 0;}
.brand-faqs  .panel-default>.panel-heading,.brand-faqs  .panel-default>.panel-heading:focus,.brand-faqs  .panel-default>.panel-heading:hover{background-color:#fff;border:none;color:#262626;padding:10px 30px 10px 0;}
.brand-faqs  .panel-default>.panel-heading a,.brand-faqs  .panel-default>.panel-heading a:focus,.brand-faqs  .panel-default>.panel-heading a:hover{color:#262626;font-weight:700;text-decoration:none;font-size: 14px;
  line-height: 24px;}
.brand-faqs  .panel-default>.panel-heading.collapsed a,.brand-faqs  .panel-default>.panel-heading.collapsed a:focus,.brand-faqs  .panel-default>.panel-heading.collapsed a:hover{color:#262626;font-weight:700;text-decoration:none;font-size:14px;}
.brand-faqs  .panel-default>.panel-heading.collapsed{background-color:#fff;border:none;color:#262626;font-weight:800;font-size:16px;line-height:21px;} 
.brand-faqs  .panel-group .panel{margin-bottom:0;border-radius:0;border:none;cursor:pointer;box-shadow:none;border-bottom:1px solid #E2E4E9; counter-increment: item;}
.brand-faqs  .panel-group .panel::before{content: counter(item, decimal-leading-zero); position: absolute; left: -25px; color: #374151; font-size: 24px; line-height: 48px;}
.brand-faqs  .panel-group{counter-reset: item;}
.brand-faqs  .panel-body{padding:15px 0;}
.brand-faqs  .panel-default>.panel-heading+.panel-collapse>.panel-body{border:none;}
.brand-faqs .faqs-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.brand-faqs .faq-answer {
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}
.brand-faqs .faq-question .panel-title .control-icon {
  margin-left: 8px;
  font-size: 20px;
  font-weight: 600;
}
.brand-faqs .faq-question .control-icon::before {
  content: "";
  background: url(../assets/images/carat-up.svg) no-repeat center center;
  width: 19px ;
  height: 11px;
  display: inline-block;
}
.brand-faqs .faq-question.active .control-icon::before {
  background: url(../assets/images/carat-down.svg) no-repeat center center;
}
.brand-faqs .faq-question {
  cursor: pointer;
}
.brand-faqs .faqs-section h3 {
  text-align: center;
  font-size: 32px;
  line-height: 44px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #000;
}
.brand-faqs .faqs-section .faq-list {
	width: 100%;
  display: flex; 
  border: 1px solid #CAD5E2;
  margin-bottom: 10px;
  border-radius: 10px;
  padding: 20px;
}
.brand-faqs .faqs-section .faq-list:last-child {
  margin-bottom: 0;
}
.brand-faqs .faqs-section .faq-list > span {
  padding: 15px 10px 0px 0px;
}
.brand-faqs .faq-qa {
  width: 100%;
}
.brand-faqs .faq-qa .panel-title {
  display: flex;
  justify-content: space-between;
  color: #051E57;
  font-size: 22px;
  line-height: 32px;
}
.brand-faqs .faq-qa .panel-title:hover {
  text-decoration: none;
}
.brand-faqs .faq-qa .active .panel-title{
  font-weight: bold;
  font-size: 22px;
  line-height: 32px;
}
.brand-faqs .faq-qa .faq-answer p {
  font-size: 18px;
  line-height: 28px;
  padding-top: 15px;
  padding-bottom: 0;
  color: #020618;
}
.brand-faqs .faq-qa .faq-answer ul {
  padding-bottom: 10px;
}
/* faq section ends  */

/* campaign new header starts */
.campaign-header{
  box-shadow: 0px 4px 10px 0px #0206181A;
  background-color: #ffffff;
  border-bottom: 1px solid #CAD5E2;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.campaign-header .header-holder{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.campaign-header .header-holder .contact-details{
  display: flex;
  align-items: center;
  gap: 20px;
}
.campaign-header .contact-details .dropdown-toggle{
  font-weight: bold;
  color: #0062FF;
  position: relative;
  font-size: 16px;
}
.campaign-header .cta{
    background: #0062FF;
    color: #ffffff;
    display: inline-block;
    min-width: 110px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
}
.campaign-header .line-chat-icon {
    background: url(/images/line-chat-icon.png) no-repeat;
    width: 38px;
    height: 38px;
    display: block;
    float: none; 
    margin-top: 0;
    margin-right: 0;
}
.campaign-header .contact-dropdown {
  position: relative;
  display: inline-block;
}
.campaign-header .menu-contact-section {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 15px 10px;
  z-index: 999;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.25s ease;
}
.campaign-header .menu-contact-section .caret {
    display: block;
    height: 6px;
    position: absolute;
    right: 0;
    left: 20px;
    top: -13px;
    width: 8px;
    border-bottom: 10px dashed !important;
    border-bottom: 4px solid\9;
    border-right: 10px solid transparent !important;
    border-left: 10px solid transparent !important;
    color: #ffffff;
}
/* OPEN STATE */
.campaign-header .menu-contact-section.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.campaign-header .open-menu {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  background-color: #ffffff !important;
  gap: 5px;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}
.campaign-header .open-menu:hover {
  text-decoration: none;
  background-color: transparent;
}

/* OPTIONAL: ARROW ICON */
.campaign-header .open-menu::after {
  content:"";
  background: url(../../../../images/campaign-header/down.svg) no-repeat center center;
  width: 16px;
  height: 16px;
  font-size: 10px;
  display: inline-block;
}
@media (max-width: 767px) {
  .campaign-header {
  transition: padding-top 0.25s ease;
}
  .campaign-header .logo img{
    width: 80%;
  }
}
/* campaign new header ends */

/* sample modal start */
#samplePdfModal .modal-dialog {
    width: 90%;
    max-width: 800px;
}

#samplePdfModal .modal-body {
    padding: 0;
}

#samplePdfModal iframe {
    display: block;
    width: 100%;
    height: 75vh;
    border: 0;
}
/* sample modal end */