﻿/* =========================================================
   SAN ROBOTICS
   HOMEPAGE HERO
========================================================= */


/* =========================================================
   HERO CONTAINER
========================================================= */

.san-hero {

    position: relative;

    width: 100%;

    min-height: calc(100vh - 126px);

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--navy-dark);

    color: var(--white);

}


/* =========================================================
   BACKGROUND VIDEO
========================================================= */

.san-hero-video {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center center;

    z-index: 0;

}


/* =========================================================
   VIDEO OVERLAY
========================================================= */

.san-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(3,17,38,0.94) 0%,
            rgba(3,17,38,0.82) 28%,
            rgba(6,26,58,0.55) 52%,
            rgba(6,26,58,0.28) 75%,
            rgba(3,17,38,0.38) 100%
        );

}


/* =========================================================
   BOTTOM CINEMATIC GRADIENT
========================================================= */

.san-hero::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    height: 180px;

    z-index: 2;

    pointer-events: none;

    background:

        linear-gradient(
            to top,
            rgba(3,17,38,0.72),
            transparent
        );

}


/* =========================================================
   TECHNOLOGY GLOW
========================================================= */

.san-hero-glow {

    position: absolute;

    width: 650px;

    height: 650px;

    right: -220px;

    top: 50%;

    transform: translateY(-50%);

    z-index: 1;

    pointer-events: none;

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            rgba(18,155,239,0.16) 0%,
            rgba(69,217,255,0.07) 35%,
            transparent 70%
        );

    filter: blur(8px);

}


/* =========================================================
   HERO CONTENT CONTAINER
========================================================= */

.san-hero-container {

    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1450px;

    margin: 0 auto;

    padding: 90px 30px 110px;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.san-hero-content {

    width: 58%;

    max-width: 760px;

}


/* =========================================================
   BADGE
========================================================= */

.san-hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 15px;

    margin-bottom: 25px;

    border: 1px solid
        rgba(69,217,255,0.30);

    border-radius: 50px;

    background:
        rgba(3,17,38,0.42);

    backdrop-filter: blur(10px);

    color: var(--cyan-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

}


/* Badge glowing dot */

.san-badge-dot {

    width: 7px;

    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--cyan);

    box-shadow:

        0 0 6px var(--cyan),
        0 0 14px rgba(69,217,255,0.7);

    animation:
        sanBadgePulse 2s infinite;

}


/* =========================================================
   HERO HEADING
========================================================= */

.san-hero h1 {

    margin: 0 0 24px;

    font-family:
        'Space Grotesk',
        sans-serif;

    font-size:
        clamp(44px, 5.2vw, 76px);

    line-height: 1.02;

    font-weight: 700;

    letter-spacing: -2.5px;

    color: var(--white);

}


.san-hero h1 span {

    display: block;

    background:

        linear-gradient(
            90deg,
            var(--cyan),
            var(--blue-bright)
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.san-hero-description {

    max-width: 680px;

    margin: 0 0 32px;

    color:

        rgba(255,255,255,0.76);

    font-size: 16px;

    line-height: 1.8;

    font-weight: 400;

}


/* =========================================================
   BUTTONS
========================================================= */

.san-hero-buttons {

    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

}


/* Base */

.san-hero-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 13px 23px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    transition:
        all 0.35s ease;

}


/* Primary */

.san-hero-btn-primary {

    color: var(--white);

    background:

        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-bright)
        );

    box-shadow:

        0 10px 30px
        rgba(8,126,209,0.35);

}


.san-hero-btn-primary:hover {

    color: var(--white);

    transform:
        translateY(-4px);

    box-shadow:

        0 16px 38px
        rgba(8,126,209,0.50);

}


/* Outline */

.san-hero-btn-outline {

    color: var(--white);

    border:
        1px solid
        rgba(255,255,255,0.30);

    background:
        rgba(255,255,255,0.07);

    backdrop-filter:
        blur(12px);

}


.san-hero-btn-outline:hover {

    color: var(--white);

    border-color:
        var(--cyan);

    background:
        rgba(69,217,255,0.10);

    transform:
        translateY(-4px);

}


/* Button icons */

.san-hero-btn i {

    font-size: 11px;

    transition:
        transform 0.3s ease;

}


.san-hero-btn:hover i {

    transform:
        translateX(4px);

}


/* =========================================================
   HERO HIGHLIGHTS
========================================================= */

.san-hero-highlights {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 42px;

}


.san-highlight {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        rgba(255,255,255,0.68);

    font-size: 11px;

    font-weight: 600;

}


.san-highlight i {

    color: var(--cyan);

    font-size: 13px;

}


.san-highlight-divider {

    width: 1px;

    height: 17px;

    background:
        rgba(255,255,255,0.22);

}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.san-hero-scroll {

    position: absolute;

    z-index: 6;

    left: 50%;

    bottom: 22px;

    transform:
        translateX(-50%);

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,0.45);

    font-size: 8px;

    letter-spacing: 2px;

}


.san-scroll-line {

    width: 42px;

    height: 1px;

    background:

        linear-gradient(
            90deg,
            var(--cyan),
            transparent
        );

}


.san-hero-scroll i {

    color: var(--cyan);

    font-size: 9px;

    animation:
        sanScrollBounce 1.8s infinite;

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes sanBadgePulse {

    0%,
    100% {

        opacity: 1;

        box-shadow:
            0 0 6px var(--cyan),
            0 0 14px rgba(69,217,255,0.7);

    }

    50% {

        opacity: 0.45;

        box-shadow:
            0 0 3px var(--cyan);

    }

}


@keyframes sanScrollBounce {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(5px);

    }

}


/* =========================================================
   LARGE SCREEN
========================================================= */

@media (min-width: 1500px) {

    .san-hero-container {

        padding-left: 45px;

        padding-right: 45px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .san-hero {

        min-height:
            calc(100vh - 113px);

    }


    .san-hero-video {

        object-position:
            60% center;

    }


    .san-hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(3,17,38,0.93),
                rgba(3,17,38,0.65)
            );

    }


    .san-hero-content {

        width: 72%;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .san-hero {

        min-height:
            calc(100vh - 75px);

        align-items: center;

    }


    .san-hero-video {

        object-position:
            65% center;

    }


    .san-hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(3,17,38,0.94),
                rgba(3,17,38,0.74)
            );

    }


    .san-hero-container {

        padding:
            65px 20px 90px;

    }


    .san-hero-content {

        width: 100%;

        max-width: 620px;

    }


    .san-hero h1 {

        font-size:
            clamp(38px, 11vw, 56px);

        letter-spacing:
            -1.5px;

    }


    .san-hero-description {

        font-size: 14px;

        line-height: 1.7;

    }


    .san-hero-highlights {

        gap: 10px;

        margin-top: 30px;

    }


    .san-highlight-divider {

        display: none;

    }


    .san-highlight {

        padding:
            7px 10px;

        border:
            1px solid
            rgba(255,255,255,0.10);

        border-radius: 30px;

        background:
            rgba(255,255,255,0.05);

    }


    .san-hero-scroll {

        display: none;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .san-hero-container {

        padding:
            50px 18px 70px;

    }


    .san-hero-badge {

        font-size: 9px;

        letter-spacing: .7px;

    }


    .san-hero h1 {

        font-size: 38px;

    }


    .san-hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .san-hero-btn {

        width: 100%;

    }


    .san-hero-highlights {

        justify-content: center;

    }

}


/* =========================================================
   VISION & MISSION
========================================================= */

.san-purpose-section {

    position: relative;

    overflow: hidden;

    padding: 120px 0;

    background:
        linear-gradient(
            180deg,
            #F5FAFF 0%,
            #FFFFFF 100%
        );

}


/* =========================================================
   DECORATIVE GRID
========================================================= */

.purpose-grid {

    position: absolute;

    inset: 0;

    opacity: 0.45;

    pointer-events: none;

    background-image:

        linear-gradient(
            rgba(8,126,209,0.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(8,126,209,0.035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

}


/* =========================================================
   GLOW
========================================================= */

.purpose-glow {

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(80px);

}


.purpose-glow-left {

    left: -280px;

    top: 100px;

    background:
        rgba(8,126,209,0.08);

}


.purpose-glow-right {

    right: -280px;

    bottom: 50px;

    background:
        rgba(69,217,255,0.10);

}


/* =========================================================
   CONTAINER
========================================================= */

.purpose-container {

    position: relative;

    z-index: 2;

    max-width: 1250px;

    margin: auto;

    padding: 0 30px;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.purpose-heading {

    max-width: 780px;

    margin: 0 auto 65px;

    text-align: center;

}


.section-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

}


.section-eyebrow span {

    width: 28px;

    height: 2px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );

}


.purpose-heading h2 {

    margin: 0 0 20px;

    font-family:
        'Space Grotesk',
        sans-serif;

    font-size:
        clamp(36px, 4vw, 54px);

    line-height: 1.08;

    letter-spacing: -1.5px;

    color: var(--navy);

}


.purpose-heading h2 span {

    display: block;

    background:

        linear-gradient(
            90deg,
            var(--blue),
            var(--blue-bright),
            var(--cyan)
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}


.purpose-heading > p {

    max-width: 650px;

    margin: auto;

    color: var(--text-light);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   CARDS
========================================================= */

.purpose-cards {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 25px;

}


/* =========================================================
   PURPOSE CARD
========================================================= */

.purpose-card {

    position: relative;

    overflow: hidden;

    padding: 42px;

    border:
        1px solid
        rgba(8,126,209,0.12);

    border-radius: 22px;

    background:
        rgba(255,255,255,0.88);

    box-shadow:
        0 20px 60px
        rgba(3,17,38,0.07);

    transition:
        all 0.45s ease;

}


/* Top colored line */

.purpose-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 3px;

    background:

        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform 0.45s ease;

}


.purpose-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 30px 75px
        rgba(3,17,38,0.12);

}


.purpose-card:hover::before {

    transform:
        scaleX(1);

}


/* =========================================================
   CARD TOP
========================================================= */

.purpose-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 28px;

}


.purpose-icon {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 16px;

    color: var(--white);

    font-size: 21px;

    background:

        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-bright)
        );

    box-shadow:
        0 10px 25px
        rgba(8,126,209,0.25);

    transition:
        transform 0.4s ease;

}


.purpose-card:hover .purpose-icon {

    transform:
        rotate(-5deg)
        scale(1.08);

}


.purpose-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--navy);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.purpose-label span {

    color: var(--cyan);

    font-size: 12px;

}


/* =========================================================
   CARD HEADING
========================================================= */

.purpose-card h3 {

    max-width: 470px;

    margin: 0 0 20px;

    font-family:
        'Space Grotesk',
        sans-serif;

    color: var(--navy);

    font-size: 27px;

    line-height: 1.25;

    letter-spacing: -0.5px;

}


/* =========================================================
   CARD TEXT
========================================================= */

.purpose-card p {

    margin: 0 0 16px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.85;

}


/* =========================================================
   MISSION STATEMENT
========================================================= */

.mission-statement {

    position: relative;

    padding: 25px 25px 25px 30px;

    margin-bottom: 25px !important;

    border-left:
        3px solid
        var(--cyan);

    border-radius:
        0 12px 12px 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,126,209,0.07),
            rgba(69,217,255,0.025)
        );

    color:
        var(--navy) !important;

    font-family:
        'Space Grotesk',
        sans-serif;

    font-size: 15px !important;

    line-height: 1.8 !important;

}


/* =========================================================
   MISSION POINTS
========================================================= */

.mission-points {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 10px;

    margin-top: 25px;

    margin-bottom: 28px;

}


.mission-points > div {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px;

    border:
        1px solid
        rgba(8,126,209,0.08);

    border-radius: 10px;

    background:
        rgba(245,250,255,0.7);

    color: var(--text);

    font-size: 12px;

    font-weight: 600;

    transition:
        all 0.3s ease;

}


.mission-points > div:hover {

    transform:
        translateX(4px);

    border-color:
        rgba(8,126,209,0.2);

    background:
        rgba(8,126,209,0.05);

}


.mission-points i {

    color: var(--blue);

    font-size: 14px;

}


/* =========================================================
   CARD DIVIDER
========================================================= */

.purpose-card-line {

    width: 100%;

    height: 1px;

    margin: 28px 0 18px;

    background:
        linear-gradient(
            90deg,
            rgba(8,126,209,0.18),
            transparent
        );

}


/* =========================================================
   CARD FOOTER
========================================================= */

.purpose-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: var(--blue);

    font-size: 11px;

    font-weight: 700;

}


.purpose-bottom span:first-child {

    display: flex;

    align-items: center;

    gap: 8px;

}


.purpose-bottom i {

    color: var(--cyan);

}


.purpose-bottom > span:last-child {

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(8,126,209,0.07);

    transition:
        all 0.3s ease;

}


.purpose-card:hover
.purpose-bottom > span:last-child {

    color: var(--white);

    background:
        var(--blue);

    transform:
        rotate(45deg);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .san-purpose-section {

        padding: 90px 0;

    }


    .purpose-cards {

        grid-template-columns:
            1fr;

    }


    .purpose-card {

        padding: 35px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .san-purpose-section {

        padding: 75px 0;

    }


    .purpose-container {

        padding:
            0 18px;

    }


    .purpose-heading {

        margin-bottom: 45px;

    }


    .purpose-heading h2 {

        font-size: 36px;

    }


    .purpose-heading > p {

        font-size: 14px;

    }


    .purpose-card {

        padding: 28px 22px;

        border-radius: 18px;

    }


    .purpose-card h3 {

        font-size: 24px;

    }


    .purpose-card p {

        font-size: 13px;

        line-height: 1.75;

    }


    .mission-points {

        grid-template-columns:
            1fr;

    } 




    .mission-statement {

        padding:
            20px;

        font-size: 14px !important;

    }

}