/* =========================================================
   MAITREYAM IT CONSULTANCY
   ENTERPRISE TECHNOLOGY WEBSITE
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --bg-main: #050b16;
    --bg-secondary: #081321;

    --glass: rgba(10, 24, 43, 0.72);
    --glass-light: rgba(19, 40, 66, 0.58);

    --border: rgba(120, 190, 255, 0.20);
    --border-hover: rgba(90, 205, 255, 0.55);

    --text-primary: #f4f9ff;
    --text-secondary: #a9bdd2;
    --text-muted: #71869c;

    --accent: #36cfff;
    --accent-light: #7be5ff;
    --accent-dark: #087da9;

    --success: #39e6a2;

    --shadow:
        0 20px 60px rgba(0, 0, 0, 0.38);

    --glow:
        0 0 30px rgba(54, 207, 255, 0.14);

    --radius: 20px;

    --max-width: 1240px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    font-family:
        "Segoe UI",
        Inter,
        Arial,
        sans-serif;

    color: var(--text-primary);

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 130, 200, 0.15),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(0, 200, 255, 0.10),
            transparent 30%
        ),
        var(--bg-main);

    line-height: 1.6;

    overflow-x: hidden;
}

a {
    color: inherit;
}

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


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

body::before {

    content: "";

    position: fixed;

    inset: 0;

    z-index: -5;

    background:
        linear-gradient(
            rgba(2, 8, 18, 0.72),
            rgba(2, 8, 18, 0.82)
        ),
        url("images/tech-bg.jpg")
        center / cover no-repeat;

    pointer-events: none;
}


.background-grid {

    position: fixed;

    inset: 0;

    z-index: -4;

    opacity: 0.16;

    background-image:
        linear-gradient(
            rgba(100, 200, 255, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(100, 200, 255, 0.08) 1px,
            transparent 1px
        );

    background-size:
        50px 50px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );
}


.background-glow {

    position: fixed;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    filter: blur(90px);

    opacity: 0.13;

    z-index: -3;

    pointer-events: none;

    animation:
        floatingGlow 12s ease-in-out infinite alternate;
}

.glow-one {

    background: #00bfff;

    top: 10%;
    left: -150px;
}

.glow-two {

    background: #1769ff;

    right: -150px;
    bottom: 10%;

    animation-delay: 3s;
}


@keyframes floatingGlow {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(60px);
    }
}


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

.site-header {

    max-width: var(--max-width);

    margin: 24px auto 18px;

    padding: 26px 35px;

    background:
        rgba(7, 18, 33, 0.70);

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

    border-radius:
        var(--radius);

    backdrop-filter:
        blur(18px);

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

    box-shadow:
        var(--shadow);

    position: relative;

    overflow: hidden;
}


.site-header::before {

    content: "";

    position: absolute;

    top: 0;
    left: 10%;

    width: 80%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--accent),
            transparent
        );

    opacity: 0.7;
}


.header-container {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 24px;
}


.logo {

    width: 86px;
    height: 86px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 0 14px
            rgba(54, 207, 255, 0.35)
        );
}


.company-text {
    text-align: left;
}


.company-text h1 {

    margin: 0;

    font-size: clamp(26px, 3vw, 38px);

    letter-spacing: 2px;

    font-weight: 800;

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

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


.company-text h2 {

    margin: 3px 0;

    font-size: 15px;

    letter-spacing: 3px;

    color: var(--accent);
}


.company-text p {

    margin: 8px 0 0;

    font-size: 15px;

    color: var(--text-secondary);

    font-style: italic;

    letter-spacing: 0.3px;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {

    position: sticky;

    top: 12px;

    z-index: 1000;

    width: 100%;

    padding: 0 20px;
}


.nav-container {

    max-width: 950px;

    margin: auto;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 4px;

    padding: 8px;

    background:
        rgba(4, 14, 27, 0.82);

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

    border-radius: 50px;

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, 0.32);
}


.nav-link {

    position: relative;

    padding: 11px 18px;

    border-radius: 30px;

    color: var(--text-secondary);

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

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


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

    color: white;

    background:
        rgba(54, 207, 255, 0.12);

    box-shadow:
        inset 0 0 0 1px
        rgba(54, 207, 255, 0.15);
}


.nav-link:hover {

    transform:
        translateY(-1px);
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {

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

    margin: 55px auto;

    scroll-margin-top: 100px;
}


.glass-section {

    position: relative;

    padding: 58px 42px;

    background:
        linear-gradient(
            145deg,
            rgba(16, 36, 60, 0.76),
            rgba(5, 17, 32, 0.68)
        );

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

    border-radius:
        var(--radius);

    backdrop-filter:
        blur(20px);

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

    box-shadow:
        var(--shadow);

    overflow: hidden;
}


.glass-section::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius:
        inherit;

    pointer-events: none;

    background:
        linear-gradient(
            120deg,
            rgba(255,255,255,0.07),
            transparent 35%
        );
}


.glass-section::after {

    content: "";

    position: absolute;

    top: 0;

    left: 15%;

    width: 70%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(54,207,255,0.55),
            transparent
        );
}


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

.section-heading {

    text-align: center;

    position: relative;

    z-index: 2;

    margin-bottom: 42px;
}


.section-label {

    display: inline-block;

    color: var(--accent);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 8px;
}


.section-heading h2 {

    margin: 0;

    font-size: clamp(28px, 4vw, 40px);

    font-weight: 750;

    letter-spacing: -0.5px;
}


.heading-line {

    width: 75px;

    height: 3px;

    margin: 13px auto;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--accent),
            transparent
        );

    box-shadow:
        0 0 14px
        rgba(54,207,255,0.5);
}


.section-heading p {

    max-width: 680px;

    margin: 12px auto 0;

    color: var(--text-secondary);

    font-size: 15px;
}


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

.hero {

    min-height: 620px;

    display: flex;

    align-items: center;

    padding: 70px 50px;

    position: relative;

    background:
        linear-gradient(
            135deg,
            rgba(5,18,35,0.82),
            rgba(4,12,25,0.65)
        );

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

    border-radius:
        26px;

    backdrop-filter:
        blur(18px);

    overflow: hidden;
}


.hero-content {

    width: 100%;

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    align-items: center;

    gap: 40px;
}


.eyebrow {

    display: inline-block;

    padding: 7px 13px;

    border:
        1px solid
        rgba(54,207,255,0.25);

    border-radius: 30px;

    color: var(--accent);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    background:
        rgba(54,207,255,0.06);
}


.hero-text h2 {

    margin: 22px 0;

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

    line-height: 1.05;

    letter-spacing: -2px;
}


.hero-text h2 span {

    display: block;

    background:
        linear-gradient(
            90deg,
            var(--accent),
            #b6f3ff
        );

    -webkit-background-clip: text;

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


.hero-text > p {

    max-width: 680px;

    color: var(--text-secondary);

    font-size: 17px;

    line-height: 1.8;
}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 30px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0 22px;

    border-radius: 10px;

    text-decoration: none;

    font-weight: 700;

    font-size: 14px;

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

    cursor: pointer;
}


.btn:hover {

    transform:
        translateY(-3px);
}


.btn-primary {

    color: #03111d;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            #8deaff
        );

    box-shadow:
        0 8px 25px
        rgba(54,207,255,0.20);
}


.btn-primary:hover {

    box-shadow:
        0 12px 35px
        rgba(54,207,255,0.38);
}


.btn-secondary {

    color: white;

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

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


.btn-secondary:hover {

    border-color:
        var(--border-hover);

    background:
        rgba(54,207,255,0.08);
}


/* =========================================================
   TECHNOLOGY BADGES
========================================================= */

.technology-badges {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;
}


.technology-badges span {

    padding:
        5px 11px;

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

    border-radius: 30px;

    color:
        var(--text-secondary);

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

    font-size: 11px;

    font-weight: 600;
}


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

.hero-visual {

    height: 390px;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;
}


.tech-core {

    width: 170px;
    height: 170px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(25,78,110,0.95),
            rgba(4,18,34,0.95)
        );

    border:
        1px solid
        rgba(100,220,255,0.45);

    box-shadow:
        0 0 60px
        rgba(54,207,255,0.20);

    z-index: 3;

    animation:
        corePulse 4s ease-in-out infinite;
}


.core-inner {

    font-size: 64px;

    font-weight: 900;

    color: var(--accent);

    line-height: 1;
}


.tech-core small {

    margin-top: 8px;

    color:
        var(--text-secondary);

    text-align: center;

    font-size: 10px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.tech-orbit {

    position: absolute;

    border:
        1px dashed
        rgba(90,210,255,0.25);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;
}


.tech-orbit span {

    position: absolute;

    padding:
        9px 13px;

    border:
        1px solid
        rgba(54,207,255,0.25);

    border-radius: 30px;

    background:
        rgba(6,22,39,0.9);

    color:
        var(--accent-light);

    font-size: 12px;

    font-weight: 700;

    box-shadow:
        0 0 18px
        rgba(54,207,255,0.10);
}


.orbit-one {

    width: 250px;
    height: 250px;

    animation:
        orbitRotate 18s linear infinite;
}


.orbit-one span {
    top: -18px;
}


.orbit-two {

    width: 330px;
    height: 330px;

    animation:
        orbitRotateReverse 24s linear infinite;
}


.orbit-two span {
    right: -32px;
}


.orbit-three {

    width: 400px;
    height: 400px;

    animation:
        orbitRotate 30s linear infinite;
}


.orbit-three span {
    bottom: 15px;
}


@keyframes orbitRotate {

    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes orbitRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0);
    }
}


@keyframes corePulse {

    0%, 100% {
        box-shadow:
            0 0 40px
            rgba(54,207,255,0.15);
    }

    50% {
        box-shadow:
            0 0 80px
            rgba(54,207,255,0.30);
    }
}


/* =========================================================
   WHAT'S NEW
========================================================= */

.carousel {

    position: relative;

    overflow: hidden;

    padding:
        8px 50px 20px;
}


.carousel-track {

    display: flex;

    gap: 20px;

    transition:
        transform 0.6s
        cubic-bezier(.2,.8,.2,1);

    will-change:
        transform;
}


.news-card {

    flex:
        0 0 calc(
            (100% - 60px) / 4
        );

    min-width: 0;

    overflow: hidden;

    background:
        rgba(7,22,39,0.78);

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

    border-radius: 15px;

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


.news-card:hover {

    transform:
        translateY(-7px);

    border-color:
        var(--border-hover);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,0.35),
        0 0 25px
        rgba(54,207,255,0.08);
}


.news-card img {

    width: 100%;

    height: 150px;

    object-fit: cover;

    opacity: 0.85;

    transition:
        transform 0.5s ease;
}


.news-card:hover img {

    transform:
        scale(1.05);
}


.news-content {

    padding: 18px;
}


.card-category {

    color:
        var(--accent);

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: 800;
}


.news-content h3 {

    margin:
        8px 0;

    font-size: 17px;

    line-height: 1.3;
}


.news-content p {

    margin: 0 0 14px;

    color:
        var(--text-secondary);

    font-size: 13px;
}


.news-content a {

    color:
        var(--accent-light);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;
}


.carousel-btn {

    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    width: 42px;
    height: 42px;

    border-radius: 50%;

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

    color: white;

    background:
        rgba(4,15,28,0.9);

    font-size: 28px;

    cursor: pointer;

    z-index: 5;

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


.carousel-btn:hover {

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

    border-color:
        var(--accent);
}


.prev {
    left: 2px;
}


.next {
    right: 2px;
}


.dots {

    display: flex;

    justify-content: center;

    gap: 8px;

    margin-top: 18px;
}


.dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    cursor: pointer;

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

    transition:
        all 0.3s ease;
}


.dot.active {

    width: 25px;

    border-radius: 10px;

    background:
        var(--accent);

    box-shadow:
        0 0 12px
        rgba(54,207,255,0.5);
}


.whatsnew-message {

    margin:
        35px auto 0;

    text-align: center;

    color:
        var(--accent-light);

    font-size: 18px;

    font-style: italic;

    font-weight: 600;

    text-shadow:
        0 0 18px
        rgba(54,207,255,0.45);

    animation:
        messageGlow 3s ease-in-out infinite;
}


@keyframes messageGlow {

    0%, 100% {
        opacity: 0.75;
    }

    50% {
        opacity: 1;
    }
}


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

.service-grid {

    display: grid;

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

    gap: 20px;

    position: relative;

    z-index: 2;
}


.service-card {

    padding: 28px;

    min-height: 250px;

    background:
        rgba(7,22,39,0.65);

    border:
        1px solid
        rgba(120,190,255,0.13);

    border-radius: 16px;

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


.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        var(--border-hover);

    background:
        rgba(10,31,52,0.82);
}


.service-icon {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    color:
        var(--accent);

    border:
        1px solid
        rgba(54,207,255,0.25);

    background:
        rgba(54,207,255,0.08);

    font-size: 15px;

    font-weight: 900;

    margin-bottom: 18px;
}


.service-card h3 {

    margin: 0 0 8px;

    font-size: 20px;
}


.service-card p {

    margin: 0;

    color:
        var(--text-secondary);

    font-size: 14px;
}


.service-tags,
.project-tags,
.engagement-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 18px;
}


.service-tags span,
.project-tags span,
.engagement-tags span {

    padding:
        4px 9px;

    border-radius: 20px;

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

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

    color:
        var(--text-muted);

    font-size: 10px;
}


/* =========================================================
   IMPACT
========================================================= */

.impact-section {

    text-align: center;
}


.metrics-grid {

    display: grid;

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

    gap: 20px;
}


.metric {

    padding: 25px 15px;

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


.metric:last-child {
    border-right: none;
}


.metric-number {

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

    font-weight: 800;

    line-height: 1;

    color:
        var(--accent-light);

    text-shadow:
        0 0 22px
        rgba(54,207,255,0.25);
}


.metric p {

    margin-top: 12px;

    color:
        var(--text-secondary);

    font-size: 14px;
}


/* =========================================================
   TECHNOLOGY
========================================================= */

.technology-grid {

    display: grid;

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

    gap: 18px;
}


.technology-group {

    padding: 23px;

    background:
        rgba(7,22,39,0.58);

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

    border-radius: 14px;
}


.technology-group h3 {

    margin: 0 0 15px;

    color:
        var(--accent-light);

    font-size: 15px;
}


.technology-group div {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}


.technology-group span {

    padding:
        6px 10px;

    border-radius: 7px;

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

    color:
        var(--text-secondary);

    font-size: 11px;
}


/* =========================================================
   PORTFOLIO
========================================================= */

.portfolio-grid {

    display: grid;

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

    gap: 22px;
}


.project-card {

    padding: 30px;

    min-height: 330px;

    background:
        linear-gradient(
            145deg,
            rgba(10,30,50,0.78),
            rgba(5,17,30,0.68)
        );

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

    border-radius: 16px;

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


.project-card:hover {

    transform:
        translateY(-8px);

    border-color:
        var(--border-hover);
}


.project-category {

    color:
        var(--accent);

    font-size: 10px;

    letter-spacing: 1.7px;

    font-weight: 800;
}


.project-card h3 {

    margin:
        12px 0 20px;

    font-size: 21px;
}


.project-highlight {

    color:
        var(--accent-light);

    font-size: 38px;

    font-weight: 800;

    line-height: 1;
}


.project-highlight small {

    color:
        var(--text-muted);

    font-size: 12px;

    font-weight: 500;
}


.project-card p {

    color:
        var(--text-secondary);

    font-size: 14px;

    margin-top: 20px;
}


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

.why-grid {

    display: grid;

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

    gap: 18px;
}


.why-card {

    padding: 25px;

    background:
        rgba(7,22,39,0.55);

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

    border-radius: 14px;
}


.why-number {

    color:
        var(--accent);

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 18px;
}


.why-card h3 {

    font-size: 17px;

    margin: 0 0 8px;
}


.why-card p {

    margin: 0;

    color:
        var(--text-secondary);

    font-size: 13px;
}


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

.approach {

    display: flex;

    align-items: stretch;

    justify-content: center;
}


.approach-step {

    flex: 1;

    text-align: center;

    padding: 15px;
}


.approach-step span {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin:
        0 auto 15px;

    border-radius: 50%;

    color:
        var(--accent);

    border:
        1px solid
        rgba(54,207,255,0.30);

    background:
        rgba(54,207,255,0.08);

    font-weight: 800;
}


.approach-step h3 {

    margin: 0 0 6px;

    font-size: 16px;
}


.approach-step p {

    margin: 0;

    color:
        var(--text-muted);

    font-size: 12px;
}


.approach-line {

    width: 40px;

    height: 1px;

    margin-top: 39px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--accent),
            transparent
        );
}


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

.contact-container {

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 35px;

    position: relative;

    z-index: 2;
}


.contact-form,
.contact-info {

    padding: 30px;

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

    border-radius: 16px;

    background:
        rgba(5,19,34,0.68);
}


.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;
}


.form-group {

    margin-bottom: 18px;
}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color:
        var(--text-secondary);

    font-size: 12px;

    font-weight: 700;
}


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

    width: 100%;

    padding:
        13px 14px;

    color:
        white;

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

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

    border-radius: 9px;

    outline: none;

    font-family: inherit;

    font-size: 13px;

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


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

    color:
        #62778d;
}


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

    border-color:
        var(--accent);

    box-shadow:
        0 0 0 3px
        rgba(54,207,255,0.08);
}


.form-group textarea {

    resize:
        vertical;
}


.submit-btn {

    border: none;

    font-family: inherit;
}


.submit-btn:disabled {

    opacity: 0.6;

    cursor:
        not-allowed;
}


.contact-info h3 {

    margin:
        14px 0 8px;

    font-size: 25px;
}


.contact-description {

    color:
        var(--text-secondary);

    font-size: 14px;

    margin-bottom: 25px;
}


.contact-detail {

    display: flex;

    flex-direction: column;

    padding:
        15px 0;

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


.contact-detail strong {

    color:
        var(--text-muted);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}


.contact-detail span,
.contact-detail a {

    margin-top: 3px;

    color:
        var(--text-primary);

    font-size: 14px;

    text-decoration: none;
}


.contact-detail a:hover {

    color:
        var(--accent);
}


.success-message {

    display: none;

    margin-top: 18px;

    padding: 15px;

    border:
        1px solid
        rgba(57,230,162,0.25);

    border-radius: 10px;

    color:
        var(--success);

    background:
        rgba(57,230,162,0.06);

    font-size: 13px;
}


.success-message.show {

    display: flex;

    align-items: center;

    gap: 12px;
}


.success-icon {

    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(57,230,162,0.15);

    font-weight: 800;
}


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

footer {

    margin-top: 70px;

    border-top:
        1px solid
        rgba(120,190,255,0.12);

    background:
        rgba(2,10,20,0.85);
}


.footer-container {

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

    margin: auto;

    padding:
        38px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}


.footer-brand h3 {

    margin: 0;

    color:
        var(--accent);

    letter-spacing: 2px;
}


.footer-brand p {

    margin: 3px 0;

    color:
        var(--text-muted);

    font-size: 12px;
}


.footer-links,
.footer-social {

    display: flex;

    gap: 18px;
}


.footer-links a,
.footer-social a {

    color:
        var(--text-secondary);

    font-size: 12px;

    text-decoration: none;

    transition:
        color 0.3s ease;
}


.footer-links a:hover,
.footer-social a:hover {

    color:
        var(--accent);
}


.footer-bottom {

    max-width:
        var(--max-width);

    margin: auto;

    padding:
        18px 0;

    display: flex;

    justify-content: space-between;

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

    color:
        var(--text-muted);

    font-size: 10px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-button {

    position: fixed;

    right: 24px;

    bottom: 24px;

    z-index: 999;

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        11px 16px;

    color: white;

    background:
        #19a963;

    border-radius: 40px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

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

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


.whatsapp-button:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 12px 35px
        rgba(25,169,99,0.35);
}


.whatsapp-icon {

    font-size: 15px;
}


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

.reveal {

    opacity: 0;

    transform:
        translateY(35px);

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


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);
}


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

@media (max-width: 1100px) {

    .news-card {
        flex-basis:
            calc(
                (100% - 40px) / 3
            );
    }

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

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

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

    .hero-content {
        grid-template-columns:
            1fr;
    }

    .hero-visual {
        display: none;
    }

}


@media (max-width: 800px) {

    .site-header {

        margin:
            12px;

        padding:
            20px;
    }

    .header-container {

        flex-direction:
            column;

        text-align:
            center;
    }

    .company-text {
        text-align:
            center;
    }

    .nav-container {

        overflow-x:
            auto;

        justify-content:
            flex-start;

        scrollbar-width:
            none;
    }

    .nav-container::-webkit-scrollbar {
        display: none;
    }

    .nav-link {
        flex:
            0 0 auto;
    }

    .section {

        width:
            calc(100% - 24px);

        margin:
            35px auto;
    }

    .glass-section {

        padding:
            40px 20px;
    }

    .hero {

        padding:
            45px 25px;
    }

    .service-grid,
    .technology-grid,
    .portfolio-grid {

        grid-template-columns:
            1fr;
    }

    .metrics-grid {

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

    .metric {

        border-right:
            none;

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

    .approach {

        flex-direction:
            column;
    }

    .approach-line {

        width:
            1px;

        height:
            30px;

        margin:
            0 auto;
    }

    .contact-container {

        grid-template-columns:
            1fr;
    }

    .footer-container {

        flex-direction:
            column;

        text-align:
            center;
    }

    .footer-bottom {

        padding:
            18px;

        flex-direction:
            column;

        text-align:
            center;

        gap:
            5px;
    }

}


@media (max-width: 600px) {

    .news-card {

        flex-basis:
            100%;
    }

    .carousel {

        padding:
            8px 35px 20px;
    }

    .form-row {

        grid-template-columns:
            1fr;

        gap: 0;
    }

    .metrics-grid {

        grid-template-columns:
            1fr 1fr;
    }

    .hero-text h2 {

        letter-spacing:
            -1px;
    }

    .hero-buttons {

        flex-direction:
            column;
    }

    .btn {

        width:
            100%;
    }

    .whatsapp-text {

        display:
            none;
    }

    .whatsapp-button {

        width: 48px;
        height: 48px;

        justify-content:
            center;

        padding: 0;

        right: 18px;
        bottom: 18px;
    }

}