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

/* THIN */
@font-face {
    font-family: 'TobiasTRIAL';
    /* src: url('/assets/font/TobiasTRIAL-Thin-BF6719af6deb112.otf') format('opentype'); */
    src: url('../font/TobiasTRIAL-Thin-BF6719af6deb112.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}


@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-ThinItalic-BF6719af6de52f4.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}


/* LIGHT */
@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-Light-BF6719af6e0a52b.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}


@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-LightItalic-BF6719af6e0cd95.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}


/* REGULAR */
@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-Regular-BF6719af6e0eca4.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}


@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-RegularItalic-BF6719af6d05c69.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}


/* MEDIUM */
@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-Medium-BF6719af6e0f214.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}


@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-MediumItalic-BF6719af6e0e741.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}


/* SEMIBOLD */
@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-SemiBold-BF6719af6d74d2b.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}


@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-SemiBoldItalic-BF6719af6d6ff9f.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}


/* BOLD */
@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-Bold-BF6719af6ded10a.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}


@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-BoldItalic-BF6719af6e0445d.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}


/* EXTRABOLD */
@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-ExtraBold-BF6719af6e04eb2.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}


@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-ExtraBoldItalic-BF6719af6ec1a8.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
}


/* HEAVY (Use 900) */
@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-Heavy-BF6719af6e005f7.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}


@font-face {
    font-family: 'TobiasTRIAL';
    src: url('../font/TobiasTRIAL-HeavyItalic-BF6719af6e062bd.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --background: #040A17;
    --foreground: hsl(210, 40%, 98%);
    --primary: hsl(217, 91%, 60%);
    --primary-foreground: hsl(220, 25%, 8%);
    --muted-foreground: hsl(215, 20%, 65%);
    --border: hsl(220, 15%, 20%);
    --font-title: "Tobias TRIAL";
    --font-sub: "Inter", sans-serif;
     /* Legacy Color Mappings for Compatibility */
    --color-primary: #2C7AFF;
    --color-primary-dark: #2C7AFF; 
    /* Accent Colors */
    --color-accent: #FF6B35; 
    /* Background Colors */
    --color-background: #040A17; 
    --color-surface: hsl(220, 15%, 12%); 
    /* Text Colors */
    --color-text-primary: hsl(210, 40%, 98%); 
    --color-text-secondary: hsl(215, 20%, 65%); 
    /* Status Colors */
    --color-success: #28A745; 
    --color-warning: #FFC107; 
    --color-error: #DC3545; 
    /* Border Colors */
    --color-border: hsl(220, 15%, 20%); 
    /* Shadow Colors */
    --shadow-primary: rgba(79, 134, 247, 0.15); 
    --shadow-card: rgba(0, 0, 0, 0.3); 
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    /* overflow-x: hidden; */
}

a{
    text-decoration: none;
    color: #fff;
    font-family: var(--font-sub);
}
ul li{
    list-style: none;
}
.container {
    max-width: 1270px !important;
    margin: 0 auto;
    padding: 0 15px !important;
}
.container-fluid{
    max-width: calc((100% - 1270px) / 2 + 1270px);
    margin-left: auto;
    padding: 0 0 0 15px;    

}
.home section {
    padding-bottom: 140px;
}

.schedule-btn {
    padding: 16px 24px;
    color: #fff;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    background-color: #2C7AFF;
    box-shadow: inset 0px 8px 25px 0px #4BCEF0CC,
        inset 0px -8px 25px 0px #4BCEF0CC,
        0px 4px 25px 0px #3189FC;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
h1,h2{
font-family: 'TobiasTRIAL'!important;
/* letter-spacing: 1px; */

}
h1{
  font-family: 'TobiasTRIAL'!important;  
}
.common_form{
    max-width: 100%;
}
/* header css  */

header {
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
    left: 0;
}

header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-color: #FFFFFF1A;
    backdrop-filter: blur(62px);
    -webkit-backdrop-filter: blur(62px);
    z-index: -1;
}
.header-main{
    display: flex;
    align-items: center;
    gap: 38px;
    justify-content: space-between;
}
.header-main .logo{
    display: flex;
}
.header-main .logo img{
    max-width: 173px;
}
.header-main .header-content ul{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-main .header-content ul li{
    padding: 10px 0;
}
.header-main .header-content ul li a{
    display: flex;
    align-items: center;
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 16px;
    color: #F5F8F9;
    padding: 8px 12px;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.header-main .header-content ul li:hover a{
    /* font-weight: 700; */
    background-color: #FFFFFF1A;
    backdrop-filter: blur(6px);
}
.header-main .header-content ul li a.close-mobile-menu{
    display: none;
}
.header-main .header-btn a{
    display: block;
    padding: 14px 30px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 16px;
    color: #F5F8F9;
    border: 2px solid #F5F8F9;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.header-main .header-btn a:hover{
    background-color: #2C7AFF;
    border-color: #2C7AFF;
}
.header-main .header-content ul li.sub-menu {
    position: relative;
}
.header-main .header-content ul li.sub-menu a::after{
    content: '';
    /*position: absolute;*/
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 451.847 451.847" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g><path d="M225.923 354.706c-8.098 0-16.195-3.092-22.369-9.263L9.27 151.157c-12.359-12.359-12.359-32.397 0-44.751 12.354-12.354 32.388-12.354 44.748 0l171.905 171.915 171.906-171.909c12.359-12.354 32.391-12.354 44.744 0 12.365 12.354 12.365 32.392 0 44.751L248.292 345.449c-6.177 6.172-14.274 9.257-22.369 9.257z" fill="%23ffffff" opacity="1" data-original="%23000000" class=""></path></g></svg>');
    background-size: 14px;
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    margin-left: 8px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}
.header-main .header-content ul li.sub-menu a:hover::after{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
.header-main .header-content ul li ul.sub-menu-dropdown {
    position: absolute;
    width: 100%;
    min-width: 250px;
    padding: 10px;
    left: -10px;
    margin-top: 10px;
    background-color: rgb(255 255 255 / 10%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99;
    display: none;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.header-main .header-content ul li ul.sub-menu-dropdown li.title{
    padding: 8px 12px;
    font-weight: 600;
}
.header-main .header-content ul li ul.sub-menu-dropdown li{
    padding: 0;
}
.header-main .header-content ul li ul.sub-menu-dropdown li a{
    backdrop-filter: unset;
    background-color: transparent;
    color: #f5f5f5;
    font-weight: normal;
}
.header-main .header-content ul li ul.sub-menu-dropdown li a:hover{
    /* font-weight: 700; */
}
.header-main .header-content ul li ul.sub-menu-dropdown li a::after{
    display: none;
}
.header-main .header-content ul li ul.sub-menu-dropdown li a:hover{
    color: #F5F8F9;
}
.header-main .header-content ul li.sub-menu:hover ul.sub-menu-dropdown{
    display: block;
}
.header-main .header-content ul li ul.sub-menu-dropdown li.view-all-btn a{
    border-top: 1px solid #ddd;
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
    padding: 20px 12px 10px 12px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
.header-main .header-content ul li ul.sub-menu-dropdown li.view-all-btn a::after{
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="512" height="512" x="0" y="0" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512" xml:space="preserve" class=""><g><path d="m506.134 241.843-.018-.019-104.504-104c-7.829-7.791-20.492-7.762-28.285.068-7.792 7.829-7.762 20.492.067 28.284L443.558 236H20c-11.046 0-20 8.954-20 20s8.954 20 20 20h423.557l-70.162 69.824c-7.829 7.792-7.859 20.455-.067 28.284 7.793 7.831 20.457 7.858 28.285.068l104.504-104 .018-.019c7.833-7.818 7.808-20.522-.001-28.314z" fill="%23ffffff" opacity="1" data-original="%23000000" class=""></path></g></svg>');
    background-size: 24px;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    margin-left: 8px;
    transform: rotate(0) !important;
    -webkit-transform: rotate(0) !important;
    -moz-transform: rotate(0) !important;
    -ms-transform: rotate(0) !important;
    -o-transform: rotate(0) !important;
}


.mobile-menu{
    display: none;
}
/* Parent */
.mega_menu {
    position: relative;
}

/* Hidden by default */
.mega_sub_menu {
     position: absolute;
    top: 100%;
    left: 0;
    width: 520px;
    background: #FFFFFF1A;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2;
    backdrop-filter: blur(62px);
    -webkit-backdrop-filter: blur(62px);
}

/* Hover open */
.mega_menu:hover .mega_sub_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Grid layout */
.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    position: relative;
}

/* Column title */
.mega-col h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 10px;
    color: #F5F8F9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}   

/* List */
.header-content .mega_menu .mega-col .mega_ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    align-items: flex-start;
}

.header-content .mega_menu .mega-col ul li {
    margin-bottom: 8px;
    padding: 0;
}

.header-content .mega_menu .mega-col ul li a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
    background-color: transparent;
    backdrop-filter: unset;
    padding: 0;

}
.header-content .mega_menu .mega-col ul li:hover a{
    background-color: transparent;
    backdrop-filter: unset;
}
.header-content .mega_menu .mega-col ul li a::after{
    display: none;
}

.mega-col ul li a:hover {
    color: #2563eb; /* blue hover like screenshot */
}

.mega-grid::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
 
}

/* hero section css  */
.home section.hero-section{
    background-image: url(../image/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    padding-bottom: 488px;
    padding-top: 92px;
}
.hero-top-content{
    text-align: center;
    padding-top: 60px;
}
.hero-main .hero-top-content h1{
    font-family: var(--font-title);
    font-weight: 350;
    font-size: 96px;
    line-height: 140px;
    color: #F5F8F9;
    margin-bottom: 16px;
}
.hero-main .hero-top-content p{
    /* max-width: 920px; */
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #F5F8F9;
    margin: auto;
    margin-bottom: 32px;
}
.hero-main .hero-top-content .schedule-btn{
    max-width: 326px;
    width: 100%;
    padding: 16px 24px;
    color: #fff;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: auto;
    text-decoration: none;
    background-color: #2C7AFF;
    box-shadow: inset 0px 8px 25px 0px #4BCEF0CC,
        inset 0px -8px 25px 0px #4BCEF0CC,
        0px 4px 25px 0px #3189FC;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.hero-bottom{
    margin-top: 48px;
}
.hero-bottom p{
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 24px;
    color: #F5F8F9;
    text-align: center;
    margin-bottom: 24px;
}
.hero-bottom-images{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.hero-bottom-images .hero-bottom-img{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    width: 100%;
    height: 100px;
    background-color: #F9FAFB;
    border: 1px solid #DDDDDD;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.hero-bottom-images .hero-bottom-img img{
    max-width: 99px;
}
.hero-bottom-images .hero-bottom-img:last-child img{
    max-width: 135px;
}
.like-btn.liked {
    color: red !important;
}
/* ai solution sec css  */
.ai-solution{
    margin-top: -308px;
}
.ai-solution-main{
    padding: 80px;
    background-color: #0A0F1E;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}
.ai-solution-title h2{
    font-family: var(--font-title);
    font-weight: 350;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    color: #F5F8F9;
    margin-bottom: 16px;
}
.ai-solution-title p{
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #F5F8F9;
    /* max-width: 600px; */
    margin: auto;
}
.ai-solution-slider{
    max-width: 1002px;
    margin: auto;
    margin-top: 60px;
}
.ai-solution-slider .ai-solution-slider-inner {
    margin: 0 16px;
    display: flex !important;
    width: fit-content !important;
}
.ai-solution-slider .ai-solution-slider-inner p{
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #F5F8F9;
    padding: 9px 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
}
.ai-solution-slider .slick-slide.slick-current .ai-solution-slider-inner p{
    border-color: #2C7AFF;
    background-color: #645CFC1A;
    color: #2C7AFF;
    font-weight: 700;
}

.ai-solution-slider button.slick-arrow {
    /*background-color: transparent;
    */border: 0;
    box-shadow: none;
    position: absolute;
    left: 0;
    top: 50%;
    cursor: pointer;
    max-width: 114px;
    width: 100%;
    display: flex;
    background: linear-gradient(270deg, rgba(17, 24, 36, 0) 28.27%, #0A0F1E 71.33%);
    z-index: 1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.ai-solution-slider button.slick-arrow.custom-next{
    right: 0;
    left: auto;
    justify-content: end;
    background: linear-gradient(90deg, rgba(17, 24, 36, 0) 28.27%, #0A0F1E 71.33%);
}
.ai-solution-content-slider.slick-initialized ,
.ai-solution-bottom-slider.slick-initialized{
    margin: 0 -8px;
    pointer-events: none;
}
.ai-solution-content{
    display: flex !important;
    gap: 16px;
    justify-content: center;
    margin: 40px 0 16px;
}
.ai-solution-content-inner{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    padding: 24px 20px;
    background-color: #111824;
    border: 1px dashed #A8AFBD80;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.ai-solution-content-inner svg{
    height: 30px;
    max-height: 30px;
}
.ai-solution-content-inner p{
    /* margin-top: 50px; */
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #F5F8F9;
    flex: 1;
}
.ai-solution-bottom{
    padding: 24px;
    background-color: #111824;
    border: 1px dashed #A8AFBD80;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.ai-solution-bottom h4{
    font-family: var(--font-sub);
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #F5F8F9;
    margin-bottom: 16px;
}
.ai-solution-bottom p{
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #F5F8F9;
}

/* smart scale css  */
.scale-smart .scale-smart-title h2{
    font-family: var(--font-title);
    font-weight: 350;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    color: #F5F8F9;
    margin-bottom: 16px;
}

.scale-smart .scale-smart-title p{
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #F5F8F9;
    /* max-width: 600px; */
    margin: auto;
}

.scale-smart-content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.scale-smart-content .div2 {
    grid-column-start: 1;
    grid-row-start: 2;
}

.scale-smart-content .div3 {
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 1;
    position: relative;
}
.scale-smart-content .div3 .bg-img{
    position: absolute;
    top: 0;
    right: 0;
}
.scale-smart-content .div3 .bg-img img{
    width: 100%;
}
.scale-smart-content .div4 { 
    grid-column-start: 3;
    grid-row-start: 1;
}

.scale-smart-content .div5 {
    grid-column-start: 3;
}
     
.scale-smart-content .scale-smart-content-div{
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 32px 24px;
    background: linear-gradient(244.06deg, #111824 -0.09%, rgba(17, 24, 36, 0) 53.98%);
    border: 1px dashed #A8AFBD80;
    overflow: hidden;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}
.scale-smart-content .scale-smart-content-div h3{
    font-family: var(--font-sub);
    font-weight: 500;
    font-size: 48px;
    line-height: 58px;
    color: #2C7AFF;
    margin-bottom: 80px;
}
.scale-smart-content .scale-smart-content-div h4{
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 22px;
    line-height: 28px;
    color: #F5F8F9;
    margin-bottom: 16px;
}
.scale-smart-content .scale-smart-content-div p{
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #F5F8F9;
}

/* Testimonial section css  */
.testimonial-section .testi-title h2{
    font-family: var(--font-title);
    font-weight: 350;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    color: #F5F8F9;
    margin-bottom: 16px;
}
.testimonial-section .testi-title p{
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #F5F8F9;
    /* max-width: 500px; */
    margin: auto;
}
.testi-slider{
    margin-top: 80px;
}
.testi-slider-2{
    margin-top: 24px !important;
}
.slick-initialized .slick-slide{
    margin: 0 8px;
}
.testi-slider .slick-list.draggable,.testi-slider .slick-list.draggable .slick-track,
.testi-slider .slick-list.draggable .slick-track .slick-slide{
    display: flex;
}
.testi-slider .slick-slide > div:first-child {
   display: flex;
}
.testi-slider .slick-list.draggable .slick-track .slick-slide{
    justify-content: center;
}
.testi-slider-div{
    max-width: 460px;
    background-color: #111824;
    padding: 24px;
    direction: ltr;
    display: flex !important;
    flex-direction: column;
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}
.testi-slider-div .testi-content-top{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}
.testi-slider-div .testi-content-top .content-left p{
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #F5F8F9;
    margin-bottom: 8px;
    flex: 1;
}
.testi-slider-div .testi-content-top .content-left h5{
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #F5F8F9;
}
.testi-slider-div .testi-content-top .img-right{
    max-width: 48px;
}
.testi-slider-div .testi-content-top .img-right img{
    max-width: 48px;
    max-height: 48px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}
.testi-slider-div p{
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #F5F8F9;
    /* display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow : hidden; */
}
.testi-slider.custom-arrows{
    width: fit-content;
    margin: 80px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.stories_btn.custom-arrows,.feedback_btn.cust-arrows{
        width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.testi-slider.custom-arrows .custom-arrow,.stories_btn.custom-arrows .custom-arrow,.feedback_btn.cust-arrows .cust-arrow{
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #F5F8F9;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.testi-slider.custom-arrows .custom-arrow svg,.stories_btn.custom-arrows .custom-arrow svg,.feedback_btn.cust-arrows .custom-arrow svg{
    max-width: 24px; 
}

.testi-slider-common .card {
    background-color: #0A1220;
    border-radius: 0.5rem;
    border: 1px solid hsl(220, 15%, 20%);
    padding: 1.5rem;
    
}
.testi-slider-common .text-accent {
    color: #F59E0B !important;
}
/* .testi-slider-common .slick-list{
    display: flex;
    flex-direction: column;
}
.testi-slider-common .slick-list .slick-track{
    display: flex;
}
.testi-slider-common .slick-initialized .slick-slide {
    display: flex;
} */
.testi-slider-common{
    opacity: 0;
}
.testi-slider-common.slick-slider{
    opacity: 1;
}
/*  industry section css */
.industry-section .industry-title h2{
    font-family: var(--font-title);
    font-weight: 350;
    font-size: 60px;
    line-height: 70px;
    text-align: center;
    color: #F5F8F9;
    margin-bottom: 16px;
}

.industry-section .industry-title p{
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #F5F8F9;
    /* max-width: 500px; */
    margin: auto;
}
.industry-slider{
    margin-top: 80px;
}
.industry-slider .industry-div{
    max-width: 350px;
    width: 100%;
    position: relative;
    overflow: hidden;
    /* clip-path: inset(0); */
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}
.industry-slider .industry-div .industry-content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: #00000080;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
}
.industry-slider .industry-div .industry-content .industry-content-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.industry-slider .industry-div .industry-content{
    margin-bottom: -52px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.industry-slider .industry-div .industry-content h3{
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;  
    color: #FFFFFF;
}
.industry-slider .industry-div .industry-content p{
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    max-height: 40px;
    opacity: 0;
    color: #FFFFFF;
    margin-top: 8px;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
.industry-slider .industry-div:hover .industry-content svg{
    transform: rotateX(180deg);
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
}
.industry-slider .industry-div:hover .industry-content {
    margin-bottom: 0;
}
.industry-slider .industry-div:hover .industry-content p{
    opacity: 1;
    max-height: 200px;
}
.industry-section .container-fluid{
    padding-bottom: 80px;
}
.stories_box .slick-arrow{
    z-index: 1;
}
.industry-slider .slick-arrow,.stories_box .slick-arrow{
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: -130px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: 0;
    border: 1px solid #F5F8F9;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.industry-slider .slick-arrow svg,.stories_box .slick-arrow svg{
    max-width: 24px;
}
.industry-slider .slick-arrow.custom-next,.stories_box .slick-arrow.custom-next{
    left: 66px;
}

/* ai devlopment sec css */

.ai-devlopment-title {
    text-align: center;
    margin-bottom: 80px;
}

.ai-devlopment-title .title {
    font-size: 60px;
    font-weight: 350;
    color: #F5F8F9;
    line-height: 70px;
    font-family: "Tobias TRIAL";
    margin-bottom: 16px;
}

.ai-devlopment-title .subtitle {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    color: #F5F8F9;
    text-align: center;
    /* max-width: 600px; */
    margin: 0 auto;

}

.ai-devlopment-sec{
    padding-top: 140px;
}
.ai-devlopment-sec-main {
    display: flex;
    gap: 120px;
    justify-content: space-between;
    align-items: center;
}

.process-steps {
    max-width: 540px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ai-devlopment-sec-main .step {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 0;
    position: relative;
    transition: all 0.3s ease;
}

/* .step:hover {
    transform: translateX(8px);
} */

.step-number-container {
    /* position: relative; */
    flex-shrink: 0;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #2C7AFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-sub);
    font-weight: 500;
    font-style: Medium;
    font-size: 32px;
    text-align: center;
    /* box-shadow: 0 0 30px hsla(217, 91%, 60%, 0.4); */
    transition: all 0.3s ease;
}

/* .step:hover .step-number {
    box-shadow: 0 0 40px hsla(217, 91%, 60%, 0.6);
    transform: scale(1.05);
} */

.step-line {
    position: absolute;
    top: 64px;
    left: 32px;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-color: #2C7AFF;
}

.step:last-child .step-line {
    display: none;
}

.step-content {
    flex: 1;
    padding-bottom: 48px;
}

.step-title {
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #F5F8F9;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.step:hover .step-title {
    color: var(--primary);
}

.step-description {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #F5F8F9;
}

.image-container {
    max-width: 580px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.crystal-bg {
    position: absolute;
    inset: 0;
    background: transparent;
    border-radius: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.crystal-image {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 32rem;
    height: auto;
    border-radius: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}

/* ai technology sec css */
.ai-technology-sec {
    position: relative;
}

.technology-bg-img {
    position: absolute;
    left: -40px;
    bottom: -150px;
    height: fit-content;
    z-index: -1;
    rotate: 187deg;
}

.technology-bg-img img {
    width: 100%;
}

.ai-tech-content {
    display: flex;
    gap: 80px;
    align-items: start;
    justify-content: space-between;
    position: relative;
}

/* Left Section */
.ai-technology-sec .left-main {
    display: flex;
    flex-direction: column;
    max-width: 364px;
    width: 100%;
}

.ai-technology-sec .left-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-technology-sec .left-main-title {
    font-family: var(--font-title);
    font-weight: 350;
    font-size: 60px;
    line-height: 70px;
    color: #F5F8F9;
}


.ai-technology-sec .left-description {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #F5F8F9;
}


/* Right Section */
.ai-technology-sec .right-content {
    display: flex;
    flex-direction: column;
    max-width: 796px;
    width: 100%;
}

.ai-technology-sec .tech-category {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.ai-technology-sec .tech-category:last-child {
    margin-bottom: 0;
}

.ai-technology-sec .category-title {
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 16px;
}

.ai-technology-sec .tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-technology-sec .tech-badge {
    width: 193px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    background-color: hsl(220, 26%, 15%);
    color: hsl(0, 0%, 90%);
    padding: 0.5rem 0.875rem;
    border-radius: 10rem;
    border: 1px dashed #A8AFBD80;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    -webkit-border-radius: 10rem;
    -moz-border-radius: 10rem;
    -ms-border-radius: 10rem;
    -o-border-radius: 10rem;
}

.ai-technology-sec .tech-badge:hover {
    background-color: hsl(220, 26%, 18%);
    border-color: hsl(220, 26%, 30%);
}

.ai-technology-sec .tech-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background-color: #fff;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}

.ai-technology-sec .tech-name {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;

}

/* partner section  css */
.partner-sec {
    padding: 0;
    background-image: url(../image/partner-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.partner-sec .partner-inner {
    padding: 162px 0;
    max-width: 503px;
}

.partner-sec .partner-inner .badge {
    padding: 6px 16px;
    gap: 10px;
    backdrop-filter: blur(6px);
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 16px;
    width: fit-content;
    background: #FFFFFF1A;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.partner-sec .partner-inner h3 {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 16px;
}

.partner-sec .partner-inner h3 span {
    background: linear-gradient(to right, #30CFD0 0%, #330867 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.partner-sec .partner-inner p {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-bottom: 24px;
}

.partner-sec .partner-inner a {
    width: fit-content;
    padding: 16px 24px;
    color: #fff;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background-color: #2C7AFF;
    box-shadow:
        inset 0px 8px 25px 0px #4BCEF0CC,
        inset 0px -8px 25px 0px #4BCEF0CC,
        0px 4px 25px 0px #3189FC;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

/* faq section css */
.faq-section {
    padding-top: 140px;
}

.faq-container {
    max-width: 810px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-title {
    font-family: var(--font-title);
    font-size: 60px;
    font-weight: 350;
    margin-bottom: 16px;
    color: #F5F8F9;
}

.faq-subtitle {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    color: #F5F8F9;
    /* max-width: 442px; */
    margin: auto;
}

.faq-list {
    list-style: none;
}

.faq-item {
    /* background: rgba(255, 255, 255, 0.05); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 32px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

/* .faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
} */

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    margin-top: 24px;
}

.faq-question-text {
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    margin-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, 0.1); */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-icon::before {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    /* background: rgba(255, 255, 255, 0.2); */
    transform: rotate(180deg);
}

.faq-item.active .faq-icon::before {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-text {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #E2E4E9;
    padding-top: 12px;
}

/* blog section css  */

.blog-title-main {
    text-align: center;
    margin-bottom: 80px;
}

.blog-title-main .title {
    font-family: var(--font-title);
    font-size: 60px;
    font-weight: 350;
    margin-bottom: 16px;
    color: #F5F8F9;
}

.blog-title-main .subtitle {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    /* max-width: 538px; */
    margin: auto;
}

.blog-grid {
    display: flex;
    gap: 24px;
}

.blog-card {
   border-radius: 1rem 1rem 0 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex: 1 1 0;
}
 

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.blog-image {
    /* aspect-ratio: 4/3; */
    /* aspect-ratio: 16/9; */
    overflow: hidden;
    margin-bottom: 32px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-grid {
    display: flex;
    gap: 24px;
    align-items: stretch; /* All cards same height */
}

.blog-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1 1 0;
    min-width: 0;
    /* height: 100%; */
    /* Remove any fixed height */
}



.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

h3.blog-title {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #F5F8F9;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: hsl(217, 91%, 60%);
}

.blog-description {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #E2E4E9;
    margin: 12px 0 24px;
}
 .blog-content{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(217, 91%, 60%);
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more:hover {
    gap: 0.75rem;
}

.arrow-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.learn-more:hover .arrow-icon {
    transform: translateX(2px);
}

/* contact us section css  */
.contact-us-sec{
    margin: 0;
}
.contact-us-sec .content-wrapper .bg-image{
    position: absolute;
    bottom: -6px;
    left: 0;
    z-index: -1;
}
.contact-us-sec .content-wrapper .bg-image image{
    width: 100%;
}
.contact-us-sec .content-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    gap: 80px;
    align-items: center;
    width: 100%;
    background-color: #111824;
    padding: 80px;
    border-radius: 24px;
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    -ms-border-radius: 24px;
    -o-border-radius: 24px;
}

.contact-us-sec .left-content {
    max-width: 543px;
}

.contact-us-sec .main-title {
    font-family: var(--font-title);
    font-weight: 350;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: -3.6px;
    vertical-align: middle;
    margin-bottom: 12px;
    color: #F5F8F9;
}

.contact-us-sec .main-description {
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;

}

.contact-us-sec .steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.contact-us-sec .step {
    padding: 16px 24px;
    border-left: 1px solid #A8AFBD33;
}

.contact-us-sec .step-title {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-sub);
    color: #fff;
    margin-bottom: 14px;
}

.contact-us-sec .step-description {
    color: #fff; 
    font-size: 14px;
    line-height: 22px;
    font-family: var(--font-sub);
    font-weight: 400;
}

.contact-us-sec .form-container {
    position: relative;
    max-width: 457px;
    width: 100%;
}

.contact-us-sec .form-wrapper {
    background: #040A17;
    /* backdrop-filter: blur(20px); */
    border: 1px solid #A8AFBD33;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.contact-us-sec .form-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.3;
    filter: blur(1px);
}

.contact-us-sec .form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-us-sec .input-field {
    background: transparent; 
    border: 1px solid #A8AFBD33;
    border-radius: 8px;
    padding: 20px 14px;
    color: #fff;
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0%;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.contact-us-sec .input-field::placeholder {
    color: #fff;
}

.contact-us-sec .input-field:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-us-sec textarea.input-field {
    resize: none;
    min-height: 100px;
}

.contact-us-sec .submit-button {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-top: 8px;
    width: 100%;   
    padding: 16px 24px;
    color: #fff;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    background-color: #2C7AFF;
    box-shadow: inset 0px 8px 25px 0px #4BCEF0CC,
        inset 0px -8px 25px 0px #4BCEF0CC,
        0px 4px 25px 0px #3189FC;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;

}

/* .contact-us-sec .submit-button:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
} */

.contact-us-sec .arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.contact-us-sec .submit-button:hover .arrow-icon {
    transform: translateX(4px);
}

/* footer css  */
footer{
    padding: 40px 0 40px;
    border-top: 1px solid #A8AFBD33;
}
.footer-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.footer-main .footer-logo{
    display: flex;
}
.footer-main .footer-logo img{
    max-width: 173px;
}
.footer-main .footer-content ul{
    display: flex;
    align-items: center;
    gap: 40px;
}
.footer-main .footer-content ul li a{
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #F5F8F9;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.footer-main .footer-content ul li a:hover{
    color: #3c83f6;
}
.footer-main .footer-icon ul{
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-main .footer-icon ul li a svg{
    width: 24px;
    height: 24px;
}
.footer-main .footer-icon ul li a svg path{
     transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}
.footer-main .footer-icon ul li a:hover svg path{
    fill: #3c83f6;
}
.footer-main .footer-icon ul li a:hover svg rect,
.footer-main .footer-icon ul li a:hover svg circle {
    stroke: #3c83f6;
    /* fill: #3c83f6; */
}
.footer-main .footer-icon ul li a:hover svg circle.dots {
    fill: #3c83f6; 
}

.footer-copyright{
    padding-top: 30px;
}
.footer-copyright p{
    font-family: var(--font-sub);
    font-weight: 400;
    font-size: 16px;
    text-align: center;
}
.section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
/* case-study-slider css  */
.case-study-slider .bg-primary-100 {
    background-color: #DBEAFE !important;
}
.case-study-slider .text-primary {
    color: hsl(217, 91%, 60%) !important;
}
.case-study-slider .text-text-primary {
    color: hsl(210, 40%, 98%) !important;
}
.case-study-slider .text-text-secondary {
    color: hsl(215, 20%, 65%) !important;
}
.case-study-slider .text-success {
    color: #10B981 !important;
}
#case-studies .bg-border {
    background-color: #e5e7eb !important;
}
.case-study-slider .bg-primary {
    background-color: hsl(217, 91%, 60%) !important;
}


@media (max-width: 640px) {
        .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}
/* responsive css */
@media (max-width: 1439px) {
    .technology-bg-img{
        left: 0;
    }
}
@media (max-width: 1199px) {
    .home section {
        padding-bottom: 100px;
    }
    /* hero section css  */
    .hero-main .hero-top-content h1{
        font-size: 80px;
        line-height: 100px;
    }

    /* ai devlopment sec css  */
    .ai-devlopment-sec-main {
        gap: 60px;
    }

    /* ai technology sec   */
    .technology-bg-img{
        bottom: -100px;
    }
    /* faq section css  */
    .faq-section {
        padding-top: 100px;
    }

    /* footer css  */
    .footer-main .footer-content ul{
        gap: 40px;
    }
    .footer-copyright {
        padding-top: 30px;
    }
     .header-main{
        gap: 20px;
    }
     .footer-main {
        gap: 20px;
    }
}

@media (max-width: 991px) {
    html.no-scroll {
        overflow: hidden;
    }
    body.h2 {
        font-size: 50px !important;
        line-height: 60px !important;
    }


    .home section {
        padding-bottom: 80px;
    }
    /* header css  */
    .mega_sub_menu{ 
        width: 100%;
        position: unset;
        height: 0;
        padding: 0;
        margin: 0;
        display: none;
    }
    .sub-menu.mega_menu:hover .mega_sub_menu{
        display: none;
        opacity: 0;
    }
    .sub-menu.mega_menu.active .mega_sub_menu{
        transform: unset;
        height: fit-content;
        padding: 24px;
        margin: 10px 0;
        display: block;
        opacity: 1;
        visibility: visible;
        width: calc(100vw - 80px);
    }
    .header-main .header-content ul li.sub-menu:hover ul.sub-menu-dropdown {
        display: none;
    }
    .header-main .header-content ul li.sub-menu.active ul.sub-menu-dropdown {
        display: block;
    }
    .header-main .header-content ul li.sub-menu a:hover::after {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
    }
    .header-main .header-content ul li.sub-menu.active a::after {
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }
    .header-main .logo img {
        max-width: 120px;
    }
    .header-main .header-content ul {   
        gap: 4px;
    }
    .header-main .header-content ul li a{
        width: fit-content;
    }
    .header-main {
        gap: 15px;
    }
    .header-content{
        display: none;
    }
    .header-btn{
        margin-left: auto;
    }
    .header-main .header-btn a{
        padding: 8px 20px;
    }
    .mobile-menu{
        display: flex;
        align-items: center;
    }
    .header-content.active {
        display: block;
        position: absolute;
        width: 100%;
        height: 100vh;
        left: 0;
        top: 0;
        padding: 40px;
        background: rgb(255 255 255 / 10%);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        z-index: 99;
        overflow-y: auto;
    }
    .header-main .header-content ul {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 15px;
    }
    .header-main .header-content ul li a.close-mobile-menu{
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
    }
     .header-main .header-content ul li a.close-mobile-menu:hover{
        background: transparent;
        backdrop-filter: brightness(0);
        padding: 0;
        font-weight: 400;
    }
    .header-main .header-content ul li ul.sub-menu-dropdown{
        position: unset;
        min-width: fit-content;
        margin-top: 10px;
    }

    /* hero section css  */
   .home section.hero-section{
        padding-bottom: 430px;
    }
    .hero-main .hero-top-content h1 {
        font-size: 70px;
        line-height: 90px;
    }

    /* ai solution css  */
    .ai-solution-main{
        padding: 40px;
    }

    /* testi section css  */
    .testi-slider.custom-arrows {
        margin-top: 60px;
    }

    /* industry section css  */
    .industry-slider{
        margin-top: 60px;
    }
    .industry-slider .slick-arrow,.stories_box .slick-arrow{
        bottom: -80px;
    }

    /* ai devlopment css  */
    .ai-devlopment-sec {
        padding-top: 100px;
    }
    .ai-devlopment-sec-main {
        flex-direction: column-reverse;
    }

    .ai-devlopment-title {
        margin-bottom: 60px;
    }

    .ai-devlopment-title .title ,.ai-solution-title h2,.scale-smart .scale-smart-title h2,.testimonial-section .testi-title h2,.industry-section .industry-title h2,.ai-technology-sec .left-main-title,.faq-title,.blog-title-main .title,.contact-us-sec .main-title {
        font-size: 50px;
        line-height: 60px;
    }

    /* ai technology sec   */
    .technology-bg-img {
        right: 0;
        top: 0;
        left: auto;
        bottom: auto;
        max-width: 350px;
    }
    
    .ai-tech-content {
        flex-direction: column;
        gap: 40px;
    }

    .ai-technology-sec .tech-badge {
        min-width: 163px;
        width: fit-content;
    }

    /* partner sec  */
    .partner-sec .partner-inner {
        padding: 80px 0;
    }

    /* faq section css  */
    .faq-section {
        padding-top: 80px;
    }

    .faq-header {
        margin-bottom: 50px;
    }

    /* blog section css  */
    .blog-title-main {
        margin-bottom: 60px;
    }

    h3.blog-title {
        font-size: 24px;
        line-height: 28px;
    }

    .blog-description {
        font-size: 16px;
        line-height: 24px;
    }

    .learn-more {
        font-size: 18px;
        line-height: 22px;
    }
    /* contact us css  */
    .contact-us-sec .content-wrapper{
        gap: 40px;
        padding: 40px;
    }

    /* footer css  */
    footer{
        padding: 50px 0 50px;
    }
    .footer-main{
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-main .footer-content{
        order: 3;
    }
    .footer-main .footer-icon{
        order: 2;
    }
     .testi-slider-common .card{
        max-height: 310px; }
}

@media (max-width: 767px) {
    body.h2 {
        font-size: 36px !important;
        line-height: 44px !important;
        letter-spacing: 0;
    }

    .home section {
        padding-bottom: 60px;
    }

    

     /* hero section css  */
    .home section.hero-section {
        padding-bottom: 400px;
    }
    .home section.hero-section{
        padding-top: 75px;
     }
     .hero-main .hero-top-content h1 {
        font-size: 52px;
        line-height: 60px;
    }

     /* ai solution css  */
    .ai-solution-content{
        flex-wrap: wrap;
    }
    .ai-solution-content-inner{
        width: calc(50% - 8px);
    }

    /* scale smart css  */
    .scale-smart-content{
        margin-top: 60px;
    }
    .scale-smart-content{
        display: flex;
        flex-wrap: wrap;
    }
    .scale-smart-content .div1,.div2,.div4,.div5{
        width: calc(50% - 12px);
    }
    .scale-smart-content .div3{
        width: 100%;
    }
    .scale-smart-content .div3 .bg-img{
        max-width: 250px;
    }
    /* .scale-smart-content .div3 {
        grid-column: span 2 / span 2;
    }
    .scale-smart-content .div4 {
        grid-row-start: 3;
    }
    .scale-smart-content .div5 {
        grid-row-start: 3;
    } */
 
    /* testi section css  */
    .testi-slider.custom-arrows {
        margin-top: 40px;
    }
    /* ai devlopment sec  */
    .ai-devlopment-title {
        margin-bottom: 40px;
    }

    .ai-devlopment-title .title,.ai-solution-title h2,.scale-smart .scale-smart-title h2,.testimonial-section .testi-title h2,.industry-section .industry-title h2,.ai-technology-sec .left-main-title,.faq-title,.blog-title-main .title,.contact-us-sec .main-title {
        font-size: 36px;
        line-height: 44px;
    }

    /* faq section css  */
    .faq-section {
        padding-top: 60px;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    /* blog seection css  */
     .blog-grid {
        flex-wrap: wrap;
    }
    .blog-card {
       
        flex: unset;
    }

    .blog-card {
        width: calc(50% - 12px);
    }
    /* contact us css  */
    .contact-us-sec .content-wrapper {
        flex-direction: column;
    }
    .contact-us-sec .main-title{
        letter-spacing: 0;
    }

    /* footer css  */
    footer {
        padding: 40px 0 40px;
    }
    .footer-main {
        gap: 20px;
    }
    .footer-main .footer-content ul {
        gap: 20px;
    }
    .footer-copyright {
        padding-top: 30px;
    }

}

@media (max-width: 575px) {
    body.h2 {
        font-size: 30px !important;
        line-height: 34px !important;
    }
    br{
        display: none;
    }
    .home section {
        padding-bottom: 40px;
    }
    /* header css  */
    .mega-grid{
        grid-template-columns:1fr;
    }
    .mega-grid::after{
        display: none;
    }
    .header-main {
        gap: 10px;
    }
    .header-main .header-btn a {
        padding: 8px 10px;
        font-size: 14px;
    }
    /* hero section css  */
    .hero-top-content {
        padding-top: 40px;
    }
    .hero-main .hero-top-content h1 {
        font-size: 42px;
        line-height: 50px;
    }
    .hero-main .hero-top-content p{
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
    }
    .hero-bottom-images{
        flex-wrap: wrap;
    }

     /* ai solution css  */
    .ai-solution-main {
        padding: 20px 15px;
    }
   
    .ai-solution-slider {
        margin-top: 40px;
    }
    .ai-solution-slider .ai-solution-slider-inner p{
        font-size: 14px;
        line-height: 18px;
        padding: 9px 10px;
    }
    .ai-solution-slider button.slick-arrow{
        max-width: 90px;
    }
    .ai-solution-bottom h4{
        font-size: 20px;
        line-height: 24px;
    }
    .ai-solution-bottom p{
        font-size: 14px;
    }

    /* scale smart css  */
    .scale-smart-content{
        margin-top: 40px;
    }
    .scale-smart-content .div1,.div2,.div4,.div5{
        width: 100%;
    }

     /* industry section css  */
    .industry-slider{
        margin-top: 40px;
    }
    .industry-slider .slick-arrow,.stories_box .slick-arrow{
        bottom: -65px;
    }

    /* ai devlopment sec  */
    .ai-devlopment-sec-main {
        gap: 40px;
    }

    .ai-devlopment-title .subtitle {
        font-size: 16px;
    }

    .step-content {
        padding-bottom: 30px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .step-line {
        top: 40px;
        left: 20px;
    }

    /* ai technology sec   */
    .technology-bg-img{
        opacity: 0.7;
    }
    .ai-technology-sec .tech-badge .tech-category {
        margin-bottom: 30px;
    }

    .ai-technology-sec .tech-badge .left-description {
        font-size: 16px;
        line-height: 24px;
    }

    .ai-technology-sec .tech-badge .tech-badge {
        min-width: fit-content;
        width: fit-content;
        height: 50px;
    }

    .ai-technology-sec .tech-badge .tech-name {
        font-size: 16px;
        line-height: 24px;
    }

    .ai-technology-sec .tech-badge .tech-icon {
        width: 24px;
        height: 24px;
        font-size: 16px;
    }

    /* partner sec css  */
    .partner-sec .partner-inner {
        padding: 60px 0;
    }

    .partner-sec .partner-inner h3 {
        font-size: 28px;
        line-height: 36px;
    }

    .partner-sec .partner-inner a {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* faq section css  */
    .faq-section {
        padding-top: 40px;
    }

    .faq-header {
        margin-bottom: 30px;
    }

    /* blog section css  */
    .blog-title-main .subtitle {
        font-size: 16px;
    }

    .blog-title-main {
        margin-bottom: 40px;
    }

    .blog-card {
        width: 100%;
    }

    .blog-image {
        margin-bottom: 20px;
    }
    /* contact us css  */
    .contact-us-sec .content-wrapper {
        gap: 30px;
        padding: 20px;
    }
    .contact-us-sec .step {
        padding: 8px 14px;
    }
    .contact-us-sec .step-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    /* footer css  */
    footer {
        padding: 40px 0 40px;
    }
    .footer-main{
        flex-direction: column;
    }
    .footer-main .footer-content {
        order: 2;
    }
     .footer-main .footer-content ul{
        flex-direction: column;
    }
    .footer-copyright {
        padding-top: 30px;
    }
}

@media (max-width: 374px) {
    /* hero section css  */
    .hero-main .hero-top-content .schedule-btn{
        font-size: 14px;
        line-height: 24px;
        padding: 16px 20px;
    }

    /* ai solution css  */
    .ai-solution-content-inner {
        width: 100%;
    }
    .ai-solution-slider .ai-solution-slider-inner p{
        font-size: 14px;
        line-height: 18px;
        padding: 6px 12px;
    }
}
.slick-disabled {
    /* opacity: 0.3;
    filter: blur(1px); */
      opacity: .5;
    pointer-events: none;
    cursor: not-allowed;
    transition: all 0.3s ease;
}
#successMessage{
    display: none;
}

#page-loader {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            width: 100vw;
            height: 100vh;
            justify-content: center;
            background: rgba(4,10,23,1);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            transition: opacity .25s ease, visibility .25s ease;
        }
        #page-loader.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }
        .loader-spinner {
            width: 64px;
            height: 64px;
            border: 6px solid rgba(255,255,255,0.12);
            border-top-color: #2C7AFF;
            border-radius: 50%;
            animation: loader-spin 0.9s linear infinite;
            box-shadow: 0 6px 24px rgba(0,0,0,0.4);
        }
        @keyframes loader-spin { to { transform: rotate(360deg); } }
        body.blurred {
            filter: blur(6px);
            -webkit-filter: blur(6px);
            transition: filter .25s ease;
            pointer-events: none;
            user-select: none;
        }
        #page-loader * { pointer-events: auto; }
        #successMessage{
    display: none;
}
/* Add to your CSS file */
.arrow-disabled {
    filter: none !important;   /* Blur hata diya */
    opacity: 0.5;              /* Optional: halka grey effect */
    cursor: not-allowed;       /* Optional: cursor effect */
    pointer-events: none;      /* Optional: click disable */
}
.contact-us-sec .input-field{
    width: 100%;
}
.wpcf7-not-valid-tip{
    font-size: 14px;
    position: absolute;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0em 0em;
    padding: 0;
    border: 0;
    /* border-radius: 20px; */
    font-size: 14px;
    color: #dc3232;
    display: none;
}
.wpcf7-spinner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.wpcf7-form p:last-of-type {
    position: relative;
}
.wpcf7-form-control-wrap {
    position: relative;
    margin-bottom: 34px;
    display: block;
}
.wpcf7-form-control.submitting .contact-us-sec .submit-button {
    color: transparent;
}
.thankyou-wrapper {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    text-align: center;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: #008000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px auto;
    border: 1px solid rgba(0, 255, 140, 0.25);
}

.icon-circle svg {
    width: 48px;
    stroke: #fff !important;
}    

.next-box {
    background: rgba(255,255,255,0.04);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: left;
    margin-bottom: 40px;
    margin-top: 25px;
}

.next-box h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.next-box ul {
    padding-left: 20px;
    margin: 0;
}

.next-box ul li {
    color: #cfcfcf;
    margin-bottom: 10px;
    font-size: 15px;
    list-style: disc;
}

.btn-glow {
    width: 220px;
    padding: 14px 0;
    border-radius: 40px;
    background: linear-gradient(90deg, #4da3ff, #6fc8ff);
    box-shadow: 0 0 15px rgba(77,163,255,0.6);
    text-align: center;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(100,180,255,0.9);
}

.form-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.form-loader {
    width: 40px;
    height: 40px;
    border: 4px solid #999;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.footer-copyright p{
     color: #f5f8f9;
}

/* .testi-slider-common {
opacity: 0;
visibility: hidden;
}

.testi-slider-common.slick-initialized {
opacity: 1;
visibility: visible;
transition: opacity 0.3s ease;
} */

.sub-paragraph {
 color:#94a3b8;
}
.testi-slider-common .slick-track {
    display: flex !important;
}

.testi-slider-common .slick-slide {
    height: auto !important;
}

.testi-slider-common .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}



