:root {
  --thm-color: #000000;
  --thm-color2: #2E6AEE;
  --color-header: #020842;
  --color-text: #636D6C;
  --color-text2: #626C6B;
  --color-black: #000;
  --color-body: #74787c;
  --color-white: #ffffff;
  --bg-color: #F9F7F3;
  --color-border: #0208421A;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
  --body-font: "Prata", sans-serif;
  --heading-font: "DM Sans", serif;
}
p{
    margin: 0 !important;
}
/* Smew Button Styles */
.smew-btn {
    background: linear-gradient(106deg, #2AD3F8 10.42%, #933CFF 98.32%);
    color: var(--color-white, #ffffff);
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    font-family: "Ubuntu", sans-serif;
    padding: 21px 42px;
    border-radius: 4px;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    line-height: 1;
    text-decoration: none;
}

.smew-btn::before {
    content: "";
    background-color: var(--color-header, #1C1C1C);
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
    border-radius: 4px;
}

.smew-btn::after {
    content: "";
    background-color: var(--color-header, #1C1C1C);
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
    border-radius: 4px;
}

.smew-btn .button-icon {
    margin-left: 10px;
    transform: rotate(-45deg);
    transition: all 0.4s ease-in-out;
    display: inline-flex;
    align-items: center;
}

.smew-btn .button-icon i,
.smew-btn .button-icon svg {
    width: 1em;
    height: 1em;
    font-size: 16px;
    display: block;
}

.smew-btn:hover {
    color: var(--color-white, #ffffff);
}

.smew-btn:hover::before,
.smew-btn:hover::after {
    width: 100%;
}

.smew-btn:hover .button-icon {
    transform: rotate(0);
}

@media (max-width: 767px) {
    .smew-btn {
        padding: 20px 32px;
    }
}

@media (max-width: 575px) {
    .smew-btn {
        padding: 18px 30px;
        font-size: 14px;
    }
}

/* Section Title Styles */
.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
    width: 100%;
}

.section-title.text-center span,
.section-title.text-center h2,
.section-title.text-center p {
    margin-left: auto;
    margin-right: auto;
}

.section-title.text-right span,
.section-title.text-right h2,
.section-title.text-right p {
    margin-left: auto;
}

.section-title span {
    font-size: 13px;
    color: var(--thm-color);
    font-weight: 600;
    border-radius: 4px;
    background: #EBF3FC;
    padding: 12px 19px;
    line-height: 1;
    letter-spacing: 0.26px;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title span.style-2 {
    background: #EBF3FC;
}

.section-title-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}

.center {
    text-align: center;
    margin: 0 auto;
}

.section-bg {
    background: #EBF3FC;
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .section-title-area {
        flex-wrap: wrap;
        gap: 30px;
    }
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .section-title {
        margin-bottom: 0;
    }
}


/* video */


.cta-video-wrapper {
    padding: 190px 0;
    border-radius: 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
    z-index: 9;
    background-attachment: fixed;
  }
  @media (max-width: 991px) {
    .cta-video-wrapper {
      padding: 160px 0;
    }
  }
  @media (max-width: 991px) {
    .cta-video-wrapper {
      padding: 130px 0;
    }
  }
  @media (max-width: 767px) {
    .cta-video-wrapper {
      padding: 110px 0;
    }
  }
  @media (max-width: 575px) {
    .cta-video-wrapper {
      padding: 90px 0;
    }
  }
  .cta-video-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(2, 8, 66, 0.27);
    border-radius: 20px;
    z-index: -1;
  }
  .cta-video-wrapper .left-shape {
    position: absolute;
    left: 0;
    top: 0;
  }
  @media (max-width: 1199px) {
    .cta-video-wrapper .left-shape {
      display: none;
    }
  }
  .cta-video-wrapper .right-shape {
    position: absolute;
    right: -120px;
    bottom: -257px;
  }
  @media (max-width: 1199px) {
    .cta-video-wrapper .right-shape {
      display: none;
    }
  }
  .cta-video-wrapper .dot-shape {
    position: absolute;
    left: -30px;
    bottom: -70px;
    z-index: 1;
  }
  @media (max-width: 1199px) {
    .cta-video-wrapper .dot-shape {
      display: none;
    }
  }
  .cta-video-wrapper .video-btn {
    width: 114px;
    height: 114px;
    line-height: 114px;
    text-align: center;
    border-radius: 100px;
    background-color: var(--color-white);
    color: var(--theme);
    font-size: 24px;
    display: inline-block;
    position: relative;
    z-index: 9;
  }
  @media (max-width: 767px) {
    .cta-video-wrapper .video-btn {
      width: 80px;
      height: 80px;
      line-height: 80px;
    }
  }
  
  .cta-video-section {
    position: relative;
  }
  .cta-video-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #EBF3FC;
    top: 50%;
  }
  



.cta-video-section2 {
    position: relative;
    background-attachment: fixed;
  }
  .cta-video-section2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(2, 8, 66, 0.27);
  }
  .cta-video-section2 .left-shape {
    position: absolute;
    left: 0;
    top: 0;
  }
  .cta-video-section2 .right-shape {
    right: -166px;
    position: absolute;
    bottom: -275px;
  }
  
  .cta-video-wrapper3 {
    padding: 250px 0;
    border-radius: 20px;
    position: relative;
    text-align: center;
  }
  .cta-video-wrapper3 .video-btn {
    width: 114px;
    height: 114px;
    line-height: 114px;
    text-align: center;
    border-radius: 100px;
    background-color: var(--color-white);
    color: var(--theme);
    font-size: 24px;
    display: inline-block;
  }


.cta-video-wrapper {
    padding: 190px 0;
    border-radius: 20px;
    position: relative;
    text-align: center;
    overflow: hidden;
    z-index: 9;
    background-attachment: fixed;
}
@media (max-width: 991px) {
    .cta-video-wrapper {
        padding: 160px 0;
    }
}
@media (max-width: 991px) {
    .cta-video-wrapper {
        padding: 130px 0;
    }
}
@media (max-width: 767px) {
    .cta-video-wrapper {
        padding: 110px 0;
    }
}
@media (max-width: 575px) {
    .cta-video-wrapper {
        padding: 90px 0;
    }
}
.cta-video-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(2, 8, 66, 0.27);
    border-radius: 20px;
    z-index: -1;
}
.cta-video-wrapper .left-shape {
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 1199px) {
    .cta-video-wrapper .left-shape {
        display: none;
    }
}
.cta-video-wrapper .right-shape {
    position: absolute;
    right: -120px;
    bottom: -257px;
}
@media (max-width: 1199px) {
    .cta-video-wrapper .right-shape {
        display: none;
    }
}
.cta-video-wrapper .dot-shape {
    position: absolute;
    left: -30px;
    bottom: -70px;
    z-index: 1;
}
@media (max-width: 1199px) {
    .cta-video-wrapper .dot-shape {
        display: none;
    }
}
.cta-video-wrapper .video-btn {
    width: 114px;
    height: 114px;
    line-height: 114px;
    text-align: center;
    border-radius: 100px;
    background-color: var(--color-white);
    color: var(--theme);
    font-size: 24px;
    display: inline-block;
    position: relative;
    z-index: 9;
}
@media (max-width: 767px) {
    .cta-video-wrapper .video-btn {
        width: 80px;
        height: 80px;
        line-height: 80px;
    }
}

.cta-video-section {
    position: relative;
}
.cta-video-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #EBF3FC;
    top: 50%;
}

.cta-wrapper {
    padding: 120px 50px;
}
@media (max-width: 1199px) {
    .cta-wrapper {
        padding: 100px 40px;
    }
}
@media (max-width: 991px) {
    .cta-wrapper {
        padding: 80px 30px;
    }
}
.cta-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 4px;
    background: linear-gradient(106deg, rgba(42, 211, 248, 0.88) 10.42%, rgba(147, 60, 255, 0.88) 98.32%);
}
.cta-wrapper .cta-button {
    position: relative;
    z-index: 9;
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-top: 50px;
}
@media (max-width: 1199px) {
    .cta-wrapper .cta-button {
        flex-wrap: wrap;
    }
}
.cta-wrapper .cta-button .theme-btn {
    background: var(--color-white);
    color: var(--theme);
}
.cta-wrapper .cta-button .cta-icon {
    display: flex;
    align-items: center;
}
.cta-wrapper .cta-button .cta-icon i {
    width: 50px;
    height: 50px;
    background-color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: var(--theme);
}
.cta-wrapper .cta-button .cta-icon .cta-content {
    margin-left: 12px;
}
.cta-wrapper .cta-button .cta-icon .cta-content p {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.67);
}
.cta-wrapper .cta-button .cta-icon .cta-content h5 {
    color: var(--color-white);
}

.cta-section2 {
    position: relative;
}
.cta-section2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgb(235, 243, 252);
    top: -50%;
}

.cta-video-section2 {
    position: relative;
    background-attachment: fixed;
}
.cta-video-section2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(2, 8, 66, 0.27);
}
.cta-video-section2 .left-shape {
    position: absolute;
    left: 0;
    top: 0;
}
.cta-video-section2 .right-shape {
    right: -166px;
    position: absolute;
    bottom: -275px;
}

.cta-video-wrapper3 {
    padding: 250px 0;
    border-radius: 20px;
    position: relative;
    text-align: center;
}
.cta-video-wrapper3 .video-btn {
    width: 114px;
    height: 114px;
    line-height: 114px;
    text-align: center;
    border-radius: 100px;
    background-color: var(--color-white);
    color: var(--theme);
    font-size: 24px;
    display: inline-block;
}

/*project*/
.project-main-card .project-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.project-main-card .project-card:not(:last-child) {
    border-bottom: 1px solid rgba(2, 8, 66, 0.14);
}
.project-main-card .project-card .project-list {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 40px 0;
}
@media (max-width: 575px) {
    .project-main-card .project-card .project-list {
        gap: 18px;
    }
}
.project-main-card .project-card .project-list li {
    font-size: 30px;
    font-weight: 700;
    font-family: "Ubuntu", sans-serif;
    color: var(--color-header);
}
.project-main-card .project-card .project-list li span {
    color: var(--thm-color);
    font-weight: 500;
}
@media (max-width: 991px) {
    .project-main-card .project-card .project-list li {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .project-main-card .project-card .project-list li {
        font-size: 24px;
    }
}
@media (max-width: 575px) {
    .project-main-card .project-card .project-list li {
        font-size: 20px;
    }
}
.project-main-card .project-card .project-list li a:hover {
    color: var(--thm-color);
}
.project-main-card .project-card .icon {
    color: var(--color-header);
    font-size: 14px;
}
.project-main-card .project-card .icon a:hover i {
    color: var(--thm-color);
}
.project-main-card .project-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/*faq*/

@media (max-width: 1199px) {
    .faq-wrapper .faq-content .faq-items.style-2 {
        margin-top: 30px;
    }
}
.faq-wrapper .faq-content .faq-items .accordion-item {
    border: 0;
    background-color: var(--color-white);
    border-radius: 4px;
}
.faq-wrapper .faq-content .faq-items .accordion-item .accordion-header {
    border: none;
}
.faq-wrapper .faq-content .faq-items .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-header);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: var(--color-white);
    padding: 22px 22px 0;
    text-transform: capitalize;
}
.faq-wrapper .faq-content .faq-items .accordion-item .accordion-header .accordion-button::after {
    content: "\f078";
    background: transparent;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    transition: all 0.3s ease-in-out !important;
    color: var(--color-header);
}
.faq-wrapper .faq-content .faq-items .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\f077";
    background: transparent;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    transform: rotate(0);
    color: var(--color-header);
}
.faq-wrapper .faq-content .faq-items .accordion-item .accordion-header .accordion-button.collapsed {
    background-color: transparent;
    padding: 25px 30px;
    color: var(--color-header);
}
.faq-wrapper .faq-content .faq-items .accordion-item .accordion-collapse .accordion-body {
    padding-left: 30px;
    padding-top: 15px;
    color: #504E4E;
    background: var(--color-white);
}

.faq-section {
    position: relative;
}
.faq-section .shape {
    position: absolute;
    left: 26%;
    top: 15%;
}
@media (max-width: 1199px) {
    .faq-section .shape {
        display: none;
    }
}
.faq-section .shape2 {
    position: absolute;
    top: 100px;
    right: 60px;
}
@media (max-width: 1199px) {
    .faq-section .shape2 {
        display: none;
    }
}

/*service*/

.service-card-items {
    text-align: center;
    position: relative;
}
@media (max-width: 1199px) {
    .service-card-items {
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        padding-top: 50px;
        background-color: var(--color-white);
    }
}
.service-card-items .icon {
    width: 98px;
    height: 98px;
    line-height: 98px;
    text-align: center;
    background: var(--color-white);
    border-radius: 50px;
    margin: 0 auto;
    margin-bottom: 20px;
    filter: drop-shadow(7px 11px 50px rgba(2, 8, 66, 0.07));
}
.service-card-items .content {
    position: relative;
    padding-bottom: 50px;
}
.service-card-items .content h4 {
    margin-bottom: 10px;
}
.service-card-items .content h4 a:hover {
    color: var(--thm-color);
}
.service-card-items .content p br {
    display: initial;
}
.service-card-items .content .link-btn {
    margin-top: 20px;
    color: var(--thm-color);
}
.service-card-items::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    top: 30px;
    border-radius: 144px 144px 12px 12px;
    background: var(--color-white);
    box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
    height: initial;
}
@media (max-width: 1199px) {
    .service-card-items::before {
        display: none;
    }
}






.service-card-items {
    margin-top: 30px;
}
.service-card-items .service-image {
    position: relative;
}
.service-card-items .service-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.service-card-items .service-image .service-content {
    border-radius: 12px;
    background: var(--color-white);
    box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 30px;
}

.service-card-items .service-image .service-content .content-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-card-items .service-image .service-content .content-item .content {
    display: flex;
    align-items: center;
    gap: 12px;
}
.service-card-items .service-image .service-content .content-item .content .text h4 {
    font-weight: 500;
}
.service-card-items .service-image .service-content .content-item .arrow-icon i {
    transform: rotate(-45deg);
    color: var(--color-header);
}
.service-card-items .service-image .service-content .service-bottom {
    height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}
.service-card-items:hover .service-image .service-content .service-bottom {
    height: 130px;
}
.service-card-items:hover .service-image .service-content .service-bottom p {
    margin-top: 20px;
    margin-bottom: 30px;
}





/*team*/

.team-card-item {
    margin-top: 30px;
}
.team-card-item.style-2 {
    margin-top: 0;
}
.team-card-item.style-2 .team-image img {
    border-radius: 12px;
}

.team-card-item .team-image {
    position: relative;
    overflow: hidden;
}
.team-card-item .team-image img {
    width: 100%;
    height: 100%;
}
.team-card-item .team-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(2, 8, 66, 0) 23.8%, rgba(2, 8, 66, 0.92) 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.team-card-item .team-image .team-content {
    position: absolute;
    bottom: -25px;
    left: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}
.team-card-item .team-image .team-content .team-contact li {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.team-card-item .team-image .team-content .team-contact li i {
    color: var(--thm-color);
    font-size: 18px;
    margin-right: 5px;
}
.team-card-item .team-image .team-content .team-contact li a {
    color: var(--color-white);
}
.team-card-item .team-image .team-content .team-contact li:not(:last-child) {
    margin-bottom: 5px;
}
.team-card-item .team-image .social-icon {
    padding: 18px 15px;
    background: var(--color-white);
    backdrop-filter: blur(15px);
    position: absolute;
    right: -100px;
    bottom: 110px;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
}
.team-card-item .team-image .social-icon li a {
    color: var(--thm-color);
    display: block;
}
.team-card-item .content {
    text-align: center;
    padding: 25px 0;
}
.team-card-item .content p {
    font-size: 15px;
    font-weight: 600;
    color: var(--thm-color);
    letter-spacing: 0.3px;
}
.team-card-item .content h4 a:hover {
    color: var(--thm-color);
}
.team-card-item:hover .team-image::before {
    opacity: 1;
    visibility: visible;
}
.team-card-item:hover .team-image .team-content {
    opacity: 1;
    visibility: visible;
    bottom: 25px;
}
.team-card-item:hover .team-image .social-icon {
    opacity: 1;
    visibility: visible;
    right: 0;
}

.team-details-wrapper .team-author-items {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    position: relative;
}
@media (max-width: 1199px) {
    .team-details-wrapper .team-author-items {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }
}
.team-details-wrapper .team-author-items .shape {
    position: absolute;
    bottom: 0;
    right: 0;
}
@media (max-width: 1199px) {
    .team-details-wrapper .team-author-items .shape {
        display: none;
    }
}
.team-details-wrapper .team-author-items .thumb {
    max-width: 370px;
}
.team-details-wrapper .team-author-items .thumb img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}
.team-details-wrapper .team-author-items .content {
    max-width: 700px;
}
.team-details-wrapper .team-author-items .content h2 {
    font-size: 30px;
    margin-bottom: 5px;
}
@media (max-width: 575px) {
    .team-details-wrapper .team-author-items .content h2 {
        font-size: 26px;
    }
}
.team-details-wrapper .team-author-items .content span {
    margin-bottom: 10px;
    display: inline-block;
}
.team-details-wrapper .team-author-items .content ul {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 50px;
    border-top: 1px solid var(--border);
    padding: 20px 0;
}
@media (max-width: 1199px) {
    .team-details-wrapper .team-author-items .content ul {
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
        margin-top: 20px;
        justify-content: center;
    }
}
.team-details-wrapper .team-author-items .content ul li {
    color: var(--color-header);
}
.team-details-wrapper .team-author-items .content ul li span {
    font-weight: 500;
    color: var(--thm-color);
}
.team-details-wrapper .team-author-items .content ul li i {
    margin-right: 5px;
}
.team-details-wrapper .team-author-items .content ul li .color-star {
    color: var(--thm-color);
}
.team-details-wrapper .team-author-items .content .social-icon {
    gap: 15px;
    position: relative;
    z-index: 9;
}
.team-details-wrapper .team-author-items .content .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    display: block;
    color: var(--thm-color);
    transition: all 0.4s ease-in-out;
    text-align: center;
    background-color: transparent;
    border: 1px solid var(--thm-color);
}
.team-details-wrapper .team-author-items .content .social-icon a:hover {
    background-color: var(--thm-color);
    color: var(--color-white);
    border: 1px solid transparent;
}
.team-details-wrapper .details-info-items {
    padding: 70px 0;
    border-bottom: 1px solid var(--border);
}
@media (max-width: 767px) {
    .team-details-wrapper .details-info-items {
        padding: 50px 0;
    }
}
@media (max-width: 575px) {
    .team-details-wrapper .details-info-items {
        padding: 40px 0;
    }
}
.team-details-wrapper .details-info-items .info-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
}
.team-details-wrapper .details-info-items .progress-wrap {
    margin-left: 30px;
}
@media (max-width: 991px) {
    .team-details-wrapper .details-info-items .progress-wrap {
        margin-left: 0;
    }
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items {
    width: 100%;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items:not(:last-child) {
    margin-bottom: 20px;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .pro-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .pro-head .title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-header);
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .pro-head .point {
    font-size: 16px;
    color: var(--color-header);
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .progress {
    background: var(--bg);
    justify-content: flex-start;
    border-radius: 0px;
    align-items: center;
    position: relative;
    display: flex;
    height: 10px;
    width: 100%;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .progress-value {
    animation: load 3s normal forwards;
    border-radius: 0;
    background: var(--thm-color);
    height: 10px;
    width: 0;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .style-two {
    animation: load2 3s normal forwards;
}
.team-details-wrapper .details-info-items .progress-wrap .pro-items .style-three {
    animation: load3 3s normal forwards;
}
@keyframes load {
    0% {
        width: 0;
    }
    100% {
        width: 90%;
    }
}
@keyframes load2 {
    0% {
        width: 0;
    }
    100% {
        width: 70%;
    }
}
@keyframes load3 {
    0% {
        width: 0;
    }
    100% {
        width: 55%;
    }
}/*# sourceMappingURL=main.css.map */


/*testimonial slider*/


.testimonial-box-items .client-info {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}
@media (max-width: 1199px) {
    .testimonial-box-items .client-info {
        margin-top: 30px;
        flex-wrap: wrap;
    }
}
.testimonial-box-items .quote-icon {
    position: absolute;
    right: 55px;
    bottom: 55px;
}

.testimonial-section .swiper-dot {
    margin-top: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.testimonial-section .swiper-dot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: 0.6s;
    background: rgb(2, 8, 66);
    opacity: 1;
    border-radius: 10px;
}
.testimonial-section .swiper-dot .swiper-pagination-bullet:not(:last-child) {
    margin-right: 10px;
}
.testimonial-section .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgb(2, 8, 66);
    transition: 0.6s;
    position: relative;
}
.testimonial-section .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    width: 22px;
    height: 22px;
    line-height: 22px;
    top: -6px;
    left: -6px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid rgb(2, 8, 66);
    content: "";
}
.testimonial-box-items .client-info img{
    object-fit: cover;
}


.testimonial-box-items {
    margin-top: 30px;
    position: relative;
    border-radius: 4px;
    background: var(--color-white);
    padding: 50px 40px;
}
@media (max-width: 575px) {
    .testimonial-box-items {
        padding: 35px;
    }
}


.testimonial-main-box .testimonial-box-items .testi-top .star {
    color: var(--thm-color);
    margin-bottom: 5px;
}
.testimonial-main-box .testimonial-box-items h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}
.testimonial-main-box .testimonial-box-items .testi-top-img {
    margin-top: 30px;
    text-align: center;
    position: relative;
}
.testimonial-main-box .testimonial-box-items .testi-top-img .icon {
    position: absolute;
    right: 95px;
    top: 0;
}
.testimonial-main-box .testimonial-box-items .testi-top-img .content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    z-index: 1;
}
@media (max-width: 1399px) {
    .testimonial-main-box .testimonial-box-items .testi-top-img .content {
        margin-top: 18px;
        bottom: -70px;
    }
}
@media (max-width: 1399px) {
    .testimonial-main-box .testimonial-box-items .testi-top-img .content h4 {
        color: var(--color-header);
        font-size: 19px;
    }
}
.testimonial-main-box .testimonial-box-items .testi-top-img .content p {
    font-weight: 400;
    font-size: 15px;
}


.testimonial-box-items h3 {
    font-size: 30px;
    font-weight: 500;
    margin-top: 25px;
    position: relative;
    z-index: 9;
}
@media (max-width: 1199px) {
    .testimonial-box-items h3 {
        font-size: 28px;
    }
}
@media (max-width: 991px) {
    .testimonial-box-items h3 {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .testimonial-box-items h3 {
        font-size: 24px;
    }
}
@media (max-width: 575px) {
    .testimonial-box-items h3 {
        font-size: 20px;
    }
}


/*testimonial main box without slider*/

.testimonial-main-box {
    position: relative;
}
.testimonial-main-box::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(235, 243, 252, 0) 0%, #EBF3FC 75.76%);
    width: 382px;
    height: 297px;
    bottom: 0;
    left: 50%;
    right: 50%;
    top: initial;
    transform: translateX(-50%);
    border-radius: 270px 270px 0px 0px;
    z-index: 1;
}
@media (max-width: 1399px) {
    .testimonial-main-box::before {
        display: none;
    }
}
.testimonial-main-box .testimonial-box-items {
    border-radius: 12px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-top: 30px;
    padding: 50px 0;
}
@media (max-width: 1399px) {
    .testimonial-main-box .testimonial-box-items {
        padding: 95px 0;
    }
}
.testimonial-main-box .testimonial-box-items .testi-top .star {
    color: var(--thm-color);
    margin-bottom: 5px;
}
.testimonial-main-box .testimonial-box-items h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}
.testimonial-main-box .testimonial-box-items .testi-top-img {
    margin-top: 30px;
    text-align: center;
    position: relative;
}
.testimonial-main-box .testimonial-box-items .testi-top-img .icon {
    position: absolute;
    right: 95px;
    top: 0;
}
.testimonial-main-box .testimonial-box-items .testi-top-img .content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    z-index: 1;
}
@media (max-width: 1399px) {
    .testimonial-main-box .testimonial-box-items .testi-top-img .content {
        margin-top: 18px;
        bottom: -70px;
    }
}
@media (max-width: 1399px) {
    .testimonial-main-box .testimonial-box-items .testi-top-img .content h4 {
        color: var(--color-header);
        font-size: 19px;
    }
}
.testimonial-main-box .testimonial-box-items .testi-top-img .content p {
    font-weight: 400;
    font-size: 15px;
}


/*project slider*/

.top-shape {
    position: absolute;
    top: -100px;
    right: -150px;
}
@media (max-width: 1199px) {
    .top-shape {
        display: none;
    }
}
.bottom-shape {
    position: absolute;
    right: 60px;
    bottom: 0px;
}
@media (max-width: 1199px) {
    .bottom-shape {
        display: none;
    }
}
.swiper-dot {
    margin-top: 40px;
    text-align: center;
}
.swiper-dot .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    transition: 0.6s;
    background: rgb(2, 8, 66);
    opacity: 1;
    border-radius: 10px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
    margin-right: 10px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: rgb(2, 8, 66);
    transition: 0.6s;
    position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    position: absolute;
    width: 22px;
    height: 22px;
    line-height: 22px;
    top: -6px;
    left: -6px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid rgb(2, 8, 66);
    content: "";
}
.project-wrapper {
    margin-left: -40%;
    margin-right: -10%;
    margin-top: 60px;
    position: relative;
}
@media (max-width: 1199px) {
    .project-wrapper {
        margin-left: 0;
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .project-wrapper {
        margin-top: 30px;
    }
}
.project-wrapper .project-image {
    position: relative;
}
.project-wrapper .project-image img {
    width: 100%;
    height: 100%;
}
.project-wrapper .project-image .content {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    position: absolute;
    left: 20px;
    bottom: -30px;
    border-radius: 4px;
    background: var(--color-white);
    padding: 30px;
}
.project-wrapper .project-image .content span {
    color: var(--thm-color);
}
.project-wrapper .project-image .content h3 a:hover {
    color: var(--thm-color);
}
.project-wrapper .project-image .content .arrow-icon {
    color: var(--color-white);
    background: linear-gradient(106deg, #2AD3F8 10.42%, #933CFF 98.32%);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    text-align: center;
    line-height: 56px;
    display: inline-block;
    font-size: 22px;
    position: absolute;
    top: -28px;
    right: 30px;
}
.project-wrapper .project-image .content .arrow-icon i {
    transform: rotate(-45deg);
}
.project-wrapper .project-image:hover .content {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}



/*pricing table*/
.pricing-box-items {
    border-radius: 12px;
    background: #FFF;
    box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
    padding: 50px;
    margin-top: 30px;
}
.pricing-box-items .pricing-header span {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 4px;
    background: #EBF3FC;
    color: var(--thm-color);
    font-size: 16px;
    font-weight: 700;
}
.pricing-box-items .pricing-header h2 {
    font-size: 66px;
    font-weight: 700;
    color: var(--thm-color);
    margin-top: 20px;
}
@media (max-width: 991px) {
    .pricing-box-items .pricing-header h2 {
        font-size: 50px;
    }
}
.pricing-box-items .pricing-header h2 sub {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
}

.pricing-box-items .pricing-header p {
    margin-top: 10px;
}
.pricing-box-items .thm-color-btn {
    margin-top: 30px;
    margin-bottom: 25px;
}
.pricing-box-items .pricing-list li:not(:last-child) {
    margin-bottom: 15px;
}



.pricing-two__tab .nav {
    border: none;
    justify-self: center;
    margin-bottom: 30px;
}
.pricing-two__tab .nav .nav-tabs {
    border-bottom: 0;
    display: flex;
    justify-content: center;
}
.pricing-two__tab .nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    border: 0;
    border-radius: 0;
    padding: 7px 56px;
    position: relative;
    background: transparent;
    z-index: 2;
    color: var(--color-text);
    margin-bottom: 0;
}
.pricing-two__tab .nav .nav-link::before {
    position: absolute;
    content: "";
    right: 0px;
    top: 50%;
    transform: translateY(-50%) translateX(50%);
    background: var(--thm-color);
    width: 75px;
    height: 32px;
    border-radius: 20px;
    border: 1px solid var(--thm-color);
}
.pricing-two__tab .nav .nav-link::after {
    position: absolute;
    content: "";
    right: -33px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFD25D;
    z-index: 1;
}
.pricing-two__tab .nav .nav-link:first-child {
    padding-left: 0;
}
.pricing-two__tab .nav .nav-link:last-child {
    padding-right: 0;
}
.pricing-two__tab .nav .nav-link:last-child::after {
    display: none;
}
.pricing-two__tab .nav .nav-link:last-child::before {
    display: none;
}
.pricing-two__tab .nav .nav-link.active {
    color: var(--color-header);
}
.pricing-two__tab .nav .nav-link.active::after {
    right: 8px;
}

/* // hover card widget code  */

    .hover-card-widget.card-container {
            font-family: sans-serif;
        }

        .hover-card-widget .image-box {
            position: relative;
            overflow: hidden;
        }

        .hover-card-widget .image-box img {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
            transform: none;
        }

        .hover-card-widget .caption-overlay {
            position: absolute;
            top: 40%;
            left: 0;
            transform: translateX(-120%);
            opacity: 0;
            transition: all 0.5s ease;
            z-index: 2;
            width:60%;
        }

        .hover-card-widget .caption-title {
            background: var(--color-white);
            font-weight: 700;
            padding: 5px 10px;
            display: inline-block;
            margin-bottom: 5px;
        }
       .hover-card-widget hr.hr-row {
        border: none;
        width: 30%;
        height: 3px;
        background-color: var(--thm-color);
        opacity: 1;
         margin-bottom: 10px;
        }

        .hover-card-widget .caption-button {
            background: #ffe600;
            padding: 5px 10px;
            display: inline-block;
        }

        /* Hover Effects */

         .hover-card-widget.card-container:hover .caption-overlay {
            transform: translateX(0px);
            opacity: 1;
            top:40%
        }

        .hover-card-widget .card-content {
            margin-top: 10px;
        }

        .hover-card-widget .card-content h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 28px;
        }

        .hover-card-widget .card-content small {
            display: block;
            margin-bottom: 10px;
            color: #555;
        }

        .hover-card-widget .card-content p {
            margin-bottom: 10px;
        }

        .hover-card-widget .read-more {
            display: inline-block;
            border: 1px solid var(--thm-color);
            padding: 5px 10px;
            text-decoration: none;
            color: var(--thm-color);
        }
        .hover-card-widget .image-box img {
        transition: transform 0.5s ease;
        transform: matrix3d(1, 0, 0, 0,
                            0, 1, 0, 0,
                            0, 0, 1, -0.00166,
                            0, 0, 0, 1);
        transform-origin: 100% 50% 0px;
        transform-style: flat;
        }

        .hover-card-widget.card-container:hover img {
        transform: matrix3d(
            0.70592, 0.02465, 0.37557, -0.00062,
        -0.06052, 0.79532, 0.06156, -0.0001,
        -0.46435, -0.10342, 0.87958, -0.00146,
        -21.4257, 4.13698, 4.81749, 0.991971
        );
        transform-style: preserve-3d;
        }

@media (max-width: 767px) {
.hover-card-widget .caption-overlay {
            width:40%;
        }
      }

/* Highlighted Post Slider Widget CSS */
.hpsw .highlighted-post-slider-wrapper {
    position: relative;
}

.hpsw .highlighted-post-slide-inner {
    position: relative;
    overflow: hidden;
    background-color: #fff568;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Caption - Initially Visible - Image er NICHE */
.hpsw .highlighted-post-slide-caption {
    text-align: left;
    padding: 20px;
    position: relative;
    z-index: 2;
    background-color: #fff568;
    transition: all 0.4s ease;
    opacity: 1;
    visibility: visible;
    flex: 1;
}

/* Hover Details - Initially Hidden - Image er 30% porjonto dekhabe */
.hpsw .highlighted-post-slide-hover-details {
    position: absolute;
    bottom: -100%; /* Start from complete bottom hidden */
    left: 0;
    width: 100%;
    background-color: #fff568;
    padding: 20px;
    z-index: 3;
    transition: bottom 0.5s ease;
    opacity: 0;
    visibility: hidden;
    height: 55%; /* Image height er 55% */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hover Effects */
.hpsw .highlighted-post-slide-inner:hover .highlighted-post-slide-caption {
    opacity: 0;
    visibility: hidden;
}

.hpsw .highlighted-post-slide-inner:hover .highlighted-post-slide-hover-details {
    bottom: 0; /* Image er bottom e 30% porjonto dekhabe */
    opacity: 1;
    visibility: visible;
}

/* Image Container - Relative position for proper overlay */
.hpsw .highlighted-post-slide-image-container {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.hpsw .highlighted-post-slide-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hpsw .highlighted-post-slide-inner:hover .highlighted-post-slide-image {
    transform: scale(1.15);
}

/* Text Styles */
.hpsw .highlighted-post-slide-caption h3,
.hpsw .highlighted-post-slide-hover-details h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.hpsw .highlighted-post-slide-caption hr,
.hpsw .highlighted-post-slide-hover-details hr {
    width: 60px;
    border: none;
    border-top: 2px solid #000;
    margin: 10px 0;
    text-align: left;
}
.hpsw .highlighted-post-slide-hover-details p.p-excerp{
    padding: 15px 0;
}
.hpsw .highlight-post-meta {
    font-size: 13px;
    display: block;
}

.hpsw .highlighted-post-slide-meta {
    font-size: 13px;
    padding: 0;
}

.hpsw .highlighted-post-slide-meta .date-p {
    font-size: 13px;
    display: block;
    padding: 5px 0;
}

.hpsw .highlighted-post-slide-hover-details p {
    font-size: 14px;
    padding: 15px 0;
    line-height: 1.4;
}

/* Button Styles */
.hpsw .highlighted-post-read-more {
    font-size: 10px;
    width: 100%;
    font-weight: bold;
    text-align: center;
    height: 34px;
    text-transform: uppercase;
    transform-style: preserve-3d;
    display: block;
    position: relative;
    transform: translateZ(0);
    text-decoration: none;
    transition: transform 0.4s ease;
}

.hpsw .highlighted-post-read-more .front {
    height: 34px;
    padding-top: 6px;
    backface-visibility: hidden;
    text-align: center;
    transform: translateZ(20px);
    display: block;
    border: 2px solid #000;
    position: relative;
    z-index: 2;
}

.hpsw .highlighted-post-read-more .back {
    height: 34px;
    color: #ffffff;
    padding-top: 7px;
    backface-visibility: hidden;
    text-align: center;
    display: block;
    transform: rotateX(-90deg) translateZ(-20px);
    background: #000000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hpsw .highlighted-post-read-more:hover {
    transform: rotateX(90deg);
}

/* Swiper Styles */
.hpsw .swiper {
    width: 100%;
    height: 100%;
}

.hpsw .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.hpsw .swiper-slide {
    position: relative;
    min-width: 250px;
    background: #fff568;
    height: auto;
}

/* Navigation Styles */
.hpsw .highlighted-post-slider-nav {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.hpsw .highlighted-post-slider-nav button {
    background: transparent;
    border: 2px solid #000;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    color: #000;
}

.hpsw .highlighted-post-slider-nav button:hover {
    background: #000;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  /* Mobile disply invisible */
    .hpsw .highlighted-post-slide-inner:hover .highlighted-post-slide-caption {
    opacity: 1;
    visibility: visible;
}
    .hpsw .highlighted-post-slide-inner:hover .highlighted-post-slide-hover-details {
    opacity: 0;
    visibility: hidden;
}
/* Mobile disply invisible */
    .hpsw .highlighted-post-slide-image {
        height: 250px;
    }
    
    .hpsw .highlighted-post-slide-caption,
    .hpsw .highlighted-post-slide-hover-details {
        padding: 15px;
    }
    
    .hpsw .highlighted-post-slide-caption h3,
    .hpsw .highlighted-post-slide-hover-details h3 {
        font-size: 16px;
    }
    
    .hpsw .highlighted-post-slider-nav button {
        padding: 8px 15px;
        margin: 0 5px;
        font-size: 11px;
    }
    
    .hpsw .highlighted-post-slide-hover-details {
        height: 35%; /* Mobile e slightly beshi dekhabe */
    }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 1024px) {
    .hpsw .highlighted-post-slide-image {
        height: 300px;
    }
    
    .hpsw .highlighted-post-slide-hover-details {
        height: 32%; /* Tablet e moderate size */
    }
}

/* Ensure proper layout */
.hpsw .highlighted-post-slide-inner * {
    box-sizing: border-box;
}

.hpsw .swiper-slide {
    display: flex;
}


    /* Hover image Slider widget  */

    .ps.image-hover-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.ps .hover-image-slide {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  
}

.ps .hover-image-slide img {
    width: 100%;
    display: block;
    opacity: 0.5;
    transition: all 0.4s ease;
    transform: scale(1);
    height:200px;
    object-fit:cover;
}
/* Overlay */
.ps .hover-image-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1; /* overlay level */
}

/* Show overlay on hover */
.ps .hover-image-slide:hover::before {
  opacity: 1;
}
.ps .hover-image-slide .hover-title a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.ps .hover-image-slide .hover-title a{
    color: #fff;
    font-size: 18px;
    transition: all 0.4s ease;
}
/* 👇 Hover effect only on the hovered slide */
.ps .hover-image-slide:hover img {
    opacity: 1;
    transform: scale(1.2);
}


/* Navigation Arrows */
.ps .swiper-button-next,
.ps .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.ps .swiper-button-next:after, .ps .swiper-button-prev:after{
    display:none;
}
.ps .swiper-button-next:hover,
.ps .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.8);
}

.ps .swiper-button-next {
    right: -10px;
}

.ps .swiper-button-prev {
    left: -10px;
}

/* Pagination Dots */
.ps .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    width: 100%;
}

.ps .swiper-pagination.swiper-pagination-outside {
    bottom: -25px;
}

.ps .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: #999;
    opacity: 1;
    cursor: pointer;
}

.ps .swiper-pagination-bullet-active {
    background: #000;
}

@media (max-width: 767px) {
.swiper.trending-now-slider span.date,
.swiper.trending-now-slider a.category{
    display: none;
}
 .blog-card-image img{
width:100% !important;

}
}
@media (max-width: 991px) {
 .blog-card-image img{
width:260px !important;


}
}

/*Contact form 7 code Start */
/* .wpcf7 form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
} */

.wpcf7 form .wpcf7-form-control-wrap {
  width: 100%;
}


.wpcf7 form .wpcf7-form-control-wrap:nth-of-type(-n+2) {
  width: calc(50% - 5px); 
}


  /* Ensure smooth sliding Trending */
.trending-now-slider .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1); /* Smooth ease-in-out */
}

/* Fix for smooth autoplay */
.trending-now-slider .swiper-slide {
    backface-visibility: hidden; /* Prevent flickering */
    transform: translateZ(0); /* Hardware acceleration */
}
    .trending-now-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-left: 150px; /* Adjust based on label width */
}

.trending-now-slider-container .trending-label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    margin: 0;
    padding: 0 10px 0 0;
    font-weight: 700;
    white-space: nowrap;
}

.swiper.trending-now-slider  {
    width: 100%;
    height: 100%;
}

.trending-now-slider .swiper-slide {
    display: flex;
    align-items: center;
}

.trending-now-slider .slide-content {
    display: flex;
    gap: 15px; 
    width: 100%;
}

/* Hover Image Card ============ */

.hover-image-card {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    transition: all 0.4s ease;
}

.hover-image-card  .card-inner {
    position: relative;
    display: block;
}
.hover-image-card  .card-img {
    overflow: hidden;
    height: 100%;
}
.hover-image-card .card-img img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.hover-image-card .card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.hover-image-card .card-date {
    background: #f9c900;
    color: #000;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 10px;
    position: absolute;
    z-index: 2;
}

.hover-image-card .card-title {
    font-size: 20px;
    line-height: 25px;
    margin: 0;
    padding: 0 10px;
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 2;
    color:#ffff;
}

.hover-image-card .card-btns {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    opacity: 0;
    z-index: 2;
}

.hover-image-card .card-btn {
    background: #000 !important;
    padding: 15px 19px;
    border-radius: 50px;
}

.hover-image-card .card-btn i {
    font-size: 20px;
    color: #fff;
    transition: color 0.3s ease;
}

.hover-image-card .card-btn:hover {
    background: #fff !important;
}

.hover-image-card .card-btn:hover i {
    color: #000;
}

.hover-image-card .card-outer {
    margin-top: 10px;
}

.hover-image-card .card-outer .post-cat {
    padding: 10px 0;
    border-bottom: 1px solid #000;
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.hover-image-card .card-outer .post-desc {
    padding: 10px 0;
    color: #333;
}

/* Hover Effects */
.hover-image-card:hover .card-overlay {
    opacity: 0;
}

.hover-image-card:hover .card-img img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.hover-image-card:hover .card-btns {
    opacity: 1;
}


/* Partner Logo Slider =========== */

  .partner-logo-slider {
    position: relative;
    overflow: hidden;
}

.partner-logo-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.partner-logo-slider img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo-slider .swiper-button-next,
.partner-logo-slider .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.partner-logo-slider .swiper-button-next:after,
.partner-logo-slider .swiper-button-prev:after {
    font-family: 'eicons';
    font-size: 20px;
    font-weight: bold;
}

.partner-logo-slider .swiper-button-next {
    right: 10px;
}

.partner-logo-slider .swiper-button-prev {
    left: 10px;
}

.partner-logo-slider .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-logo-slider .swiper-pagination-bullet {
    opacity: 1;
    background-color: #ddd;
}

.partner-logo-slider .swiper-pagination-bullet-active {
    background-color: #333;
}

/* Smew Search widget ============= */

.smew .custom-search-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    width: 100%;
}

.smew .custom-search-input {
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    margin:0 !important;
}

.smew .custom-search-input:focus {
    outline: none;
}


/* Blog Card Widget ================== */
   .ss .blog-card {
    display: flex;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.ss .blog-card-content {
    position: relative;
    padding: 30px;
    flex: 1;
    background: #fff;
}

/* Arrow for left layout (default) */
.ss .blog-card:not(.blog-card-reverse) .blog-card-arrow {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-right: 20px solid #fff;
}

/* Arrow for right layout */
.ss .blog-card.blog-card-reverse .blog-card-arrow {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #fff;
    border-right: none;
}

/* Remove arrow on mobile */
@media (max-width: 767px) {
    .ss .blog-card-arrow {
        display: none !important;
    }
}



.ss .blog-card.blog-card-reverse {
    flex-direction: row-reverse;
}


.ss .blog-card-image {
    position: relative;
    overflow: hidden;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.ss .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease; 
}

/* For mobile responsiveness */
@media (max-width: 767px) {
    .ss .blog-card-image img {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
    }
}

.ss .blog-card-content {
    flex: 1;
}

.ss .blog-card-category {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
}

.ss .blog-card-title {
    font-size: 20px;
    margin: 10px 0;
    border-bottom: 2px solid #000;
    display: inline-block;
}

.ss .blog-card-date {
    margin-top: 10px;
    font-weight: 600;
}

.ss .blog-card-meta {
    margin: 5px 0 15px;
    font-size: 14px;
    color: #777;
}

.ss .blog-card-excerpt {
    font-size: 14px;
    margin-bottom: 20px;
}

.ss .read-more-button {
    padding: 7px 15px;
    border: 1px solid #000;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    text-align:center;
    width:95%;
    transition: 0.3s;
    text-decoration: none;
    color: #000;
}

.ss .read-more-button:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 767px) {
    .ss .blog-card {
        flex-direction: column;
    }
    
    .ss .blog-card-image img {
        max-width: 100% !important;
        border-radius: 0 !important;
    }
    .ss .blog-card.blog-card-reverse {
        flex-direction: column !important;
    }
}



@media (max-width: 767px) {
    /* Social icon container */
    .smew-header .social-icons {
        order: 1;
    }

    /* Menu icon (hamburger) */
    .smew-header .elementor-menu-toggle {
        order: 2; 
    }
}



/* Blog post Widget Code Start  */


.media-carousel-widget .blogposttwo ul.post-meta-list,
.blogposttwo ul.video-post-meta {
    list-style-type: none;
    display: flex;
    gap: 15px;
    padding-left: 1px;
    padding-top: 15px;
}

.media-carousel-widget .blogposttwo .text{
  padding: 15px 0;
}
.media-carousel-widget.mcw {
    overflow: hidden;
}
.media-carousel-widget .blogposttwo  figure img{
  width: 100%;
}

figure >a{
  width: 100%;
  overflow: hidden;
  margin-bottom: -8px;
}

.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}
.blogposttwo figure {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 10px;
}
.blogposttwo figcaption {
    width: 100%;
    position: absolute;
    color: #fff;
    left: 0;
    bottom: 0;
    padding: 10px 10px 0px 13px;
    background-color: rgba(0, 0, 0, .6);
}


.backcolor, .backcolorhover:hover, .categorieslist ul li:hover, .categorieslist ul li.active, .ui-datepicker-header, .ui-datepicker-calendar .ui-state-active, .ui-datepicker-calendar .ui-state-hover, .nav-tabs > li.active > a, .nav-tabs > li > a:hover, .nav-tabs > li.active > a:focus, .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    background-color: #d10909 !important;
}

/* Contact Us Form Design code  */
/* ---------- Simple Contact Form 7 Modern Style ---------- */
.wpcf7 form {
  max-width: 700px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Label styling */
.wpcf7 form label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

/* Input & Textarea styling */
.wpcf7 form input[type="text"],
.wpcf7 form input[type="email"],
.wpcf7 form textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  resize: vertical;
}
.wpcf7 form textarea{
    height: 80px;
    resize: vertical;
}
/* Focus effect */
.wpcf7 form input:focus,
.wpcf7 form textarea:focus {
  border-color: #1f6feb;
  box-shadow: 0 4px 10px rgba(31,111,235,0.1);
}

/* Submit button */
.wpcf7 form input[type="submit"] {
  background: linear-gradient(90deg, #1f6feb, #2fb3ff);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  padding: 12px 40px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(31,111,235,0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wpcf7 form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31,111,235,0.25);
}

/* Validation error styling */
.wpcf7-not-valid {
  border-color: #e23b3b !important;
}

.wpcf7-not-valid-tip {
  color: #e23b3b;
  font-size: 13px;
  margin-top: -10px;
  margin-bottom: 10px;
  display: block;
}

/* Success / error message box */
.wpcf7-response-output {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.wpcf7-mail-sent-ok {
  background: #e6f7e6;
  border: 1px solid #6cc070;
  color: #2f6b31;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
  background: #fff4f4;
  border: 1px solid #e23b3b;
  color: #b51f1f;
}

/* Default */
.bdt-prime-slider-skin-isolate .bdt-slideshow {
    padding: 0 50px !important;
}

/* TaBLET (≤1024px) */
@media (max-width: 1024px) {
    .bdt-prime-slider-skin-isolate .bdt-slideshow {
        padding: 0 20px !important;
    }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
    .bdt-prime-slider-skin-isolate .bdt-slideshow {
        padding: 0 20px !important;
    }

    ul.bdt-slideshow-items {
        aspect-ratio: 100 / 50 !important;
    }
}




/* First item - remove top padding */
.recent-posts-list .post-list-item:first-child  .recent-post-item{
    padding-top: 0 !important;
}

/* Last item - remove bottom padding */

.recent-posts-list .post-list-item:last-child  .recent-post-item{
    padding-bottom: 0 !important;
}
 .recent-posts-list .post-list-item:first-child  .recent-post-item{
    border-top: none !important;
}
.recent-posts-list .post-list-item:last-child  .recent-post-item{
    border-bottom: none !important;
}
@media (max-width: 767px) {
  .hover-image-slide img {
    height: 250px !important;
    object-fit: cover;
  }
  .recent-posts-widget .recent-posts-vertical-slider{
    height: 700px !important;
  }
}


.smew-hero li.bdt-ps-thumbnav.bdt-position-relative.mTSThumbContainer {
margin: 0 10px !important;
border: 1px solid #fff;
border-radius: 7px;
}
.smew-hero .bdt-slider-items.mTSContainer .bdt-thumb-content img{
    border-radius: 7px;
    border: 1px solid #fff;
}
.smew-hero .bdt-ps-thumbnav.bdt-position-relative.mTSThumbContainer a{
height: 240px !important;
padding: 10px !important;
background: #0000007a !important;
}
.smew-hero .bdt-prime-slider-flogia .bdt-ps-thumbnav .bdt-thumb-content{
    overflow: visible !important;
    
}

.smew-hero .bdt-prime-slider-flogia .bdt-ps-thumbnav>a span{
    bottom: -100px !important;
}
.smew-hero .bdt-prime-slider-flogia .bdt-ps-thumbnav>a span{
    margin: 10px 0 20px 0 !important;
}

/* @media (max-width: 1024px) {
.recent-post-item {
    flex-direction: column !important;
}
} */

.recent-posts-widget.recent-posts-style_four.content-align-left{
	margin-top:15px
}
.ps .hover-image-slide .hover-title a{
	display:none;
}
.ps .hover-image-slide:hover .hover-title a{
	display:block;
}
.hover-image-slide .hover-title a{
	width:80%;
}
