@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Root Variables Start */
:root {

    /* Brand Colors */
    --primary-orange: #FF6A00;
    --secondary-orange: #FFBA26;

    --primary-blue: #0A2C8C;
    --secondary-blue: #1D4ED8;
    --accent-blue: #092C85;
    --dark-blue: #020B2D;

    --text-dark: #111827;
    --text-gray: #6B7280;
    --text-light: rgba(255, 255, 255, 0.85);
    --text-white: #FFFFFF;

    --bg-white: #FFFFFF;
    --bg-light: #F4F7FC;
    --bg-section: #EEF3FB;

    /* Borders */
    --border-color: #E5E7EB;
    --border-light: rgba(255, 255, 255, 0.22);
    --border-white: rgba(255, 255, 255, 0.40);

    /* Fonts */
    --font-inter: 'Inter', sans-serif;
    --font-manrope: 'Manrope', sans-serif;
    --font-playfair: 'Playfair Display', serif;

    /* Font Sizes */
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-md: 18px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 48px;
    --font-size-4xl: 60px;
    --font-size-5xl: 72px;

    /* Font Weight */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm:
        0px 1px 3px rgba(0, 0, 0, 0.10);

    --shadow-md:
        0px 4px 12px rgba(0, 0, 0, 0.12);

    --shadow-lg:
        0px 10px 30px rgba(0, 0, 0, 0.18);

    /* Gradients */
    --gradient-orange:
        linear-gradient(90deg,
            #FF6A00 0%,
            #FFBA26 100%);

    --gradient-blue:
        linear-gradient(135deg,
            #0A2C8C 0%,
            #1D4ED8 100%);

    --gradient-dark:
        linear-gradient(180deg,
            #020B2D 0%,
            #0A2C8C 100%);

    /* Hero Overlay */
    --hero-overlay:
        linear-gradient(180deg,
            rgba(2, 11, 45, 0.85) 0%,
            rgba(6, 22, 74, 0.82) 30%,
            rgba(10, 44, 140, 0.78) 60%,
            rgba(29, 78, 216, 0.70) 100%);

    /* Transition */
    --transition: all 0.3s ease;
}

/* Root Variables End */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    color: var(--text-dark);
    background: var(--bg-white);

    font-size: var(--font-size-base);
    font-family: var(--font-inter);
    font-weight: var(--fw-regular);
    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    overflow: hidden;
}

div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
header,
footer,
section,
ul,
ol,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
    outline: none;
}

::placeholder {
    opacity: 1;
    color: #6B7280;
}

p {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--text-gray);
}

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1170px;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1370px;
    }
}

@media (min-width: 1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1520px;
    }
}

/* COMMON CSS  START */
.common-pad {
    padding: 100px 0;
}

.banner-title {
    color: #fff;
    text-align: center;
    font-size: 65px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 0;
}

.banner-title span {
    position: relative;
    display: inline-block;
    color: #fff;
    font-family: var(--font-playfair);
    font-size: 70px;
    font-style: italic;
    font-weight: 600;
}

.banner-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 100%;
    height: 20px;
    background: url("../images/banner-line.svg") no-repeat center;
    background-size: contain;
}

.banner-description {
    max-width: 1128px;
    margin: 35px auto 28px;
    color: rgba(255, 255, 255, 0.92);
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.5px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    height: 54px;
    padding: 12px 16px 12px 20px;
    border-radius: 50px;
    background: linear-gradient(90deg, #FF6A00 0%, #FFBA26 100%);
    box-shadow: inset 0 14px 14px rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.banner-arrow {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.common-heading {
    text-align: center;
    margin-bottom: 60px;
}

.common-heading h2,
.common-heading h1 {
    font-size: 54px;
    font-weight: 500;
    line-height: 64px;
    text-transform: capitalize;
    margin: 0;
}

.common-heading p {
    color: #4A4D5A;
    font-size: 18px;
    line-height: 30px;
    margin-top: 20px;
}


@media (max-width: 1399px) {
    .common-pad {
        padding: 80px 0;
    }

    .banner-title {
        font-size: 54px;
    }

    .banner-title span {
        font-size: 54px;
    }

    .banner-description {
        font-size: 20px;
    }

    .common-heading h2,
    .common-heading h1 {
        font-size: 46px;
        line-height: 58px;
    }
}

@media (max-width: 1199px) {
    .common-pad {
        padding: 60px 0;
    }

    .banner-title {
        font-size: 50px;
        letter-spacing: -1px;
    }

    .banner-title span {
        font-size: 50px;
    }

    .banner-btn {
        height: 52px;
        padding: 12px 18px 12px 24px;
    }

    .common-heading h2,
    .common-heading h1 {
        font-size: 42px;
    }

}

@media (max-width: 991px) {
    .banner-title {
        font-size: 42px;
        line-height: 1.2;
    }

    .banner-title span {
        font-size: 42px;
    }

    .banner-description {
        font-size: 18px;
    }

    .banner-btn {
        font-size: 15px;
        height: 50px;
        padding: 12px 18px 12px 22px;
        gap: 12px;
    }

    .banner-arrow {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .common-heading h2,
    .common-heading h1 {
        font-size: 40px;
        line-height: 52px;
    }
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 34px;
        line-height: 1.25;
        letter-spacing: 0;
    }

    .banner-title span {
        font-size: 38px;
    }

    .banner-description {
        font-size: 16px;
    }

    .banner-btn {
        height: 40px;
        padding: 10px 10px 10px 20px;
        font-size: 14px;
    }

    .banner-arrow {
        width: 26px;
        height: 26px;
        min-width: 26px;
    }

    .common-heading {
        margin-bottom: 40px;
    }

    .common-heading h2,
    .common-heading h1 {
        font-size: 34px;
        line-height: 46px;
    }

    .common-heading p {
        font-size: 16px;
        line-height: 26px;
    }

}

@media (max-width: 575px) {
    .common-pad {
        padding: 50px 0;
    }

    .common-heading p {
        font-size: 14px;
        line-height: 24px;
        margin-top: 12px;
    }

    .banner-title {
        font-size: 28px;
    }

    .banner-title span {
        font-size: 31px;
    }

    .banner-description {
        font-size: 14px;
    }

    .common-heading {
        margin-bottom: 30px;
    }

    .common-heading h2,
    .common-heading h1 {
        font-size: 28px;
        line-height: 34px;
    }

    body {
        font-size: var(--font-size-sm);
    }
}

/* COMMON CSS END */


/* Header */
.main-header {
    position: fixed;
    width: 100%;
    z-index: 999;
    background: transparent;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.main-header.header-scrolled {
    background: var(--accent-blue);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-brand-text {
    color: var(--text-dark);
    font-size: var(--font-size-xl);
    font-weight: var(--fw-bold);
    line-height: 32px;
    background: var(--gradient-primary);

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-nav-menu {
    display: flex;
    align-items: center;
    margin: auto;
    column-gap: 25px;
}

.header-nav-menu .nav-link {
    color: #fff;
    font-size: var(--font-size-base);
    font-weight: var(--fw-regular);
    line-height: 24px;
    transition: var(--transition);
    padding: 0;
}

.header-nav-menu .nav-link:hover,
.header-nav-menu .nav-link.active {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-action-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-left: var(--spacing-2xl);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--primary-dark);
    font-size: var(--font-size-base);
    font-weight: var(--fw-semibold);
    text-decoration: none;
}

.header-phone:hover {
    color: var(--primary-dark);
}

.header-connect-btn {
    height: 44px;
    padding: 0 var(--spacing-xl);
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: var(--font-size-base);
    font-weight: var(--fw-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.header-connect-btn:hover {
    color: var(--text-white);
    transform: translateY(-2px);
}

.mobile-toggle {
    border: 0;
}

@media (min-width:1200px) and (max-width:1399px) {
    /* .header-nav-menu {
        column-gap: 15px;
    } */

    .header-nav-menu .nav-link {
        font-size: 14px;
    }
}


@media (max-width: 1399px) {
    .main-header .navbar-brand img {
        width: 140px;
    }
}

@media (max-width: 991px) {

    .main-header .navbar-collapse {
        margin-top: 20px;
        padding-top: 0;
        border-top: 1px solid var(--border-light);
    }

    .header-nav-menu .nav-link {
        font-size: var(--font-size-sm);
    }

    .header-nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin: 10px 0;
        margin-bottom: 18px;
    }

    .header-action-group {
        flex-direction: column;
        align-items: self-start;
        margin-left: 0;
    }

    .main-header .mobile-toggle {
        padding: 0;
        border: none;
        outline: none;
        box-shadow: none;
        background: var(--gradient-primary);
        width: 40px;
        height: 40px;
    }

    .main-header .mobile-toggle .icon-menu {
        display: inline-block;
    }

    .main-header .mobile-toggle .icon-close {
        display: none;
    }

    .main-header .mobile-toggle:not(.collapsed) .icon-menu {
        display: none;
    }

    .main-header .mobile-toggle:not(.collapsed) .icon-close {
        display: inline-block;
    }

    .main-header {
        padding: 12px 0;
        padding-bottom: 15px;
        position: fixed;
        width: 100%;
    }

    .header-navbar {
        min-height: auto;
    }
}

@media screen and (max-width:575px) {
    .main-header .navbar-brand img {
        width: 120px;
    }

    .main-header .banner-btn {
        margin-left: 0;
    }
}

/* Header End */


/* Hero Section Start */

.banner-section {
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 188px;
    padding-bottom: 100px;
}

.banner-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.banner-section::after {
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 9, 23, 0.73) 0%,
            rgba(1, 14, 33, 0.73) 10%,
            rgba(2, 18, 42, 0.73) 20%,
            rgba(1, 23, 66, 0.73) 30%,
            rgba(1, 36, 123, 0.73) 40%,
            rgba(21, 56, 150, 0.73) 50%,
            rgba(48, 85, 186, 0.73) 60%,
            rgba(68, 104, 201, 0.73) 70%,
            rgba(88, 121, 208, 0.73) 80%,
            rgba(108, 137, 217, 0.73) 83.52%,
            rgba(134, 161, 234, 0.73) 88%,
            rgba(180, 198, 247, 0.73) 92%,
            rgba(231, 238, 255, 0.73) 96.37%,
            rgba(255, 255, 255, 0.73) 100%);
    z-index: 1;
}

/* .banner-section::after,
.banner-video {
    height: calc(100% - 350px);
} */

.banner-shape {
    position: absolute;
    left: 0;
    /* bottom: 350px; */
    bottom: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.banner-shape svg {
    width: 100%;
    height: 140px;
    display: block;
}

.banner-shape path {
    fill: #ffffff;
}

.clients-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    overflow: hidden;
    max-width: 1160px;
    margin: 48px auto;
    margin-bottom: 0 !important;
}

.clients-content {
    min-width: 180px;
    padding-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.clients-content h4 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

.clients-slider {
    width: calc(100% - 210px);
    overflow: hidden;
}

.clients-slider .swiper-wrapper {
    align-items: center;
    transition-timing-function: linear !important;
}

.clients-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.clients-slider .swiper-slide img {
    width: auto;
    max-width: 100%;
    height: 42px;
    object-fit: contain;
}

.hero-video-box {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
    max-width: 1160px;
    margin: auto;
    z-index: 2;
    position: relative;
}

.hero-video-player {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 15px;
    height: 650px;
}

.hero-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 0;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.hero-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.hero-video-play-btn svg {
    width: 28px;
    height: 28px;
}

.hero-video-play-btn::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 1399px) {
    .banner-section {
        padding-top: 156px;
        padding-bottom: 80px;
        min-height: 668px;
    }
}

@media (max-width: 1199px) {
    .hero-video-play-btn {
        width: 72px;
        height: 72px;
    }

    .banner-section {
        padding-top: 126px;
        padding-bottom: 50px;
        min-height: 600px;
        /* min-height: 650px; */
    }

    .hero-video-player {
        height: 500px;
    }

    /* .banner-section::after,
    .banner-video {
        height: calc(100% - 250px);
    } 
        .banner-shape {
        bottom: 250px;
    } */

    .clients-wrapper {
        margin: 40px auto;
    }
}

@media (max-width: 991px) {
    .clients-wrapper {
        gap: 20px;
    }

    .clients-content {
        min-width: 150px;
        padding-right: 18px;
    }

    .clients-content h4 {
        font-size: 18px;
        line-height: 28px;
    }

    .clients-slider .swiper-slide img {
        width: 160px;
    }

    .hero-video-box,
    .hero-video-player {
        border-radius: 12px;
    }

    .hero-video-play-btn {
        width: 64px;
        height: 64px;
    }

    .hero-video-play-btn svg {
        width: 24px;
        height: 24px;
    }

    .hero-video-player {
        height: 400px;
    }

    .banner-section {
        /* min-height: 540px; 
        padding-bottom: 50px;*/

    }

    /* .banner-section::after,
    .banner-video {
        height: calc(100% - 200px);
    }

    .banner-shape {
        bottom: 200px;
    } */
}

@media (max-width: 767px) {
    .banner-shape svg {
        height: 100px;
    }


    .clients-wrapper {
        flex-direction: column;
        align-items: flex-start;
        margin: 30px auto;
    }

    .clients-content {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-right: 0;
        padding-bottom: 16px;
        width: 100%;
    }

    .clients-slider {
        width: 100%;
    }

    .clients-slider .swiper-slide img {
        width: 120px;
    }

    .hero-video-play-btn {
        width: 54px;
        height: 54px;
    }

    .hero-video-play-btn svg {
        width: 18px;
        height: 18px;
    }

    .clients-content h4 {
        font-size: 16px;
        text-align: center;
    }

    .clients-content h4 br {
        display: none;
    }
}

@media (max-width: 575px) {
    .clients-content h4 {
        font-size: 14px;
        line-height: 24px;
    }

    .hero-video-player {
        height: 300px;
    }

    /* .banner-section::after,
    .banner-video {
        height: calc(100% - 150px);
    } 

    .banner-shape {
        bottom: 150px;
    }*/
}

/* Hero Section End */

/* Business Impact Start */
.business-impact-wrapper {
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
}

.impact-card {
    width: 347px;
    min-height: 164px;
    background: #ffffff;
    border: 1px solid rgba(0, 24, 62, 0.38);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
}

.impact-card h3 {
    color: var(--primary-blue);
    font-size: 62px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1;
}

.impact-card p {
    color: #4A4D5A;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 1399px) {
    .impact-card h3 {
        font-size: 54px;
    }
}

@media (max-width: 1199px) {
    .impact-card h3 {
        font-size: 46px;
    }

    .business-impact-wrapper {
        gap: 20px;
    }

    .impact-card {
        width: 290px;
    }
}

@media (max-width: 991px) {

    .impact-card {
        width: calc(33.3% - 14px);
        padding: 10px 8px;
        min-height: 120px;
    }

    .impact-card h3 {
        font-size: 36px;
        line-height: 36px;
    }

    .impact-card p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {

    .business-impact-wrapper {
        gap: 20px;
    }

    .impact-card p {
        min-height: 49px;
    }
}

@media (max-width: 575px) {
    .impact-card h3 {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .impact-card p {
        font-size: 12px;
    }

    .business-impact-wrapper {
        gap: 10px;
    }

    .impact-card {
        padding: 7px 6px;
        min-height: auto;
        width: calc(33.3% - 7px);
    }
}

/* Business Impact End */

/* Case Studies Start  */

.case-studies-section {
    background: linear-gradient(180deg,
            var(--accent-blue) 0%,
            #254AAC 100%);
    position: relative;
    overflow: visible;
}

.case-study-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}

.case-studies-section .common-heading {
    margin-bottom: 0;
}

.case-studies-section .common-heading h2 {
    color: var(--text-white);
}

.case-studies-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: visible;
}

.case-study-card {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 16px 27px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: sticky;
    top: 180px;
    background: #fff;
}

.case-study-card:nth-child(1) {
    z-index: 1;
}

.case-study-card:nth-child(2) {
    z-index: 2;
}

.case-study-card:nth-child(3) {
    z-index: 3;
}

.case-study-image {
    width: 52%;
    flex-shrink: 0;
}

.case-study-image img {
    width: 100%;
    height: 498px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.case-study-content {
    width: 48%;
}

.case-study-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 26px;
}

.case-study-title-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.case-study-title-row h3 {
    font-size: 38px;
    font-weight: var(--fw-medium);
    color: #111111;
}

.case-study-badge {
    padding: 12px 20px;
    border-radius: var(--radius-xs);
    background: var(--primary-blue);
    color: var(--text-white);
    font-size: 18px;
    font-weight: var(--fw-medium);
}

.case-study-domain,
.case-study-industry,
.case-study-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.case-study-domain h6,
.case-study-industry h6 {
    margin: 0;
    color: #111111;
    font-size: 20px;
    font-weight: var(--fw-regular);
}

.case-study-domain p,
.case-study-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #636363;
}

.industry-badge {
    padding: 12px 20px;
    border-radius: var(--radius-xs);
    border: 1px solid #2252BC;
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: var(--fw-medium);
}

.case-study-devops {
    color: #666666;
    font-size: 16px;
}

@media (max-width: 1399px) {
    .case-study-title-row h3 {
        font-size: 34px;
    }

    .case-study-image img {
        height: 430px;
    }
}

@media (max-width: 1199px) {
    .case-study-card {
        top: 160px;
        padding: 18px 20px;
    }

    .case-study-card {
        flex-direction: column;
    }

    .case-study-image,
    .case-study-content {
        width: 100%;
    }

    .case-study-image img {
        height: 400px;
    }

    .case-study-title-row h3 {
        font-size: 30px;
    }

    .case-study-badge,
    .industry-badge {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .case-study-heading-wrapper {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .case-study-image img {
        height: 360px;
    }

    .case-study-domain p,
    .case-study-description p {
        font-size: 16px;
        line-height: 1.7;
    }

    .case-study-card {
        top: 120px;
    }
}

@media (max-width: 767px) {
    .case-study-card {
        padding: 15px;
        gap: 20px;
    }

    .case-study-image img {
        height: 280px;
        border-radius: var(--radius-md);
    }

    .case-study-title-row h3 {
        font-size: 26px;
    }

    .case-study-badge,
    .industry-badge {
        text-align: center;
        font-size: 14px;
        padding: 8px 12px;
    }

    .case-study-title-row {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .case-study-domain h6,
    .case-study-industry h6 {
        font-size: 18px;
    }

    .case-study-top {
        gap: 10px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .case-study-image img {
        height: 220px;
    }

    .case-study-badge,
    .industry-badge {
        font-size: 12px;
    }

    .case-study-title-row h3 {
        font-size: 22px;
    }

    .case-study-domain h6,
    .case-study-industry h6 {
        font-size: 16px;
    }

    .case-study-domain p,
    .case-study-description p {
        font-size: 14px;
    }

    .case-study-devops {
        font-size: 14px;
    }
}

/* Case Studies End */

/* AI Capabilities Start */
.ai-card {
    height: 100%;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(180deg,
            var(--accent-blue) 0%,
            #254AAC 100%);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.ai-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -100px;
    right: -80px;
    background: rgba(45, 102, 255, 0.6);
    border-radius: 50%;
    filter: blur(120px);
}

.ai-card:hover {
    transform: translateY(-5px);
}

.ai-card-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.ai-card-large .ai-card-image {
    height: 320px;
}

.ai-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ai-card-content {
    position: relative;
    z-index: 2;
}

.ai-card-content h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--fw-medium);
    color: var(--text-white);
    margin-bottom: 12px;
}

.ai-card-content p {
    font-size: var(--font-size-md);
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 1199px) {
    .ai-card-image {
        height: 240px;
    }

    .ai-card-large .ai-card-image {
        height: 280px;
    }
}

@media (max-width: 991px) {
    .ai-card {
        padding: 20px;
    }

    .ai-card-image,
    .ai-card-large .ai-card-image {
        height: 220px;
    }

    .ai-card-content h3 {
        font-size: 22px;
    }

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

@media (max-width: 767px) {

    .ai-card-image,
    .ai-card-large .ai-card-image {
        height: 180px;
    }

    .ai-card-content h3 {
        font-size: 20px;
    }

    .ai-card-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 574px) {

    .ai-card-content p {
        font-size: 14px;
    }

    .ai-card-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/* AI Capabilities End */


/* Our Services Start */

.service-tabs {
    gap: 16px;
    margin-bottom: 46px;
}

.service-tabs .nav-link {
    min-width: 280px;
    padding: 13px;
    border: 1px solid #5F5F5F;
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    color: #494949;
    font-size: var(--font-size-md);
    font-weight: var(--fw-regular);
    transition: var(--transition);
}

.service-tabs .nav-link.active {
    background: linear-gradient(180deg,
            var(--accent-blue) 0%,
            #254AAC 100%);
    color: var(--text-white);
    border-color: transparent;
}

.service-image {
    padding-right: 50px;
}

.service-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.service-content h3 {
    font-size: 36px;
    font-weight: var(--fw-medium);
    color: #111111;
    margin-bottom: 34px;
}

.service-item h4 {
    font-size: 24px;
    font-weight: var(--fw-medium);
    color: #111111;
    margin-bottom: 16px;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item ul li {
    color: #666666;
    font-size: var(--font-size-md);
    line-height: 34px;
    list-style: disc;
    margin-left: 25px;
}

@media (min-width: 768px) {

    .servicetab-content .tab-content .accordion-item {
        border: 0;
        background: transparent;
    }

    .servicetab-content.accordion-collapse {
        display: block !important;
    }

    .servicetab-content .accordion-button {
        display: none;
    }

    .our-services-section .tab-content>.active .collapse:not(.show) {
        display: block;
    }
}

@media (max-width: 1399px) {
    .service-tabs .nav-link {
        min-width: 200px;
    }

    .service-image {
        padding-right: 0;
    }

    .service-content h3 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .service-item h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .service-item ul li {
        font-size: 16px;
        line-height: 30px;
    }

    .service-image img {
        border-radius: 20px;
    }
}

@media (max-width: 1199px) {
    .service-tabs .nav-link {
        min-width: 180px;
        padding: 10px;
        font-size: 16px;
    }

    .service-tabs {
        gap: 12px;
    }
}

@media (max-width: 991px) {

    .service-tabs .nav-link {
        min-width: 150px;
    }

    .service-content h3 {
        font-size: 30px;
    }

    .service-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {

    .service-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

    .service-tabs .nav-item {
        width: 25%;
    }

    .service-tabs .nav-link {
        min-width: auto;
        white-space: nowrap;
        width: 100%;
        font-size: 14px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-item h4 {
        font-size: 16px;
    }


    .servicetab-content.tab-content>.tab-pane {
        display: block;
        opacity: 1;
        border-radius: 10px;
    }

    .service-tabs {
        display: none !important;
    }

    .servicetab-content .accordion-item {
        border: 1px solid var(--border-color);
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 12px;
    }

    .servicetab-content .accordion-button {
        background: #fff;
        font-size: 18px;
        font-weight: 600;
        color: var(--text-dark);
        box-shadow: none;
    }

    .servicetab-content .accordion-button:not(.collapsed) {
        background: var(--gradient-blue);
        color: #fff;
    }

    .servicetab-content .accordion-button:focus {
        box-shadow: none;
    }

    .servicetab-content .accordion-body {
        padding: 15px;
    }

    .servicetab-content .accordion-collapse {
        transition: all .3s ease;
    }

    .servicetab-content .accordion-button {
        padding: 10px;
    }

    .service-item ul li {
        font-size: 14px;
        line-height: 24px;
    }

    .servicetab-content .accordion-button::after {
        flex-shrink: 0;
        width: 1.25rem;
        height: 1.25rem;
        margin-left: auto;
        content: "+";
        background-repeat: no-repeat;
        background-size: 1.25rem;
        display: block;
        margin-left: auto;
    }

    .servicetab-content .accordion-button:not(.collapsed)::after {
        content: "−";
    }

}

@media screen and (max-width:575px) {
    .servicetab-content .accordion-button {
        font-size: 16px;
    }

    .service-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .service-image {
        margin-bottom: 20px;
    }
}

/* Our Services End */

/* Technology Expertise Start */

.technology-expertise-section {
    background: var(--gradient-blue);
    overflow: hidden;
}

.technology-expertise-section .common-heading h2 {
    color: var(--text-white);
    margin-bottom: 40px;
}

.technology-tabs {
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.technology-tabs .nav-item {
    margin: 0;
}

.technology-tabs .nav-link {
    /* min-width: 260px; */
    padding: 16px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    color: #494949;
    font-size: var(--font-size-base);
    text-align: center;
    transition: var(--transition);
}

.technology-tabs .nav-link:hover {
    color: var(--text-white);
    background: var(--gradient-orange);
}

.technology-tabs .nav-link.active,
.technology-tabs .show>.nav-link {
    background: var(--gradient-orange);
    color: var(--text-white);
}


#technologyTabContent {
    width: 100%;
}

#technologyTabContent .tab-pane {
    animation: fadeIn 0.4s ease;
}

.technology-card {
    background: var(--bg-white);
    border-radius: 10px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow:
        0px 1px 3px rgba(0, 0, 0, 0.10),
        0px 3px 5px rgba(0, 0, 0, 0.10);
    transition: var(--transition);
    height: 157px;
}

.technology-card:hover {
    transform: translateY(-5px);
}

.technology-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1399px) {

    .technology-tabs .nav-link {
        min-width: 220px;
    }

    .technology-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 1199px) {
    .technology-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .technology-tabs {
        margin-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .technology-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .technology-tabs {
        gap: 12px;
    }

    .technology-tabs .nav-link {
        min-width: 180px;
        padding: 14px;
        font-size: 16px;
    }

    .technology-card {
        height: 140px;
        padding: 20px;
    }

    .technology-card img {
        max-width: 90px;
        max-height: 90px;
    }
}

@media (max-width: 767px) {
    .technology-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .technology-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start !important;
        padding-bottom: 10px;
        scrollbar-width: none;
    }

    .technology-tabs::-webkit-scrollbar {
        display: none;
    }

    .technology-tabs .nav-link {
        white-space: nowrap;
        min-width: 220px;
    }

    .technology-card {
        height: 120px;
    }

    .technology-card img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 575px) {
    .technology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .technology-tabs {
        margin-bottom: 30px;
    }

    .technology-tabs .nav-link {
        min-width: 200px;
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 8px;
    }

    .technology-card {
        min-height: 110px;
        padding: 15px;
    }

    .technology-card img {
        max-width: 65px;
        max-height: 65px;
    }
}

/* Technology Expertise End */


/* Team Section Start */

.team-card img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    margin-bottom: 16px;
}

.team-card h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--fw-medium);
    color: var(--text-dark);
}

.team-card p {
    font-size: var(--font-size-md);
    color: #666;
}

.engineering-box {
    background: rgba(3, 58, 179, 0.10);
    border: 1px solid #033AB3;
    border-radius: var(--radius-md);
    padding: 30px;
    margin-top: 50px;
}

.engineering-box h4 {
    font-size: var(--font-size-md);
    font-weight: var(--fw-medium);
    color: var(--text-dark);
    margin-bottom: 24px;
}

.engineering-box .tag {
    background: var(--bg-white);
    border: 1px solid #033AB3;
    border-radius: 6px;
    padding: 10px 16px;
    font-size: var(--font-size-sm);
    color: var(--primary-blue);
    font-weight: var(--fw-medium);
}

.team-grid {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    margin: 10px;
}

@media (max-width: 991px) {

    .engineering-box {
        padding: 25px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {

    .engineering-box {
        padding: 20px;
    }

    .engineering-box .tag {
        font-size: 13px;
        padding: 8px 12px;
    }

    .team-card h3 {
        font-size: var(--font-size-md);
    }

    .team-card p {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 575px) {
    .engineering-box .tag {
        font-size: 12px;
        padding: 8px 6px;
    }
}

/* Team Section End */


/* Footer Section Start */
.footer-section {
    background: var(--gradient-dark);
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-white);
    border-radius: 6px;
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    min-height: 92px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 42px;
    height: 42px;
    background: var(--primary-blue);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text {
    font-size: var(--font-size-md);
    font-weight: var(--fw-medium);
    color: var(--text-dark);
    line-height: 1.4;
}

.contact-card {
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1.6px solid #E2E8F0;
    padding: 40px;
    margin-left: 40px;
}

.contact-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #111;
}

.contact-card .form-group {
    margin-bottom: 24px;
}

.contact-card .form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #314158;
    margin-bottom: 10px;
}

.contact-card .input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-card .input-icon {
    position: absolute;
    left: 16px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.contact-card .form-control {
    width: 100%;
    height: 54px;
    border-radius: 16px !important;
    padding: 14px 16px 14px 48px;
    font-size: 16px;
    outline: none;
}

.contact-card .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-blue);
}

.contact-card .form-control::placeholder {
    color: rgba(10, 10, 10, 0.5);
}

.contact-card .form-control.textarea {
    padding-left: 16px;
}

.contact-card .btn-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
}

.axx-footer {
    background: #020B2D;
    padding: 80px 0 40px;
    color: #fff;
    text-align: center;
}

.axx-logo img {
    width: 170px;
    height: auto;
    margin-bottom: 10px;
}

.axx-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.axx-address {
    font-size: 16px;
    line-height: 28px;
    margin-top: 15px;
}

.axx-footer-nav {
    margin-top: 34px;
    color: #fff;
    border-top: 1px solid #fff;
    padding: 30px 0;
    border-bottom: 1px solid #fff;
}

.axx-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

.axx-menu li {
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.axx-menu li:hover {
    opacity: 1;
    color: #FFBA26;
}

.axx-copy {
    font-size: 16px;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

@media (max-width: 1399px) {
    .contact-card {
        border-radius: 20px;
        padding: 30px;
        margin-left: 0;
    }
}

@media (max-width: 1199px) {
    .contact-card {
        margin-top: 40px;
    }
}

@media (max-width: 991px) {

    .axx-address {
        font-size: 16px;
    }

    .axx-menu {
        gap: 20px;
    }

    .axx-menu li {
        font-size: 16px;
    }

    .contact-title {
        font-size: 30px;
    }
}


@media (max-width: 767px) {
    .feature-card {
        padding: 14px 16px;
        min-height: auto;
    }

    .feature-text {
        font-size: var(--font-size-base);
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .axx-footer {
        padding: 60px 0 30px;
    }

    .axx-address {
        font-size: 14px;
        line-height: 24px;
    }

    .axx-menu {
        gap: 12px;
    }
}

@media (max-width: 575px) {

    .axx-copy {
        font-size: 14px;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .axx-logo img {
        width: 120px;
    }

    .axx-footer-nav {
        margin-top: 25px;
        padding: 15px 0;
    }
}

/* Footer Section End  */


/* Case Studies Page Start  */

.inner-banner-section {
    min-height: 550px;
    background: url(../images/innerhero-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 88px;
    display: flex;
    align-items: center;
    padding-bottom: 112px;
}

.inner-banner-section .banner-shape {
    bottom: 0;
}

.search-filter-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 54px;
}

.search-filter-wrapper .search-box {
    position: relative;
    width: 100%;
    max-width: 423px;
}

.search-filter-wrapper .search-input {
    width: 100%;
    height: 54px;
    padding: 0 70px 0 20px;
    border: 1px solid var(--border-white);
    border-radius: var(--radius-full);
    background: var(--bg-white);
    font-size: var(--font-size-md);
    color: var(--text-dark);
    outline: none;
}

.search-filter-wrapper .search-input::placeholder {
    color: #666;
}

.search-filter-wrapper .search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-filter-wrapper .search-btn img {
    width: 18px;
    height: 18px;
}

.search-filter-wrapper .filter-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.search-filter-wrapper .filter-dropdown {
    position: relative;
}

.search-filter-wrapper .filter-select {
    width: 180px;
    height: 54px;
    padding: 0 45px 0 20px;
    border: 1px solid var(--bg-white);
    border-radius: var(--radius-full);
    background: var(--bg-white);
    color: var(--primary-blue);
    ;
    font-size: var(--font-size-base);
    font-weight: var(--fw-medium);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
}

.search-filter-wrapper .filter-dropdown::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--primary-blue);
    border-bottom: 1px solid var(--primary-blue);
    ;
    transform: translateY(-60%) rotate(45deg);
    pointer-events: none;
}

.search-filter-wrapper .filter-separator {
    color: var(--text-white);
    font-size: var(--font-size-base);
    font-style: italic;
    font-family: var(--font-inter);
}

.casestudies-section .case-study-image {
    background: #ececec;
    padding: 30px 14px;
    border-radius: 24px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.casestudy-vertical-card {
    height: 100%;
}

.casestudy-vertical-card .case-study-image img {
    height: 450px;
    object-fit: contain;
}


@media (max-width:1599px) {
    .casestudy-vertical-card .case-study-image img {
        height: 300px;
    }
}

@media (max-width:1199px) {
    .inner-banner-section {
        min-height: 500px;
        padding-top: 140px;
    }

    .search-filter-wrapper .filter-select {
        width: 188px;
    }

    .search-filter-wrapper .filter-group {
        max-width: 423px;
    }
}

@media (max-width: 991px) {

    .search-filter-wrapper {
        flex-direction: column;
        gap: 18px;
    }

    .search-filter-wrapper .search-box {
        max-width: 100%;
    }

    .search-filter-wrapper .filter-group {
        justify-content: center;
    }

    .search-filter-wrapper .filter-group {
        max-width: 100%;
    }

    .search-filter-wrapper .filter-select {
        width: 100%;
    }

    .search-filter-wrapper .filter-dropdown {
        width: calc(100% - 312px);
    }
}

@media (max-width: 767px) {

    .search-filter-wrapper .filter-group {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .search-filter-wrapper .filter-dropdown,
    .search-filter-wrapper .filter-select {
        width: 100%;
    }

    .search-filter-wrapper .filter-separator {
        display: none;
    }

    .search-filter-wrapper .search-input,
    .search-filter-wrapper .filter-select {
        height: 46px;
        font-size: 14px;
    }

    .inner-banner-section {
        min-height: 460px;
        padding-top: 110px;
        padding-bottom: 80px;
    }

    .casestudy-vertical-card .case-study-image img {
        height: 200px;
    }

    .casestudies-section .case-study-image {
        padding: 20px 14px;
        border-radius: 20px;
        margin-bottom: 25px;
    }
}

@media (max-width: 575px) {

    .search-filter-wrapper .search-btn {
        width: 32px;
        height: 32px;
        right: 8px;
    }

    .search-filter-wrapper .search-btn img {
        width: 16px;
        height: 16px;
    }
}

/* Case Studies Page End  */


/* Services Page Start  */

.technology-expertise-sec2 {
    background: transparent;
}

.technology-expertise-sec2 .common-heading h2 {
    color: #111;
}

.technology-expertise-sec2 .technology-tabs .nav-link {
    border: 1px solid #5F5F5F;
}

.technology-expertise-sec2 .technology-tabs .nav-link.active,
.technology-expertise-sec2 .technology-tabs .show>.nav-link,
.technology-expertise-sec2 .technology-tabs .nav-link:hover {
    border-color: var(--gradient-orange);
}

.service-card {
    height: 100%;
    border: 1px solid #A9A9A9;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
}

.service-card-image img {
    width: 100%;
    height: 283px;
    object-fit: cover;
    display: block;
}

.service-card-content {
    padding: 30px 24px;
}

.service-card-title {
    color: #111111;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
}

.service-card-description {
    color: #636363;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 16px;
}

.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid var(--primary-blue);
    border-radius: 6px;
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 500;
    background: #fff;
}

.service-tag:hover {
    background: var(--primary-blue);
    color: var(--text-white);
}

@media (max-width:1199px) {
    .innerbanner2-section {
        min-height: 420px;
    }

    .innerbanner3-section {
        min-height: 350px;
    }

    .service-card-image img {
        height: 240px;
    }

    .service-card-content {
        padding: 24px 20px;
    }

    .service-card-title {
        font-size: 28px;
    }

    .service-card-description {
        font-size: 16px;
        line-height: 28px;
    }

    .service-tag {
        font-size: 15px;
        padding: 8px 12px;
    }

}

@media (max-width:767px) {
    .innerbanner2-section {
        min-height: 350px;
    }

    .innerbanner3-section {
        min-height: 280px;
    }

    .service-card {
        border-radius: 14px;
    }

    .service-card-image img {
        height: 220px;
    }

    .service-card-content {
        padding: 20px 16px;
    }

    .service-card-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .service-card-description {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 14px;
    }

    .service-card-tags {
        gap: 10px;
    }

    .service-tag {
        font-size: 14px;
        padding: 8px 10px;
        border-radius: 5px;
    }
}

@media (max-width: 575px) {

    .service-card-image img {
        height: 180px;
    }

    .service-card-title {
        font-size: 22px;
    }

    .service-card-description {
        font-size: 14px;
        line-height: 24px;
    }

}

/* Services Page End  */

/* About Page Start */
.core-values-section {
    background: var(--gradient-blue);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border: 1px solid rgba(0, 24, 63, 0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.value-icon {
    min-width: 54px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(90deg, #FF6A00 0%, #FFBA26 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.value-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #111111;
    margin: 0 0 12px;
    line-height: 1.3;
}

.value-content p {
    margin: 0;
    font-size: 16px;
    line-height: 28px;
    color: #666666;
}


.mission-image-wrapper {
    position: relative;
}

.mission-image {
    width: 100%;
    /* height: 713px; */
    object-fit: cover;
    border-radius: 40px;
    display: block;
}

.mission-content {
    padding-left: 50px;
}

.mission-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    background: #033AB3;
    color: #fff;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 24px;
}

h2.mission-title {
    margin-bottom: 24px;
}

.mission-description {
    font-size: 20px;
    line-height: 36px;
    color: #525252;
    margin-bottom: 20px;
}

.mission-description:last-child {
    margin-bottom: 0;
}


@media (max-width: 1199px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-content h3 {
        font-size: 22px;
    }

    .mission-description {
        font-size: 20px;
        line-height: 36px;
    }
}

@media (max-width: 991px) {
    .value-card {
        padding: 24px;
        gap: 16px;
    }

    .value-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
    }

    .value-icon img {
        width: 20px;
        height: 20px;
    }

    .value-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .value-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .mission-image-wrapper {
        margin-bottom: 40px;
    }

    .mission-content {
        padding-left: 0;
    }

    .mission-image {
        /* height: 500px; */
        border-radius: 24px;
    }

    .mission-description {
        font-size: 18px;
        line-height: 32px;
    }
}

@media (max-width: 767px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 20px;
    }

    .mission-image {
        /* height: 350px; */
        border-radius: 18px;
    }

    .mission-badge {
        font-size: 14px;
        margin-bottom: 16px;
        padding: 6px 18px;
    }

    h2.mission-title {
        margin-bottom: 16px;
    }

    .mission-description {
        font-size: 14px;
        line-height: 26px;
    }
}

@media (max-width: 575px) {
    .value-card {
        gap: 12px;
        padding: 16px;
    }

    .value-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 12px;
    }

    .value-icon img {
        width: 18px;
        height: 18px;
    }

    .value-content h3 {
        font-size: 18px;
    }
}

/* About Page End */

/* Privacy Policy */
.privacy-policy-item {
    margin-bottom: 50px;
}

.privacy-policy-item:last-child {
    margin-bottom: 0;
}

.privacy-policy-item h2 {
    font-size: 34px;
    font-weight: 400;
    line-height: 1.4;
    color: #111111;
    margin-bottom: 22px;
}

.privacy-policy-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 34px;
    color: #364153;
    margin-bottom: 22px;
}

.privacy-policy-item p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    padding-left: 20px;
    margin: 0;
}

.privacy-list li {
    font-size: 18px;
    line-height: 34px;
    color: #364153;
    margin-bottom: 12px;
    list-style: disc;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .privacy-policy-item {
        margin-bottom: 40px;
    }

    .privacy-policy-item h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .privacy-policy-item p,
    .privacy-list li {
        font-size: 16px;
        line-height: 30px;
    }
}

@media (max-width: 767px) {

    .privacy-policy-item {
        margin-bottom: 30px;
    }

    .privacy-policy-item h2 {
        font-size: 24px;
    }

    .privacy-policy-item p,
    .privacy-list li {
        font-size: 14px;
        line-height: 26px;
    }
}

/* Privacy Policy End*/