﻿/* =========================================================
   SAMRUDDHI AGRI TECH
   PROFESSIONAL FULL SCREEN VIDEO HERO
   NO BLACK OVERLAY
   DESKTOP + TABLET + MOBILE
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.sat-hero {
    width: 100%;
    height: calc(100vh - 186px);
    min-height: 560px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #eef5ed;
}


/* =========================================================
   VIDEO
   ========================================================= */

.sat-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    background: #eef5ed;
}


/* =========================================================
   IMPORTANT:
   NO BLACK OVERLAY
   Only extremely subtle readability treatment.
   Video remains clearly visible.
   ========================================================= */

.sat-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient( 90deg, rgba(255,255,255,.16) 0%, rgba(255,255,255,.07) 28%, rgba(255,255,255,0) 55% );
}


/* =========================================================
   HERO CONTAINER
   ========================================================= */

.sat-hero-container {
    width: min(1320px, calc(100% - 40px));
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.sat-hero-content {
    max-width: 720px;
    padding-top: 10px;
    pointer-events: auto;
    text-align: left;
    animation: satHeroContentIn .9s cubic-bezier(.2,.8,.2,1) both;
}


@keyframes satHeroContentIn {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   KICKER
   ========================================================= */

.sat-hero-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
    color: #075c3c;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.3px;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(255,255,255,.95);
}


.sat-kicker-line {
    width: 34px;
    height: 3px;
    flex: 0 0 34px;
    border-radius: 20px;
    background: #f2a000;
}


/* =========================================================
   MAIN TITLE
   ========================================================= */

.sat-hero-title {
    margin: 0;
    color: #075c3c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 7vw, 100px);
    font-weight: 800;
    line-height: .88;
    letter-spacing: -3px;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(255,255,255,.92), 0 5px 25px rgba(255,255,255,.55);
}


    .sat-hero-title span {
        display: block;
        margin-top: 10px;
        color: #06356f;
        font-size: clamp(38px, 5.2vw, 74px);
        letter-spacing: -2px;
    }


/* =========================================================
   SUBTITLE
   ========================================================= */

.sat-hero-subtitle {
    max-width: 620px;
    margin: 27px 0 0;
    color: #163d2d;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: clamp(15px, 1.5vw, 20px);
    font-weight: 650;
    line-height: 1.55;
    text-shadow: 0 1px 9px rgba(255,255,255,.95), 0 2px 15px rgba(255,255,255,.55);
}


/* =========================================================
   BUTTON AREA
   ========================================================= */

.sat-hero-buttons {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 31px;
    flex-wrap: wrap;
}


/* =========================================================
   COMMON BUTTON
   ========================================================= */

.sat-hero-btn {
    min-height: 51px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 8px;
    text-decoration: none !important;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: .2px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}


/* =========================================================
   PRIMARY BUTTON
   ========================================================= */

.sat-hero-btn-primary {
    color: #ffffff;
    background: linear-gradient( 135deg, #087b4d, #05623d );
    box-shadow: 0 9px 25px rgba(5,98,61,.28);
}


    .sat-hero-btn-primary:hover {
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 13px 30px rgba(5,98,61,.35);
    }


    .sat-hero-btn-primary i {
        transition: transform .25s ease;
    }


    .sat-hero-btn-primary:hover i {
        transform: translateX(4px);
    }


/* =========================================================
   SECONDARY BUTTON
   ========================================================= */

.sat-hero-btn-secondary {
    color: #06356f;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.95);
    box-shadow: 0 7px 22px rgba(0,30,60,.12);
    backdrop-filter: blur(6px);
}


    .sat-hero-btn-secondary:hover {
        color: #06356f;
        background: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(0,30,60,.18);
    }


/* =========================================================
   AUDIO CONTROL
   ========================================================= */

.sat-audio-control {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 20;
    min-width: 128px;
    height: 46px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 30px;
    color: #173d32;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,.14);
    cursor: pointer;
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}


    .sat-audio-control:hover {
        transform: translateY(-2px);
        background: rgba(255,255,255,.98);
        box-shadow: 0 11px 28px rgba(0,0,0,.18);
    }


/* =========================================================
   AUDIO ICON
   ========================================================= */

.sat-audio-icon {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #087b4d;
    font-size: 12px;
}


/* =========================================================
   SCROLL INDICATOR
   ========================================================= */

.sat-scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 23px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transform: translateX(-50%);
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0,0,0,.65);
    pointer-events: none;
}


.sat-scroll-text {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
    white-space: nowrap;
}


.sat-scroll-arrow {
    font-size: 20px;
    line-height: 1;
    animation: satScrollBounce 1.6s ease-in-out infinite;
}


@keyframes satScrollBounce {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1150px) {

    .sat-hero {
        height: calc(100vh - 180px);
        min-height: 520px;
    }

    .sat-hero-container {
        width: calc(100% - 34px);
    }

    .sat-hero-content {
        max-width: 620px;
    }

    .sat-hero-title {
        font-size: clamp(48px, 7vw, 78px);
    }

        .sat-hero-title span {
            font-size: clamp(35px, 5vw, 58px);
        }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 850px) {

    .sat-hero {
        /*
           Use dynamic viewport height
           for modern mobile browsers.
        */

        height: calc(100svh - 148px);
        min-height: 500px;
        max-height: none;
    }


    .sat-hero-video {
        object-position: center center;
    }


    .sat-hero-gradient {
        /*
           Still NOT black.
           Extremely light readability gradient.
        */

        background: linear-gradient( 180deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 42%, rgba(255,255,255,.10) 100% );
    }


    .sat-hero-container {
        width: calc(100% - 28px);
        align-items: flex-end;
        padding-bottom: 92px;
    }


    .sat-hero-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }


    .sat-hero-kicker {
        justify-content: center;
        gap: 7px;
        margin-bottom: 12px;
        font-size: 8px;
        letter-spacing: 1.2px;
    }


    .sat-kicker-line {
        width: 20px;
        flex-basis: 20px;
        height: 2px;
    }


    .sat-hero-title {
        font-size: clamp(38px, 12vw, 62px);
        line-height: .9;
        letter-spacing: -1.5px;
    }


        .sat-hero-title span {
            margin-top: 5px;
            font-size: clamp(28px, 8.5vw, 45px);
            letter-spacing: -1px;
        }


    .sat-hero-subtitle {
        max-width: 470px;
        margin: 15px auto 0;
        font-size: 13px;
        line-height: 1.4;
    }


    .sat-hero-buttons {
        justify-content: center;
        margin-top: 20px;
        gap: 8px;
    }


    .sat-hero-btn {
        min-height: 44px;
        padding: 0 17px;
        border-radius: 7px;
        font-size: 12px;
    }


    .sat-audio-control {
        right: 14px;
        bottom: 16px;
        min-width: 45px;
        width: 45px;
        height: 45px;
        padding: 0;
        gap: 0;
    }


    .sat-audio-text {
        display: none;
    }


    .sat-audio-icon {
        width: 28px;
        height: 28px;
    }


    .sat-scroll-indicator {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .sat-hero {
        height: calc(100svh - 137px);
        min-height: 470px;
    }


    .sat-hero-container {
        width: calc(100% - 20px);
        padding-bottom: 77px;
    }


    .sat-hero-kicker {
        font-size: 7px;
        letter-spacing: .9px;
    }


    .sat-hero-title {
        font-size: clamp(34px, 12vw, 51px);
    }


        .sat-hero-title span {
            font-size: clamp(25px, 8.5vw, 39px);
        }


    .sat-hero-subtitle {
        font-size: 11px;
        max-width: 340px;
    }


    .sat-hero-buttons {
        margin-top: 16px;
    }


    .sat-hero-btn {
        min-height: 40px;
        padding: 0 13px;
        font-size: 11px;
    }


    .sat-audio-control {
        right: 10px;
        bottom: 10px;
        width: 41px;
        min-width: 41px;
        height: 41px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 360px) {

    .sat-hero {
        min-height: 450px;
    }


    .sat-hero-container {
        padding-bottom: 67px;
    }


    .sat-hero-subtitle {
        display: none;
    }


    .sat-hero-buttons {
        margin-top: 15px;
    }


    .sat-hero-btn {
        min-height: 38px;
        padding: 0 11px;
        font-size: 10px;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .sat-hero-content,
    .sat-scroll-arrow {
        animation: none !important;
    }

    .sat-hero-btn,
    .sat-audio-control {
        transition: none !important;
    }
}
