/* =========================================================
   iTechVO
   MAIN WEBSITE STYLESHEET
   Premium Creative + Technology Agency
   ========================================================= */


/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */

:root {

    /* Brand Colors */
    --black: #050509;
    --black-soft: #080810;
    --navy: #0a0b16;

    --purple: #8b3dff;
    --purple-light: #a66cff;

    --blue: #4d7cff;
    --blue-light: #6f91ff;

    --white: #ffffff;
    --white-soft: #e9e9ef;
    --text: #b7b7c5;
    --text-muted: #777787;

    /* Borders */
    --border: rgba(255, 255, 255, 0.10);
    --border-light: rgba(255, 255, 255, 0.16);

    /* Glass */
    --glass: rgba(255, 255, 255, 0.035);

    /* Layout */
    --container-width: 1240px;

    /* Radius */
    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 28px;

    /* Transition */
    --transition-fast: 0.25s ease;
    --transition: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: 0.8s cubic-bezier(0.22, 1, 0.36, 1);

}



/* =========================================================
   02. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    background: var(--black);

    color: var(--white);

    font-family: "DM Sans", sans-serif;

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

}


body.menu-is-open {
    overflow: hidden;
}


img,
video {
    max-width: 100%;
}


img {
    display: block;
}


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


button {
    font: inherit;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}



/* =========================================================
   03. GLOBAL SELECTION
   ========================================================= */

::selection {

    background: rgba(139, 61, 255, 0.35);

    color: white;

}



/* =========================================================
   04. CUSTOM SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 7px;
}


::-webkit-scrollbar-track {
    background: #050509;
}


::-webkit-scrollbar-thumb {

    background: linear-gradient(
        180deg,
        var(--purple),
        var(--blue)
    );

    border-radius: 20px;

}



/* =========================================================
   05. MAIN CONTAINER
   ========================================================= */

.section-container {

    width: min(
        calc(100% - 80px),
        var(--container-width)
    );

    margin: 0 auto;

}



/* =========================================================
   06. CUSTOM CURSOR
   ========================================================= */

.cursor-dot {

    position: fixed;

    width: 6px;
    height: 6px;

    background: white;

    border-radius: 50%;

    pointer-events: none;

    z-index: 9999;

    transform: translate(-50%, -50%);

}


.cursor-outline {

    position: fixed;

    width: 32px;
    height: 32px;

    border: 1px solid
        rgba(139, 61, 255, 0.55);

    border-radius: 50%;

    pointer-events: none;

    z-index: 9998;

    transform: translate(-50%, -50%);

    transition:
        width 0.25s ease,
        height 0.25s ease,
        border-color 0.25s ease;

}




/* =========================================================
   07. NAVBAR
   ========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 24px 0;

    transition:
        background 0.4s ease,
        padding 0.4s ease,
        border-color 0.4s ease;

}


.navbar-scrolled {

    background:
        rgba(5, 5, 9, 0.78);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    padding: 15px 0;

}



/* =========================================================
   08. NAV CONTAINER
   ========================================================= */

.nav-container {

    width: min(
        calc(100% - 80px),
        1240px
    );

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}



/* =========================================================
   09. CLICKABLE LOGO
   ========================================================= */

/*
   Tumhara logo clickable hai.

   HTML:

   <a href="index.html" class="logo">
       <img src="assets/images/itechvo-logo.png">
   </a>

   Logo ka size yahin control hoga.
*/

.logo {

    display: flex;

    align-items: center;

    justify-content: flex-start;

    flex-shrink: 0;

    width: 170px;

}


.logo img {

    width: 165px;

    height: auto;

    max-height: 58px;

    object-fit: contain;

    object-position: left center;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;

}


/*
   Logo hover
*/

.logo:hover img,
/*
   Logo hover
*/

.logo.tap-active img {

    transform: scale(1.035);

    filter:
        drop-shadow(
            0 0 16px
            rgba(139, 61, 255, 0.22)
        );

}



/* =========================================================
   10. NAVIGATION MENU
   ========================================================= */

.nav-menu {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 42px;

    margin-left: auto;

}


.nav-link {

    position: relative;

    color: #a7a7b3;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    font-weight: 500;

    letter-spacing: 0.01em;

    padding: 8px 0;

    transition:
        color 0.3s ease;

}


.nav-link:hover,
.nav-link.tap-active {

    color: white;

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            var(--blue)
        );

    transition:
        width 0.35s ease;

}


.nav-link:hover::after,
.nav-link.active::after,
.nav-link.tap-active::after,
.nav-link.active::after {

    width: 100%;

}


.nav-link.active {

    color: white;

}



/* =========================================================
   11. NAV CTA
   ========================================================= */

.nav-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-width: 122px;

    padding: 13px 19px;

    border: 1px solid
        rgba(255, 255, 255, 0.14);

    border-radius: 100px;

    color: white;

    font-size: 13px;

    font-weight: 600;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;

}


.nav-button span {

    font-size: 15px;

    transition:
        transform 0.35s ease;

}


.nav-button:hover,
.nav-button.tap-active {

    transform: translateY(-2px);

    border-color:
        rgba(139, 61, 255, 0.7);

    background:
        rgba(139, 61, 255, 0.08);

    box-shadow:
        0 10px 35px
        rgba(139, 61, 255, 0.13);

}


.nav-button:hover span,
.nav-button.tap-active span {

    transform: translate(2px, -2px);

}



/* =========================================================
   12. MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {

    display: none;

    width: 44px;
    height: 44px;

    border: 1px solid
        rgba(255, 255, 255, 0.12);

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

    border-radius: 50%;

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.menu-toggle span {

    display: block;

    width: 17px;

    height: 1px;

    background: white;

    transition:
        transform 0.3s ease;

}


.menu-toggle.menu-open span:first-child {

    transform:
        translateY(3px)
        rotate(45deg);

}


.menu-toggle.menu-open span:last-child {

    transform:
        translateY(-3px)
        rotate(-45deg);

}


.menu-toggle.menu-open span:nth-child(2) {

    opacity: 0;

    transform: scaleX(0);

}



/* =========================================================
   13. HERO SECTION
   ========================================================= */

.hero-section {

    position: relative;

    min-height: 100vh;

    height: 100vh;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(76, 68, 130, 0.16),
            transparent 38%
        ),
        #050509;

}



/* =========================================================
   14. HERO VIDEOS
   ========================================================= */

.hero-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;

    z-index: 0;

    pointer-events: none;

}


.desktop-video {

    display: block;

}


.mobile-video {

    display: none;

}



/* =========================================================
   15. HERO VIDEO DARK OVERLAY
   ========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:

        linear-gradient(
            180deg,
            rgba(5, 5, 9, 0.76) 0%,
            rgba(5, 5, 9, 0.30) 35%,
            rgba(5, 5, 9, 0.50) 72%,
            rgba(5, 5, 9, 0.92) 100%
        );

}



/* =========================================================
   16. HERO CONTENT
   ========================================================= */

.hero-content {

    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 40px),
        900px
    );

    margin: 0 auto;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding-top: 55px;

}



/* =========================================================
   17. HERO EYEBROW
   ========================================================= */

.hero-eyebrow {

    margin-bottom: 22px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.30em;

    text-transform: uppercase;

}



/* =========================================================
   18. HERO TITLE
   ========================================================= */

/*
   IMPORTANT:

   Font intentionally controlled hai.

   Hum huge beginner-style heading nahi bana rahe.
*/

.hero-title {

    max-width: 850px;

    color: white;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(48px, 6.2vw, 82px);

    line-height: 0.98;

    font-weight: 700;

    letter-spacing: -0.055em;

    text-wrap: balance;

}


.hero-title span {

    display: inline;

    background:
        linear-gradient(
            100deg,
            #ffffff 5%,
            #b58cff 48%,
            #6e8cff 95%
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}



/* =========================================================
   19. HERO DESCRIPTION
   ========================================================= */

.hero-description {

    max-width: 650px;

    margin-top: 27px;

    color:
        rgba(235, 235, 243, 0.68);

    font-size: 16px;

    line-height: 1.75;

    font-weight: 400;

}



/* =========================================================
   20. HERO BUTTONS
   ========================================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-top: 34px;

}



/* =========================================================
   21. PRIMARY BUTTON
   ========================================================= */

.primary-button,
.secondary-button,
.outline-button,
.cta-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 100px;

    font-size: 13px;

    font-weight: 600;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;

}


.primary-button {

    background: white;

    color: #08080d;

    border: 1px solid white;

}


.primary-button span,
.secondary-button span,
.outline-button span,
.cta-button span {

    font-size: 15px;

    transition:
        transform 0.35s ease;

}


.primary-button:hover,
.primary-button.tap-active {

    transform: translateY(-3px);

    box-shadow:
        0 15px 40px
        rgba(255, 255, 255, 0.12);

}


.primary-button:hover span,
.secondary-button:hover span,
.outline-button:hover span,
.cta-button:hover span,
.primary-button.tap-active span,
.secondary-button.tap-active span,
.outline-button.tap-active span,
.cta-button.tap-active span {

    transform: translate(3px, -3px);

}



/* =========================================================
   22. SECONDARY BUTTON
   ========================================================= */

.secondary-button {

    color: white;

    border: 1px solid
        rgba(255, 255, 255, 0.15);

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

    backdrop-filter: blur(10px);

}


.secondary-button:hover,
.secondary-button.tap-active {

    transform: translateY(-3px);

    border-color:
        rgba(139, 61, 255, 0.6);

    background:
        rgba(139, 61, 255, 0.07);

}



/* =========================================================
   23. SCROLL INDICATOR
   ========================================================= */

.scroll-indicator {

    position: absolute;

    z-index: 2;

    left: 50%;

    bottom: 27px;

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

}


.scroll-indicator span {

    color:
        rgba(255, 255, 255, 0.40);

    font-size: 8px;

    letter-spacing: 0.28em;

    font-weight: 600;

}


.scroll-line {

    position: relative;

    width: 1px;

    height: 38px;

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

    overflow: hidden;

}


.scroll-line::after {

    content: "";

    position: absolute;

    top: -100%;

    left: 0;

    width: 1px;

    height: 100%;

    background:
        linear-gradient(
            180deg,
            transparent,
            var(--purple),
            var(--blue)
        );

    animation:
        scrollLine 2s ease-in-out infinite;

}


@keyframes scrollLine {

    0% {
        top: -100%;
    }

    50% {
        top: 100%;
    }

    100% {
        top: 100%;
    }

}



/* =========================================================
   24. GENERAL SECTION LABEL
   ========================================================= */

.section-label {

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.24em;

    text-transform: uppercase;

}



/* =========================================================
   25. INTRO SECTION
   ========================================================= */

.intro-section {

    position: relative;

    padding: 150px 0;

    background:

        radial-gradient(
            circle at 75% 50%,
            rgba(76, 70, 140, 0.10),
            transparent 35%
        ),

        var(--black-soft);

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

}


.intro-section .section-container {

    display: grid;

    grid-template-columns:
        180px 1fr;

    gap: 80px;

}


.intro-content {

    max-width: 800px;

}


.intro-content h2 {

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(42px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -0.045em;

    font-weight: 700;

}


.intro-content h2 span {

    color:
        #a77cff;

}


.intro-content p {

    max-width: 650px;

    margin-top: 28px;

    color: var(--text);

    font-size: 17px;

    line-height: 1.8;

}



/* =========================================================
   26. TEXT LINK
   ========================================================= */

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 30px;

    color: white;

    font-size: 13px;

    font-weight: 600;

}


.text-link span {

    transition:
        transform 0.3s ease;

}


.text-link:hover span,
.text-link.tap-active span {

    transform:
        translate(3px, -3px);

}


.text-link::after {

    content: "";

    display: block;

    width: 0;

    height: 1px;

    margin-left: -2px;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            var(--blue)
        );

    transition:
        width 0.35s ease;

}


.text-link:hover::after,
.text-link.tap-active::after {

    width: 100%;

}



/* =========================================================
   27. SERVICES PREVIEW
   ========================================================= */

.services-preview {

    position: relative;

    padding: 150px 0;

    background: #06060c;

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

}


.services-heading {

    display: grid;

    grid-template-columns:
        180px 1fr;

    gap: 80px;

    margin-bottom: 75px;

}


.services-heading h2 {

    max-width: 850px;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1.02;

    letter-spacing: -0.045em;

    font-weight: 700;

}


.services-heading h2 span {

    display: block;

    color:
        #8d78bd;

}


.services-heading p {

    max-width: 610px;

    margin-top: 25px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.75;

}



/* =========================================================
   28. SERVICE LIST
   ========================================================= */

.service-list {

    border-top:
        1px solid var(--border);

}



/*
   IMPORTANT:

   Homepage par services ko traditional boxes mein
   nahi rakha gaya.

   Isliye premium agency-style horizontal rows hain.
*/

.service-item {

    position: relative;

    min-height: 125px;

    display: grid;

    grid-template-columns:
        90px 1fr 70px;

    align-items: center;

    gap: 30px;

    padding: 25px 18px;

    border-bottom:
        1px solid var(--border);

    overflow: hidden;

    transition:
        padding 0.45s ease,
        background 0.45s ease;

}


.service-item::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 2px;
    height: 0;

    background:
        linear-gradient(
            180deg,
            var(--purple),
            var(--blue)
        );

    transition:
        height 0.45s ease;

}


.service-item::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(139, 61, 255, 0.08),
            transparent 38%
        );

    opacity: 0;

    transition:
        opacity 0.45s ease;

    pointer-events: none;

}


.service-item:hover,
.service-item.tap-active {

    padding-left: 30px;

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

}


.service-item:hover::before,
.service-item.tap-active::before {

    height: 100%;

}


.service-item:hover::after,
.service-item.tap-active::after {

    opacity: 1;

}



/* =========================================================
   29. SERVICE NUMBER
   ========================================================= */

.service-number {

    position: relative;

    z-index: 2;

    color:
        rgba(255, 255, 255, 0.30);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.08em;

    transition:
        color 0.35s ease;

}


.service-item:hover .service-number,
.service-item.tap-active .service-number {

    color:
        var(--purple-light);

}



/* =========================================================
   30. SERVICE INFO
   ========================================================= */

.service-info {

    position: relative;

    z-index: 2;

}


.service-info h3 {

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(23px, 2.5vw, 34px);

    line-height: 1.1;

    font-weight: 600;

    letter-spacing: -0.025em;

    transition:
        transform 0.45s ease,
        color 0.35s ease;

}


.service-info p {

    margin-top: 8px;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 13px;

    transition:
        color 0.35s ease;

}


.service-item:hover .service-info h3,
.service-item.tap-active .service-info h3 {

    transform: translateX(7px);

    color: white;

}


.service-item:hover .service-info p,
.service-item.tap-active .service-info p {

    color:
        rgba(255, 255, 255, 0.65);

}



/* =========================================================
   31. SERVICE ARROW
   ========================================================= */

.service-arrow {

    position: relative;

    z-index: 2;

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 17px;

    transition:
        transform 0.45s ease,
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;

}


.service-item:hover .service-arrow,
.service-item.tap-active .service-arrow {

    transform:
        translate(4px, -4px);

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--blue)
        );

    border-color: transparent;

}



/* =========================================================
   32. SERVICES FOOTER
   ========================================================= */

.services-footer {

    display: flex;

    justify-content: center;

    padding-top: 55px;

}


.outline-button {

    border:
        1px solid
        rgba(255, 255, 255, 0.14);

    color: white;

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

}


.outline-button:hover,
.outline-button.tap-active {

    transform: translateY(-3px);

    border-color:
        rgba(139, 61, 255, 0.65);

    background:
        rgba(139, 61, 255, 0.08);

}



/* =========================================================
   33. WHY SECTION
   ========================================================= */

.why-section {

    padding: 150px 0;

    background:
        linear-gradient(
            180deg,
            #06060c,
            #080811
        );

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

}


.why-grid {

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 100px;

    margin-top: 70px;

}


.why-heading h2 {

    max-width: 700px;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(42px, 5vw, 70px);

    line-height: 1.03;

    font-weight: 700;

    letter-spacing: -0.045em;

}


.why-heading h2 span {

    display: block;

    color:
        #8e78bd;

}


.why-content {

    padding-top: 8px;

}


.why-content p {

    color: var(--text);

    font-size: 16px;

    line-height: 1.85;

}


.why-content p + p {

    margin-top: 25px;

}



/* =========================================================
   34. FEATURE GRID
   ========================================================= */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;

    margin-top: 90px;

}


.feature-card {

    position: relative;

    min-height: 260px;

    padding: 30px;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

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

    overflow: hidden;

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        background 0.45s ease;

}


.feature-card::before {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(139, 61, 255, 0.22),
            transparent 70%
        );

    transition:
        transform 0.55s ease;

}


.feature-card:hover,
.feature-card.tap-active {

    transform: translateY(-7px);

    border-color:
        rgba(139, 61, 255, 0.30);

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

}


.feature-card:hover::before,
.feature-card.tap-active::before {

    transform: scale(1.35);

}


.feature-number {

    position: relative;

    z-index: 2;

    color:
        rgba(255, 255, 255, 0.30);

    font-size: 10px;

    letter-spacing: 0.15em;

}


.feature-card h3 {

    position: relative;

    z-index: 2;

    margin-top: 65px;

    font-family: "Manrope", sans-serif;

    font-size: 22px;

    font-weight: 600;

}


.feature-card p {

    position: relative;

    z-index: 2;

    margin-top: 12px;

    color:
        rgba(255, 255, 255, 0.47);

    font-size: 13px;

    line-height: 1.7;

}



/* =========================================================
   35. CTA SECTION
   ========================================================= */

.cta-section {

    position: relative;

    padding: 170px 20px;

    overflow: hidden;

    text-align: center;

    background:

        radial-gradient(
            circle at 50% 50%,
            rgba(115, 65, 220, 0.16),
            transparent 35%
        ),

        #050509;

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

}


.cta-section::before {

    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    border-radius: 50%;

    border:
        1px solid
        rgba(139, 61, 255, 0.08);

    box-shadow:
        0 0 100px
        rgba(77, 124, 255, 0.05);

    pointer-events: none;

}


.cta-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;

}


.cta-content h2 {

    margin-top: 24px;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(44px, 6vw, 80px);

    line-height: 1;

    font-weight: 700;

    letter-spacing: -0.055em;

}


.cta-content h2 span {

    display: block;

    background:
        linear-gradient(
            100deg,
            #ffffff,
            #a67cff,
            #668cff
        );

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

}


.cta-content > p:not(.section-label) {

    max-width: 560px;

    margin: 25px auto 0;

    color:
        rgba(255, 255, 255, 0.52);

    font-size: 15px;

    line-height: 1.75;

}


.cta-button {

    margin-top: 35px;

    background: white;

    color: #08080d;

    border: 1px solid white;

}


.cta-button:hover,
.cta-button.tap-active {

    transform: translateY(-3px);

    box-shadow:
        0 20px 50px
        rgba(139, 61, 255, 0.15);

}



/* =========================================================
   36. FOOTER
   ========================================================= */

.footer {

    padding:
        70px 0 25px;

    background: #040407;

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

}


.footer-container {

    width: min(
        calc(100% - 80px),
        1240px
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.3fr 0.7fr 1fr;

    gap: 60px;

    padding-bottom: 60px;

}


.footer-logo {

    display: inline-block;

    font-family: "Manrope", sans-serif;

    font-size: 25px;

    font-weight: 800;

    letter-spacing: -0.05em;

}


.footer-brand > p {

    margin-top: 10px;

    color:
        rgba(255, 255, 255, 0.38);

    font-size: 13px;

}


.footer-links {

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.footer-links a {

    width: fit-content;

    color:
        rgba(255, 255, 255, 0.52);

    font-size: 13px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}


.footer-links a:hover,
.footer-links a.tap-active {

    color: white;

    transform: translateX(4px);

}


.footer-contact {

    justify-self: end;

    text-align: right;

}


.footer-contact p {

    max-width: 250px;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 13px;

    line-height: 1.7;

}


.footer-contact a {

    display: inline-block;

    margin-top: 14px;

    color: white;

    font-size: 13px;

    font-weight: 600;

}



/* =========================================================
   37. FOOTER BOTTOM
   ========================================================= */

.footer-bottom {

    width: min(
        calc(100% - 80px),
        1240px
    );

    margin: 0 auto;

    padding-top: 20px;

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

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    color:
        rgba(255, 255, 255, 0.28);

    font-size: 10px;

    letter-spacing: 0.03em;

}



/* =========================================================
   38. SCROLL REVEAL
   ========================================================= */

/*
   JS baad mein .reveal-element aur
   .reveal-visible classes use karega.
*/

.reveal-element {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s
        cubic-bezier(0.22, 1, 0.36, 1);

}


.reveal-visible {

    opacity: 1;

    transform:
        translateY(0);

}



/* =========================================================
   39. KEYBOARD FOCUS
   ========================================================= */

.keyboard-focus {

    outline:
        1px solid
        rgba(139, 61, 255, 0.75);

    outline-offset: 5px;

}



/* =========================================================
   40. PAGE HIDDEN
   ========================================================= */

.page-hidden * {

    animation-play-state: paused !important;

}



/* =========================================================
   41. TABLET
   ========================================================= */

@media (max-width: 1000px) {


    .nav-container,
    .section-container,
    .footer-container,
    .footer-bottom {

        width:
            calc(100% - 50px);

    }


    .nav-menu {

        gap: 25px;

    }


    .nav-button {

        min-width: 110px;

    }


    .intro-section .section-container,
    .services-heading {

        grid-template-columns:
            140px 1fr;

        gap: 50px;

    }


    .why-grid {

        gap: 60px;

    }


    .feature-grid {

        gap: 12px;

    }

}



/* =========================================================
   42. MOBILE / SMALL TABLET
   ========================================================= */

@media (max-width: 800px) {


    /* -----------------------------------------------------
       NAVBAR
       ----------------------------------------------------- */

    .navbar {

        padding: 18px 0;

    }


    .navbar-scrolled {

        padding: 13px 0;

    }


    .nav-container {

        width:
            calc(100% - 36px);

        gap: 15px;

    }


    .logo {

        width: 135px;

    }


    .logo img {

        width: 130px;

        max-height: 48px;

    }


    .nav-menu {

        position: fixed;

        top: 0;
        right: 0;

        width: min(
            82vw,
            360px
        );

        height: 100vh;

        padding:
            110px 35px 40px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 10px;

        background:
            rgba(7, 7, 13, 0.97);

        backdrop-filter: blur(22px);

        -webkit-backdrop-filter: blur(22px);

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

        transform:
            translateX(105%);

        transition:
            transform 0.5s
            cubic-bezier(
                0.22,
                1,
                0.36,
                1
            );

    }


    .nav-menu.mobile-active {

        transform:
            translateX(0);

    }


    .nav-link {

        width: 100%;

        padding: 13px 0;

        font-size: 18px;

    }


    .nav-button {

        display: none;

    }


    .menu-toggle {

        position: relative;

        z-index: 1100;

        display: flex;

        margin-left: auto;

    }



    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero-section {

        min-height: 100svh;

        height: 100svh;

    }


    /*
       Desktop video hidden.
       Mobile video visible.
    */

    .desktop-video {

        display: none;

    }


    .mobile-video {

        display: block;

        object-position: center center;

    }


    .hero-overlay {

        background:

            linear-gradient(
                180deg,
                rgba(5, 5, 9, 0.76),
                rgba(5, 5, 9, 0.35) 35%,
                rgba(5, 5, 9, 0.60) 70%,
                rgba(5, 5, 9, 0.94)
            );

    }


    .hero-content {

        width:
            calc(100% - 35px);

        padding-top: 45px;

    }


    .hero-eyebrow {

        margin-bottom: 17px;

        font-size: 8px;

        letter-spacing: 0.22em;

    }


    .hero-title {

        max-width: 620px;

        font-size:
            clamp(43px, 12vw, 65px);

        line-height: 1;

        letter-spacing: -0.055em;

    }


    .hero-title span {

        display: block;

    }


    .hero-description {

        max-width: 450px;

        margin-top: 22px;

        font-size: 14px;

        line-height: 1.65;

    }


    .hero-buttons {

        flex-direction: column;

        width: 100%;

        gap: 10px;

        margin-top: 27px;

    }


    .primary-button,
    .secondary-button {

        width: min(
            100%,
            300px
        );

        min-height: 49px;

    }


    .scroll-indicator {

        bottom: 18px;

    }



    /* -----------------------------------------------------
       GENERAL SECTIONS
       ----------------------------------------------------- */

    .section-container {

        width:
            calc(100% - 36px);

    }


    .intro-section,
    .services-preview,
    .why-section {

        padding: 100px 0;

    }


    .intro-section .section-container,
    .services-heading {

        display: block;

    }


    .intro-section .section-label,
    .services-heading .section-label {

        margin-bottom: 38px;

    }


    .intro-content h2,
    .services-heading h2,
    .why-heading h2 {

        font-size:
            clamp(38px, 10vw, 56px);

    }



    /* -----------------------------------------------------
       SERVICES
       ----------------------------------------------------- */

    .services-heading {

        margin-bottom: 50px;

    }


    .services-heading p {

        font-size: 14px;

        line-height: 1.7;

    }


    .service-item {

        min-height: 110px;

        grid-template-columns:
            45px 1fr 45px;

        gap: 15px;

        padding: 22px 5px;

    }


    .service-item:hover,
.service-item.tap-active {

        padding-left: 12px;

    }


    .service-info h3 {

        font-size: 21px;

    }


    .service-info p {

        max-width: 280px;

        font-size: 12px;

    }


    .service-arrow {

        width: 38px;
        height: 38px;

        font-size: 14px;

    }



    /* -----------------------------------------------------
       WHY
       ----------------------------------------------------- */

    .why-grid {

        display: block;

        margin-top: 50px;

    }


    .why-content {

        margin-top: 35px;

    }


    .why-content p {

        font-size: 14px;

    }


    .feature-grid {

        grid-template-columns: 1fr;

        margin-top: 55px;

    }


    .feature-card {

        min-height: 220px;

    }


    .feature-card h3 {

        margin-top: 45px;

    }



    /* -----------------------------------------------------
       CTA
       ----------------------------------------------------- */

    .cta-section {

        padding: 120px 18px;

    }


    .cta-content h2 {

        font-size:
            clamp(42px, 11vw, 65px);

    }


    .cta-content > p:not(.section-label) {

        font-size: 14px;

    }



    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .footer {

        padding-top: 55px;

    }


    .footer-container {

        width:
            calc(100% - 36px);

        display: grid;

        grid-template-columns: 1fr;

        gap: 40px;

        padding-bottom: 45px;

    }


    .footer-contact {

        justify-self: start;

        text-align: left;

    }


    .footer-bottom {

        width:
            calc(100% - 36px);

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

    }

}



/* =========================================================
   43. VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {


    .logo {

        width: 115px;

    }


    .logo img {

        width: 112px;

        max-height: 42px;

    }


    .hero-content {

        padding-top: 35px;

    }


    .hero-title {

        font-size:
            clamp(39px, 12.5vw, 55px);

    }


    .hero-description {

        font-size: 13px;

    }


    .service-item {

        grid-template-columns:
            32px 1fr 38px;

        gap: 10px;

    }


    .service-number {

        font-size: 9px;

    }


    .service-info h3 {

        font-size: 18px;

    }


    .service-info p {

        font-size: 11px;

    }


    .service-arrow {

        width: 34px;
        height: 34px;

    }


    .intro-content h2,
    .services-heading h2,
    .why-heading h2 {

        font-size: 39px;

    }


    .cta-content h2 {

        font-size: 42px;

    }

}



/* =========================================================
   44. REDUCED MOTION ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }


    *,
    *::before,
    *::after {

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;

    }

}



/* =========================================================
   45. END OF iTechVO CSS
   ========================================================= */

   /* =========================================================
   iTechVO — ABOUT PAGE CSS
   ========================================================= */


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

.about-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 7% 100px;
    overflow: hidden;
    text-align: center;
}


/* Subtle background glow */

.about-hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(
        circle,
        rgba(143, 70, 255, 0.14),
        transparent 68%
    );
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    filter: blur(20px);
}


/* Secondary glow */

.about-hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(70, 120, 255, 0.08),
        transparent 70%
    );
    bottom: -150px;
    right: -100px;
    pointer-events: none;
}


.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 0 auto;
}


/* =========================================================
   SMALL EYEBROW
   ========================================================= */

.section-eyebrow {
    display: inline-block;
    margin-bottom: 24px;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: #a98cff;
}


/* =========================================================
   ABOUT MAIN HEADING
   ========================================================= */

.about-hero h1 {
    margin: 0 auto;

    max-width: 950px;

    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.98;
    font-weight: 600;
    letter-spacing: -0.055em;

    color: #f5f3ff;
}


.about-hero h1 span {
    display: block;

    background: linear-gradient(
        100deg,
        #a84cff,
        #6c7cff
    );

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


/* =========================================================
   ABOUT INTRO
   ========================================================= */

.about-intro {
    max-width: 720px;
    margin: 38px auto 0;

    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;

    color: rgba(235, 232, 245, 0.68);
}


/* =========================================================
   ABOUT DESCRIPTION SECTION
   ========================================================= */

.about-description {
    position: relative;

    padding: 130px 7%;

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

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(112, 60, 255, 0.06),
            transparent 35%
        );
}


.about-description-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 90px;
}


/* =========================================================
   ABOUT LABEL
   ========================================================= */

.about-label {
    position: relative;
}


.about-label span {
    position: sticky;
    top: 140px;

    display: inline-block;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #8d83a7;
}


.about-label span::before {
    content: "";
    display: inline-block;

    width: 28px;
    height: 1px;

    margin-right: 12px;
    margin-bottom: 3px;

    background: linear-gradient(
        90deg,
        #a84cff,
        #5f7cff
    );
}


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

.about-text {
    max-width: 850px;
}


.about-text p {
    margin: 0 0 32px;

    font-family: "Manrope", sans-serif;
    font-size: 19px;
    line-height: 1.9;
    font-weight: 400;

    color: rgba(239, 237, 247, 0.72);
}


.about-text p:first-child {
    font-family: "Space Grotesk", sans-serif;
    font-size: 29px;
    line-height: 1.5;
    font-weight: 500;

    color: #f2effa;
}


.about-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   OUR APPROACH
   ========================================================= */

.about-approach {
    position: relative;

    padding: 150px 7%;
    overflow: hidden;
}


.about-approach::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -220px;
    top: 20%;

    background: radial-gradient(
        circle,
        rgba(142, 65, 255, 0.10),
        transparent 70%
    );

    filter: blur(20px);
    pointer-events: none;
}


.approach-container {
    position: relative;
    z-index: 2;

    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}


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

.approach-heading h2 {
    margin: 0;

    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(45px, 5vw, 70px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.045em;

    color: #f5f2ff;
}


.approach-heading h2 span {
    display: block;

    background: linear-gradient(
        100deg,
        #a84cff,
        #667cff
    );

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

    color: transparent;
}


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

.approach-content {
    position: relative;

    padding-left: 40px;

    border-left: 1px solid rgba(168, 76, 255, 0.35);
}


.approach-content::before {
    content: "";

    position: absolute;

    left: -3px;
    top: 0;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #a84cff;

    box-shadow:
        0 0 15px rgba(168, 76, 255, 0.8);
}


.approach-content p {
    margin: 0 0 28px;

    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 1.85;

    color: rgba(235, 232, 245, 0.66);
}


.approach-content p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   ABOUT CTA
   ========================================================= */

.about-cta {
    position: relative;

    padding: 160px 7%;

    text-align: center;

    overflow: hidden;

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


.about-cta::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 400px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        ellipse,
        rgba(122, 61, 255, 0.14),
        transparent 68%
    );

    filter: blur(25px);

    pointer-events: none;
}


.about-cta-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: 0 auto;
}


.about-cta h2 {
    margin: 0;

    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(45px, 6vw, 76px);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.05em;

    color: #f4f1fb;
}


.about-cta h2 span {
    display: block;

    background: linear-gradient(
        100deg,
        #a84cff,
        #647bff
    );

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

    color: transparent;
}


.about-cta p {
    max-width: 600px;

    margin: 30px auto 40px;

    font-family: "Manrope", sans-serif;
    font-size: 17px;
    line-height: 1.8;

    color: rgba(235, 232, 245, 0.62);
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 16px 25px;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;

    background: #f5f3f8;

    color: #09090d;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.primary-btn span {
    font-size: 16px;

    transition:
        transform 0.3s ease;
}


.primary-btn:hover,
.primary-btn.tap-active {
    transform: translateY(-4px);

    box-shadow:
        0 15px 40px rgba(116, 72, 255, 0.22);
}


.primary-btn:hover span,
.primary-btn.tap-active span {
    transform: translate(3px, -3px);
}


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

.footer {
    position: relative;

    padding: 70px 7% 25px;

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


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}


.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}


.footer-logo img {
    width: 145px;
    height: auto;
    display: block;
}


.footer-brand p {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: 14px;

    color: rgba(235, 232, 245, 0.45);
}


.footer-links {
    display: flex;
    gap: 30px;

    margin-top: 35px;
}


.footer-links a {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;

    color: rgba(235, 232, 245, 0.55);

    text-decoration: none;

    transition:
        color 0.3s ease;
}


.footer-links a:hover,
.footer-links a.tap-active {
    color: #a84cff;
}


.footer-bottom {
    margin-top: 55px;
    padding-top: 20px;

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


.footer-bottom p {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: 12px;

    color: rgba(235, 232, 245, 0.35);
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.about-hero-content,
.about-description-container,
.approach-container,
.about-cta-content {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}


.about-hero-content.visible,
.about-description-container.visible,
.approach-container.visible,
.about-cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}


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

@media (max-width: 900px) {

    .about-hero {
        min-height: 75vh;
        padding: 160px 6% 90px;
    }


    .about-description {
        padding: 100px 6%;
    }


    .about-description-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .about-label span {
        position: static;
    }


    .approach-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .about-approach {
        padding: 110px 6%;
    }


    .about-cta {
        padding: 120px 6%;
    }

}


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

@media (max-width: 600px) {

    .about-hero {
        min-height: 75vh;

        padding:
            140px
            22px
            80px;
    }


    .about-hero h1 {
        font-size: clamp(43px, 13vw, 62px);
        line-height: 1.02;
        letter-spacing: -0.045em;
    }


    .about-intro {
        margin-top: 28px;

        font-size: 15px;
        line-height: 1.75;
    }


    .about-description {
        padding: 80px 22px;
    }


    .about-text p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
    }


    .about-text p:first-child {
        font-size: 22px;
        line-height: 1.55;
    }


    .about-approach {
        padding: 90px 22px;
    }


    .approach-heading h2 {
        font-size: 46px;
    }


    .approach-content {
        padding-left: 25px;
    }


    .approach-content p {
        font-size: 15px;
        line-height: 1.8;
    }


    .about-cta {
        padding: 100px 22px;
    }


    .about-cta h2 {
        font-size: 46px;
        line-height: 1.03;
    }


    .about-cta p {
        font-size: 15px;
    }


    .footer {
        padding:
            60px
            22px
            25px;
    }


    .footer-links {
        flex-wrap: wrap;
        gap: 18px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-hero-content,
    .about-description-container,
    .approach-container,
    .about-cta-content,
    .primary-btn {
        transition: none;
    }

}
/* =========================================================
   iTechVO — SERVICES PAGE CSS
   ========================================================= */


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

.services-hero {
    position: relative;
    min-height: 78vh;

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

    padding: 170px 7% 100px;

    text-align: center;
    overflow: hidden;
}


/* Main purple glow */

.services-hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -250px;
    left: 50%;

    transform: translateX(-50%);

    background: radial-gradient(
        circle,
        rgba(143, 70, 255, 0.15),
        transparent 68%
    );

    filter: blur(20px);

    pointer-events: none;
}


/* Blue secondary glow */

.services-hero::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    right: -180px;
    bottom: -220px;

    background: radial-gradient(
        circle,
        rgba(72, 106, 255, 0.09),
        transparent 70%
    );

    pointer-events: none;
}


.services-hero-content {
    position: relative;

    z-index: 2;

    max-width: 1000px;
    margin: 0 auto;

    opacity: 0;
    transform: translateY(30px);

    animation:
        servicesHeroReveal 1s ease forwards;
}


@keyframes servicesHeroReveal {

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

}


/* =========================================================
   SERVICES HERO HEADING
   ========================================================= */

.services-hero h1 {
    margin: 0 auto;

    max-width: 950px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        52px,
        7vw,
        92px
    );

    line-height: 0.98;

    font-weight: 600;

    letter-spacing: -0.055em;

    color: #f5f3fa;
}


.services-hero h1 span {
    display: block;

    background: linear-gradient(
        105deg,
        #aa4dff,
        #657dff
    );

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

    color: transparent;
}


.services-hero p {
    max-width: 700px;

    margin: 35px auto 0;

    font-family: "Manrope", sans-serif;

    font-size: 17px;

    line-height: 1.8;

    color: rgba(
        235,
        232,
        245,
        0.64
    );
}


/* =========================================================
   SERVICES INTRO
   ========================================================= */

.services-intro {
    position: relative;

    padding: 120px 7%;

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

    border-bottom:
        1px solid rgba(
            255,
            255,
            255,
            0.06
        );
}


.services-intro-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        220px 1fr;

    gap: 90px;
}


.services-intro-label span {
    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.2em;

    color: #8e86a5;
}


.services-intro-label span::before {
    content: "";

    display: inline-block;

    width: 28px;
    height: 1px;

    margin-right: 12px;
    margin-bottom: 3px;

    background:
        linear-gradient(
            90deg,
            #a84cff,
            #667cff
        );
}


.services-intro-text {
    max-width: 850px;
}


.services-intro-text h2 {
    margin: 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            38px,
            5vw,
            65px
        );

    line-height: 1.05;

    letter-spacing: -0.045em;

    font-weight: 600;

    color: #f4f1fa;
}


.services-intro-text h2 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            #a84cff,
            #667cff
        );

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

    color: transparent;
}


.services-intro-text p {
    max-width: 720px;

    margin: 32px 0 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 17px;

    line-height: 1.85;

    color:
        rgba(
            235,
            232,
            245,
            0.62
        );
}


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

.services-section {
    position: relative;

    padding: 130px 7%;

    overflow: hidden;
}


/* Background glow */

.services-section::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    left: -300px;
    top: 30%;

    background:
        radial-gradient(
            circle,
            rgba(
                137,
                62,
                255,
                0.08
            ),
            transparent 70%
        );

    pointer-events: none;
}


.services-container {
    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 22px;
}


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

.service-card {
    position: relative;

    min-height: 520px;

    padding: 42px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    border:
        1px solid rgba(
            255,
            255,
            255,
            0.09
        );

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                0.055
            ),
            rgba(
                255,
                255,
                255,
                0.018
            )
        );

    backdrop-filter: blur(12px);

    transition:
        transform 0.5s
        cubic-bezier(
            0.2,
            0.8,
            0.2,
            1
        ),

        border-color 0.4s ease,

        box-shadow 0.5s ease,

        background 0.5s ease;
}


/* Moving light */

.service-card::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -140px;
    right: -100px;

    background:
        radial-gradient(
            circle,
            rgba(
                158,
                72,
                255,
                0.18
            ),
            transparent 70%
        );

    opacity: 0;

    transition:
        opacity 0.5s ease,
        transform 0.7s ease;

    pointer-events: none;
}


/* Bottom glow */

.service-card::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 150px;

    bottom: -120px;
    left: 30%;

    background:
        radial-gradient(
            ellipse,
            rgba(
                83,
                110,
                255,
                0.13
            ),
            transparent 70%
        );

    opacity: 0;

    transition:
        opacity 0.5s ease;

    pointer-events: none;
}


.service-card:hover,
.service-card.tap-active {

    transform:
        translateY(-10px);

    border-color:
        rgba(
            157,
            91,
            255,
            0.35
        );

    background:
        linear-gradient(
            145deg,
            rgba(
                255,
                255,
                255,
                0.075
            ),
            rgba(
                121,
                68,
                255,
                0.045
            )
        );

    box-shadow:
        0 25px 70px
        rgba(
            0,
            0,
            0,
            0.35
        ),

        0 0 50px
        rgba(
            120,
            65,
            255,
            0.07
        );
}


.service-card:hover::before,
.service-card.tap-active::before {
    opacity: 1;

    transform:
        translate(
            -30px,
            30px
        );
}


.service-card:hover::after,
.service-card.tap-active::after {
    opacity: 1;
}


/* =========================================================
   FEATURED VIDEO EDITING CARD
   ========================================================= */

.service-featured {
    border-color:
        rgba(
            164,
            82,
            255,
            0.22
        );

    background:
        linear-gradient(
            145deg,
            rgba(
                130,
                61,
                255,
                0.075
            ),
            rgba(
                255,
                255,
                255,
                0.025
            )
        );
}


/* =========================================================
   CUSTOM SOLUTION CARD
   ========================================================= */

.service-custom {

    background:
        linear-gradient(
            145deg,
            rgba(
                77,
                103,
                255,
                0.055
            ),
            rgba(
                157,
                69,
                255,
                0.045
            )
        );
}


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

.service-number {
    position: absolute;

    top: 30px;
    right: 34px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.08em;

    color:
        rgba(
            255,
            255,
            255,
            0.28
        );

    transition:
        color 0.4s ease,
        transform 0.4s ease;
}


.service-card:hover
.service-number,
.service-card.tap-active
.service-number {

    color:
        rgba(
            168,
            76,
            255,
            0.9
        );

    transform:
        translateY(-3px);
}


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

.service-icon {

    width: 64px;
    height: 64px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 55px;

    border:
        1px solid rgba(
            255,
            255,
            255,
            0.11
        );

    border-radius: 17px;

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

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 22px;

    color: #b783ff;

    box-shadow:
        inset 0 0 20px
        rgba(
            158,
            77,
            255,
            0.04
        );

    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        background 0.45s ease,
        box-shadow 0.45s ease;
}


.service-card:hover
.service-icon,
.service-card.tap-active
.service-icon {

    transform:
        translateY(-6px)
        rotate(-4deg);

    border-color:
        rgba(
            168,
            76,
            255,
            0.4
        );

    background:
        rgba(
            143,
            70,
            255,
            0.08
        );

    box-shadow:
        0 0 30px
        rgba(
            143,
            70,
            255,
            0.12
        );
}


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

.service-content {
    position: relative;

    z-index: 2;
}


.service-category {

    display: block;

    margin-bottom: 14px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.18em;

    color:
        #8d83a7;
}


.service-content h2 {

    margin: 0;

    max-width: 500px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            31px,
            3vw,
            45px
        );

    line-height: 1.05;

    letter-spacing: -0.04em;

    font-weight: 600;

    color: #f4f1fa;

    transition:
        transform 0.4s ease,
        color 0.4s ease;
}


.service-card:hover
.service-content h2,
.service-card.tap-active
.service-content h2 {

    transform:
        translateX(4px);

}


.service-content > p {

    max-width: 540px;

    margin: 20px 0 25px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 15px;

    line-height: 1.75;

    color:
        rgba(
            235,
            232,
            245,
            0.58
        );
}


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

.service-list {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px 20px;

    margin: 0;

    padding: 0;

    list-style: none;
}


.service-list li {

    position: relative;

    padding-left: 17px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 12px;

    line-height: 1.5;

    color:
        rgba(
            235,
            232,
            245,
            0.5
        );
}


.service-list li::before {

    content: "";

    position: absolute;

    width: 4px;
    height: 4px;

    left: 0;
    top: 7px;

    border-radius: 50%;

    background:
        #9f5cff;

    box-shadow:
        0 0 8px
        rgba(
            159,
            92,
            255,
            0.7
        );
}


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

.service-arrow {

    position: absolute;

    right: 34px;
    bottom: 32px;

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(
            255,
            255,
            255,
            0.09
        );

    border-radius: 50%;

    font-size: 17px;

    color:
        rgba(
            255,
            255,
            255,
            0.55
        );

    transition:
        transform 0.45s ease,
        background 0.45s ease,
        border-color 0.45s ease,
        color 0.45s ease;
}


.service-card:hover
.service-arrow,
.service-card.tap-active
.service-arrow {

    transform:
        translate(
            4px,
            -4px
        );

    color: #ffffff;

    border-color:
        rgba(
            168,
            76,
            255,
            0.45
        );

    background:
        rgba(
            143,
            70,
            255,
            0.1
        );
}


/* =========================================================
   PROCESS SECTION
   ========================================================= */

.services-process {

    position: relative;

    padding: 140px 7%;

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

    overflow: hidden;
}


.process-container {

    max-width: 1200px;

    margin: 0 auto;
}


.process-heading {

    max-width: 700px;

    margin-bottom: 80px;
}


.process-heading h2 {

    margin: 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            45px,
            6vw,
            72px
        );

    line-height: 1;

    letter-spacing: -0.05em;

    color: #f5f2fa;
}


.process-heading h2 span {

    display: block;

    background:
        linear-gradient(
            100deg,
            #a84cff,
            #667cff
        );

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

    color: transparent;
}


/* =========================================================
   PROCESS GRID
   ========================================================= */

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(0, 1fr)
        );

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

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


.process-step {

    min-height: 250px;

    padding: 32px 25px;

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

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

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}


.process-step:hover,
.process-step.tap-active {

    background:
        rgba(
            143,
            70,
            255,
            0.045
        );

    transform:
        translateY(-5px);
}


.process-step > span {

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 11px;

    font-weight: 600;

    color:
        #a65cff;
}


.process-step h3 {

    margin:
        50px 0 15px;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size: 25px;

    font-weight: 600;

    letter-spacing: -0.03em;

    color: #f4f1f9;
}


.process-step p {

    margin: 0;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 13px;

    line-height: 1.7;

    color:
        rgba(
            235,
            232,
            245,
            0.5
        );
}


/* =========================================================
   SERVICES CTA
   ========================================================= */

.services-cta {

    position: relative;

    padding: 160px 7%;

    text-align: center;

    overflow: hidden;

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


.services-cta::before {

    content: "";

    position: absolute;

    width: 750px;
    height: 400px;

    top: 50%;
    left: 50%;

    transform:
        translate(
            -50%,
            -50%
        );

    background:
        radial-gradient(
            ellipse,
            rgba(
                123,
                61,
                255,
                0.15
            ),
            transparent 68%
        );

    filter: blur(25px);

    pointer-events: none;
}


.services-cta-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: 0 auto;
}


.services-cta h2 {

    margin: 0;

    font-family:
        "Space Grotesk",
        sans-serif;

    font-size:
        clamp(
            45px,
            6vw,
            76px
        );

    line-height: 1;

    letter-spacing: -0.05em;

    font-weight: 600;

    color: #f4f1fa;
}


.services-cta h2 span {

    display: block;

    background:
        linear-gradient(
            100deg,
            #a84cff,
            #667cff
        );

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

    color: transparent;
}


.services-cta p {

    max-width: 580px;

    margin: 30px auto 40px;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 17px;

    line-height: 1.8;

    color:
        rgba(
            235,
            232,
            245,
            0.6
        );
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.services-cta .primary-btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding:
        16px 25px;

    border:
        1px solid rgba(
            255,
            255,
            255,
            0.15
        );

    border-radius: 100px;

    background: #f5f3f8;

    color: #09090d;

    font-family:
        "Manrope",
        sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

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


.services-cta .primary-btn:hover,
.services-cta .primary-btn.tap-active {

    transform:
        translateY(-4px);

    box-shadow:
        0 18px 45px
        rgba(
            113,
            67,
            255,
            0.22
        );
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .services-container {

        grid-template-columns:
            1fr;

        max-width: 720px;
    }


    .service-card {

        min-height: 480px;
    }


    .process-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .services-intro-container {

        grid-template-columns:
            1fr;

        gap: 35px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .services-hero {

        min-height: 72vh;

        padding:
            140px
            22px
            80px;
    }


    .services-hero h1 {

        font-size:
            clamp(
                43px,
                12vw,
                60px
            );

        line-height: 1.02;
    }


    .services-hero p {

        margin-top: 25px;

        font-size: 15px;

        line-height: 1.75;
    }


    .services-intro {

        padding:
            80px
            22px;
    }


    .services-intro-text h2 {

        font-size: 42px;
    }


    .services-intro-text p {

        font-size: 15px;

        line-height: 1.8;
    }


    .services-section {

        padding:
            80px
            18px;
    }


    .services-container {

        gap: 16px;
    }


    .service-card {

        min-height: auto;

        padding: 30px 25px;

        border-radius: 21px;
    }


    .service-number {

        top: 24px;
        right: 25px;
    }


    .service-icon {

        width: 55px;
        height: 55px;

        margin-bottom: 42px;

        font-size: 19px;
    }


    .service-content h2 {

        font-size: 31px;
    }


    .service-content > p {

        font-size: 14px;

        line-height: 1.75;
    }


    .service-list {

        grid-template-columns: 1fr;

        gap: 8px;
    }


    .service-list li {

        font-size: 12px;
    }


    .service-arrow {

        width: 38px;
        height: 38px;

        right: 25px;
        bottom: 25px;
    }


    .services-process {

        padding:
            90px
            22px;
    }


    .process-heading {

        margin-bottom: 55px;
    }


    .process-heading h2 {

        font-size: 46px;
    }


    .process-grid {

        grid-template-columns: 1fr;
    }


    .process-step {

        min-height: 210px;

        padding: 28px 22px;
    }


    .process-step h3 {

        margin-top: 35px;

        font-size: 23px;
    }


    .services-cta {

        padding:
            100px
            22px;
    }


    .services-cta h2 {

        font-size: 46px;

        line-height: 1.03;
    }


    .services-cta p {

        font-size: 15px;
    }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-icon,
    .service-arrow,
    .process-step,
    .services-cta .primary-btn {

        transition: none;
    }

}
/* =========================================================
   iTechVO CONTACT PAGE
   Cinematic Video + Glass Form
   ========================================================= */


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

.contact-section {
    position: relative;

    min-height: 100vh;

    width: 100%;

    overflow: hidden;

    background: #050712;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   BACKGROUND VIDEO
   ========================================================= */

.contact-background-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    z-index: 0;
}


/* Desktop video */

.contact-video-desktop {
    display: block;
}


/* Mobile video */

.contact-video-mobile {
    display: none;
}


/* =========================================================
   VIDEO DARK OVERLAY
   ========================================================= */

.contact-video-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(3, 5, 15, 0.62),
            rgba(3, 5, 15, 0.40),
            rgba(3, 5, 15, 0.78)
        );

    pointer-events: none;
}


/* Extra cinematic glow */

.contact-video-overlay::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(125, 83, 255, 0.12),
            transparent 55%
        );
}


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

.contact-content {
    position: relative;

    z-index: 2;

    width: min(1100px, 90%);

    margin: 0 auto;

    padding: 150px 0 100px;
}


/* =========================================================
   INTRO
   ========================================================= */

.contact-intro {
    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}


.contact-label {
    display: inline-block;

    margin-bottom: 18px;

    font-family: "Manrope", sans-serif;

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.22em;

    color: #b39cff;
}


.contact-intro h1 {
    margin: 0 0 20px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        2.5rem,
        5vw,
        4.8rem
    );

    line-height: 1;

    letter-spacing: -0.045em;

    font-weight: 600;

    color: #ffffff;
}


.contact-intro h1 span {
    display: block;

    background:
        linear-gradient(
            100deg,
            #a78bfa,
            #60a5fa
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.contact-intro p {
    max-width: 560px;

    margin: 0 auto;

    font-family: "Manrope", sans-serif;

    font-size: 0.92rem;

    line-height: 1.8;

    color: rgba(
        230,
        234,
        247,
        0.72
    );
}


/* =========================================================
   GLASS FORM
   ========================================================= */

.contact-form-wrapper {
    position: relative;

    width: min(
        760px,
        100%
    );

    margin: 0 auto;

    border-radius: 26px;

    border: 1px solid
        rgba(
            255,
            255,
            255,
            0.14
        );

    background:
        rgba(
            5,
            7,
            18,
            0.28
        );

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0 35px 100px
        rgba(
            0,
            0,
            0,
            0.38
        );

    overflow: hidden;
}


/* glowing edge */

.contact-form-wrapper::before {
    content: "";

    position: absolute;

    top: -100px;

    right: -100px;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    background:
        rgba(
            139,
            92,
            246,
            0.13
        );

    filter: blur(70px);

    pointer-events: none;
}


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

.contact-form {
    position: relative;

    z-index: 2;

    padding: 48px;
}


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

.form-heading {
    margin-bottom: 32px;
}


.form-heading span {
    display: block;

    margin-bottom: 8px;

    font-family: "Manrope", sans-serif;

    font-size: 0.62rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    color: #a78bfa;
}


.form-heading h2 {
    margin: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: 2rem;

    font-weight: 600;

    letter-spacing: -0.03em;

    color: #ffffff;
}


/* =========================================================
   FORM ROW
   ========================================================= */

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}


/* =========================================================
   FORM GROUP
   ========================================================= */

.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    font-family: "Manrope", sans-serif;

    font-size: 0.72rem;

    font-weight: 600;

    color: #c0c6d8;
}


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

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    box-sizing: border-box;

    outline: none;

    border: 1px solid
        rgba(
            255,
            255,
            255,
            0.11
        );

    border-radius: 11px;

    background:
        rgba(
            0,
            0,
            0,
            0.20
        );

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 0.84rem;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.form-group input,
.form-group select {

    height: 52px;

    padding:
        0 15px;
}


.form-group textarea {

    min-height: 135px;

    padding:
        14px 15px;

    resize: vertical;
}


/* =========================================================
   PLACEHOLDER
   ========================================================= */

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #687188;
}


/* =========================================================
   FOCUS
   ========================================================= */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        rgba(
            139,
            92,
            246,
            0.65
        );

    background:
        rgba(
            139,
            92,
            246,
            0.05
        );

    box-shadow:
        0 0 0 3px
        rgba(
            139,
            92,
            246,
            0.08
        );
}


/* =========================================================
   SELECT OPTIONS
   ========================================================= */

.form-group select option {

    background: #080b18;

    color: #ffffff;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.contact-submit {

    width: 100%;

    min-height: 55px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        0 18px
        0 23px;

    border: none;

    border-radius: 11px;

    cursor: pointer;

    background:
        linear-gradient(
            100deg,
            #7045e8,
            #4f7bea
        );

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 0.82rem;

    font-weight: 700;

    box-shadow:
        0 15px 40px
        rgba(
            86,
            63,
            210,
            0.25
        );

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


.contact-submit:hover,
.contact-submit.tap-active {

    transform:
        translateY(-3px);

    box-shadow:
        0 20px 50px
        rgba(
            86,
            63,
            210,
            0.38
        );
}


.submit-arrow {

    width: 34px;

    height: 34px;

    display: grid;

    place-items: center;

    border-radius: 50%;

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

    font-size: 1rem;

    transition:
        transform 0.3s ease;
}


.contact-submit:hover
.submit-arrow,
.contact-submit.tap-active
.submit-arrow {

    transform:
        translateX(4px);
}


/* =========================================================
   FORM NOTE
   ========================================================= */

.form-note {

    margin: 14px 0 0;

    text-align: center;

    font-family: "Manrope", sans-serif;

    font-size: 0.65rem;

    color: #707990;
}


/* =========================================================
   SUCCESS MESSAGE
   ========================================================= */

.contact-success {

    position: absolute;

    inset: 0;

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 35px;

    text-align: center;

    background:
        rgba(
            5,
            7,
            18,
            0.94
        );

    backdrop-filter:
        blur(20px);

    opacity: 0;

    visibility: hidden;

    transform:
        scale(0.96);

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s ease;
}


.contact-success.active {

    opacity: 1;

    visibility: visible;

    transform:
        scale(1);
}


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

.success-icon {

    width: 70px;

    height: 70px;

    display: grid;

    place-items: center;

    margin-bottom: 22px;

    border-radius: 50%;

    border: 1px solid
        rgba(
            139,
            92,
            246,
            0.40
        );

    background:
        rgba(
            139,
            92,
            246,
            0.12
        );

    color: #c4b5fd;

    font-size: 1.7rem;

    box-shadow:
        0 0 35px
        rgba(
            139,
            92,
            246,
            0.18
        );
}


.contact-success > span {

    margin-bottom: 8px;

    font-family: "Manrope", sans-serif;

    font-size: 0.62rem;

    font-weight: 700;

    letter-spacing: 0.17em;

    color: #a78bfa;
}


.contact-success h2 {

    margin: 0 0 12px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 2.2rem;

    color: #ffffff;
}


.contact-success p {

    max-width: 400px;

    margin: 0 auto 25px;

    font-family: "Manrope", sans-serif;

    font-size: 0.84rem;

    line-height: 1.7;

    color: #8f98af;
}


/* =========================================================
   SUCCESS BACK BUTTON
   ========================================================= */

.success-back {

    padding:
        11px 18px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

    border-radius: 9px;

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

    color: #dce0ed;

    font-family: "Manrope", sans-serif;

    font-size: 0.72rem;

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease;
}


.success-back:hover,
.success-back.tap-active {

    background:
        rgba(
            139,
            92,
            246,
            0.10
        );

    border-color:
        rgba(
            139,
            92,
            246,
            0.35
        );
}


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

.contact-details-section {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

    margin-top: 25px;
}


.contact-detail {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 18px;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.09
        );

    border-radius: 15px;

    background:
        rgba(
            5,
            7,
            18,
            0.45
        );

    backdrop-filter:
        blur(12px);
}


.contact-detail-icon {

    width: 43px;

    height: 43px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 11px;

    background:
        rgba(
            139,
            92,
            246,
            0.12
        );

    border:
        1px solid
        rgba(
            139,
            92,
            246,
            0.20
        );

    color: #c4b5fd;

    font-family: "Space Grotesk", sans-serif;

    font-weight: 600;
}


.contact-detail span {

    display: block;

    margin-bottom: 4px;

    font-family: "Manrope", sans-serif;

    font-size: 0.58rem;

    font-weight: 700;

    letter-spacing: 0.15em;

    color: #707991;
}


.contact-detail a {

    font-family: "Manrope", sans-serif;

    font-size: 0.80rem;

    color: #e4e7f1;

    text-decoration: none;

    transition:
        color 0.3s ease;
}


.contact-detail a:hover,
.contact-detail a.tap-active {

    color: #a78bfa;
}


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

.social-section {

    margin-top: 70px;
}


.social-heading {

    text-align: center;

    margin-bottom: 30px;
}


.social-heading > span {

    display: block;

    margin-bottom: 8px;

    font-family: "Manrope", sans-serif;

    font-size: 0.60rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    color: #a78bfa;
}


.social-heading h2 {

    margin: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: 2.4rem;

    color: #ffffff;
}


.social-heading h2 span {

    background:
        linear-gradient(
            100deg,
            #a78bfa,
            #60a5fa
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


/* =========================================================
   SOCIAL CARDS
   ========================================================= */

.social-links {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}


.social-card {

    display: flex;

    align-items: center;

    gap: 13px;

    min-height: 85px;

    padding: 15px;

    text-decoration: none;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.09
        );

    border-radius: 15px;

    background:
        rgba(
            5,
            7,
            18,
            0.50
        );

    backdrop-filter:
        blur(12px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}


.social-card:hover,
.social-card.tap-active {

    transform:
        translateY(-5px);

    border-color:
        rgba(
            139,
            92,
            246,
            0.35
        );

    background:
        rgba(
            139,
            92,
            246,
            0.08
        );
}


/* Social icon */

.social-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(
                139,
                92,
                246,
                0.15
            ),
            rgba(
                59,
                130,
                246,
                0.10
            )
        );

    border:
        1px solid
        rgba(
            139,
            92,
            246,
            0.20
        );

    color: #c4b5fd;

    font-family: "Space Grotesk", sans-serif;

    font-size: 0.70rem;

    font-weight: 700;
}


.social-info {

    flex: 1;
}


.social-info span {

    display: block;

    margin-bottom: 4px;

    font-family: "Manrope", sans-serif;

    font-size: 0.56rem;

    font-weight: 700;

    letter-spacing: 0.13em;

    color: #707991;
}


.social-info strong {

    font-family: "Manrope", sans-serif;

    font-size: 0.75rem;

    color: #e5e8f2;
}


.social-arrow {

    color: #737d96;

    font-size: 1rem;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


.social-card:hover
.social-arrow,
.social-card.tap-active
.social-arrow {

    transform:
        translate(3px, -3px);

    color: #a78bfa;
}


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

@media (max-width: 700px) {


    /* Mobile video */

    .contact-video-desktop {
        display: none;
    }


    .contact-video-mobile {
        display: block;
    }


    /* Content */

    .contact-content {

        width: 90%;

        padding:
            120px 0 70px;
    }


    /* Intro */

    .contact-intro {

        margin-bottom: 30px;
    }


    .contact-intro h1 {

        font-size:
            clamp(
                2.35rem,
                10vw,
                3.5rem
            );
    }


    .contact-intro p {

        font-size: 0.82rem;
    }


    /* Form */

    .contact-form-wrapper {

        border-radius: 20px;
    }


    .contact-form {

        padding:
            28px 20px;
    }


    .form-heading h2 {

        font-size: 1.65rem;
    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    /* Contact details */

    .contact-details-section {

        grid-template-columns: 1fr;
    }


    /* Social */

    .social-links {

        grid-template-columns: 1fr;
    }


    .social-heading h2 {

        font-size: 2rem;
    }

}


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

@media (max-width: 420px) {


    .contact-content {

        padding-top: 105px;
    }


    .contact-form {

        padding:
            24px 16px;
    }


    .contact-intro h1 {

        font-size: 2.25rem;
    }


    .contact-intro p {

        font-size: 0.78rem;
    }

}


/* =========================================================
   MOBILE MENU SCROLL LOCK
   ========================================================= */

@media (max-width: 800px) {
    body.menu-open {
        overflow: hidden;
    }
}


/* =========================================================
   MOBILE / TOUCH ANIMATIONS
   Mirrors the desktop hover flourishes for touch input,
   plus a couple of touch-only extras so cards & buttons
   feel just as alive on a phone as they do with a mouse.
   ========================================================= */

/* Smoother, snappier transitions for the tap state so the
   effect reads instantly instead of waiting on hover-speed
   timing (which was tuned for a lingering mouse, not a tap). */

@media (hover: none), (pointer: coarse) {

    .service-card,
    .feature-card,
    .service-item,
    .process-step,
    .social-card,
    .primary-btn,
    .secondary-btn,
    .primary-button,
    .secondary-button,
    .outline-button,
    .cta-button,
    .nav-button,
    .contact-submit {
        transition-duration: 0.25s !important;
    }

    .tap-active {
        transition-duration: 0.15s !important;
    }

}


/* Idle sheen sweep: plays once when a card scrolls into
   view on a touch device, so there's motion even before
   the user taps anything. */

@keyframes mobileSheenSweep {

    0% {
        opacity: 0;
        transform: translateX(-60%) rotate(8deg);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(140%) rotate(8deg);
    }

}

.service-card,
.feature-card {
    position: relative;
}

.service-card.mobile-sheen::after,
.feature-card.mobile-sheen::after {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 45%;
    height: 100%;

    background: linear-gradient(
        115deg,
        transparent,
        rgba(255, 255, 255, 0.14),
        transparent
    );

    pointer-events: none;

    animation: mobileSheenSweep 1.1s ease forwards;
}


/* Gentle idle float so hero/service cards don't feel
   completely static while waiting to be tapped. */

@media (hover: none), (pointer: coarse) {

    @keyframes mobileCardFloat {

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

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

    }

    .service-card.service-visible {
        animation: mobileCardFloat 4.5s ease-in-out infinite;
    }

    .service-card.service-visible:nth-child(2) {
        animation-delay: 0.3s;
    }

    .service-card.service-visible:nth-child(3) {
        animation-delay: 0.6s;
    }

    .service-card.service-visible:nth-child(4) {
        animation-delay: 0.9s;
    }

    .service-card.tap-active {
        animation: none;
    }

}


@media (prefers-reduced-motion: reduce) {

    .service-card.mobile-sheen::after {
        animation: none;
        display: none;
    }

    .service-card.service-visible {
        animation: none;
    }

}


/* =========================================================
   iTechVO — LEADERSHIP SECTION UPGRADE
   ========================================================= */

.leadership-section {
    position: relative;
    padding: 120px 7%;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.leadership-section::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 300px;
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(118, 70, 255, 0.10), transparent 70%);
    filter: blur(28px);
    pointer-events: none;
}

.leadership-container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.leadership-heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.leadership-heading h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(42px, 5.5vw, 74px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 600;
    color: #f5f3fa;
}

.leadership-heading h2 span {
    background: linear-gradient(100deg, #a84cff, #667cff, #5ed8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.leadership-heading p {
    max-width: 640px;
    margin: 24px auto 0;
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(235,232,245,0.58);
}

.leadership-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}

.leadership-card {
    position: relative;
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 30px;
    min-height: 250px;
    padding: 38px 42px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 28px;
    background:
        radial-gradient(circle at 15% 20%, rgba(130,70,255,0.10), transparent 30%),
        linear-gradient(145deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.leadership-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 25%, rgba(105,128,255,0.08), transparent 60%);
    transform: translateX(-100%);
    transition: transform .8s ease;
    pointer-events: none;
}

.leadership-card:hover,
.leadership-card.tap-active {
    transform: translateY(-7px);
    border-color: rgba(145,91,255,0.30);
    box-shadow: 0 25px 70px rgba(0,0,0,0.28), 0 0 40px rgba(116,70,255,0.07);
}

.leadership-card:hover::before,
.leadership-card.tap-active::before {
    transform: translateX(100%);
}

.leadership-avatar {
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    border-radius: 30px;
    background: linear-gradient(135deg, #7c45ff, #4d8dff, #53d6ff);
    color: #08101f;
    font-family: "Space Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 16px 40px rgba(103,82,255,0.22);
}

.leadership-role {
    display: inline-block;
    margin-bottom: 10px;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    color: #a891ff;
}

.leadership-copy h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 34px;
    letter-spacing: -.03em;
    color: #f4f1fa;
}

.leadership-copy p {
    max-width: 690px;
    margin: 12px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(235,232,245,0.56);
}

.leadership-mark {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;
    color: rgba(255,255,255,0.65);
    transition: transform .35s ease, border-color .35s ease, color .35s ease;
}

.leadership-card:hover .leadership-mark,
.leadership-card.tap-active .leadership-mark {
    transform: translate(4px,-4px);
    border-color: rgba(145,91,255,0.34);
    color: #ffffff;
}


/* =========================================================
   AI AUTOMATION CARD ACCENT
   ========================================================= */

.service-ai {
    background:
        linear-gradient(145deg, rgba(83,126,255,0.07), rgba(166,77,255,0.05));
}

.service-ai .service-icon {
    letter-spacing: .03em;
    font-size: 16px;
}


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

@media (max-width: 700px) {

    .leadership-section {
        padding: 85px 20px;
    }

    .leadership-heading {
        margin-bottom: 38px;
    }

    .leadership-heading h2 {
        font-size: 43px;
    }

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

    .leadership-card {
        grid-template-columns: 72px 1fr;
        gap: 18px;
        min-height: auto;
        padding: 24px;
        border-radius: 22px;
    }

    .leadership-avatar {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        font-size: 21px;
    }

    .leadership-copy h3 {
        font-size: 27px;
    }

    .leadership-copy p {
        font-size: 13px;
    }

    .leadership-mark {
        position: absolute;
        right: 18px;
        top: 18px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 420px) {
    .leadership-heading h2 {
        font-size: 38px;
    }

    .leadership-card {
        grid-template-columns: 60px 1fr;
        padding: 20px;
    }

    .leadership-avatar {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        font-size: 18px;
    }

    .leadership-copy h3 {
        font-size: 24px;
    }
}


/* =========================================================
   iTechVO — PREMIUM EXPERIENCE UPGRADE
   Global visual + interaction layer
   ========================================================= */

:root {
    --uxe-purple: #8c5cff;
    --uxe-purple-2: #b17cff;
    --uxe-blue: #4da3ff;
    --uxe-cyan: #56e0ff;
    --uxe-bg: #05060d;
    --uxe-panel: rgba(10, 12, 24, 0.72);
    --uxe-border: rgba(255,255,255,.10);
    --uxe-text: #f5f6fb;
    --uxe-muted: rgba(230,234,246,.62);
    --uxe-shadow: 0 24px 80px rgba(0,0,0,.35);
}

html { scroll-behavior: smooth; }
body { background: var(--uxe-bg); color: var(--uxe-text); }
body.menu-open { overflow: hidden; }

/* ---------- Floating desktop navbar ---------- */
.navbar {
    top: 12px;
    left: 0;
    width: 100%;
    padding: 0;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
.nav-container {
    width: min(calc(100% - 32px), 1320px);
    min-height: 68px;
    padding: 0 14px 0 18px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(8,10,20,.76), rgba(11,13,27,.56));
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    box-shadow: 0 14px 50px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.04);
    transition: min-height .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}
.navbar.navbar-scrolled .nav-container {
    min-height: 60px;
    border-color: rgba(145,98,255,.20);
    background: rgba(7,9,18,.84);
    box-shadow: 0 18px 60px rgba(0,0,0,.34), 0 0 40px rgba(109,75,210,.05);
}
.logo { width: 150px; }
.logo img { width: 142px; max-height: 46px; }
.nav-menu { gap: 8px; margin-left: auto; }
.nav-link {
    padding: 10px 15px;
    border-radius: 14px;
    color: rgba(238,240,250,.68);
    transition: color .3s ease, background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.nav-link::after { display:none; }
.nav-link:hover, .nav-link.active, .nav-link.tap-active {
    color: #fff;
    background: rgba(255,255,255,.055);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.045), 0 8px 24px rgba(0,0,0,.14);
    transform: translateY(-1px);
}
.nav-link.active {
    background: linear-gradient(135deg, rgba(140,92,255,.16), rgba(77,163,255,.08));
    box-shadow: inset 0 0 0 1px rgba(150,108,255,.20), 0 8px 26px rgba(115,75,220,.10);
}
.nav-button {
    min-width: 138px;
    padding: 12px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.11);
    background: linear-gradient(135deg, rgba(140,92,255,.18), rgba(77,163,255,.10));
    box-shadow: 0 8px 24px rgba(106,72,210,.12);
}
.nav-button:hover, .nav-button.tap-active {
    border-color: rgba(170,125,255,.46);
    background: linear-gradient(135deg, rgba(140,92,255,.26), rgba(77,163,255,.14));
    box-shadow: 0 12px 32px rgba(106,72,210,.18), 0 0 24px rgba(105,74,220,.09);
}

/* ---------- Cursor system ---------- */
/* Shared premium cursor is enabled on every desktop page. */
.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

.cursor-outline {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(190, 160, 255, 0.48);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

body.cursor-ready {
    cursor: none;
}

body.cursor-ready a,
body.cursor-ready button,
body.cursor-ready input,
body.cursor-ready textarea,
body.cursor-ready select {
    cursor: none;
}

.cursor-glow {
    position: fixed;
    width: 260px;
    height: 260px;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 9997;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(120,83,255,.08) 0%, rgba(77,163,255,.035) 28%, transparent 68%);
    filter: blur(8px);
    opacity: 0;
    transition: opacity .35s ease;
}
body.cursor-ready .cursor-glow { opacity: 1; }
body.cursor-ready .cursor-outline { border-color: rgba(173,126,255,.65); box-shadow: 0 0 20px rgba(120,83,255,.08); }
.cursor-outline.cursor-hover {
    width: 46px !important;
    height: 46px !important;
    border-color: rgba(89,208,255,.72) !important;
    background: rgba(89,208,255,.035);
}
.cursor-outline.cursor-press { width: 24px !important; height: 24px !important; }

/* ---------- Global ambient/progress ---------- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform-origin: 0 50%;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--uxe-purple), var(--uxe-blue), var(--uxe-cyan));
    z-index: 12000;
    box-shadow: 0 0 18px rgba(108,103,255,.34);
}

/* ---------- Section rhythm ---------- */
.reveal, .services-preview, .why-section, .cta-section, .about-description, .about-approach, .leadership-section, .about-cta, .services-intro, .services-section, .services-process, .services-cta, .contact-form-wrapper, .contact-details-section, .social-section {
    will-change: opacity, transform;
}
.reveal:not(.visible) { opacity: 0; transform: translateY(28px); }
.reveal.visible { opacity: 1; transform: translateY(0); transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1); }

/* ---------- Hero polish ---------- */
.hero-section::after,
.services-hero::after,
.about-hero::after,
.about-cta::after,
.services-cta::after,
.contact-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--bgx,50%) var(--bgy,45%), rgba(130,88,255,.095), transparent 30%);
    opacity: .95;
}
.hero-content, .services-hero-content, .about-hero-content, .contact-content { position: relative; z-index: 3; }
.hero-content { transform: translate3d(var(--hero-x,0px), var(--hero-y,0px), 0); transition: transform .5s cubic-bezier(.22,1,.36,1); }

/* ---------- Headline emphasis ---------- */
.hero-title span, .about-hero h1 span, .services-hero h1 span, .about-approach h2 span, .leadership-heading h2 span, .about-cta h2 span, .services-heading h2 span, .why-heading h2 span, .services-cta h2 span, .contact-intro h1 span {
    background: linear-gradient(110deg, #e6e8ff 0%, #b78cff 42%, #56c6ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 180% 100%;
    animation: uxeGradient 8s ease-in-out infinite;
}
@keyframes uxeGradient { 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }

/* ---------- Home service list upgraded ---------- */
.services-preview .service-list { gap: 10px; }
.service-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,.035), rgba(116,79,220,.015));
    transition: transform .45s cubic-bezier(.22,1,.36,1), border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.service-item::before {
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(138,91,255,.15), transparent 36%);
    opacity: 0;
    transition: opacity .3s ease;
}
.service-item:hover, .service-item.tap-active {
    transform: translateY(-6px);
    border-color: rgba(146,99,255,.34);
    background: linear-gradient(135deg, rgba(138,91,255,.09), rgba(77,163,255,.045));
    box-shadow: 0 20px 50px rgba(0,0,0,.22), 0 0 26px rgba(113,79,224,.07);
}
.service-item:hover::before, .service-item.tap-active::before { opacity:1; }
.service-item .service-arrow { transition: transform .35s ease, color .35s ease; }
.service-item:hover .service-arrow, .service-item.tap-active .service-arrow { transform: translate(4px,-4px); color:#fff; }

/* ---------- Why/feature cards ---------- */
.why-card, .feature-card, .leadership-card, .process-step, .social-card, .contact-detail-card {
    transition: transform .45s cubic-bezier(.22,1,.36,1), border-color .35s ease, box-shadow .45s ease, background .35s ease;
}
.why-card:hover, .feature-card:hover, .leadership-card:hover, .process-step:hover, .social-card:hover, .contact-detail-card:hover {
    transform: translateY(-7px);
    border-color: rgba(145,98,255,.32);
    box-shadow: 0 20px 60px rgba(0,0,0,.24), 0 0 30px rgba(109,76,217,.06);
}

/* ---------- Leadership section ---------- */
.leadership-section { position: relative; overflow: hidden; }
.leadership-section::before {
    content:"";
    position:absolute;
    width:460px; height:460px;
    top:-180px; left:-140px;
    border-radius:50%;
    background: radial-gradient(circle, rgba(76,163,255,.08), transparent 68%);
    pointer-events:none;
}
.leadership-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(94,61,180,.025));
    border:1px solid rgba(255,255,255,.09);
}
.leadership-card::after {
    content:"";
    position:absolute;
    inset:auto -80px -120px auto;
    width:280px; height:280px;
    border-radius:50%;
    background: radial-gradient(circle, rgba(87,175,255,.12), transparent 66%);
    pointer-events:none;
}
.leadership-avatar {
    box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 0 38px rgba(112,90,255,.18);
    background: linear-gradient(135deg, rgba(77,205,255,.95), rgba(143,86,255,.95));
    transition: transform .45s ease, box-shadow .45s ease;
}
.leadership-card:hover .leadership-avatar { transform: translateY(-5px) rotate(-3deg); box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 0 48px rgba(112,90,255,.26); }

/* ---------- Service page ---------- */
.services-container { perspective: 1200px; }
.service-card { transform-style: preserve-3d; }
.service-card::before { pointer-events:none; }
.service-icon { box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 10px 24px rgba(0,0,0,.16); }
.service-card:hover .service-icon { box-shadow: 0 0 30px rgba(132,91,255,.13); }

/* ---------- Contact video/form polish ---------- */
.contact-section { position: relative; overflow: hidden; isolation: isolate; }
.contact-form-wrapper {
    box-shadow: 0 35px 110px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.04);
}
.contact-form-wrapper::after {
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    background: linear-gradient(135deg, rgba(255,255,255,.045), transparent 30%, transparent 70%, rgba(114,84,215,.035));
}
.contact-submit { position: relative; overflow:hidden; }
.contact-submit::before {
    content:"";
    position:absolute; inset:0;
    background: linear-gradient(100deg, transparent 15%, rgba(255,255,255,.12) 50%, transparent 85%);
    transform: translateX(-120%);
    transition: transform .7s ease;
}
.contact-submit:hover::before { transform: translateX(120%); }

/* ---------- Social cards ---------- */
.social-card { position:relative; overflow:hidden; }
.social-card::after {
    content:"";
    position:absolute;
    width:130px; height:130px;
    top:-80px; right:-55px;
    border-radius:50%;
    background: radial-gradient(circle, rgba(120,87,255,.13), transparent 70%);
    opacity:0;
    transition: opacity .35s ease;
}
.social-card:hover::after, .social-card.tap-active::after { opacity:1; }

/* ---------- Buttons ---------- */
.primary-button, .secondary-button, .outline-button, .primary-btn, .secondary-btn, .contact-final-button {
    position: relative;
    overflow: hidden;
}
.primary-button::after, .secondary-button::after, .outline-button::after, .primary-btn::after, .secondary-btn::after, .contact-final-button::after {
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.08) 50%, transparent 80%);
    transform:translateX(-120%);
    transition:transform .65s ease;
}
.primary-button:hover::after, .secondary-button:hover::after, .outline-button:hover::after, .primary-btn:hover::after, .secondary-btn:hover::after, .contact-final-button:hover::after { transform:translateX(120%); }

/* ---------- Tablet ---------- */
@media (max-width: 1000px) {
    .nav-container { width: min(calc(100% - 24px), 980px); }
    .nav-menu { gap: 4px; }
    .nav-link { padding: 9px 11px; }
}

/* ---------- Mobile ---------- */
@media (max-width: 800px) {
    .navbar { top: 10px; }
    .nav-container {
        width: calc(100% - 20px);
        min-height: 58px;
        padding: 0 12px 0 14px;
        border-radius: 20px;
    }
    .navbar.navbar-scrolled .nav-container { min-height: 54px; }
    .logo { width: 118px; }
    .logo img { width: 112px; max-height: 40px; }
    .nav-menu {
        top: 0;
        right: 0;
        width: min(84vw, 340px);
        height: 100svh;
        padding: 115px 30px 40px;
        gap: 6px;
        background: radial-gradient(circle at 20% 10%, rgba(130,83,255,.12), transparent 30%), rgba(6,8,18,.97);
        border-left: 1px solid rgba(255,255,255,.09);
        box-shadow: -20px 0 60px rgba(0,0,0,.28);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform .48s cubic-bezier(.22,1,.36,1), visibility .48s ease;
    }
    .nav-menu.mobile-active { transform: translateX(0); visibility: visible; }
    .nav-link {
        width:100%;
        padding: 15px 10px;
        font-size: 20px;
        border-radius: 14px;
    }
    .nav-link.active { background: rgba(131,91,255,.10); }
    .menu-toggle {
        display:flex;
        position:relative;
        z-index:1101;
        width:44px; height:44px;
        border-radius:15px;
        background: rgba(255,255,255,.035);
        transition: transform .3s ease, border-color .3s ease, background .3s ease;
    }
    .menu-toggle.menu-open { transform: rotate(90deg); border-color: rgba(146,101,255,.35); background: rgba(131,91,255,.08); }
    .menu-toggle span { width:18px; height:1.5px; }

    .hero-content { transform:none !important; }
    .hero-section::after { background: radial-gradient(circle at 50% 35%, rgba(126,88,255,.08), transparent 38%); }
    .reveal:not(.visible) { opacity:0; transform:translateY(24px) scale(.985); }
    .reveal.visible { transition-duration:.68s; }

    .service-item:hover, .service-card:hover, .why-card:hover, .feature-card:hover, .leadership-card:hover, .process-step:hover, .social-card:hover, .contact-detail-card:hover { transform:none; }
    .service-item.tap-active, .service-card.tap-active, .why-card.tap-active, .feature-card.tap-active, .leadership-card.tap-active, .process-step.tap-active, .social-card.tap-active, .contact-detail-card.tap-active { transform: translateY(-3px) scale(.992); }
    .service-card, .service-item, .social-card, .leadership-card { overflow:hidden; }

    .contact-content { padding-top: 120px; }
    .contact-video-overlay { background: linear-gradient(180deg, rgba(4,6,15,.58), rgba(4,6,15,.38), rgba(4,6,15,.86)); }
}

/* ---------- Touch devices ---------- */
@media (hover:none), (pointer:coarse) {
    .cursor-dot, .cursor-outline, .cursor-glow { display:none !important; }
    .nav-link:active, .nav-button:active, .primary-button:active, .secondary-button:active, .outline-button:active, .primary-btn:active, .secondary-btn:active, .contact-final-button:active { transform: scale(.985); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior:auto; }
    .hero-title span, .about-hero h1 span, .services-hero h1 span, .about-approach h2 span, .leadership-heading h2 span, .about-cta h2 span, .services-heading h2 span, .why-heading h2 span, .services-cta h2 span, .contact-intro h1 span { animation:none; }
    .reveal, .reveal.visible { transition:none !important; transform:none !important; opacity:1 !important; }
}


/* =========================================================
   iTechVO FINAL FIX — ABOUT VISIBILITY + LOGO SCALE
   ========================================================= */

/* About sections must reveal through JS instead of staying hidden forever */
.about-hero-content,
.about-description-container,
.approach-container,
.about-cta-content {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .8s cubic-bezier(.22,1,.36,1),
        transform .8s cubic-bezier(.22,1,.36,1);
}

.about-hero-content.visible,
.about-description-container.visible,
.approach-container.visible,
.about-cta-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Keep the actual logo visually substantial without making the navbar huge */
.logo {
    width: 170px !important;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 158px !important;
    height: auto;
    max-height: 44px !important;
    object-fit: contain;
}

.footer-logo img {
    display: block;
    width: 118px !important;
    height: auto;
    max-height: 38px !important;
    object-fit: contain;
}

@media (max-width: 800px) {
    .logo {
        width: 132px !important;
    }

    .logo img {
        width: 128px !important;
        max-height: 38px !important;
    }

    .footer-logo img {
        width: 125px !important;
        max-height: 36px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-hero-content,
    .about-description-container,
    .approach-container,
    .about-cta-content {
        transition: none;
    }
}

/* =========================================================
   FINAL LOGO BALANCE — MEDIUM SIZE
   ========================================================= */
.logo {
    width: 132px !important;
    flex-shrink: 0;
}

.logo img {
    display: block;
    width: 122px !important;
    max-width: 122px !important;
    max-height: 36px !important;
    height: auto;
    object-fit: contain;
}

.footer-logo img {
    display: block;
    width: 116px !important;
    max-width: 116px !important;
    max-height: 34px !important;
    height: auto;
    object-fit: contain;
}

@media (max-width: 800px) {
    .logo {
        width: 108px !important;
    }

    .logo img {
        width: 100px !important;
        max-width: 100px !important;
        max-height: 30px !important;
    }

    .footer-logo img {
        width: 98px !important;
        max-width: 98px !important;
        max-height: 29px !important;
    }
}


/* =========================================================
   iTechVO AI CHATBOT
   ========================================================= */

.chatbot-toggle {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1200;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(167, 139, 250, .45);
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    background: radial-gradient(circle at 30% 30%, rgba(167,139,250,.28), rgba(5,7,18,.96));
    color: #fff;
    box-shadow: 0 14px 45px rgba(0,0,0,.38), 0 0 30px rgba(139,92,246,.12);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.chatbot-toggle:hover {
    transform: translateY(-4px) scale(1.04);
    border-color: rgba(167,139,250,.8);
    box-shadow: 0 18px 55px rgba(0,0,0,.42), 0 0 38px rgba(139,92,246,.2);
}

.chatbot-orb {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #c4b5fd, #7c3aed 55%, #2563eb);
    filter: blur(.2px);
    box-shadow: 0 0 22px rgba(139,92,246,.55);
}

.chatbot-toggle-text {
    position: relative;
    z-index: 2;
    font-family: "Space Grotesk", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.chatbot-window {
    position: fixed;
    right: 24px;
    bottom: 96px;
    z-index: 1199;
    width: min(360px, calc(100vw - 32px));
    height: 500px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(5,7,18,.9);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 30px 90px rgba(0,0,0,.45), 0 0 40px rgba(139,92,246,.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(.97);
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.chatbot-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px 15px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.chatbot-header > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.chatbot-status {
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .17em;
    color: #a78bfa;
}

.chatbot-header strong {
    font-family: "Space Grotesk", sans-serif;
    color: #fff;
    font-size: 16px;
}

.chatbot-close {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    color: #e7e9f2;
    font-size: 20px;
    cursor: pointer;
}

.chatbot-messages {
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    max-width: 84%;
    padding: 10px 12px;
    border-radius: 14px;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.6;
}

.bot-message {
    align-self: flex-start;
    color: #e9eaf3;
    background: rgba(139,92,246,.09);
    border: 1px solid rgba(139,92,246,.12);
}

.user-message {
    align-self: flex-end;
    color: #fff;
    background: linear-gradient(135deg, rgba(112,69,232,.9), rgba(79,123,234,.86));
}

.chat-typing {
    opacity: .7;
    animation: chatbotTyping 1.2s ease-in-out infinite;
}

@keyframes chatbotTyping {
    0%,100% { opacity: .45; }
    50% { opacity: 1; }
}

.chatbot-form {
    display: grid;
    grid-template-columns: 1fr 42px;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.chatbot-input {
    min-width: 0;
    height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    outline: none;
    background: rgba(0,0,0,.18);
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
}

.chatbot-input:focus {
    border-color: rgba(167,139,250,.55);
    box-shadow: 0 0 0 3px rgba(139,92,246,.08);
}

.chatbot-form button {
    height: 42px;
    border: 1px solid rgba(139,92,246,.32);
    border-radius: 12px;
    background: linear-gradient(135deg, #7045e8, #4f7bea);
    color: #fff;
    cursor: pointer;
    font-size: 17px;
}

@media (max-width: 700px) {
    .chatbot-toggle {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .chatbot-window {
        right: 16px;
        bottom: 80px;
        width: calc(100vw - 32px);
        height: min(520px, 68vh);
        border-radius: 18px;
    }
}

/* =========================================================
   iTechVO — THEMED FLOATING WHATSAPP
   ========================================================= */

.itechvo-whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 154px;
  padding: 10px 14px 10px 10px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(9,13,30,.92), rgba(24,18,48,.88));
  border: 1px solid rgba(139,92,246,.48);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.28), 0 0 24px rgba(88,70,210,.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.itechvo-whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(167,139,250,.55), rgba(59,130,246,.18), rgba(167,139,250,.04));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.itechvo-whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(167,139,250,.78);
  box-shadow: 0 16px 34px rgba(0,0,0,.32), 0 0 32px rgba(111,92,220,.28);
}

.itechvo-whatsapp-float:active { transform: translateY(-1px) scale(.98); }

.itechvo-whatsapp-icon {
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, rgba(139,92,246,.95), rgba(59,130,246,.78));
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 0 18px rgba(111,92,220,.22);
}

.itechvo-whatsapp-icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.itechvo-whatsapp-icon svg { width: 23px; height: 23px; }

.itechvo-whatsapp-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  line-height: 1.1;
}

.itechvo-whatsapp-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.itechvo-whatsapp-copy small {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,.56);
  letter-spacing: .03em;
}

@media (max-width: 768px) {
  .itechvo-whatsapp-float {
    left: 14px;
    bottom: 14px;
    min-width: auto;
    width: 52px;
    height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 16px;
  }
  .itechvo-whatsapp-icon {
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
    border-radius: 16px;
    border: 0;
    background: linear-gradient(145deg, rgba(139,92,246,.98), rgba(59,130,246,.9));
  }
  .itechvo-whatsapp-copy { display: none; }
  .itechvo-whatsapp-icon svg { width: 25px; height: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  .itechvo-whatsapp-float { transition: none; }
}
