@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
    --primary: #9c1c1f;
    --primary-dark: #9c1c1f;
    --primary-light: #E5EAD7;
    --dark: #111;
    --text: #1a1a1a;
    --text-muted: #6b6b6b;
    --white: #fff;
    --radius-lg: 50px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    --transition: 0.3s ease;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.5;
}

body.nav-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
}

.container-fluid {
    padding-left: 110px;
    padding-right: 110px;
    padding: 80;
}

.header {
    padding-top: 35px;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 1000;
    transition: padding var(--transition), background var(--transition);
}

.header-scrolled {
    padding-top: 15px;
    /* background: rgba(255, 255, 255, 0.92); */
    backdrop-filter: blur(12px);
    /* box-shadow: var(--shadow); */
}

.header .container-fluid {
    padding: 0px 110px;
}

.header .logo img {
    width: 120px;
}

.header .left-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
    background-color: var(--white);
    border-radius: 15px;
    padding: 11px 15px;
}

.header .left-btn {
    display: flex;
    gap: 20px;
    align-items: center;
}

.services-dropdown-wrap {
    position: relative;
}

.header .service-btn {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 500;
    /* background-color: var(--primary-light); */
    border-radius: var(--radius-lg);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    /* border-image: initial; */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background var(--transition), transform var(--transition);
    transition: .3s all ease-in-out;
}

.header .service-btn:hover {
    background-color: #9c1c1f;
    color: #fff;
}

.header .service-btn i {
    transition: transform var(--transition);
}

.services-dropdown-wrap:has(.services-dropdown.open) .service-btn i {
    transform: rotate(180deg);
}

.services-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0px;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: rgba(0, 0, 0, 0.12) 0px 12px 40px;
    padding: 12px 0px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    z-index: 100;
}

.services-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.services-dropdown a {
    display: block;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
}

/* .services-dropdown a:hover {
    background: var(--primary-light);
    color: var(--primary);
} */

.header .icon-btn {
    padding: 11px 13px;
    font-size: 18px;
    font-weight: 700;
    background-color: #9c1c1f;
    color: var(--white);
    border-radius: var(--radius-lg);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.header .icon-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.header .right-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    background-color: var(--white);
    width: 100%;
    border-radius: 15px;
    padding: 11px 15px;
    height: 100%;
}

.header .chat,
.header .phone {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color var(--transition);
}

.header .chat:hover,
.header .phone:hover {
    color: var(--primary);
}

.header .chat {
    margin-right: 20px;
}

.header .chat i {
    font-size: 20px;
}

.header .chat p,
.header .phone p {
    font-size: 16px;
    font-weight: 600;
    margin: 0px;
}

.header .seperation {
    border-right: 1px solid rgba(0, 0, 0, 0.15);
    width: 1px;
    height: 28px;
}

.header .phone {
    margin-left: 20px;
}

.header .phone i {
    font-size: 22px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    background-color: #9c1c1f;
    border-radius: var(--radius-lg);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: var(--white);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: rgb(211 91 91 / 32%) 0px 8px 24px ;
}

.header .service-btn::after{
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #333;
    left: 0;
    top: 0;
    border-radius: 12px;
}


/* glow */
.header .service-btn::before{
    content: "";
    background: linear-gradient(45deg, #FF0000, #FF7300, #FFFB00, #48FF00, #00FFD5, #002BFF, #FF00C8, #FF0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(10px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 0;
}

.header .service-btn:hover::before{
    opacity: 1;
}

.header .service-btn:active::after{
    background: transparent;
}

.header .service-btn:active{
    color: #000;
}

.header .button .cta-btn {
    margin-left: 20px;
}

.mobile-nav {
    position: fixed;
    top: 0px;
    right: -100%;
    width: min(360px, 90vw);
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    padding: 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.1) -8px 0px 40px;
}

.mobile-nav.open {
    right: 0px;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-nav-header img {
    width: 130px;
}

.mobile-nav-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: var(--primary-light);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.mobile-nav-close:hover {
    background: var(--primary);
    color: var(--white);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 0%;
}

.mobile-nav-links a {
    padding: 14px 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.mobile-nav-links a:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.mobile-nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.nav-overlay {
    position: fixed;
    inset: 0px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.hero-section {
    padding: 160px 0px 0px;
    position: relative;
    overflow: hidden;
}

.hero-section .container-fluid {
    padding: 0px 110px;
}

.hero-content h1 {
    font-size: clamp(42px, 6vw, 120px);
    font-weight: 300;
    line-height: 1.05;
}

.hero-content h1 img {
    display: inline-block;
    vertical-align: middle;
    width: clamp(40px, 5vw, 80px);
}

.hero-content .custom {
    font-weight: 700;
}

.hero-content .development {
    color: #9c1c1f;
}

.hero-content p {
    max-width: 520px;
    font-size: 17px;
    font-weight: 400;
    margin-top: 20px;
    color: var(--text-muted);
}

.hero-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.hero-btn .cta-btn {
    padding: 15px 35px;
    font-size: 18px;
}

.case-study-link {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.case-study-link:hover {
    color: #b14646d9;
}

.trust-heading h4 {
    font-size: 20px;
    font-weight: 500;
}

.trust-brands {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 20px;
}

.trust-brands img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity var(--transition);
}

.trust-brands img:hover {
    opacity: 1;
}

.hero-section .hero-content .trust-heading {
    margin-top: 85px;
}

.hero-section .hero-content {
    position: relative;
    padding-bottom: 199px;
}

.hero-section .hero-content .person-img {
    position: absolute;
    bottom: 0px;
    right: 28%;
    width: clamp(200px, 25vw, 364px);
}

.hero-section .side-img {
    position: absolute;
    bottom: -80px;
    left: -5%;
    width: 250px;
    pointer-events: none;
}

.services-section {
    padding: 0px 110px;
}

.services-section .services-headings h1 {
    font-size: clamp(36px, 5vw, 70px);
    max-width: 70%;
    font-weight: 300;
    padding: 80px 0px;
    line-height: 1.15;
}

.services-section .services-headings h1 span {
    position: relative;
    color: var(--primary);
}

.services-section .services-headings h1 span::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 7px;
    background: var(--primary);
    left: 50%;
    bottom: -15px;
    transform: translate(-50%, -50%);
    border-radius: 10px;
}

.services-section .service-box1 {
    border: 3px solid rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    border-radius: var(--radius-lg);
    margin: 20px 0px;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.services-section .service-box1:hover {
    border-color: var(--primary);
    box-shadow: rgba(94, 185, 30, 0.1) 0px 12px 40px;
}

.services-section .box1-content {
    padding: 40px;
    flex: 1 1 0%;
}

.services-section .box1-content h2 {
    font-size: 35px;
}

.services-section .box1-content p {
    font-size: 19px;
    width: 93%;
    padding: 30px 0px 0px;
    line-height: 1.6;
    color: var(--text-muted);
}

.services-section .box1-content p span {
    color: var(--primary);
    cursor: pointer;
}

.services-section .box1-img img {
    margin-top: 20px;
    margin-bottom: -3px;
}

.services-section .service-box2 {
    border: 3px solid rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    padding: 40px;
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.services-section .service-box2:hover {
    border-color: var(--primary);
    box-shadow: rgba(94, 185, 30, 0.1) 0px 12px 40px;
}

.services-section .box2-content h1 {
    font-size: 28px;
}

.services-section .box2-content p {
    font-size: 19px;
    padding: 24px 0px 0px;
    line-height: 1.6;
    color: var(--text-muted);
}

.services-section .box2-content p span {
    color: var(--primary);
    text-decoration: underline;
}

.services-section .service-box3 {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.services-section .service-box3 h1 {
    font-size: 25px;
    font-weight: 500;
    text-align: center;
    color: var(--white);
}

.services-section .service-box3 .cta-btn {
    margin-top: 20px;
    padding: 12px 28px;
    font-size: 14px;
}

.services-section .service-box3 div {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.services-section .service-box3 img {
    border: 3px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-section .service-box4 {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    border: 3px solid rgba(0, 0, 0, 0.12);
    padding: 40px;
    border-radius: var(--radius-lg);
    height: calc(100% - 20px);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.services-section .service-box4:hover {
    border-color: var(--primary);
    box-shadow: rgba(94, 185, 30, 0.1) 0px 12px 40px;
}

.services-section .box4-content h2 {
    font-size: 35px;
    margin-top: 20px;
}

.services-section .box4-content p {
    font-size: 19px;
    padding: 30px 0px 0px;
    line-height: 1.6;
    color: var(--text-muted);
}

.services-section .box4-content p span {
    color: var(--primary);
}

.services-section .service-box4 img {
    width: 100%;
    border-radius: var(--radius-md);
}

.sponsor-section {
    padding: 0px 110px;
    margin-top: 120px;
}

.sponsor-section .row {
    position: relative;
    background-color: var(--primary);
    border-radius: var(--radius-lg);
    padding: 80px 0;
    align-items: center;
}

.sponsor-section .row .sponsor-content {
    padding-left: 100px;
}

.sponsor-content h1 {
    font-size: clamp(32px, 4vw, 64px);
    color: var(--white);
    line-height: 1.15;
}

.service-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(-50%, -50%) !important;
}

.service-image .service-img {
    background-color: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(130, 121, 121, 0.33);
    /* border: none; */
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), box-shadow var(--transition);
    WIDTH: 200px;
    height: 200px;
}

.service-image .service-img:hover {
    transform: translateY(-4px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 30px;
}

.service-image img {
    width: 60%;
    object-fit: contain;
}

.realworld-examples {
    background-color: var(--dark);
    padding: 60px 0px 80px;
    margin-top: 125px;
}

.realworld-content {
    padding: 0px 110px;
}

.realworld-content h2 {
    color: var(--white);
    font-size: clamp(28px, 4vw, 50px);
    text-align: center;
    padding: 25px 0px;
    line-height: 1.2;
}

.bgimage {
    position: relative;
    height: 610px;
    border: 8px solid rgba(243, 243, 243, 0.8);
    border-radius: 33px;
    margin-top: 40px;
    transition: 0.4s ease-in-out;
    overflow: hidden;
    cursor: pointer;
}

.bgimage:hover {
    border-radius: 50%;
    border-color: var(--primary);
}

.bgimage:hover .hover {
    transform: scale(1.05);
}

.bgimage>img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.4s ease-in-out;
}

.realworld-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
}

.sample-section {
    padding: 60px 0px;
}

.sample-work {
    padding: 0px 110px;
}

.sample-content h4 {
    font-size: clamp(32px, 4vw, 65px);
    text-align: center;
    margin-top: 40px;
    line-height: 1.15;
    margin-bottom: 60px;
}

.sample-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 30px 0px;
    margin-top: 20px;
}

.sample-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.sample-logos img:hover {
    opacity: 1;
}

.sample-row {
    margin-top: 50vw;
}

.sample-image1 {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
}

.sample-image1-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.sample-image1-content h1 {
    color: var(--white);
    font-size: clamp(60px, 8vw, 98px);
    line-height: 1;
}

.sample-image1-content h1 span {
    color: #fff;
}

.sample-image1-content p {
    font-size: 22px;
    color: rgb(163, 161, 161);
    margin-top: 8px;
}

.sample-image1 img {
    border-radius: var(--radius-md);
    width: 100%;
    height: 100%;
}

.sample-video {
    height: 100%;
    min-height: 350px;
}

.sample-video video {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.industries-section {
    padding-bottom: 80px;
    padding-top: 30px;
}

.industries-served {
    padding: 0px 110px;
    margin-top: 0px;
}

.industries-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industries-content h1 {
    font-size: clamp(32px, 4vw, 50px);
}

.industries-content p {
    font-size: 20px;
    max-width: 700px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
}

.industries-slider-wrap {
    padding: 0px 110px;
    margin-top: 50px;
    position: relative;
}

.industry-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.industry-card:hover img {
    transform: scale(1.08);
}

.industry-card span {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #e1e1e18a;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.platform-section {
    padding: 100px 0px;
    margin-bottom: 80px;
    background: linear-gradient(180deg, #eb7373 0%, var(--white) 100%);
}

.platform-inner {
    max-width: 1280px;
    margin: 0px auto;
    padding: 0px 110px;
}

.platform-header {
    text-align: center;
    max-width: 720px;
    margin: 0px auto 50px;
}

.platform-header h3 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.15;
    margin-bottom: 16px;
}

.platform-subtitle {
    font-size: 18px;
    color: #000000;
    line-height: 1.7;
}

.platform-tabs-card {
    background: var(--white);
    border-radius: 28px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 20px 60px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.tabs-nav-wrap {
    background: linear-gradient(135deg, rgb(223 223 223) 0%, rgb(221 221 221 / 75%) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 24px;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-nav-wrap::-webkit-scrollbar {
    display: none;
}

#tabs-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0px;
    margin: 0px;
    min-width: max-content;
}

#tabs-nav li a {
    display: inline-block;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    white-space: nowrap;
    transition: all var(--transition);
}

#tabs-nav li a:hover {
    color: var(--primary);
    background: var(--white);
}

#tabs-nav li.active a {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: rgb(211 91 91 / 32%) 0px 6px 20px;
}

.tab-panels {
    padding: 40px 36px 48px;
    position: relative;
}

.tab-content-head {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.tab-content-head h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tab-content-head p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
}

.tab-content {
    width: 100%;
}

.platform-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 20px;
    background: rgb(250, 251, 248);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 140px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.platform-logo:hover {
    transform: translateY(-6px);
    box-shadow: rgba(94, 185, 30, 0.12) 0px 12px 30px;
    border-color: var(--primary);
}

.platform-logo img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.platform-logo span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.process-section {
    padding: 100px 0px;
    background: var(--white);
}

.process-section .container-fluid {
    padding: 0px 110px;
}

.process-header {
    text-align: center;
    max-width: 640px;
    margin: 0px auto 60px;
}

.process-header h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
    margin-bottom: 16px;
}

.process-header p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
}

.process-steps {
    row-gap: 24px;
}

.process-card {
    /* background: rgb(250, 251, 248); */
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 36px 28px;
    height: 100%;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: rgb(211 91 91 / 32%) 0px 16px 40px;
    border-color: var(--primary);
}

.process-num {
    font-size: 48px;
    font-weight: 800;
    color: #b14646d9;
    line-height: 1;
    margin-bottom: 16px;
}

.process-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.process-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.stats-section {
    padding: 80px 0px;
    background: var(--dark);
}

.stats-section .container-fluid {
    padding: 0px 110px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color var(--transition), background var(--transition);
}

.stat-item:hover {
    border-color: var(--primary);
    /* background: rgba(94, 185, 30, 0.08); */
}

.stat-number {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: #b14646d9;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.cta-section {
    padding: 60px 110px;
}

.cta-inner {
    background: linear-gradient(135deg, var(--primary) 0%, #b14646d9 100%);
    border-radius: 32px;
    padding: 70px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    justify-content: center;
    text-align: center;
}

.cta-inner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 100%;
}

.cta-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.cta-actions {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.cta-btn-light {
    background: var(--white);
    color: var(--primary);
}

.cta-btn-light:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 24px;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
}

.cta-phone:hover {
    color: var(--white);
}

.cta-phone i {
    font-size: 22px;
}

.swiper-nav,
.testimonial-nav {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.regions-slider-wrap .swiper-nav,
.industries-slider-wrap .swiper-nav {
    justify-content: center;
}

.swiper-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    background: var(--white);
    color: var(--primary);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.swiper-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

.sec-testimonials {
    /* background: linear-gradient(145deg, #000000b3 0%, #00000000 100%); */
    margin-top: 0px;
    padding: 60px 0px;
    background-color: #f5f4f4;
}

.sec-testimonials .testimonial {
    padding: 0px 110px;
}

.sec-testimonials .image {
    overflow: hidden;
    padding: 0px 120px;
}

.sec-testimonials .image img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.sec-testimonials .testimonial-content {
    padding: 40px 0px;
}

.sec-testimonials .testimonial-content h2 {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.35;
}

.sec-testimonials .testimonial-content .quote {
    font-size: 48px;
    border-radius: var(--radius-md);
    width: fit-content;
    padding: 16px 20px;
    color: var(--white);
    background-color: var(--primary);
    margin-bottom: 30px;
}

.testimonial-author {
    margin-top: 24px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
}

.testimonial-nav {
    padding-left: 0px;
    margin-top: 0px;
    justify-content: center;
    display: none;
}

.site-footer {
    background: rgb(10, 10, 10);
    color: var(--white);
}

.footer-top {
    padding: 90px 0px 60px;
}

.footer-top .container-fluid {
    padding: 0px 110px;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 24px;
    /* filter: brightness(0) invert(1); */
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: 0.02em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 15px;
}

.footer-contact a i {
    color: var(--primary);
    font-size: 18px;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-newsletter {
    display: flex;
    margin-top: 12px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.footer-newsletter input {
    flex: 1 1 0%;
    background: transparent;
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    outline: none;
    padding: 14px 20px;
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer-newsletter button {
    padding: 14px 20px;
    background: var(--primary);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: initial;
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    transition: background var(--transition);
}

.footer-newsletter button:hover {
    background: var(--primary-dark);
}

.footer-cta {
    margin-top: 8px;
    width: fit-content;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0px;
}

.footer-bottom .container-fluid {
    padding: 0px 110px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    margin: 0px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-legal a:hover {
    color: var(--primary);
}

.tab-panels .swiper-wrapper {
    padding-top: 20px;
}

@media only screen and (max-width: 1600px) {

    .header .chat p,
    .header .phone p {
        font-size: 11px;
    }

    .header .container-fluid {
        padding: 0 30px;
    }

    .header .button .cta-btn {
        padding: 10px;
        font-size: 13px;
    }

    .hero-section .container-fluid {
        padding: 0 30px;
    }

    .hero-section .hero-content .person-img {
        right: 8%;
    }

    .hero-content h1 {
        font-size: 95px;
    }

    .services-section .services-headings h1 {
        font-size: 62px;
    }

    .services-section {
        padding: 0 30px
    }

    .services-section .box1-content {
        padding: 25px 35px
    }

    .services-section .box1-content p {
        margin-top: -22px
    }

    .services-section .service-box2 {
        padding: 20px 35px
    }

    .services-section .service-box3 {
        height: 264px
    }

    .sponsor-section {
        padding: 0 30px
    }

    .service-image {
        gap: 10px
    }

    .sponsor-section .row {
        padding: 90px 0px;
    }

    .sponsor-content h1 {
        font-size: 52px
    }

    .regions{
        padding:0 30px
    }

    .regions-slider-wrap{
        padding:0 30px
    }

    .regions p{
        max-width:50%
    }

    .bgimage{
        height:500px
    }

    .sample-content h4{
        font-size:50px
    }

    .industries-served{
        padding:0 30px;
    }

    .industries-slider-wrap{
        padding:0 30px;
    }

    .platform-inner{
        padding:0 30px
    }

    .platform-header h3{
        font-size:41px
    }


    
}

@media only screen and (max-width: 1199px) {

    .container-fluid,
    .header .container-fluid,
    .hero-section .container-fluid,
    .services-section,
    .sponsor-section,
    .regions,
    .regions-slider-wrap,
    .realworld-content,
    .sample-work,
    .industries-served,
    .industries-slider-wrap,
    .platform-inner,
    .process-section .container-fluid,
    .stats-section .container-fluid,
    .cta-section,
    .footer-top .container-fluid,
    .footer-bottom .container-fluid,
    .sec-testimonials .testimonial,
    .testimonial-nav {
        padding-left: 30px;
        padding-right: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner {
        padding: 50px 36px;
    }

    .header .right-nav .chat,
    .header .right-nav .phone,
    .header .right-nav .seperation {
        display: none;
    }

    .services-section .services-headings h1 {
        max-width: 100%;
    }

    .hero-section .hero-content .person-img {
        right: 5%;
        width: 280px;
    }

    .sponsor-section .row {
        padding: 60px 30px;
    }

    .service-image {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .header .col-lg-4 {
        display: none;
    }

    .header .col-lg-8 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hero-section .hero-content {
        padding-bottom: 120px;
    }

    .hero-section .hero-content .person-img {
        position: relative;
        right: auto;
        margin: 40px auto 0px;
        display: block;
    }

    .hero-section .side-img {
        width: 150px;
        bottom: -40px;
    }

    .services-section .service-box1 {
        flex-direction: column;
    }

    .services-section .service-box4 {
        height: auto;
        margin-top: 20px;
    }

    .regions {
        flex-direction: column;
        align-items: flex-start;
    }

    .regions p {
        max-width: 100%;
    }

    .bgimage {
        height: 350px;
    }

    .sec-testimonials .image {
        padding: 20px 20px 0px;
    }

    .testimonial-nav {
        padding-left: 30px;
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .header {
        padding-top: 15px;
    }

    .hero-section {
        padding-top: 120px;
    }

    .hero-btn {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-section .box1-content,
    .services-section .service-box2,
    .services-section .service-box4 {
        padding: 24px;
    }

    .services-section .box1-content h2,
    .services-section .box4-content h2 {
        font-size: 24px;
    }

    #tabs-nav {
        gap: 8px;
    }

    #tabs-nav li a {
        padding: 10px 16px;
        font-size: 14px;
    }

    .tab-panels {
        padding: 28px 20px 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 0px 20px 60px;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 28px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        margin-bottom: 36px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}