/* =========================================================
   nst â€” RESPONSIVE BOOTSTRAP DESIGN
========================================================= */

:root {
    --bg: #02070e;
    --panel: #090f18;
    --panel2: #0c131f;
    --card: #0d1118;
    --line: rgba(255, 255, 255, 0.12);
    --white: #f7f8fb;
    --muted: #aeb6c4;
    --blue: #4d82ff;
    --cyan: #00d9ff;
    --purple: #9d62ff;
    --accent: #6b91ff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 80% 35%, rgba(36, 74, 180, 0.12), transparent 27%),
        radial-gradient(circle at 35% 80%, rgba(62, 38, 142, 0.08), transparent 30%),
        var(--bg);

    color: var(--white);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 7, 14, 0.82);
    backdrop-filter: blur(16px);
    position: relative;
    z-index: 100;
}

.navbar {
    min-height: 88px;
}

.navbar-brand {
    line-height: 1;
    color: #fff;
    display: inline-flex;
    align-items: center;
}

.navbar-brand img {
    width: 160px;
    max-width: 100%;
    height: auto;
    display: block;
}

.navbar-toggler {
    color: #fff !important;
    padding: 4px;
}

.navbar-toggler i {
    font-size: 29px;
}

/* .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        background: #89898957;
        padding: 10px 10px;
        border: 1px solid #cccccc33;
        border-radius: 50px;
        backdrop-filter: blur(20px);
    } */
.nav-link {
    color: #f1f3f7 !important;
    font-size: 16.5px;
    margin: 0 15px;
    /* transition: 0.2s ease; */
    transition: color 0.5s ease, border-color 0.5s ease, transform 0.5s ease;
}

.nav-link:hover {
    color: #7fa4ff !important;
    /* border-bottom-color: #0b2eb8; */
    transform: translateY(-2px);
}


/* Dropdown */

.dropdown-menu {
    background: #0b121c;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 7px;
}

.dropdown-item {
    font-size: 13px;
    border-radius: 7px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.site-header .navbar-expand-lg .navbar-collapse{}
.site-header .navbar-expand-lg .navbar-collapse .navbar-nav{}
.site-header .navbar-expand-lg .navbar-collapse .navbar-nav .nav-item{}
/* =========================================================
   BUTTONS
========================================================= */

.site-header .navbar-expand-lg .navbar-collapse .project-btn,
.site-header .btn-main {
    display: inline-flex;
    align-items: center;
    /* gap: 14px; */
    padding: 6px 41px;
    height: 58px;
    border: 1.5px solid transparent;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #7c3aed, #06b6d4, #7c3aed, #2563eb);
    background-size: 300% 300%;
    animation: btnGradient 4s ease infinite;
    font-size: 19px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    justify-content: center;
}

.project-btn:hover {
    transform: translateY(-2px);

    background:
        linear-gradient(#07101d, #07101d) padding-box,
        linear-gradient(135deg, #087cff, #b56cff) border-box;

    box-shadow:
        0 0 20px rgba(8, 124, 255, 0.18),
        0 0 35px rgba(155, 92, 255, 0.12);
}

.project-btn:hover i {
    transform: translateX(3px);
}

.contact-heading i {
    background-color: #0066FF;
    width: 25px;
    height: 25px;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10%;
    color: #fff;
    font-size: 18px;
}

.contact-map {
    background: #000;
}

.contact-map iframe {
    filter: grayscale(1) invert(0.9) contrast(1.1);
}

/* .project-btn:hover,
.btn-main:hover {
    transform: translateY(-2px);
    color: #11151c;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
} */

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgb(24 103 40);
    color: #fff;
    padding: 14px 23px;
    border-radius: 17px;
    font-weight: 650;
    transition: 0.25s;
    background: linear-gradient(#1f7026, #0a552c) padding-box, linear-gradient(135deg, #2563eb, #7c3aed) border-box;
}

.btn-outline:hover {
    background: #070708;
    color: #ffffff;
}



.hero-banner {
    width: 100%;
    overflow: hidden;
}


.hero-banner .work-card  .web-img{
    width: 100%;
    /* height: 600px; */
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(1.3);
}
.hero-banner .work-card  .mobile-img{
display:none;
}
.hero-banner .work-card {
    background-color: transparent;
}

@media (max-width: 767px) {
    .hero-banner img {
        height: 450px;
        object-fit: cover;
    }
    .hero-banner .work-card .web-img{
        display: none;
    }
    .hero-banner .work-card .mobile-img{
        display: block;
    }
}

/* =========================================================
   HERO
========================================================= */

.hero {
    padding: 40px 0 30px;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.eyebrow {
    color: #a7b9ff;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
}

.eyebrow-section {
    color: #a7b9ff;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 500;
}

.eyebrow-section .bn {
    background: linear-gradient(100deg, #9bb2ff 5%, #bd9cff 55%, #77baff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow-section span {
    color: var(--cyan);
}

.hero h1 {
    margin: 31px 0 23px;
    font-size: clamp(58px, 5.3vw, 98px);
    line-height: 0.98;
    letter-spacing: -5px;
    font-weight: 700;
}

.hero h1 span {
    background:
        linear-gradient(100deg, #9bb2ff 5%, #bd9cff 55%, #77baff 100%);

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

.hero-description {
    max-width: 570px;
    color: #b0b8c5;
    font-size: 17px;
    line-height: 1.62;
}

.hero-description span {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(100deg, #9bb2ff 5%, #bd9cff 55%, #77baff 100%);
    background-clip: text;
    color: transparent;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 30px;
}
.hero-actions .btn-main{
    display: inline-flex;
    align-items: center;
    justify-content: left;
    gap: 8px;
    padding: 20px 18px;
    /* min-width: 258px; */
    border-radius: 16px;
    background: #f1f0ee;
    color: #18202a;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
}
.hero-actions .bi-whatsapp {
    color: #89cbac;
}

.hero-content .stats {
    grid-template-columns: repeat(3, 1fr);
    margin: 0px;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(12, 19, 30, 0.8), rgba(7, 12, 20, 0.8));
}

.hero-content .stats>div {
    padding: 10px;
    min-height: 70px;
}

.hero-content .stats i {
    font-size: 20px;
    /* color: #fff;; */
    color: transparent;
    background: linear-gradient(100deg, rgb(155, 178, 255) 5%, rgb(189, 156, 255) 55%, rgb(119, 186, 255) 100%) text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.hero-content .stats b {

font-size: 14px;

background: linear-gradient(90deg, #ffffff, #ffffff);

-webkit-text-fill-color: #fff;

-webkit-background-clip: text;
}

.hero-content .stats span {
    font-size: 10px;
}

/* Tablet */
@media (max-width: 991px) {
    .hero-content .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 20px;
    }
}


/* Mobile */
@media (max-width: 575px) {
    .hero-content .stats {
        /* grid-template-columns: 1fr; */
        gap: 5px;
    }

    .hero-content .stats>div {
        gap: 14px;
    }

    .hero-content .stats>div>i {
        font-size: 25px;
    }

    .hero-content .stats section b {
        font-size: 12px;
    }

    .hero-content .stats section span {
        font-size: 9px;
    }
}

/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;
    height: 535px;
    margin-left: -35px;
}

.gradient-orb {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    right: -2px;
    top: 15px;
    background: radial-gradient(circle at 28% 20%, #7d4ae0 0, #3e228d 35%, #164795 68%, #e69b55 100%);
    box-shadow: 0 0 90px rgba(72, 99, 255, 0.18);
}


/* =========================================================
   LAPTOP
========================================================= */

.laptop {
    position: absolute;
    width: min(670px, 100%);
    right: 35px;
    top: 0;
    z-index: 3;
    transform:
        perspective(1300px) rotateY(-7deg) rotateX(2deg);
}

.laptop-screen {
    height: 380px;
    border: 4px solid #272d35;
    border-bottom-width: 8px;
    border-radius: 22px 22px 10px 10px;
    background: radial-gradient(circle at 65% 60%, rgba(255, 255, 255, 0.07), transparent 18%), linear-gradient(145deg, #11171e, #05080c 70%);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    position: relative;
    padding: 0;
}

.laptop-screen img {
    width: 100%;
    /* height: 100%; */
    display: block;
    object-fit: cover;
    object-position: center;
}

.laptop-base {
    width: 112%;
    height: 38px;
    margin-left: -6%;
    background: linear-gradient(#363c43, #161a1e);
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
    border-radius: 0 0 13px 13px;
}


/* =========================================================
   PROJECT CARD
========================================================= */

.projects-card {
    position: absolute;
    z-index: 8;
    width: 205px;
    right: 375px;
    bottom: 6px;
    padding: 15px 17px;
    background: rgba(10, 19, 34, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
}

.projects-card small {
    display: block;
    color: #d2d8e4;
    font-size: 12px;
}

.projects-card strong {
    display: block;
    color: #6799ff;
    font-size: 25px;
    margin: 5px 0;
}

.projects-card em {
    display: block;
    color: #9aa4b4;
    font-size: 12px;
    font-style: normal;
}

.projects-card>i {
    position: absolute;
    right: 14px;
    top: 13px;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #6799ff;
    background: rgba(70, 115, 255, 0.17);
    border-radius: 9px;
}


/* =========================================================
   PHONE
========================================================= */

.phone {
    position: absolute;
    z-index: 7;
    width: 188px;
    height: 370px;
    right: 57px;
    bottom: -10px;
    padding: 5px;
    background: #15191e;
    border: 4px solid #292e34;
    border-radius: 30px;
    transform: rotate(10deg);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55);
}

.phone-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 23px;
    background: #e9e1d3;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* =========================================================
   STATS
========================================================= */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 55px auto;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(12, 19, 30, 0.8), rgba(7, 12, 20, 0.8));
    max-width: 1200px;
    width: 100%;
    gap: 20px;
}

.stats>div {
    min-height: 90px;
    padding: 19px 28px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid var(--line);
}

.stats>div:last-child {
    border-right: 0;
}

.stats i {
    font-size: 29px;
    color: #5e8fff;
    flex-shrink: 0;
}

.stats section b {
    display: block;
    font-size: 27px;
    line-height: 1;
    background: linear-gradient(90deg, #638cff, #ad60ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stats section span {
    display: block;
    color: #c0c7d1;
    font-size: 14px;
    margin-top: 5px;
}


/* =========================================================
   CAPABILITIES SECTION
========================================================= */

.capabilities-section {
    width: 100%;
    padding: 40px 30px;
    background: var(--bg);
    color: var(--white);
}


/* =========================================
   SERVICES SECTION
========================================= */

.services {
    /* padding: 100px 0; */
    /* padding: 60px 30px; */
    padding: 30px 40px 40px;
    background: #0b0b0b;
    color: #fff;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    margin-bottom: 50px;
}

.section-label {
    margin-bottom: 15px;
    color: #8b8b8b;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
}

.section-heading h2 span {
    color: #8d8d8d00;
    background: linear-gradient(100deg, #9bb2ff 5%, #bd9cff 55%, #77baff 100%);
    font-style: normal;
    background-clip: text;
}

.section-heading>div:last-child p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {
    position: relative;
    height: 100%;
    min-height: 380px;
    padding: 30px;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}


/* Hover */

.service-card:hover {
    transform: translateY(-8px);
    border-color: #555;
    background: #191919;
}


/* Featured Card */

.service-card.featured {
    background: #1d1d1d;
    border-color: #444;
}


/* =========================================
   CARD NUMBER
========================================= */

.card-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #666;
    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   ICON
========================================= */

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #383838;
    border-radius: 10px;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(5deg);
    border-color: #777;
    /* background: linear-gradient(100deg, #9bb2ff 5%, #bd9cff 55%, #77baff 100%); */
    color: #000;
    background: #fff;
}


/* =========================================
   TITLE
========================================= */

.service-card h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 600;
}


/* =========================================
   DESCRIPTION
========================================= */

.service-card>p {
    margin-bottom: 22px;
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   LIST
========================================= */

.service-card ul {
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.service-card ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
    color: #aaa;
    font-size: 13px;
    line-height: 1.5;
}

.service-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #777;
}

/* =========================================
   LINK
========================================= */

.service-card a {
    margin-top: auto;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card a:hover {
    color: #aaa;
    padding-left: 5px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .services {
        padding: 80px 0;
    }

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

    .section-heading h2 {
        font-size: 48px;
    }

    .section-heading>div:last-child {
        margin-top: 20px;
    }

    .service-card {
        min-height: 420px;
        padding: 25px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .services {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .section-heading>div:last-child p {
        font-size: 14px;
    }

    .service-card {
        min-height: auto;
        padding: 25px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .service-card h3 {
        font-size: 19px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .services {
        padding: 26px 0;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .service-card {
        padding: 22px;
        border-radius: 10px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-card>p {
        font-size: 13px;
    }

    .service-card ul li {
        font-size: 12px;
    }

}


/* =========================================================
   SECTION HEADING
========================================================= */

.sectionhead {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 46px;
}

.capabilities-section .sectionhead h2 {
    margin: 31px 0 23px;
    font-size: clamp(58px, 5.3vw, 70px);
    line-height: 0.98;
    /* letter-spacing: -5px; */
    font-weight: 700;
}

.capabilities-section .sectionhead h2 span {
    background: linear-gradient(100deg, #9bb2ff 5%, #bd9cff 55%, #77baff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.capabilities-section .sectionhead p {
    margin: 0;
    color: #f1f1f1;
    line-height: 1.65;
    max-width: 490px;
    font-size: 18px;
}

/* =========================================================
   MAIN GRID
========================================================= */

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.capabilities-grid .capabilities-item{}

/* =========================================================
   MAIN LARGE CARD
========================================================= */

.cap-main {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: linear-gradient(145deg, #151517, #0f1012);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cap-main::after {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -110px;
    top: -110px;
    border-radius: 50%;
    border: 1px solid rgba(154, 173, 216, 0.12);
    pointer-events: none;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.cap-side {
    display: grid;
    gap: 14px;
    height: 100%;
}


/* =========================================================
   COMMON CARD
========================================================= */

.cap-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--card);
    padding: 28px;
    min-height: 295px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* =========================================================
   IMAGE
========================================================= */

.cap-art {
    width: 100%;
    /* height: 190px; */
    margin-bottom: 24px;
    border-radius: 16px;
    overflow: hidden;
    background: #111214;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cap-main .cap-art {
    /* height: 300px; */
    /* height: 458px; */
    height: auto;
}

.cap-art img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition:
        transform 0.5s ease,
        opacity 0.3s ease;
}

.cap-main:hover .cap-art img,
.cap-card:hover .cap-art img {
    transform: scale(1.04);
}


/* =========================================================
   NUMBER
========================================================= */

.cap-num {
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.16em;
    color: #6e6a70;
    margin-bottom: 8px;
}


/* =========================================================
   HEADINGS
========================================================= */

.cap-main h3 {
    max-width: 580px;
    margin: 15px 0;
    font-size: clamp(38px, 4vw, 32px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 500;
}

.cap-card h3 {
    margin: 10px 0;
    font-size: clamp(25px, 2.2vw, 32px);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 500;
}


/* =========================================================
   PARAGRAPHS
========================================================= */

.cap-main p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 15px;
}

.cap-card p {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}


/* =========================================================
   FOOTER
========================================================= */

.cap-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
}


/* =========================================================
   TAGS
========================================================= */

.tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.tag {
    display: inline-flex;
    align-items: center;
    border: 1px solid #2a292d;
    background: #0c0d0f;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 13px;
    line-height: 1;
    color: #b4b0ad;
    white-space: nowrap;
}


/* =========================================================
   ARROW
========================================================= */

.arrow {
    font-size: 22px;
    color: #a9a9a9;
    transition: transform 0.3s ease;
    border: 1px solid #5d5c5c;
    height: 40px;
    width: 40px;
    border-radius: 44px;
    line-height: 1.7;
    display: flex;
    justify-content: center;
}

.cap-main:hover .arrow,
.cap-card:hover .arrow {
    transform: translate(4px, -4px);
}

.cap-card-arrow {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}


/* =========================================================
   AI CARD
========================================================= */

.cap-ai-card {
    margin-top: 0;
    min-height: auto;
}

.cap-ai-card .cap-art {
    /* height: 260px; */
    height: auto;
}

.cap-ai-card h3 {
    font-size: clamp(32px, 4vw, 32px);
    line-height: 0.95;
    letter-spacing: -0.055em;
    margin: 12px 0 10px;
}

.ai-description {
    max-width: 650px !important;
    margin: 0 !important;
    color: var(--muted);
    font-size: 15px !important;
    line-height: 1.7 !important;
}

.ai-footer {
    margin-top: 28px;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (max-width: 1399.98px) {

    .hero h1 {
        font-size: 67px;
    }

    .hero-visual {
        margin-left: -65px;
    }

    .laptop {
        width: 620px;
    }

    .laptop-screen {
        height: 350px;
    }

    .phone {
        right: 20px;
    }

    .gradient-orb {
        width: 400px;
        height: 400px;
    }

}

/* =========================================================
   TABLET / LAPTOP
========================================================= */

@media (max-width: 1199.98px) {

    .nav-link {
        margin: 0 8px;
    }

    .hero {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 65px;
    }

    .hero-visual {
        height: 500px;
        margin-left: -60px;
    }

    .laptop {
        width: 560px;

        right: 20px;
    }

    .laptop-screen {
        height: 315px;
    }

    .phone {
        width: 165px;
        height: 325px;

        right: 25px;
    }

    .gradient-orb {
        width: 350px;
        height: 350px;
    }

    .projects-card {
        right: 300px;
    }

    .stats>div {
        padding: 18px 16px;
    }

    .capabilities-section {
        padding: 75px 25px;
    }

    .cap-main {
        min-height: 580px;
        padding: 28px;
    }

    .cap-main .cap-art {
        /* height: 270px; */
    }

    .cap-card {
        padding: 24px;
        min-height: 280px;
    }

    .cap-art {
        /* height: 165px; */
    }

    .cap-ai-card .cap-art {
        /* height: 230px; */
    }

}

/* =========================================================
   TABLET 768px - 991px
========================================================= */

@media (max-width: 991.98px) {

    .navbar {
        min-height: 76px;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 12px 0 18px;
        border-top: 1px solid var(--line);
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-link {
        margin: 7px 0;
    }

    .project-btn {
        margin-top: 10px;
        width: 100%;
    }


    /* Hero */

    .hero {
        padding-top: 42px;
    }

    .hero h1 {
        font-size: clamp(55px, 8vw, 72px);
        max-width: 650px;
    }

    .hero-description {
        max-width: 620px;
    }

    .hero-visual {
        height: 535px;
        margin: 35px 0 0;
    }

    .laptop {
        width: 650px;
        right: 50%;
        transform: translateX(50%) perspective(1300px) rotateY(-5deg);
    }

    .gradient-orb {
        right: 50%;

        transform: translateX(50%);

        top: 30px;
    }

    .phone {
        right: 8%;
        bottom: -5px;
    }

    .projects-card {
        left: 8%;
        right: auto;

        bottom: 0;
    }


    /* Stats */

    .stats {
        grid-template-columns: repeat(2, 1fr);

    }

    .stats>div:nth-child(2n) {
        border-right: 0;
    }

    .stats>div:not(:nth-last-child(-n + 2)) {
        border-bottom: 1px solid var(--line);
    }

    .stats>div:last-child {
        grid-column: 1 / -1;

        justify-content: center;

        border-bottom: 0;
    }


    /* Capabilities */

    .capabilities-section {
        padding: 70px 22px;
    }

    .capabilities-section .sectionhead {
        margin-bottom: 35px;
    }

    .capabilities-section .sectionhead {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cap-main {
        min-height: auto;

        padding: 28px;
    }

    .cap-main .cap-art {
        /* height: 300px; */
    }

    .cap-side {
        grid-template-columns: repeat(2, 1fr);

        height: auto;
    }

    .cap-card {
        min-height: 310px;
    }

    .cap-art {
        /* height: 170px; */
    }

    .cap-ai-card .cap-art {
        /* height: 250px; */
    }

}

.our-work-section {
    background: #050607;
    padding: 30px 0 80px;
}

.our-work-section .trusted-badge-work {}

.our-work-section .trusted-badge-work .badge-star {}

.our-work-section .trusted-badge-work span {
    font-size: 14px;
    padding-right: 5px;
}

.our-work-section p {
    /* text-align: center; */
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    font-size: 20px;
}

.our-work-section .trusted-badge-work {
    /* display: inline-flex; */
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border: 1px solid #5276a4;
    border-radius: 30px;
    background: rgba(10, 20, 35, 0.7);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
    box-shadow: 0 0 15px rgba(53, 143, 255, 0.08),
        inset 0 0 15px rgba(100, 50, 255, 0.04);
    width: 15%;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 991px) {
    .our-work-section .trusted-badge-work {
        width: 50%;
    }
}

@media (max-width: 575px) {
    .our-work-section .trusted-badge-work {
    }
    
}

.section-title-work {
    text-align: center;
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    /* margin-bottom: 20px; */
    margin: 20px 20px;
    /* letter-spacing: -1.5px; */

}

.section-title-work span {
    background: linear-gradient(100deg, #9bb2ff 5%, #bd9cff 55%, #77baff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    text-align: center;
    color: #e6cdd1;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 50px;
    background: linear-gradient(100deg, #9bb2ff 5%, #bd9cff 55%, #77baff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 20px auto 20px;
    font-size: clamp(38px, 3.4vw, 62px);
    line-height: 1.05;
    /* font-weight: 700; */
    letter-spacing: -1.5px;
}

@media (max-width: 575px) {
    .section-title-work {
        font-size: 27px;
    }

    .our-work-section p {
        font-size: 13px;
    }

}

.our-work-section .work-card {
    background: #0d121a;
    border-radius: 8px;
    padding: 17px 26px;
    min-height: 475px;
    display: flex;
    align-items: center;
    will-change: transform;
    transform-style: preserve-3d;
    transition: transform 0.2s ease;
}

.our-work-section .work-card:hover {
    transform: perspective(500px) rotateX(0.5deg) rotateY(-0.5deg);
}

.our-work-section .work-content {
    padding-right: 30px;
}

.work-logo {
    max-width: 130px;
    margin-bottom: 20px;
}

.work-content h2 {
    font-size: 20px;
}

.work-content p {
    color: #b9b9bd;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 500;
    margin-bottom: 30px;
    /* text-align: right; */
}

.work-content .tags {
    margin-bottom: 20px;
}

.work-content .tags tag {}
.work-content .project-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 6px 15px;
    height: 58px;
    border: 1.5px solid transparent;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(
        135deg,
        #2563eb,
        #7c3aed,
        #06b6d4,
        #7c3aed,
        #2563eb
    );
    background-size: 300% 300%;
    animation: btnGradient 4s ease infinite;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    justify-content: center;
}

@keyframes btnGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.project-btn i {
    display: flex;
    align-items: center;
    font-size: 20px;
    transition: all 0.35s ease;
}

.project-btn span {
    width: 42px;
    height: 42px;
    background: #b6ffac;
    border-radius: 50%;
    position: relative;
}

.project-btn span::after {
    content: "";
    width: 7px;
    height: 7px;
    background: #276c30;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.our-work-section .work-card .work-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.work-link {
    position: relative;
    display: block;
}

.our-work-section .work-card .work-image img {
    display: block;
    width: 100%;
}


/* Button */
.view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 24px;
    /* background: #fff; */
    background: linear-gradient(135deg, #087CFF, #0066FF);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}


/* Hover */
.work-image:hover .view-btn {
    opacity: 1;
    visibility: visible;
}

.work-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.work-image:hover::before {
    opacity: 1;
}

.view-btn {
    z-index: 2;
}


/* Custom arrows */
.custom-prev,
.custom-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.custom-prev {
    left: 25px;
}

.custom-next {
    right: 25px;
}

.custom-prev span,
.custom-next span {
    color: #ffffff;
    font-size: 30px;
    line-height: 25px;
    font-weight: 300;
}

/* Bootstrap default icon hide */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-banner .work-card .web-img{
        display: none;
    }
    .hero-banner .work-card .mobile-img {
    display: block;
    width: 100%;
}
    .work-content {
        margin-bottom: 30px;
        padding: 24px 14px;
    }
}
@media (max-width: 991px) {
    .work-card {
        /* padding: 40px 60px; */
    }

    .work-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .our-work-section .work-card .work-image img {
        /* height: 300px; */
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 36px;
    }

   .our-work-section .work-card {
        padding: 15px 10px;
    }

    .custom-prev {
        left: 5px;
    }

    .custom-next {
        right: 5px;
    }

    .our-work-section .work-card .work-image img {
        height: 220px;
        border-radius: 12px;
    }

    .work-content p {
        font-size: 15px;
        /* text-align: left; */
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        /* background: #89898957; */
        padding: 10px 10px;
        /* border: 1px solid #cccccc33; */
        border-radius: 50px;
        backdrop-filter: blur(20px);
    }
}

.technologies {
    width: 100%;
    /* max-width: 625px; */
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(10, 17, 29, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
}

.tech {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;
}

.tech i {
    display: block;
    font-size: 40px;
    line-height: 1;
    font-style: normal;
}

.tech small {
    color: #c5cad2;
    font-size: 14px;
    white-space: nowrap;
}


/* ICON COLORS */

.tech:nth-child(1) i {
    color: #00d8ff;
}

.tech:nth-child(2) i {
    color: #ffffff;
}

.tech:nth-child(3) i {
    color: #68a063;
}

.tech:nth-child(4) i {
    color: #ff2d20;
}

.tech:nth-child(5) i {
    color: #777bb4;
}

.tech:nth-child(6) i {
    color: #00a4c7;
}

.tech:nth-child(7) i {
    color: #e44d26;
}

.tech:nth-child(8) i {
    color: #1572b6;
}

.tech:nth-child(9) i {
    color: #7952b3;
}


/* MOBILE */

@media (max-width: 576px) {

    .technologies {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px 5px;
    }

    .tech i {
        font-size: 26px;
    }

    .tech small {
        font-size: 9px;
    }
}

/* ======================crousel section ======================= */
.clients-section {
    background: #000;
    padding: 40px 0 45px;
    overflow: hidden;
}

.clients-title {
    text-align: center;
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 55px;

}

.clients-title span {
    background: linear-gradient(100deg, #9bb2ff 5%, #bd9cff 55%, #77baff 100%);

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

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 70px;
}

.logo-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 100px;
}

/* ROW 1 - RIGHT TO LEFT */
.row-one .logo-track {
    animation: scrollLeft 30s linear infinite;
}

/* ROW 2 - LEFT TO RIGHT */
.row-two .logo-track {
    animation: scrollRight 30s linear infinite;
}

.logo-item {
    /* width: 180px; */
    width: auto;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.logo-item img {
    /* max-width: 160px;
      max-height: 65px; */
    width: auto;
    height: 100px;
    object-fit: contain;
    /* Your logos are white in the reference */
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

/* RIGHT TO LEFT */
@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* LEFT TO RIGHT */
@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* Pause when mouse is over */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* TABLET */
@media (max-width: 992px) {

    .clients-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .logo-track {
        gap: 60px;
    }

    .logo-item {
        width: 150px;
    }

    .logo-item img {
        max-width: 130px;
    }

    .logo-slider {
        margin-bottom: 50px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .clients-section {
        padding: 30px 0;
    }

    .clients-title {
        font-size: 27px;
        margin-bottom: 35px;
    }

    .logo-track {
        gap: 40px;
    }

    .logo-item {
        width: 120px;
        height: 65px;
    }

    .logo-item img {
        max-width: 105px;
        max-height: 50px;
    }

    .logo-slider {
        margin-bottom: 35px;
    }

    .row-one .logo-track,
    .row-two .logo-track {
        animation-duration: 22s;
    }
}

/* =========================================================
   MOBILE
   Below 768px
========================================================= */

@media (max-width: 767.98px) {

    .site-header .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    .navbar-brand img {
        width: 135px;
    }

    .hero {
        padding-top: 35px;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: 2.2px;
    }

    .hero h1 {
        font-size: 51px;
        letter-spacing: -3.2px;
        margin-top: 23px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.55;
    }

    .hero-actions {
        gap: 10px;
    }

    .btn-main,
    .btn-outline {
        padding: 13px 16px;
        border-radius: 14px;
        font-size: 13px;
    }


    /* Hero Visual */

    .hero-visual {
        height: 420px;
        margin-top: 25px;
    }

    .gradient-orb {
        width: 300px;
        height: 300px;
        top: 55px;
    }

    .laptop {
        width: 480px;
        top: 35px;
    }

    .laptop-screen {
        height: 265px;
        border-width: 3px;
        border-radius: 15px 15px 8px 8px;
    }

    .laptop-base {
        height: 25px;
    }

    .phone {
        width: 130px;
        height: 255px;
        right: 1%;
        border-width: 3px;
        border-radius: 22px;
    }

    .phone-screen {
        border-radius: 17px;
    }

    .projects-card {
        width: 155px;
        left: 0;
        bottom: 0;
        padding: 11px;
    }

    .projects-card small {
        font-size: 7px;
    }

    .projects-card strong {
        font-size: 20px;
    }

    .projects-card em {
        font-size: 7px;
    }

    .projects-card>i {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }


    /* Stats */

    .stats {
        grid-template-columns: repeat(2, 1fr);
        /* grid-template-columns: 1fr; */
        margin-top: 8px;
    }

    .stats>div {
        border-right: 0 !important;
        border-bottom: 1px solid var(--line) !important;
    }

    .stats>div:last-child {
        grid-column: auto;
        justify-content: flex-start;
        border-bottom: 0 !important;
    }


    /* Capabilities */

    .capabilities-section {
        padding: 55px 16px;
    }

    .capabilities-section .sectionhead {
        margin-bottom: 28px;
    }

    .capabilities-section .sectionhead h2 {
        font-size: clamp(34px, 10vw, 48px);
        line-height: 1;
    }

    .capabilities-section .sectionhead p {
        font-size: 14px;
        line-height: 1.6;
    }

    .cap-main {
        min-height: auto;
        padding: 20px;
        border-radius: 20px;
    }

    .cap-main::after {
        width: 220px;
        height: 220px;
        right: -100px;
        top: -100px;
    }

    .cap-main .cap-art {
        /* height: 220px; */
        margin-bottom: 20px;
        border-radius: 14px;
    }

    .cap-main h3 {
        font-size: clamp(34px, 9vw, 44px);
        margin: 13px 0;
    }

    .cap-main p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* Right Cards */

    .cap-side {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .cap-card {
        padding: 20px;
        min-height: auto;
        border-radius: 18px;
    }

    .cap-card .cap-art {
        /* height: 210px; */
        margin-bottom: 20px;
    }

    .cap-card h3 {
        font-size: 28px;
        margin: 10px 0;
    }

    .cap-card p {
        font-size: 13px;
        line-height: 1.6;
    }


    /* AI */

    .cap-ai-card {
        padding: 20px;
    }

    .cap-ai-card .cap-art {
        /* height: 220px; */
        margin-bottom: 20px;
    }

    .cap-ai-card h3 {
        font-size: 34px;
    }

    .ai-description {
        margin-top: 5px !important;
        font-size: 14px !important;
        line-height: 1.65 !important;
    }


    /* Footer */

    .cap-foot {
        align-items: flex-end;
        gap: 12px;
    }

    .ai-footer {
        margin-top: 22px;
    }

    .tag {
        font-size: 9px;
        padding: 7px 9px;
    }

    .arrow {
        font-size: 20px;
    }

}

/* =========================
   SECTION
========================= */
/* =========================================
   TRUSTED / AWARDS SECTION
========================================= */

.trusted-section {
    width: 100%;
    padding: 70px 0 40px;
    background: #030812;
    color: #fff;
    overflow: hidden;
}


/* =========================================
   HEADER
========================================= */

.trusted-header {
    margin-bottom: 42px;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 20px;
    border: 1px solid #5276a4;
    border-radius: 30px;
    background: rgba(10, 20, 35, 0.7);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
    box-shadow:
        0 0 15px rgba(53, 143, 255, 0.08),
        inset 0 0 15px rgba(100, 50, 255, 0.04);
}

.badge-star {
    font-size: 25px;
    line-height: 1;
    color: #4da9ff;
}


.trusted-header h2 {
    margin: 20px auto 20px;
    font-size: clamp(38px, 3.4vw, 62px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.trusted-header h2 span {
    color: #3d9cff;
}


.trusted-header p {
    margin: 0 auto;
    color: #d0d3da;
    font-size: 18px;
    line-height: 1.7;
    max-width: 850px;
}


/* =========================================
   MAIN CONTENT
========================================= */

.trusted-content {
    /* max-width: 1750px; */
    /* margin: 0 auto; */
}

.trusted-content .work-card {
    padding: 0;
}

/* =========================================
   CERTIFICATION GRID
========================================= */

.certification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    height: 100%;
}


/* =========================================
   CERTIFICATION CARD
========================================= */

.certification-card {
    min-height: 195px;
    padding: 25px 22px;
    /* display: flex; */
    align-items: center;
    gap: 20px;
    border-radius: 18px;
    background:
        linear-gradient(145deg,
            rgba(22, 27, 38, 0.96),
            rgba(8, 14, 24, 0.96));

    border: 1px solid rgba(91, 112, 170, 0.75);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}


.certification-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 100%,
            rgba(82, 54, 180, 0.08),
            transparent 45%);

    pointer-events: none;
}


.certification-card:hover {
    transform: translateY(-4px);
    border-color: #5198e9;
    box-shadow:
        0 10px 35px rgba(28, 102, 180, 0.15);
}

.certification-card img {
    width: 70px;
    margin-bottom: 15px;
}

/* =========================================
   LOGOS
========================================= */

.cert-logo {
    min-width: 95px;
    width: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 1;
}


/* Google */

.google-logo {
    font-family: Arial, sans-serif;
    font-size: 62px;
    color: #4285f4;
    text-shadow:
        16px 0 #ea4335,
        0 10px #34a853;
}


/* Meta */

.meta-logo {
    font-family: Arial, sans-serif;
    font-size: 70px;
    color: #1688f7;
    transform: scaleX(1.2);
}


/* AWS */

.aws-logo {
    font-family: Arial, sans-serif;
    font-size: 37px;
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #ff9900;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}


/* Sabre */

.sabre-logo {
    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 700;
    font-style: italic;
    color: #ef1717;
}


/* Amadeus */

.amadeus-logo {
    font-family: Arial, sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    color: #318ce5;
    font-weight: 500;
}


/* ISO Shield */

.iso-logo {
    min-width: 75px;
    width: 75px;
}

.shield {
    width: 57px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #8859ff;
    border-radius: 15px 15px 25px 25px;
    color: #5e9dff;
    font-size: 30px;
    font-weight: 700;
    position: relative;
}

.shield::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    border-bottom-color: #4b9cff;
}


/* =========================================
   CARD TEXT
========================================= */

.cert-info {
    position: relative;
    z-index: 1;
}

.cert-info h4 {
    margin: 0;

    color: #fff;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 500;
}

.cert-info small {
    display: block;

    color: #c7cbd3;
    font-size: 13px;
    line-height: 1.45;
}


.cert-line {
    width: 30px;
    height: 2px;
    margin: 13px 0 10px;
    background: #699aff;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 45px;
}

.select-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: 0.2s ease;
}

.select-wrapper.active .select-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* =========================================
   AWARD CARD
========================================= */

.award-card {
    height: 100%;
    min-height: 405px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(99, 112, 174, 0.8);
    background: #0a101b;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.25);

    display: flex;
    flex-direction: column;
}


/* =========================================
   AWARD IMAGE
========================================= */

.award-image {
    flex: 1;
    /* min-height: 360px; */
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    filter: grayscale(100%);
}


/* =========================================
   AWARD FOOTER
========================================= */

.award-bottom {
    min-height: 65px;

    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    background: #0b111d;

    border-top: 1px solid rgba(105, 125, 190, 0.5);
}


.award-caption {
    display: flex;
    align-items: center;
    gap: 13px;

    color: #d1d4db;

    font-size: 12px;
    white-space: nowrap;
}


.trophy-icon {
    /* color: #a067ff; */
    font-size: 20px;
}


.caption-divider {
    width: 1px;
    height: 28px;

    background: rgba(255, 255, 255, 0.25);

    margin-left: auto;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1400px) {

    .trusted-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .certification-card {
        padding: 20px 15px;
        gap: 12px;
    }

    .cert-logo {
        min-width: 75px;
        width: 75px;
    }

    .cert-info h4 {
        font-size: 14.5px;
    }

    .google-logo {
        font-size: 52px;
    }

    .meta-logo {
        font-size: 57px;
    }

    .aws-logo {
        font-size: 30px;
    }

    .sabre-logo {
        font-size: 28px;
    }
}


@media (max-width: 1199px) {

    .certification-grid {
        gap: 12px;
    }

    .certification-card {
        min-height: 175px;
    }

    .award-card {
        min-height: 360px;
    }

    .award-image {
        min-height: 300px;
    }

    .award-bottom {
        padding: 15px;
        gap: 10px;
    }

    .award-caption {
        font-size: 12px;
    }
}


@media (max-width: 991px) {

    .trusted-section {
        padding-top: 55px;
    }

    .trusted-header h2 {
        font-size: 42px;
    }

    .trusted-header p {
        font-size: 16px;
    }

    .certification-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .award-card {
        min-height: 450px;
    }

    .award-image {
        min-height: 390px;
    }
}


@media (max-width: 575px) {

    .trusted-section {
        padding: 45px 4px 30px;
    }

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

    .trusted-badge {
        padding: 8px 13px;
        font-size: 11px;
    }

    .badge-star {
        font-size: 19px;
    }

    .trusted-header h2 {
        margin-top: 18px;
        font-size: 31px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .trusted-header p {
        font-size: 14px;
        line-height: 1.5;
    }

    .certification-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .certification-card {
        min-height: 145px;
        padding: 12px;
    }

    .cert-logo {
        min-width: 85px;
        width: 85px;
    }

    .cert-info h4 {
        font-size: 12px;
    }

    .award-card {
        min-height: 330px;
    }

    .award-image {
        min-height: 270px;
    }

    .award-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 14px 16px;
    }

    .award-caption {
        white-space: normal;
        font-size: 12px;
    }

    .caption-divider {
        display: none;
    }
}

/* =========================================================
   SMALL MOBILE
   Below 480px
========================================================= */


@media (max-width: 479.98px) {

    .navbar-brand img {
        width: 120px;
    }
    .hero-actions {
        /* flex-direction: column; */
        flex-direction: row;
        /* align-items: stretch; */
        /* justify-content: center; */
        gap: 5px;
    }

    .btn-main
    {
        width: 49%;
        padding: 14px 0px;
        font-size: 11px;
        gap: 8px;
    }
    .btn-outline {
         width: 50%;
        padding: 14px 0px;
        font-size: 11px;
        gap: 8px;
    }

    .hero-visual {
        height: 350px;
    }

    .laptop {
        width: 390px;
        top: 38px;
    }

    .laptop-screen {
        height: 215px;
    }

    .phone {
        width: 110px;
        height: 220px;
    }

    .projects-card {
        width: 145px;
    }

    .capabilities-section {
        padding: 45px 12px;
    }

    .capabilities-section .sectionhead h2 {
        font-size: 27px;
        line-height: 36px;
        margin: 0px;
    }

    .capabilities-section .sectionhead p {
        font-size: 13px;
    }

    .cap-main {
        padding: 16px;
        border-radius: 17px;
    }

    .cap-main .cap-art {
        /* height: 190px; */
        border-radius: 12px;
    }

    .cap-main h3 {
        font-size: 32px;
    }

    .cap-card {
        padding: 16px;
        border-radius: 16px;
    }

    .cap-card .cap-art {
        /* height: 190px; */
        border-radius: 12px;
        width: 100%;
    }
    .project-btn {
    display: inline-flex;
    align-items: center;
    /* gap: 14px; */
    padding: 6px 8px;
     width:100%;
    font-size: 11px;
  
}

    .cap-card h3 {
        font-size: 25px;
    }

    .cap-ai-card {
        padding: 16px;
    }

    .cap-ai-card .cap-art {
        /* height: 190px; */
    }

    .cap-ai-card h3 {
        font-size: 27px;
    }

    .cap-foot {
        flex-direction: row;
        align-items: flex-end;
    }

    .tags {
        gap: 5px;
        margin-top: 11px;
    }

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

}

.process-section {
    padding: 90px 30px 40px;
    background: #000;
}

.process-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 55px;
}

.process-title {
    margin: 0;
    font-size: clamp(55px, 6.2vw, 70px);
    line-height: .98;
    /* letter-spacing: -5px; */
    font-weight: 800;
    color: #fff;
    /* background: linear-gradient(90deg, #f0b5a9, #d7b8d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.gradient-text {
    /* background: linear-gradient(90deg, #18afe5, #5279ef, #8059e9, #d15be5); */
    background: linear-gradient(100deg, #9bb2ff 5%, #bd9cff 55%, #77baff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-description {
    max-width: 700px;
    margin: 0;
    font-size: 28px;
    line-height: 1.65;
    color: #fbfbfb;
}

.process-box {
    position: relative;
    overflow: hidden;

    background: #a6a4a46b;
    border: 1px solid #787878;
    border-radius: 44px;
    padding: 45px 40px;
    backdrop-filter: blur(53px);

    box-shadow: 0px 8px 22px -4px #cccccc96;
}

/* Moving shadow */
.process-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: #ffffff;
    opacity: 0;
    filter: blur(70px);
    border-radius: 50%;

    top: -80px;
    left: -100px;

    transition: all 0.6s ease;
    pointer-events: none;
}

/* Hover par shadow move karegi */
.process-box:hover::before {
    opacity: 0.25;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
}

.process-row {
    display: flex;
    width: 100%;
}

.process-item {
    flex: 1;
    padding: 0 32px;
    border-right: 1px solid #d9dfe5;
}

.process-item:hover {}

.process-item:first-child {
    padding-left: 30px;
}

.process-item:last-child {
    border-right: 0;
}

.process-number {
    width: 61px;
    height: 61px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f4f7;
    color: #050a10;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 45px;
    transition: all .35s ease;
}

/* Gradient Hover */
.process-number:hover {
    background: linear-gradient(135deg, #18afe5, #5279ef, #8059e9, #d15be5);

    color: #fff;

    transform: translateY(-5px) scale(1.08);

    box-shadow: 0 12px 28px rgba(86, 105, 235, .28);
}

.process-item h3 {
    margin: 0 0 13px;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
     transition: color 0.3s ease, transform 0.3s ease;
}


.process-item:hover h3 {
    color: #428ad1;
    transform: translateX(5px);
}
.process-item p {
    margin: 0;
    max-width: 270px;
    font-size: 17px;
    line-height: 1.65;
    color: #ffffff;
    /* backdrop-filter: blur(42px); */
}
.process-item:hover p {
    color: #428ad1;
  
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .process-section {
        display: none;
        padding: 70px 20px 30px;
    }

    .process-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .process-title {
        font-size: clamp(50px, 8vw, 75px);
        letter-spacing: -3px;
    }

    .process-description {
        font-size: 19px;
    }

    .process-box {
        padding: 35px 25px;
        border-radius: 30px;
    }

    .process-row {
        flex-wrap: wrap;
    }

    .process-item {
        flex: 0 0 50%;
        padding: 25px;
        border-bottom: 1px solid #d9dfe5;
    }

    .process-item:nth-child(2n) {
        border-right: 0;
    }

    .process-item:nth-child(n+3) {
        border-bottom: 0;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 575px) {

    .process-section {
        padding: 50px 15px 25px;
        display: none;
    }

    .process-title {
        font-size: 35px;
        letter-spacing: 0px;
    }

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

    .process-box {
        padding: 15px;
        border-radius: 25px;
    }

    .process-row {
        display: block;
    }

    .process-item {
        width: 100%;
        padding: 30px 15px;
        border-right: 0;
        border-bottom: 1px solid #d9dfe5;
    }

    .process-item:last-child {
        border-bottom: 0;
    }

    .process-number {
        width: 55px;
        height: 55px;
        margin-bottom: 25px;
    }

    .process-item h3 {
        font-size: 25px;
    }

    .process-item p {
        max-width: 100%;
        font-size: 15px;
    }
}

/* =========================================
   TESTIMONIAL SECTION
========================================= */

.testimonial-section {
    width: 100%;
    padding: 45px 12px 32px;
    background: #000;
}

.testimonial-row {
    margin: 0;
}

/* =========================================
   IMAGE
========================================= */

.testimonial-image {
    width: 100%;
    /* height: 540px; */
    overflow: hidden;
    border-radius: 40px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}


/* Optional image hover */

.testimonial-image:hover img {
    transform: scale(1.03);
}

/* Carousel ko positioning context dena */
#ourWorkCarousel {
    position: relative;
}

/* Previous + Next buttons */
#ourWorkCarousel .custom-prev,
#ourWorkCarousel .custom-next {
    position: absolute;
    top: auto;
    bottom: -80px;
    right: 12px;
    width: 50px;
    height: 50px;
    z-index: 10;
    opacity: 1;
    border: 1px solid rgb(102 99 99);
    border-radius: 50%;
    background: rgb(0 0 0 / 80%);
}

/* Previous button */
#ourWorkCarousel .custom-prev {
    left: auto;
    right: 82px;
}

/* Next button */
#ourWorkCarousel .custom-next {
    left: auto;
    right: 20px;
}

/* Arrow */
#ourWorkCarousel .custom-prev span,
#ourWorkCarousel .custom-next span {
    font-size: 32px;
    line-height: 1;
}

/* =====================================================
   WHY US
===================================================== */

.whyus-section {
    padding-top: 50px;
    padding-bottom: 8px;
}

.whyus-section .stats-list-wrap {
    padding-top: 150px;
    position: relative;
    z-index: 10;
}

.whyus-section .stat-list {
    margin-bottom: 60px;
}

.stat-list .gradient-color {
    /* background-image: linear-gradient(to right, #003db8, #ff5a00 100% ); */
    background: linear-gradient(90deg, #4285d1 0%, #42b7cf 35%, #7474df 65%, #bf63d5 100%);

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;
    color: #fff;
}

.gradient-color {
    /* background-image: linear-gradient(to right, #003db8, #ff5a00 100% );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent; */
    color: #fff;
}

.whyus-section .stat-list>span {
    display: inline-block;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
}

.whyus-section .stat-list h6 {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 8px;
}

.whyus-section .stat-list p {
    color: #f1f1f1;
    letter-spacing: .1px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.why-choose-wrap {
    position: sticky;
    top: 100px;
}

.content-block {
    width: 100%;
    background: #000000b8;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    padding: 30px;
    color: #c8c8c8;
    border: 1px solid #000000b8;
}

.content-block__heading {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
}

.content-block p {
    color: #f3f3f3;
    letter-spacing: .1px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;

}

.why-choose-wrap>.content-block>p:first-child {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid #5276a4;
    padding: 7px 20px;
    width: fit-content;
    border-radius: 20px;
    background: #1d1d1d0d;
}

.why-choose-wrap>.content-block>p:first-child .badge-star {

    font-size: 15px;
}



/* =========================================
   CONTENT
========================================= */

.testimonial-content {
    padding: 5px 7% 5px 5%;
}


/* Quote */

.quote-mark {
    color: #ef765e;
    font-size: 65px;
    font-weight: 800;
    line-height: .7;

    margin-bottom: 75px;

    font-family: Arial, sans-serif;
}

/* Main Text */
.testimonial-content h2 {
    margin: 0;
    max-width: 1100px;
    color: #fff;
    font-size: clamp(42px, 4vw, 67px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -3.5px;
}

/* Author */

.testimonial-author {
    margin: 42px 0 0;
    color: #ccc;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

    .testimonial-section {
        padding: 45px 12px 32px;
    }

    .testimonial-image {
        /* height: 480px; */
    }

    .testimonial-content {
        padding-left: 4.5%;
        padding-right: 4%;
    }

    .testimonial-content h2 {
        font-size: 67px;
        max-width: 1100px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .testimonial-section {
        padding: 50px 20px;
    }

    .testimonial-image {
        height: 450px;
        border-radius: 30px;
    }

    .testimonial-content {
        padding: 20px 0 20px 30px;
    }

    .quote-mark {
        font-size: 55px;
        margin-bottom: 45px;
    }

    .testimonial-content h2 {
        font-size: 42px;
        letter-spacing: -2px;
        line-height: 1.1;
    }

    .testimonial-author {
        margin-top: 30px;
        font-size: 16px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .testimonial-section {
        padding: 40px 15px;
    }

    .testimonial-row {
        row-gap: 35px;
    }

    .testimonial-image {
        height: 400px;
        border-radius: 28px;
    }

    .testimonial-content {
        padding: 0 5px;
    }

    .quote-mark {
        font-size: 50px;
        margin-bottom: 35px;
    }

    .testimonial-content h2 {
        font-size: 34px;
        letter-spacing: -1.8px;
        line-height: 1.12;
    }

    .testimonial-author {
        margin-top: 30px;
        font-size: 15px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .testimonial-image {
        height: 350px;
        border-radius: 24px;
    }

    .testimonial-content h2 {
        font-size: 29px;
        letter-spacing: -1.3px;
    }

    .quote-mark {
        font-size: 45px;
        margin-bottom: 30px;
    }

}

/* ================================
   CONVERSATION SECTION
================================ */
.conversation-section {
    /* padding: 14px 0; */
    padding: 90px 30px 40px;
}

/* Main Dark Box */

.conversation-box {
    position: relative;
    overflow: hidden;
    background: #111923;
    min-height: 540px;
    border-radius: 48px;
    padding: 95px 95px;
    display: flex;
    align-items: center;
}

/* Subtle background glow */

.conversation-box::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 250px;
    right: -100px;
    top: 210px;
    background: radial-gradient(ellipse, rgba(89, 91, 153, 0.18) 0%, rgba(20, 26, 36, 0) 70%);
    pointer-events: none;
}

.conversation-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    left: 0;
    top: 40%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
}

/* Keep content above overlays */

.conversation-box .row {
    position: relative;
    z-index: 2;
}


/* ================================
   LEFT SIDE
================================ */

.eyebrow {
    display: inline-block;
    margin-bottom: 28px;
    color: #c9d7f0;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    border: 1px solid #5276a4;
    padding: 7px 20px;
    border-radius: 30px;
}

.eyebrow .badge-star {
    font-size: 15px;
}

.left-content h2 {
    margin: 0;
    color: #f4f4f3;
    font-size: clamp(58px, 7vw, 70px);
    line-height: 0.92;
    font-weight: 800;
    /* letter-spacing: -5px; */
}


/* Gradient Text */

.gradient-text {
    margin-top: 10px !important;
    background: linear-gradient(90deg, #4285d1 0%, #42b7cf 35%, #7474df 65%, #bf63d5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}


/* ================================
   RIGHT SIDE
================================ */

.right-content {
    max-width: 620px;
    padding-top: 40px;
}

.right-content p {
    margin-bottom: 52px;
    color: #d4c9bd;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.right-content .wts-btn-t {}
/* Button */
.right-btn{
    display: flex;
    gap: 7px;
}
.right-content .whatsappbtn{
     display: inline-flex;
     align-items: center;
     justify-content: left;
     gap: 8px;
     padding: 27px 28px;
     min-width: 243px;
     border-radius: 50px;
     color: #ffffff;
     text-decoration: none;
     font-size: 17px;
     font-weight: 700;
     transition: all 0.3s ease;
     background: linear-gradient(#1f7026, #0a552c) padding-box, linear-gradient(135deg, #2563eb, #7c3aed) border-box;
}
.right-content .whatsappbtn:hover{
       transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}
.right-content .conversation-btn{
    display: inline-flex;
    align-items: center;
    justify-content: left;
    gap: 8px;
    padding: 20px 28px;
    min-width: 258px;
    border-radius: 50px;
    background: #f1f0ee;
    color: #18202a;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.conversation-btn span {
    font-size: 22px;
    transition: transform 0.3s ease;
}


.conversation-btn:hover {
    background: #ffffff;
    color: #111923;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}


.conversation-btn:hover span {
    transform: translateX(5px);
}


/* ================================
   TABLET
================================ */

@media (max-width: 991px) {

    .conversation-box {
        min-height: auto;
        padding: 70px 55px;
        border-radius: 35px;
    }


    .right-content {
        padding-top: 0;
    }


    .right-content p {
        margin-bottom: 35px;
    }


    .desktop-break {
        display: none;
    }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 576px) {

    .conversation-section {
        padding: 8px 10px;
    }


    .conversation-box {
        padding: 28px 11px;
        border-radius: 28px;
    }


    .eyebrow {
        font-size: 11px;
        letter-spacing: 2.5px;
        margin-bottom: 22px;
    }


    .left-content h2 {
        font-size: 41px;
        letter-spacing: -3px;
        line-height: 0.95;
    }

    .gradient-text {
        margin-top: 8px !important;
    }


    .right-content {
        padding-top: 5px;
    }


    .right-content p {
        font-size: 17px;
        line-height: 1.55;
        margin-bottom: 30px;
    }

  

}

/* =========================================
   ENQUIRY MODAL
========================================= */

.enquiry-modal {
    position: relative;
    background: #1d232b;
    border: 1px solid #303944;
    border-radius: 28px;
    color: white;
    overflow: hidden;
}

.enquiry-modal .modal-body {
    padding: 10px 50px 10px;
}

/* Modal Width */

#enquiryModal .modal-dialog {
    max-width: 520px;
}

/* Heading */

.enquiry-heading {
    text-align: center;
    margin-bottom: 18px;
}

.enquiry-heading h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #f1b9af, #d5c4d9, #aeb8dd);

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

.enquiry-heading p {
    color: #c7c4c2;
    font-size: 13px;
    line-height: 1.3;
    margin: 0 auto;
    max-width: 380px;
}

/* Input Fields */

.enquiry-input {
    height: 30px;
    background: transparent !important;
    border: 1px solid #858d97 !important;
    border-radius: 11px !important;
    color: #ffffff !important;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: none;
}


.enquiry-input::placeholder {
    color: #a7abb1;
    opacity: 1;
}

.enquiry-input:focus {
    border-color: #c4cbd3 !important;
    background: rgba(255, 255, 255, 0.02) !important;
}

.enquiry-input option {
    color: #000;
}

.enquiry-input {
    height: 40px;
}

textarea.enquiry-input {
    height: 80px;
    resize: none;
    padding: 5px 10px;
}

/* Submit Button */

.submit-btn {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 50px;
    /* background: linear-gradient(90deg, #3cff00, #25db22); */
    background: linear-gradient(135deg, #087CFF, #0066FF);

    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}


.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(53, 255, 25, 0.25);
}

/* Close Button */

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    color: #aeb4bc;
    font-size: 28px;
    line-height: 1;
    z-index: 5;
    cursor: pointer;
}

.modal-close:hover {
    color: #ffffff;
}

/* Modal Backdrop */
.modal-backdrop.show {
    opacity: 0.8;
}

/* Mobile Responsive */

@media (max-width: 576px) {

    #enquiryModal .modal-dialog {
        margin: 15px;
    }

    .enquiry-modal .modal-body {
        padding: 20px 25px 20px;
    }

    .enquiry-heading h2 {
        font-size: 28px;
    }

    .enquiry-input {
        height: 55px;
    }
}

/* =========================================
   nst FOOTER
========================================= */

.nst-footer {
    width: 100%;
    background: #080a0e;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 45px 45px 22px;
}


/* =========================================
   FOOTER MENU
========================================= */

.nst-footer-menu {
    margin-bottom: 35px;
}

.nst-footer-col {
    /* padding-left: 22px; */
    /* padding-right: 22px; */
}

.nst-footer-col h4 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.3;
}

.nst-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nst-footer-col ul li {
    margin-bottom: 7px;
    padding-left: 14px;
    position: relative;
}

.nst-footer-col ul li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: -1px;
    color: #ffffff;
    font-size: 23px;
    line-height: 18px;
}

.nst-footer-col ul li a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    transition: all .25s ease !important;
}

.nst-footer-col ul li a:hover {
    color: #029aff !important;
    padding-left: 10px
}


/* =========================================
   CONTACT
========================================= */

.nst-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 7px;
}

.nst-contact-item .nst-icon {
    width: 21px;
    flex: 0 0 21px;

    color: #ffffff;
    font-size: 18px;
    line-height: 22px;
}

.nst-contact-item .nst-icon i {
    font-size: 14px;
}

.nst-contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
     transition: all .25s ease !important;
}
   



.nst-contact-item a:hover {
     color: #029aff !important;
    padding-left: 10px
}

.nst-contact-item p {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.55;
     transition: all .25s ease !important;
}
.nst-contact-item p:hover {
     color: #029aff !important;
    padding-left: 10px
}
.contact-hero-content {
    /* width: 400px; */
}

/* .contact-hero-content .eyebrow{} */
.contact-hero-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #3d82ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-hero-content .eyebrow::after {
    content: "";
    width: 27px;
    height: 1px;
    background: #7fa4ff;
    display: block;
}

.contact-hero-content h1 {
    font-size: 80px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: -2.8px;
}

.contact-hero-content span {
    font-style: italic;
    background: linear-gradient(100deg, #087cff 0%, #1685ff 45%, #9b7cff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;

}

.contact-hero-content .contact-hero-description {
    font-size: 16px;
}

/* =========================================
   SOCIAL MEDIA
========================================= */

.nst-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.nst-social strong {
    font-size: 16px;
    margin-right: 3px;
}

.nst-social a {
    /* width: 18px; */
    /* height: 18px; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #222222;
    background: #d7d7d700;
    border-radius: 3px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.nst-social a:hover {
    /* background: #65c529; */
    color: #bebebe;
}


/* =========================================
   DISCLAIMER
========================================= */

.nst-disclaimer {
    text-align: center;

    color: #ffffff;
    font-size: 13px;
    line-height: 1.6;

    margin: 10px auto 18px;
    max-width: 1000px;
}

.nst-disclaimer strong {
    font-weight: 700;
}


/* =========================================
   COPYRIGHT
========================================= */

.nst-copyright {
    text-align: center;

    color: #ffffff;
    font-size: 13px;
    line-height: 1.5;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .nst-footer {
        padding: 40px 0 22px;
    }

    .nst-footer-col {
        margin-bottom: 30px;
    }

    .nst-footer-col h4 {
        font-size: 20px;
    }

    .nst-footer-col ul li a,
    .nst-contact-item a,
    .nst-contact-item p {
        font-size: 14px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .nst-footer {
        padding: 35px 0 20px;
    }

    .nst-footer-menu {
        margin-bottom: 15px;
    }

    .nst-footer-col {
        padding-left: 13px;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .nst-footer-col h4 {
        font-size: 20px;
        margin-bottom: 13px;
    }

    .nst-footer-col ul li {
        margin-bottom: 8px;
    }

    .nst-footer-col ul li a {
        font-size: 14px;
    }

    .nst-contact-item a,
    .nst-contact-item p {
        font-size: 14px;
    }

    .nst-social {
        margin-top: 20px;
    }

    .nst-disclaimer {
        padding: 0 20px;
        font-size: 11px;
    }

    .nst-copyright {
        padding: 0 20px;
        font-size: 11px;
    }
}

/* contact-us page css================ */
/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    position: relative;
    min-height: 100vh;
    background: #151515;
    overflow: hidden;
    padding: 28px 0 30px;
}


/* =========================================
   CONTAINER
========================================= */

.contact-section .container {
    position: relative;
    z-index: 5;
    max-width: 700px;
}


/* =========================================
   HEADING
========================================= */

.contact-heading {
    margin-bottom: 39px;
}

.contact-heading h2 {
    margin: 0;
    font-size: 21px;
    line-height: 1.2;

    font-weight: 700;

    color: #f4f4f4;

    text-transform: uppercase;
}

.contact-heading h2 span {
    color: #00ae8d;
}


/* =========================================
   FORM + MAP
========================================= */

.contact-main {
    align-items: stretch;
}

/* =========================================
   CONTACT FORM
========================================= */

.contact-form-box {
    height: 340px;
    border: 1px solid #3b3b3b;
    padding: 10px 6px 18px;
    background: rgba(21, 21, 21, 0.96);
}

.contact-form-box h1 {
    text-align: center;

    font-size: 27px;

    font-weight: 700;

    margin-bottom: 10px;
}

.form-description {
    max-width: 350px;

    margin: 0 auto 28px;

    text-align: center;

    font-size: 10px;

    line-height: 1.4;

    color: #d7d7d7;
}

.contact-form-box .contact-input,
.enquiry-input,
.contact-message {
    background-color: transparent;
}

/* =========================================
   INPUTS
========================================= */

.input-group-custom {
    position: relative;

    margin-bottom: 17px;

    padding: 0 4px;
}

.input-group-custom label {
    display: block;

    margin-bottom: 7px;

    font-size: 9px;

    font-weight: 700;

    color: #696969;

    text-transform: uppercase;
}

.input-group-custom input,
.input-group-custom textarea {
    width: 100%;

    border: none;
    border-bottom: 1px solid #3d3d3d;

    outline: none;

    background: transparent;

    color: #fff;

    font-size: 12px;

    padding: 2px 0 7px;

    border-radius: 0;
}

.input-group-custom input:focus,
.input-group-custom textarea:focus {
    border-bottom-color: #00ae8d;
}

.input-group-custom textarea {
    resize: vertical;

    min-height: 55px;

    padding-top: 2px;
}

.full {
    width: 100%;
}

.message-box {
    margin-bottom: 20px;
}


/* =========================================
   SEND BUTTON
========================================= */

.send-btn {
    position: relative;

    min-width: 86px;

    height: 26px;

    padding: 0 16px;

    border: 1px solid #ffffff;

    background: #303030;

    color: #ffffff;

    font-size: 8px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.send-btn:hover {
    background: #00ae8d;

    border-color: #00ae8d;

    color: #ffffff;
}


/* =========================================
   MAP
========================================= */

/* .map-box {
    width: 100%;

    height: 340px;

    overflow: hidden;

    background: #222;
}

.map-box iframe {
    width: 100%;
    height: 100%;

    border: 0;

    display: block;
} */



/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 35px;

    margin-top: 91px;

    padding: 0 2px;
}


/* =========================================
   CONTACT ITEM
========================================= */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    flex: 1;
}


/* =========================================
   ICON
========================================= */

.contact-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d90000;
    color: #ffffff;

    font-size: 14px;
}


/* =========================================
   CONTENT
========================================= */

.contact-content h4 {
    margin: 0 0 6px;

    font-size: 12px;

    font-weight: 700;

    color: #ffffff;
}

.contact-content p {
    margin: 0;

    font-size: 9px;

    line-height: 1.5;

    color: #d2d2d2;
}


/* =========================================
   BACKGROUND WAVE
========================================= */

.wave-background {
    position: absolute;

    left: -80px;
    bottom: -20px;

    width: 650px;
    height: 200px;

    z-index: 1;

    transform: rotate(-2deg);

    pointer-events: none;
}

.wave-background span {
    position: absolute;

    left: 0;

    width: 100%;
    height: 100%;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    transform-origin: center;
}


/* Individual waves */

.wave-background span:nth-child(1) {
    top: 0;
    transform: rotate(4deg) scaleX(1.05);
}

.wave-background span:nth-child(2) {
    top: 7px;
    transform: rotate(3deg) scaleX(1.08);
}

.wave-background span:nth-child(3) {
    top: 14px;
    transform: rotate(2deg) scaleX(1.1);
}

.wave-background span:nth-child(4) {
    top: 21px;
    transform: rotate(1deg) scaleX(1.12);
}

.wave-background span:nth-child(5) {
    top: 28px;
    transform: rotate(0deg) scaleX(1.14);
}

.wave-background span:nth-child(6) {
    top: 35px;
    transform: rotate(-1deg) scaleX(1.16);
}

.wave-background span:nth-child(7) {
    top: 42px;
    transform: rotate(-2deg) scaleX(1.18);
}

.wave-background span:nth-child(8) {
    top: 49px;
    transform: rotate(-3deg) scaleX(1.20);
}

.wave-background span:nth-child(9) {
    top: 56px;
    transform: rotate(-4deg) scaleX(1.22);
}

.wave-background span:nth-child(10) {
    top: 63px;
    transform: rotate(-5deg) scaleX(1.24);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .contact-section {
        padding: 35px 20px 50px;
    }

    .contact-section .container {
        max-width: 720px;
    }

    .contact-details {
        margin-top: 60px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .contact-section {
        padding: 30px 15px 45px;
    }

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

    .contact-heading h2 {
        font-size: 18px;
    }

    .contact-form-box,
    .map-box {
        height: 350px;
    }

    .map-box {
        margin-top: 3px;
    }

    .contact-details {
        flex-direction: column;

        gap: 25px;

        margin-top: 50px;
    }

    .contact-item {
        width: 100%;
    }

    .wave-background {
        width: 550px;

        left: -170px;
        bottom: -10px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .contact-heading h2 {
        font-size: 16px;
    }

    .contact-form-box h1 {
        font-size: 25px;
    }

    .contact-form-box,
    .map-box {
        height: 330px;
    }

    .contact-details {
        gap: 22px;
    }
}

/* contact -page csss===== */

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    padding: 80px 60px;
    background: #000000;
    position:relative;
}
.contact-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 250px;
    right: -170px;
    top: -44px;
    background: radial-gradient(ellipse, rgba(89, 91, 153, 0.18) 43%, rgb(15 128 255 / 0%) 70%);
    pointer-events: none;
}
/* Contact Form Box */
.contact-form-box {
    /* height: 100%; */
    height: auto;
    padding: 45px;
    background: #000000;
    border-radius: 15px;
    border: 1px solid #44484d;
}

/* Heading */
.contact-heading {
    margin-bottom: 30px;
}

.contact-heading span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ececec;
}

.contact-heading h2 {
    margin: 0 0 12px;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.contact-heading p {
    margin: 0;
    max-width: 500px;
    font-size: 15px;
    line-height: 1.7;
    color: #ececec;
}


/* Form Inputs */
.contact-input {
    height: 60px;
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    color: #44484d;
    box-shadow: none !important;
}

.contact-input::placeholder,
.contact-message::placeholder {
    color: #999;
}

.contact-input:focus,
.contact-message:focus {
    border-color: #44484d;
    box-shadow: none !important;
}

.contact-form-box .enquiry-input {
    height: 60px;
    background: transparent !important;
    border: 1px solid #44484d !important;
    border-radius: 11px !important;
    color: #ffffff !important;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: none;
}

.contact-form-box .contact-input,
.enquiry-input,
.contact-message:hover {
    border: 1px solid #44484d;
    color: #fff;
}

.form-control {
    color: #fff;
}

.form-control:focus {
    background-color: transparent;
    color: #fff;
    border: 1px solid #44484d;
}

/* Message */
.contact-message {
    width: 100%;
    min-height: 140px;
    padding: 15px 16px;
    border: 1px solid #44484d;
    border-radius: 6px;
    resize: none;
    font-size: 15px;
}


/* Button */
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    border: 0;
    border-radius: 6px;
    /* background: #3a3a3a; */
    background: linear-gradient(135deg, #087CFF, #0066FF);

    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn span {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    background: #333;
}

.contact-btn:hover span {
    transform: translateX(5px);
}

.contact-form-box textarea.form-control {
    /* min-height: calc(1.5em + 6.75rem + calc(var(--bs-border-width) * 2)); */
}

/* Google Map */
.contact-map {
    width: 100%;
    height: 100%;
    /* min-height: 550px; */
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #e5e5e5;
    background: #eee;
    position: relative;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
}


/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1366px){
    .right-content .conversation-btn{
              min-width: 183px;
              padding: 1px 17px;
              font-size: 12px;
    }
    .conversation-btn span {
    font-size: 14px;
    transition: transform 0.3s ease;
}
    .right-content .whatsappbtn {
                min-width: 148px;
                padding: 15px 17px;
                font-size: 12px;
    }
    .project-btn {
       padding: 7px 10px;
        font-size: 13px;
 
}
    
}
}
@media (max-width: 991px) {

    .contact-section {
        padding: 60px 0;
    }

    .contact-form-box {
        padding: 35px;
    }

    .contact-heading h2 {
        font-size: 30px;
    }

    .contact-map {
        min-height: 450px;
    }
}


@media (max-width: 767px) {

    .contact-section {
        padding: 45px 0;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .contact-heading h2 {
        font-size: 26px;
    }

    .contact-heading p {
        font-size: 14px;
    }

    .contact-input {
        height: 52px;
    }

    .contact-map {
        min-height: 350px;
    }

    .contact-btn {
        width: 100%;
    }
}

.contact-info-section {
    padding: 80px 0;
}


/* ==============================
           MAIN SECTION
        ============================== */

.why-nibble {
    position: relative;
    overflow: hidden;
    min-height: 185px;
    padding: 22px 0 28px;
    background:
        radial-gradient(circle at 50% 0%, rgba(10, 35, 70, 0.18), transparent 45%),
        linear-gradient(180deg, #020711 0%, #030914 100%);

    border-top: 1px solid rgba(80, 130, 190, 0.18);
    border-bottom: 1px solid rgba(80, 130, 190, 0.18);
    color: #fff;
    margin: 40px 0;
}


/* ==============================
           DECORATIVE BLUE WAVES
        ============================== */

.wave {
    position: absolute;
    width: 390px;
    height: 260px;
    pointer-events: none;
    opacity: 0.55;
}

.wave::before,
.wave::after,
.wave span {
    content: "";
    position: absolute;

    inset: 0;

    border: 1px solid rgba(0, 113, 255, 0.35);

    border-radius: 52% 48% 58% 42%;

    transform: rotate(-13deg) translateX(-18px);

    filter:
        drop-shadow(0 0 4px rgba(0, 110, 255, 0.18));
}

.wave::after {
    transform:
        rotate(-17deg) translate(-28px, 8px) scale(0.95);

    opacity: 0.7;
}

.wave span {
    transform:
        rotate(-9deg) translate(-4px, 18px) scale(0.9);

    opacity: 0.6;
}

.wave-left {
    left: -235px;
    bottom: -145px;
}

.wave-right {
    right: -235px;
    top: -145px;
    transform: scaleX(-1);
}


/* ==============================
           TITLE
        ============================== */

.why-section-title {
    position: relative;
    z-index: 2;
    margin: 0 0 35px;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #f1f3f8;
    animation: titleReveal 0.8s ease forwards;
}

.why-section-title span {
    background: linear-gradient(100deg, #087cff 0%, #1685ff 45%, #9b7cff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* ==============================
           FEATURES
        ============================== */

.features {
    position: relative;
    z-index: 2;
}

.feature {
    position: relative;

    min-height: 70px;

    display: flex;
    align-items: center;

    padding: 0 24px;

    opacity: 0;

    transform: translateY(18px);

    animation:
        featureIn 0.7s cubic-bezier(.2, .8, .2, 1) forwards;
}

/* Staggered animation */

.feature:nth-child(1) {
    animation-delay: 0.10s;
}

.feature:nth-child(2) {
    animation-delay: 0.25s;
}

.feature:nth-child(3) {
    animation-delay: 0.40s;
}

.feature:nth-child(4) {
    animation-delay: 0.55s;
}


/* ==============================
           VERTICAL DIVIDERS
        ============================== */

.feature:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 2px;

    width: 1px;
    height: 68px;

    background:
        linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, 0.18) 15%,
            rgba(255, 255, 255, 0.18) 85%,
            transparent);
}


/* ==============================
           ICON
        ============================== */

.icon-wrap {
    width: 60px;
    height: 60px;

    min-width: 60px;

    margin-right: 18px;

    display: grid;
    place-items: center;

    position: relative;

    border-radius: 50%;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.icon-wrap::before {
    content: "";

    position: absolute;

    inset: -1px;

    border-radius: inherit;

    background:
        radial-gradient(circle at 35% 30%,
            rgba(255, 255, 255, 0.08),
            transparent 55%);
}

.icon-wrap i {
    position: relative;
    z-index: 1;

    font-size: 29px;

    line-height: 1;
}


/* ==============================
           ICON COLORS
        ============================== */

/* Blue */

.feature:nth-child(1) .icon-wrap {
    background: rgba(0, 102, 183, 0.27);
    color: #009cff;

    box-shadow:
        inset 0 0 18px rgba(0, 145, 255, 0.08);
}


/* Orange */

.feature:nth-child(2) .icon-wrap {
    background: rgba(132, 67, 0, 0.28);
    color: #ff8a00;

    box-shadow:
        inset 0 0 18px rgba(255, 130, 0, 0.08);
}


/* Green */

.feature:nth-child(3) .icon-wrap {
    background: rgba(74, 116, 0, 0.28);
    color: #8bd400;

    box-shadow:
        inset 0 0 18px rgba(140, 220, 0, 0.08);
}


/* Purple */

.feature:nth-child(4) .icon-wrap {
    background: rgba(92, 39, 156, 0.28);
    color: #8d45ff;

    box-shadow:
        inset 0 0 18px rgba(145, 60, 255, 0.08);
}


/* ==============================
           TEXT
        ============================== */

.feature-content {
    min-width: 0;
}

.feature-title {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 700;
    color: #f5f6f9;
}

.feature-desc {
    margin: 0;
    max-width: 190px;
    color: #aeb5c2;
    font-size: 14px;
    line-height: 1.75;
}


/* ==============================
           HOVER EFFECT
        ============================== */

.feature:hover .icon-wrap {
    transform:
        translateY(-4px) scale(1.08);
}

.feature:hover .feature-title {
    text-shadow:
        0 0 14px rgba(255, 255, 255, 0.15);
}


/* ==============================
           ANIMATIONS
        ============================== */

@keyframes featureIn {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

}


@keyframes titleReveal {

    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

}


/* ==============================
           TABLET
        ============================== */

@media (max-width: 991.98px) {

    .why-nibble {
        padding: 24px 0;
    }

    .feature {
        padding: 18px 15px;
    }

    .feature:not(:last-child)::after {
        display: none;
    }

}


/* ==============================
           MOBILE
        ============================== */

@media (max-width: 575.98px) {

    .why-nibble {
        padding: 25px 0;
    }

    .section-title {
        margin-bottom: 12px;

        font-size: 13px;
    }

    .feature {
        min-height: auto;

        padding: 14px 20px;
    }

    .icon-wrap {
        width: 54px;
        height: 54px;

        min-width: 54px;

        margin-right: 14px;
    }

    .feature-desc {
        max-width: none;

        line-height: 1.5;
    }

}


/* ==============================
           REDUCED MOTION
        ============================== */

@media (prefers-reduced-motion: reduce) {

    .feature,
    .section-title {
        animation: none;

        opacity: 1;

        transform: none;
    }

    .feature,
    .icon-wrap {
        transition: none;
    }

}

.contact-card {
    position: relative;
    bottom: 210px;
    background: #000000;
    margin: 0 28px;
    border-radius: 10px;
    padding: 13px;
    border: 1px solid #424141;
}

.contact-card .contact-item {
    padding: 10px 10px;

}

.contact-card .seprator-sm {
    border-right: 1px solid #565656;
    height: -webkit-fill-available;

}

.contact-card .contact-item .contact-icon {
    background: #7a7a7a24;
}

.contact-card .contact-item .contact-icon i {}

.contact-card .contact-item .contact-title {
    font-size: 14px;
}

.contact-card .contact-item .contact-text {
    font-size: 14px;
}

@media (min-width: 992px) and (max-width: 1199px) {

    .contact-card {
        bottom: 220px;
        margin: 0 22px;
        padding: 12px;
    }

}

@media (max-width: 1400px) {
    .contact-card {
        bottom: 130px;
        margin: 0 10px;
        padding: 8px;

    }

    .contact-card .contact-item {
        padding: 0px 5px;
    }

    .contact-card .contact-item .contact-text {
        font-size: 8px;
    }
}

/* =========================
   TABLET
========================= */
@media (min-width: 768px) and (max-width: 991px) {

    .contact-card {
        bottom: 100px;
        margin: 0 18px;
        padding: 12px;
    }

}


/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {

    .contact-card {
        position: relative;
        bottom: 30px;
        margin: 0 12px;
        padding: 10px;
        border-radius: 8px;
    }

}


/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {

    .contact-card {
        bottom: 365px;
        margin: 0px 8px;
        margin-bottom: 150px;
        padding: 8px;
        border-radius: 8px;
    }

    .contact-card .contact-item .contact-title {
        font-size: 18px;
    }

    .contact-card .contact-item .contact-text {
        font-size: 15px;
    }

}

/* =========================================
   FOUNDER TESTIMONIAL
========================================= */

.founder-testimonial-section {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

/* =========================================
   IMAGE
========================================= */

.founder-image-wrap {
    position: relative;
    width: 100%;
    /* max-width: 520px;
    height: 570px; */
    margin: 0 auto;
}

.founder-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 35px;
}

.founder-image-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.founder-image-wrap::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -150%;
    width: 70%;
    height: 300%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent);

    transform: rotate(25deg);
    animation: imageShine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes imageShine {
    0% {
        left: -150%;
    }

    45%,
    100% {
        left: 150%;
    }
}

/* =========================================
   FOUNDER BADGE
========================================= */

.founder-badge {
    position: absolute;
    left: -1px;
    bottom: 35px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 11px 18px;

    background: #fff;
    color: #000;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    border-radius: 0 30px 30px 0;
}

.founder-badge-line {
    width: 22px;
    height: 1px;
    background: #000;
}

/* =========================================
   CONTENT
========================================= */

.founder-testimonial-content {
    position: relative;
    padding: 20px 20px 20px 45px;
}

/* Small Label */

.testimonial-label {
    display: inline-block;
    margin-bottom: 35px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;

    color: #ff8064;
}

/* =========================================
   QUOTE
========================================= */

.quote-icon {
    position: absolute;
    top: 55px;
    left: 0;

    font-size: 75px;
    line-height: 1;
    font-weight: 700;

    color: #ff8064;
}

/* =========================================
   TESTIMONIAL TEXT
========================================= */

.testimonial-heading {
    max-width: 900px;
    margin: 0;
    font-size: clamp(27px, .5vw, 60px);
    /* font-size: clamp(30px, 2vw, 60px); */
    line-height: 1.3;
    /* font-weight: 400; */
    /* letter-spacing: -2.5px; */

    color: #fff;
}

/* =========================================
   DIVIDER
========================================= */

.testimonial-divider {
    width: 70px;
    height: 1px;

    margin: 45px 0 25px;

    background: rgba(255, 255, 255, 0.35);
}

/* =========================================
   FOUNDER INFO
========================================= */

.founder-info h5 {
    margin: 0 0 7px;

    font-size: 17px;
    font-weight: 600;
    color: #fff;
}

.founder-info p {
    margin: 0;

    font-size: 14px;
    color: #7eb4ff;
}
.whatsapp-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;

  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25D366;
  color: #fff;

  border-radius: 50%;
  text-decoration: none;

  font-size: 30px;

  z-index: 9999;

  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
  color: #fff;
  transform: scale(1.05);
}

@keyframes whatsappPulse {

  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }

}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .founder-testimonial-section {
        padding: 80px 0;
    }

    .founder-image-wrap {
        height: 480px;
    }

    .founder-testimonial-content {
        padding-left: 30px;
    }

    .testimonial-heading {
        font-size: clamp(32px, 5vw, 48px);
        letter-spacing: -1.8px;
    }

    .quote-icon {
        font-size: 65px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .founder-testimonial-section {
        padding: 60px 0;
    }

    .founder-image-wrap {
        height: 380px;
        max-width: 100%;
    }

    .founder-image {
        border-radius: 25px;
    }

    .founder-badge {
        bottom: 25px;
        font-size: 10px;
        padding: 9px 15px;
    }

    .founder-testimonial-content {
        padding: 10px 5px 0;
    }

    .testimonial-label {
        margin-bottom: 25px;
        font-size: 11px;
    }

    .quote-icon {
        position: static;

        font-size: 60px;
        line-height: 0.7;

        margin-bottom: 20px;
    }

    .testimonial-heading {
        font-size: 31px;
        line-height: 1.12;
        letter-spacing: -1.2px;
    }

    .testimonial-divider {
        margin: 30px 0 20px;
    }

    .founder-info h5 {
        font-size: 16px;
    }

    .founder-info p {
        font-size: 13px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .founder-image-wrap {
        height: 330px;
    }

    .testimonial-heading {
        font-size: 19px;
        line-height: 29px;
    }

    .quote-icon {
        font-size: 52px;
    }
}

/* =========================
           THANK YOU SECTION
        ========================== */

.thankyou-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px 20px;
    background: radial-gradient(circle at 10% 20%, rgb(76 100 175 / 12%), transparent 25%), radial-gradient(circle at 90% 30%, rgb(76 100 175 / 10%), transparent 25%), linear-gradient(180deg, #ffffff 0%, #ecf4ff 100%);
}

/* Background circles */

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.08);
    animation: floatCircle 7s ease-in-out infinite;
}

.circle-one {
    width: 180px;
    height: 180px;
    top: 10%;
    left: -70px;
}

.circle-two {
    width: 130px;
    height: 130px;
    top: 25%;
    right: -40px;
    animation-delay: 2s;
}

.circle-three {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

@keyframes floatCircle {

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

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

/* =========================
           CONFETTI
        ========================== */

.confetti {
    position: absolute;
    width: 9px;
    height: 16px;
    top: -30px;
    opacity: 0;
    animation: confettiFall 5s linear infinite;
}

.confetti:nth-child(1) {
    left: 8%;
    animation-delay: .2s;
}

.confetti:nth-child(2) {
    left: 17%;
    animation-delay: 1.2s;
}

.confetti:nth-child(3) {
    left: 28%;
    animation-delay: .6s;
}

.confetti:nth-child(4) {
    left: 40%;
    animation-delay: 1.8s;
}

.confetti:nth-child(5) {
    left: 52%;
    animation-delay: .4s;
}

.confetti:nth-child(6) {
    left: 64%;
    animation-delay: 1.5s;
}

.confetti:nth-child(7) {
    left: 76%;
    animation-delay: .9s;
}

.confetti:nth-child(8) {
    left: 88%;
    animation-delay: 2s;
}

.confetti:nth-child(9) {
    left: 94%;
    animation-delay: 1s;
}

@keyframes confettiFall {

    0% {
        transform: translateY(-30px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) rotate(720deg);
        opacity: 0;
    }
}

/* =========================
           CARD
        ========================== */

.thankyou-card {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 740px;
    padding: 60px 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(44, 100, 55, 0.15);
    backdrop-filter: blur(15px);
    animation: cardReveal 1s ease forwards;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(50px) scale(.95);
    }

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

/* =========================
           SUCCESS ICON
        ========================== */

.success-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-wrapper::before,
.success-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgb(3 110 255 / 30%);
    animation: ripple 2.2s ease-out infinite;
}

.success-wrapper::before {
    width: 120px;
    height: 120px;
}

.success-wrapper::after {
    width: 95px;
    height: 95px;
    animation-delay: .5s;
}

@keyframes ripple {

    0% {
        transform: scale(.7);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.success-icon {
    position: relative;
    z-index: 3;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #026bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 43px;
    box-shadow: 0 10px 25px rgb(3 112 255 / 45%), 0 0 0 10px rgba(76, 175, 80, .10);
    animation: iconPop .8s cubic-bezier(.17, .67, .38, 1.4) .5s both;
}

@keyframes iconPop {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon i {
    animation: checkAnimation .7s ease .9s both;
}

@keyframes checkAnimation {
    from {
        opacity: 0;
        transform: scale(.5) rotate(-30deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

/* =========================
           HEADING
        ========================== */

.thankyou-card h1 {
    margin: 0 0 12px;
    font-size: 54px;
    line-height: 1.1;
    font-weight: 800;
    color: #202124;
    letter-spacing: -1.5px;
}

.thankyou-card h1 span {
    color: #026bff;
}

.success-message {
    color: #026bff;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
}

.divider-heart {
    position: relative;
    width: 170px;
    height: 1px;
    background: #dceee0;
    margin: 0 auto 25px;
}

.divider-heart i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 10px;
    background: #fff;
    color: #4caf50;
    font-size: 14px;
}

.thankyou-text {
    max-width: 560px;
    margin: 0 auto 30px;
    color: #666;
    font-size: 17px;
    line-height: 1.7;
}

/* =========================
           BUTTON
        ========================== */

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 50px;
    background: #026bff;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgb(2 107 255 / 20%);
    transition: all .3s ease;
}

.home-btn:hover {
    color: #fff;
    background: #026bff;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgb(2 107 255 / 42%);
}

.home-btn i {
    font-size: 18px;
}

/* =========================
           COUNTDOWN
        ========================== */

.redirect-text {
    margin-top: 25px;
    color: #888;
    font-size: 14px;
}

.countdown {
    margin-top: 6px;
    font-size: 20px;
    font-weight: 700;
    color: #4caf50;
}

.progress-line {
    width: 150px;
    height: 4px;
    margin: 12px auto 0;
    background: #e4f1e6;
    border-radius: 10px;
    overflow: hidden;
}

.progress-line span {
    display: block;
    height: 100%;
    width: 100%;
    background: #4caf50;
    transform-origin: left;
    animation: progress 5s linear forwards;
}

@keyframes progress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}

/* =========================
           BOTTOM WAVES
        ========================== */

.wave {
    position: absolute;
    bottom: -90px;
    left: -5%;
    width: 110%;
    height: 180px;
    background: rgba(76, 175, 80, .10);
    border-radius: 50% 50% 0 0;
    transform: rotate(-3deg);
}

.wave-two {
    bottom: -125px;
    background: rgba(76, 175, 80, .07);
    transform: rotate(4deg);
}

/* =========================
           RESPONSIVE
        ========================== */

@media (max-width: 767px) {

    .thankyou-section {
        padding: 40px 15px;
    }

    .thankyou-card {
        padding: 45px 25px;
        border-radius: 22px;
    }

    .success-wrapper {
        width: 100px;
        height: 100px;
    }

    .success-wrapper::before {
        width: 100px;
        height: 100px;
    }

    .success-icon {
        width: 68px;
        height: 68px;
        font-size: 36px;
    }

    .thankyou-card h1 {
        font-size: 40px;
    }

    .success-message {
        font-size: 17px;
    }

    .thankyou-text {
        font-size: 15px;
    }

    .home-btn {
        padding: 13px 26px;
    }
    .capabilities-grid{
        grid-template-columns: repeat(1, 1fr);
    }
        .work-content {
        margin-bottom: 30px;
        padding: 8px 6px;
    }
}
@media (max-width: 567px) {
    
    .hero h1 {
               font-size: 32px;
        letter-spacing: -2.8px;
        line-height: 44px;
    }
    .whyus-section .stats-list-wrap {
    padding-top: 0;

}
    .whyus-section .stat-list {
        margin-bottom: 28px;
        border-bottom: 1px solid #ccc;
    }
.whyus-section .stat-list>span {
    font-size: 35px;

}
.content-block {
   padding: 30px 7px;
   border-radius: 0px;
}
.content-block__heading {
    font-size: 25px;
   }
   .right-content .whatsappbtn {padding: 20px 28px;min-width: 100%;font-size: 17px;margin-top: 13px;justify-content: center;}
    .right-content .conversation-btn{
        justify-content: center;
        width: 100%;
        padding: 15px 0px;
    }
    .contact-hero-content h1 {
    font-size: 40px;
  
}
 
}

@media (max-width: 480px) {
        .hero h1 {
        font-size: 30px;
        letter-spacing: 3px;
        line-height: 34px;
    }
        .hero-description {
        font-size: 14px;
        line-height: 1.55;
    }
}
@media (max-width: 400px) {

    .thankyou-card h1 {
        font-size: 34px;
    }

    .thankyou-card {
        padding: 40px 20px;
    }

    .cap-art img {
        height: none;
    }
}