.logo {
    --logo-height: 50px;
    height: var(--logo-height);
    display: flex;
    flex-shrink: 0;
}

/* =========================
   HERO
========================= */

.hero-2.gradient-hero {
    position: relative;
    height: 90vh;
    min-height: 650px;
    padding-top: 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Swiper's default pagination renders round dots. This overrides them to
   look like short horizontal dashes, with the active one colored orange —
   matching the reference: [====][--][--] centered under the image. */

.hero-slider-pagination {
    position: static;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 80% !important;
    margin-left: auto;
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 18px;
    height: 3px;
    border-radius: 2px;
    background: #16213e;
    /* dark dash for inactive slides */
    opacity: 1;
    margin: 0;
    transition: background 0.25s ease, width 0.25s ease;
    cursor: pointer;
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    background: #cf0001;
    /* orange dash for the active slide */
    width: 24px;
    /* slightly longer, like the reference image */
}

/* =========================
   SWIPER
========================= */
.accordion-home-5 .accordion-header {
    margin-bottom: 0;
    padding: 10px 0;
}

.accordion.accordion-home-5 .accordion-item {
    background: transparent;
    border: 0 !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

/* Remove Bootstrap default arrow */
.accordion-button::after {
    display: none;
}

/* Custom arrow */
.custom-accordion-arrow {
    width: 18px;
    height: 18px;
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

/* Arrow line */
.custom-accordion-arrow::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 1px;
    background: #52627a;
    top: 9px;
    left: 0;
}

/* Arrow head */
.custom-accordion-arrow::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-top: 1px solid #52627a;
    border-right: 1px solid #52627a;
    transform: rotate(45deg);
    top: 6px;
    right: 0;
}

/* OPEN = arrow points DOWN */
.accordion-button:not(.collapsed) .custom-accordion-arrow {
    transform: rotate(90deg);
}

/* H6 red */
.accordion-button:not(.collapsed) h5 {
    color: #cf0001 !important;
}

.accordion-button:not(.collapsed) p {
    color: #000 !important;
}

/* Arrow red */
.accordion-button:not(.collapsed) .custom-accordion-arrow::before {
    background: #cf0001;
}

.accordion-button:not(.collapsed) .custom-accordion-arrow::after {
    border-color: #cf0001;
}

/* Icon red */
.accordion-button:not(.collapsed) img {
    filter: brightness(0) saturate(100%) invert(38%) sepia(96%) saturate(1800%) hue-rotate(355deg) brightness(96%);
}

/* Accordion body text red */
.accordion-item:has(.accordion-button:not(.collapsed)) .accordion-body {
    color: #cf0001;
}

/* Make paragraph red as well */
.accordion-item:has(.accordion-button:not(.collapsed)) .accordion-body p {
    color: #000;
}




/* FAQ accordion icon: circular soft-colored background behind each icon */
.accordion-home-5 .accordion-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1067a8;
    flex-shrink: 0;
}

.accordion-home-5 .accordion-icon-wrap img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.accordion-button h5 {
    color: #1067a8;
}

.gradient-hero .position-relative {
    position: relative;
    height: 100%;
    z-index: 1;
}

.gradient-hero .swiper {
    width: 100%;
    height: 100%;
    padding: 100px 0;
}

.gradient-hero .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.gradient-hero .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* =========================
   CONTAINER
========================= */

.gradient-hero .swiper-slide .container {
    height: 100%;
}

.gradient-hero .swiper-slide .row {
    height: 100%;
    align-items: center;
}

/* =========================
   TEXT
========================= */

.performance-title {
    margin-bottom: 0;
}

.performance-title .typing-text {
    display: inline-block;
    color: #cf0001;
    min-width: 10px;
}

.performance-title .typing-text::after {
    content: "|";
    margin-left: 3px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* =========================
   HERO IMAGE
========================= */

.hero-two-img-group {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-two-img-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 0 200px 0;
}

.gradient-hero {
    background: linear-gradient(100deg, #ffffff 0%, #ffffff 30%, #4888ba17 55%, #f9d9b7 75%, #cf000066 100%);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991.98px) {

    .hero-2.gradient-hero {
        height: auto;
        min-height: 90vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .gradient-hero .position-relative {
        height: auto;
    }

    .gradient-hero .swiper {
        height: auto;
    }

    .gradient-hero .swiper-wrapper {
        height: auto;
    }

    .gradient-hero .swiper-slide {
        height: auto;
    }

    .gradient-hero .swiper-slide .container {
        height: auto;
    }

    .gradient-hero .swiper-slide .row {
        height: auto;
    }

    .hero-two-img-group {
        height: auto;
        margin-top: 40px;
    }

    .hero-two-img-group img {
        width: 100%;
        height: 500px;
        object-fit: cover;
    }
}

.accordion.accordion-home-5 .border-0 {
    border: 0 solid rgba(8, 15, 44, .15) !important
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgb(203 2 0) !important;
}

.expertise-section img {
    width: 100%;
}


.expertise-img-1 {}

/* First image */
.expertise-img-1 {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 120px 0 0 0;

}

/* Second image */
.expertise-img-2 {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 0 120px 0 0 !important;
}

/* Third image */
.expertise-img-3 {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 0 0 0 120px !important;
}

.feedback-slider {
    width: 100% !important;
}

.feedback-slider .swiper-slide {
    width: 100% !important;
}

.feedback-slider .swiper-slide>.row {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.feedback-slider-wrap {
    position: relative;
}

.feedback-navs {
    position: absolute !important;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 20;
    pointer-events: none;
}

.feedback-button-prev,
.feedback-button-next {
    pointer-events: auto;
    cursor: pointer;
}

.md-contents {
    font-style: italic;
    color: rgb(203 2 0) !important;
    font-size: 20px;
    margin-top: 40px;

}
.tech-partner{
    padding: 20px 35px;
}
.tech-partner:hover {
    box-shadow: none !important;
}

.tech-slide .col {
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    background: #fff !important;

}

.tech-slide .col::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(358deg, transparent 0%, rgb(205 19 23 / 10%) 50%, rgb(165 51 51 / 10%) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    box-shadow: none;

}

.tech-slide .col:hover::before {
    opacity: 1;
}


/* Typing text + blinking caret */
.typing-text {
    color: #7ee8fa;
    display: inline-block;
    min-height: 1.2em;
}

.typing-text::after {
    content: "|";
    display: inline-block;
    margin-left: 2px;
    animation: blink 0.9s step-end infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}


.hover\:text-danger:hover {
    color: #cf0001 !important;
}

.pr-5 {
    padding-right: 150px;
}

.btn-theme {
    border-radius: 15px 0;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 30px;
    font-size: 14px;
}
.btn-theme-sm {
    border-radius: 10px 0;
    font-weight: 600;
    padding: 6px 15px;
    font-size: 12px;
}
.btn-outline-danger {
    border: 1px solid #cf0001;
}
.btn-outline-dark{
    border: 1px solid #000;
}
.solutionsGrid img , .blog-section img{
object-fit: cover;
filter: grayscale(100%);
transition: border-radius 1s ease;
height: 200px;

}
.solutionsGrid .card {
    background-color: rgb(241 245 249);
    border: 0;
    margin-bottom: 50px;
}
.solutionsGrid .card-header{
   padding: 0;
    background-color: rgb(241 245 249);
   border-bottom: 0;
}

.service-card {
    height: 200px;
}
.solutionsGrid .col-md-4:hover img, .blog-section .card:hover img  {
  border-radius: 60px 0;
}

.solutionsGrid .col-md-4:hover h6 a  , .blog-section .card:hover h6 a {
    color: #cf0001 !important;
    cursor: pointer;

}
.solutionsGrid .col-md-4:hover .btn-theme  , .blog-section .card:hover .btn-theme {
background-color: #cf0001;
border:1px solid #cf0001;
color: #fff;
}
.feature-list__card{
    transition: border-radius 1s ease;

}
.feature-list__card:hover{
      border-radius: 60px 0;
background-color: #1067a8;

}
.feature-list__card:hover p , .feature-list__card:hover h6{
    color: #fff;

}
.MdMessage img{
          border-radius: 110px 0;

}
.contact-gradient{
background-color: #ffffff;
  background-image: 
    radial-gradient(circle at 0% 120%, rgba(249, 115, 22, 0.85) 0%, transparent 40%),
    radial-gradient(circle at 45% 110%, rgba(251, 191, 36, 0.7) 0%, transparent 45%);
}


/*  */
@media screen and (max-width: 768px) {
    .gradient-hero .swiper {
        padding: 0;
    }
    .hero-two-img-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px 0 100px 0;
}
    .hero-two-img-group img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
        .hero-2.gradient-hero {
        height: auto;
        min-height: 80vh;
        padding-top: 100px;
        padding-bottom: 0;
    }
    .expertise-img-1 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 120px 0 0 0;
}
.expertise-img-2 , .expertise-img-3{
 height: 250px;
}
.partner-section-3__vertical-text{
    text-align:center
}
.tech-partner{
    padding: 15px;
}
.justify-content-endss{
    justify-content: space-between  !important;
}
}