:root {
    --brand: #02638e;
    /* Primary brand color (edit to match brand) */
    --brand-600: #0a4a94;
    /* Darker shade */
    --accent: #e69100;
    /* CTA color */
    --ink: #101828;
    /* Body text */
    --muted: #667085;
    /* Muted text */
    --bg: #f7f9fc;
    /* Section bg */
    --card: #ffffff;
    /* Card bg */
    --ring: rgba(14, 96, 193, .25);
    --radius: 14px;
    --shadow: 0 8px 28px rgba(2, 18, 43, .08);
}

.text-primary {
    color: #e69100 !important;
}

.text-secondary {
    color: #02638e !important;
}

.bg-blue {
    background-color: #02638e !important;
}

.top-menu {
    background-color: #02638e;
    color: #fff;
}

.bg-blue-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-center {
    text-align: center;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: "Outfit", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.5
}

/* Style for datetime-local input placeholder */
input[type="datetime-local"]::placeholder,
input[type="datetime-local"]::-webkit-datetime-edit-text,
input[type="datetime-local"]::-webkit-datetime-edit-month-field,
input[type="datetime-local"]::-webkit-datetime-edit-day-field,
input[type="datetime-local"]::-webkit-datetime-edit-year-field,
input[type="datetime-local"]::-webkit-datetime-edit-hour-field,
input[type="datetime-local"]::-webkit-datetime-edit-minute-field {
    color: var(--muted);
    opacity: 1;
    /* Firefox */
}

a {
    color: var(--brand)
}

img {
    max-width: 100%;
    display: block
}

/* .container{max-width:1120px;margin-inline:auto;padding:24px} */
header {
    position: sticky;
    top: 0;
    backdrop-filter: saturate(180%) blur(10px);
    background: rgba(255, 255, 255, .75);
    border-bottom: 1px solid #eef2f7;
    z-index: 50
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: .2px
}

.badge {
    background: linear-gradient(135deg, var(--brand), var(--brand-600));
    color: #fff;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .75rem
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    padding: .85rem 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 122, 26, .25)
}

.btn:hover {
    transform: translateY(-1px)
}

.btn-outline {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
    box-shadow: none
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    z-index: -2
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 20, 43, .45), rgba(2, 20, 43, .75));
    z-index: -1
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 42px;
    min-height: 60vh;
    align-items: center;
    color: #fff
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    line-height: 1.1;
    margin: 0 0 14px;
    font-weight: bold;
}

.hero p {
    color: #e6eef8;
    font-size: 1.2rem;
    margin: 0 0 24px
}

.hero-card {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: var(--radius);
    padding: 22px;
}

/* Sections */
section {
    padding: 34px 0
}

.section-muted {
    background: var(--bg)
}

.grid {
    display: grid;
    gap: 22px
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr)
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr)
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr)
}

@media (max-width:960px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr
    }
}

.card {
    background: var(--card);
    border: 1px solid #eef2f7;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(14, 96, 193, .08);
    color: var(--brand);
    font-size: 30px;
    align-items: baseline;
}

h2 {
    font-size: clamp(1.6rem, 3vw, 3rem);
    margin: 0 0 10px;
    font-weight: 500;
}

h3 {
    margin: 10px 0 8px;
    font-weight: 600;
    font-size: 1.2rem;
}

p {
    font-size: 18px;
    color: #6f6f6f !important;
}

.muted {
    color: var(--muted)
}

.fs-5 {
    font-size: 1rem !important;
}

.img-fluid {
    border-radius: 15px;
}

/* Form */
.form {
    background: var(--card);
    border: 1px solid #e6ebf2;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 16px
}

.field label {
    font-weight: 500;
    font-size: .9rem;
    color: #6c6c6c;
}

.input {
    border: 1.5px solid #d7dde6;
    border-radius: 7px;
    padding: 8px 10px;
    font-size: 12px;
    font: inherit
}

.input::placeholder {
    font-size: 0.8rem;
}

.input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--ring)
}

/* .row{display:grid;grid-template-columns:1fr 1fr;gap:16px} */
@media (max-width:720px) {
    .row {
        grid-template-columns: 1fr
    }
}

.help {
    font-size: .85rem;
    color: var(--muted)
}

.notice {
    font-size: .85rem;
    color: #155e3b;
    background: #e8fff4;
    border: 1px solid #b6f0d1;
    padding: 10px 12px;
    border-radius: 10px
}

/* Footer */
footer {
    background: #0b1530;
    color: #f4f4f4
}

footer a {
    color: #c4c4c4
}

/* custom section */
.content-grid {
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative;
}

.content-grid .content-grid-item:after,
.content-grid .content-grid-item:before {
    content: '';
    position: absolute;
}

.custom-content-grid:before {
    content: '';
    display: block;
    position: absolute;
    top: 66%;
    left: 50%;
    box-shadow: 0 0 97px 70px rgb(128 128 128 / 10%);
    transform: translate(-50%, -50%);
}

.content-grid .content-grid-item {
    position: relative;
    padding: 10px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-grid .content-grid-item:after {
    width: 100%;
    height: 0;
    top: -1px;
    left: 0;
    bottom: -1px;
    border-bottom: 1px solid #eeeeee;
}

.content-grid .content-grid-item:before {
    height: 100%;
    top: 0;
    left: -1px;
    border-left: 1px solid #eeeeee;
}

.medilytics-img {
    width: 45px;
    height: fit-content;
    margin-right: 10px;
}

.bg-color-blue {
    background-color: #02638e;
}

.bg-color-light {
    background-color: #f7f9fc !important;
}

.blue-section {
    border-radius: 15px;
}

.btn-outline-light {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    border-radius: 0;
}

.btn-outline-light:hover {
    border: 1px solid #fff;
    background: #fff;
    color: #02638e;
}

.uae-specific .card {
    padding: 10px;
    text-align: center;
    box-shadow: none;
    border-radius: 0;
    border-color: #02638e;
}

.list-group-custom .list-group-item {
    background-color: transparent;
    border: 0;
    color: #f4f4f4;
    border-style: dashed;
    padding: .2rem 0rem;
}

/* form section */
.section-padding {
    padding: 2.375rem 1rem 9.375rem 1rem;
}

.section-padding1 {
    padding: 2.375rem 1rem 2.375rem 1rem;
}

.contact-form-wrapper {
    margin-top: -150px;
}

.padding-70 {
    padding: 70px;
}

.rtl-image-flip {
    box-shadow: 0 0 87.3px 2.7px rgba(0, 0, 0, .06);
}

.bg-primary-subtle {
    background-color: #fbf9f5 !important;
}

.bg-secondary-subtle {
    background-color: #ebf0f8 !important;
}

.custom-border-right .box-custom-border:nth-child(odd) {
    position: relative;
}

.custom-border-right .box-custom-border:nth-child(odd)::before {
    content: "";
    height: 100%;
    width: 1px;
    background: #dbdfe7;
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

h3.counter {
    font-size: 2rem;
    font-weight: 500 !important;
}

.iq-button {
    display: inline-block;
    background-color: #02638e;
    color: #fff;
    font-size: .875rem;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: .0375em;
    padding: 1em 2em;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    text-decoration: none;
    border: 1px solid #02638e;
}

.iq-button.primary {
    background-color: #e69100;
    border: 1px solid #e69100;
}

.btn.secondary {
    background-color: #02638e;
    border: 1px solid #02638e;
}

.btn.btn-outline {
    padding: 1em 2em;
    border: 1px solid #02638e;
    color: #02638e;
    background-color: transparent;
    border-radius: 0;
    font-size: .875rem;
    font-weight: 700;
    line-height: 20px;
}

.banner-section p {
    font-size: 25px;
}

.benefits-main {
    margin-top: -180px;
    background-color: #fff;
}

.iq-icon-box.iq-icon-box-bg {
    background-color: #fff;
}

.iq-icon-box.iconbox-border::before {
    width: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    height: 4px;
    background: var(--bs-primary);
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.iq-icon-box.iq-icon-box-bg:hover {
    background-color: #e69100;
}

.iq-icon-box.iconbox-border:hover::before {
    width: 100%;
}

.iq-icon-box.iconbox-border::before {
    width: 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    height: 4px;
    background: #e69100;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.iq-icon-box.iq-icon-box-bg .icon-box-icon i {
    font-size: 40px;
    color: #e69100;
}

.iq-icon-box.iq-icon-box-bg:hover .icon-box-icon i {
    color: #fff;
}

.iq-icon-box.iq-icon-box-bg:hover .icon-box-content .icon-box-title,
.iq-icon-box.iq-icon-box-bg:hover .icon-box-content .icon-box-desc,
.iq-icon-box.iq-icon-box-bg:hover .icon-box-content .iq-button.iq-btn-link {
    color: #fff !important;
}

.iq-fancy-box {
    padding: 0 30px 40px 30px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: #02638e !important;
}

.iq-fancy-box .iq-img-area {
    height: 100px;
    width: 100px;
    line-height: 100px;
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
    position: relative;
}

.iq-fancy-box .iq-img-area img {
    width: 70px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.we-can-do-icons {
    font-size: 30px;
}

.medilytics-icon {
    font-size: 18px;
    width: 18px;
    margin-right: 5px;
}

.modal-header {
    align-items: baseline !important;
}

.modal-content {
    border-radius: 0 !important;
}

.w-30 {
    width: 30%;
}

a {
    text-decoration: none;
}

footer .text-data {
    color: #c4c4c4
}

.social-icons {
    margin: 0;
    padding: 0;
    width: auto;
}

.social-icons li {
    display: inline-block;
    margin: -1px 1px 0 0;
    padding: 0;
    border-radius: 100%;
    overflow: visible;
}

.custom-social-icons-style-1 li a {
    width: 38px;
    height: 38px;
    line-height: 38px;
}

.social-icons li a {
    transition: all .2s ease;
    border-radius: 100%;
    display: block;
    height: 35px;
    line-height: 35px;
    width: 35px;
    text-align: center;
    color: #333 !important;
    text-decoration: none;
    font-size: 12.8px;
    font-size: .9rem;
}

.social-icons:not(.social-icons-opacity-light):not(.social-icons-transparent):not(.social-icons-clean):not(.social-icons-clean-with-border):not(.social-icons-dark):not(.social-icons-dark-2):not(.custom-social-icons) li a {
    background: #fff;
}

.social-icons li:hover.social-icons-facebook a {
    background: #3b5a9a !important;
}

.social-icons li:hover.social-icons-twitter a {
    background: #1da1f2 !important;
}

.social-icons li:hover.social-icons-linkedin a {
    background: #0077b6 !important;
}

.social-icons li:hover.social-icons-instagram a {
    background: #e1306c !important;
}

.social-icons li:hover a {
    color: #fff !important;
}

.swiper {
    overflow: hidden;
    /* hides extra slides */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-section .arrow-joint {
    position: absolute;
    left: auto;
    right: 0;
    bottom: 1rem;
}

.arrow-joint {
    width: 110px;
    height: 45px;
}

.testimonial-section .swiper-button-next,
.testimonial-section .swiper-button-prev {
    background-color: #e65100 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    height: 40px !important;
    width: 40px !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 12px !important;
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
}

footer .fs-4 {
    font-size: 1.3rem !important;
    margin-bottom: 15px;
}

.sticky-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 99;
    width: 40px;
}


/* software partner page */
.software-partner-bg {
    background-image: url("../images/software-developer-page/banner-bg.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.banner-section-inner {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
    padding-bottom: 100px;
}

.software-partner-bg .space-lg {
    height: 48px;
}

.software-partner-bg .space-xl {
    height: 97px;
}

.software-partner-bg .space-xxl {
    height: 101px;
}

/* Base Button */
.software-partner-bg .custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    /* font-family: "Outfit", sans-serif; */
    font-weight: 600;
    text-decoration: none;
    padding: 8px 18px;
    border: 1px solid transparent;
    border-radius: 10px;
    min-width: 160px;
    min-height: 80px;
    font-size: 18px;
    color: #fff;
    transition: all 0.2s linear;
    box-shadow: -8px 8px 0 #404040;
    transform: translateY(-4px);
}

/* Hover motion */
.software-partner-bg .custom-btn:hover {
    top: 5px;
    left: -5px;
    box-shadow: -3px 3px 0 #404040;
    transform: translateY(0);
    text-decoration: none;
}

.software-partner-bg .custom-btn:active {
    box-shadow: none;
    transform: translateY(3px);
}

/* Brown Button */
.software-partner-bg .btn-brown {
    background-color: #c0a085;
    border-color: #c0a085;
}

.software-partner-bg .btn-brown:hover {
    background-color: #8d7562;
    border-color: #8d7562;
}

/* Orange Button */
.software-partner-bg .btn-orange {
    background-color: #d69b6b;
    border-color: #d69b6b;
}

.software-partner-bg .btn-orange:hover {
    background-color: #a37651;
    border-color: #a37651;
}

/* Green Button */
.software-partner-bg .btn-green {
    background-color: #6da18a;
    border-color: #6da18a;
}

.software-partner-bg .btn-green:hover {
    background-color: #4a6e5e;
    border-color: #4a6e5e;
}

/* Pink Button */
.software-partner-bg .btn-pink {
    background-color: #d69494;
    border-color: #d69494;
}

.software-partner-bg .btn-pink:hover {
    background-color: #a37171;
    border-color: #a37171;
}

.border-top {
    border-top: 1px solid #f7f7f7 !important;
}

.card-light-blue {
    background-color: #f7f9fc;
    box-shadow: none;
}

.domain-expertise-img {
    width: 150px;
    justify-self: center;
    padding-bottom: 15px;
}

.counter-icon {
    font-size: 55px;
}

.counter-content h3.counter {
    font-size: 3rem;
}

/* General card style */
.info-card {
    border-radius: 12px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100%;
}

/* Background variations */
.card-bg-1 {
    background-color: rgba(249, 240, 231, 1);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
        url("https://user.lpcontent.net/images/BseGA4UKcwpy6Qa5TbGG76/zyrY5Q9nBju8B6md8RTWQ2");
    background-position: center bottom;
}

.card-bg-2 {
    background-color: rgba(255, 236, 228, 1);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
        url("https://user.lpcontent.net/images/BseGA4UKcwpy6Qa5TbGG76/7efvudm8Jxb2CHYApHejgg");
    background-position: center center;
}

.card-bg-3 {
    background-color: rgba(233, 242, 234, 1);
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
        url("https://user.lpcontent.net/images/BseGA4UKcwpy6Qa5TbGG76/2FoYftXr98PYHnB9ozGDqE");
    background-position: center center;
}

.info-card ul {
    list-style: none;
    padding-left: 0;
}

.info-card ul li {
    display: flex;
}

.info-card ul li i {
    padding-top: 5px;
    padding-right: 6px;
}

.iq-client-img {
    max-width: 150px;
    /* filter: grayscale(100%); */
    transition: filter 0.3s ease;
}

.client-swiper .swiper-slide {
    width: auto !important;
}

.form-control,
.form-select {
    border-radius: 0 !important;
}

.testimonial-card {
    background-size: cover;
    background-position: bottom;
    border-radius: 12px;
    color: #1f1f1f;
}

.bg-light-brown {
    background-color: #f9f0e7;
    background-image: url('https://user.lpcontent.net/images/BseGA4UKcwpy6Qa5TbGG76/zyrY5Q9nBju8B6md8RTWQ2');
}

.bg-light-peach {
    background-color: #ffece4;
    background-image: url('https://user.lpcontent.net/images/BseGA4UKcwpy6Qa5TbGG76/7efvudm8Jxb2CHYApHejgg');
}

.bg-light-green {
    background-color: #e9f2ea;
    background-image: url('https://user.lpcontent.net/images/BseGA4UKcwpy6Qa5TbGG76/2FoYftXr98PYHnB9ozGDqE');
}

#main-faq .accordion-button:not(.collapsed),
#main-faq1 .accordion-button:not(.collapsed) {
    color: #02638e !important;
    background-color: #cde4ee !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

/* Disabled button styles */
.btn-disabled {
    background-color: #ccc !important;
    border-color: #ccc !important;
    color: #666 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.btn-disabled:hover {
    background-color: #ccc !important;
    border-color: #ccc !important;
    color: #666 !important;
    transform: none !important;
}

.domain-expertise-img1 {
    width: 100px;
    justify-self: center;
}

.skills-card {
    width: 200px;
    background-color: #fff;
    display: flex;
    align-items: center !important;
    padding: 10px;
    height: 100%;

}

.skills-card img {
    width: 40px;
    margin-right: 5px;
}

.skills-card img.size-bg {
    width: 70px;
    margin-right: 5px;
}

.btn-brown.width-more {
    width: 200px;
}

.place-center {
    place-self: center;
}

@media (min-width: 1024px) {
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}

@media (max-width: 768px) {
    .software-partner-bg .custom-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        /* font-family: "Outfit", sans-serif; */
        font-weight: 600;
        text-decoration: none;
        padding: 8px 18px;
        border: 1px solid transparent;
        border-radius: 10px;
        min-width: 115px;
        min-height: 43px;
        font-size: 12px;
        color: #fff;
        transition: all 0.2s linear;
        box-shadow: -8px 8px 0 #404040;
        transform: translateY(-4px);
    }

    .skills-card {
        width: 175px;
    }

    .contact-form-wrapper .padding-70 {
        padding: 20px;
    }

    .info-card {
        height: auto;
        min-height: auto;

    }

}

@media (max-width: 576px) {

    .iq-button,
    .iq-button.btn {
        padding: 5px 10px;
        font-size: 14px;
        font-weight: 500;
    }

    footer img.w-50 {
        width: 30% !important;
    }

    .btn-brown.width-more {
        float: left;
    }

    .software-partner-bg .custom-btn {
        font-size: 16px;
    }
}