﻿/* =========================================================
   RADHIKA SEEDS
   HERO SECTION
   ORIGINAL VIDEO - CRYSTAL CLEAR
   ========================================================= */

.hero-section {
    position: relative;
    width: 100%;
    height: min(760px, 88vh);
    min-height: 600px;
    overflow: hidden;
    background: #111;
}


/* =========================================================
   VIDEO CONTAINER
   ========================================================= */

.hero-background-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}


/* =========================================================
   ORIGINAL VIDEO
   NO BLUR
   NO FILTER
   NO OPACITY
   NO OVERLAY
   ========================================================= */

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    display: block;
    border: 0;
    margin: 0;
    padding: 0;
    background: #111;
    object-fit: cover;
    object-position: center center;
    filter: none !important;
    opacity: 1 !important;
    visibility: visible;
}


/* =========================================================
   IMPORTANT
   REMOVE ALL OVERLAY EFFECTS
   ========================================================= */

.hero-background-video::before,
.hero-background-video::after {
    display: none !important;
    content: none !important;
}


.hero-video-fallback {
    display: none !important;
}


/* =========================================================
   CONTENT WRAPPER
   NOT A VIDEO OVERLAY
   ========================================================= */

.hero-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
}


.hero-content {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    pointer-events: none;
}


.hero-text {
    width: min(620px, 100%);
    padding: 30px 34px;
    border-radius: 14px;
    /*
       VERY LIGHT GLASS EFFECT.
       THIS DOES NOT TOUCH THE VIDEO.
    */

    background: rgba(10, 25, 40, .48);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    backdrop-filter: none;
}


/* =========================================================
   TITLE
   ========================================================= */

.hero-title {
    margin: 0;
    padding: 0;
    line-height: 1.05;
}


.highlight-text {
    display: block;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 3px 12px rgba(0,0,0,.35);
}


.sub-heading {
    display: block;
    margin-top: 9px;
    color: #f5d58c;
    font-size: clamp(18px, 2.2vw, 29px);
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}


/* =========================================================
   SLOGAN SLIDER
   ========================================================= */

.slogan-slider {
    position: relative;
    margin-top: 23px;
    width: 100%;
    overflow: hidden;
}


.slogan-slider-wrapper {
    position: relative;
    min-height: 45px;
}


.slogan-slide {
    display: none;
    align-items: center;
    gap: 10px;
}


    .slogan-slide.active {
        display: flex;
        animation: heroSloganIn .45s ease;
    }


@keyframes heroSloganIn {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.slogan-icon {
    flex: 0 0 auto;
    color: #f3c76b;
    font-size: 18px;
}


.slogan-text {
    margin: 0;
    color: #ffffff;
    font-size: clamp(13px, 1.5vw, 17px);
    line-height: 1.5;
    font-weight: 700;
    text-shadow: 0 2px 7px rgba(0,0,0,.4);
}


/* =========================================================
   DOTS
   ========================================================= */

.slogan-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
}


.slogan-dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
}


    .slogan-dot.active {
        width: 19px;
        border-radius: 10px;
        background: #f3c76b;
    }


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}


.hero-button,
.hero-button-secondary {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border-radius: 7px;
    text-decoration: none !important;
    font-size: 11px;
    font-weight: 900;
    transition: transform .2s ease, background .2s ease;
    pointer-events: auto;
}


.hero-button {
    color: #172331 !important;
    background: #f3c76b;
}


    .hero-button:hover {
        color: #172331 !important;
        background: #f8d88f;
        transform: translateY(-2px);
    }


.button-icon {
    display: inline-flex;
}


.hero-button-secondary {
    color: #ffffff !important;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.6);
}


    .hero-button-secondary:hover {
        color: #172331 !important;
        background: #ffffff;
        transform: translateY(-2px);
    }


/* =========================================================
   VIDEO PROGRESS
   ========================================================= */

.video-progress-container {
    position: absolute;
    z-index: 7;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    width: min(380px, calc(100% - 40px));
}


.video-progress-bar {
    width: 100%;
    height: 2px;
    overflow: hidden;
    background: rgba(255,255,255,.35);
}


.progress-fill {
    width: 0;
    height: 100%;
    background: #f3c76b;
}


.video-progress-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}


.video-progress-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,.55);
}


    .video-progress-dot.active {
        background: #f3c76b;
    }


/* =========================================================
   SCROLL
   ========================================================= */

.hero-scroll-indicator {
    position: absolute;
    z-index: 7;
    right: 24px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}


.scroll-text {
    color: #ffffff;
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.scroll-line {
    width: 1px;
    height: 38px;
    background: rgba(255,255,255,.7);
    animation: heroScroll 1.5s infinite;
}


@keyframes heroScroll {

    0%, 100% {
        opacity: .35;
        transform: scaleY(.7);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}


/* =========================================================
   LOAD ANIMATION
   ========================================================= */

.animate-on-load {
    animation: heroContentIn .7s ease both;
}


.delay-1 {
    animation-delay: .15s;
}


.delay-2 {
    animation-delay: .3s;
}


@keyframes heroContentIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .hero-section {
        height: 720px;
        min-height: 600px;
    }


    .hero-content {
        width: calc(100% - 32px);
    }


    .hero-text {
        width: min(590px, 100%);
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .hero-section {
        height: 700px;
        min-height: 650px;
    }


    /*
       Keep video completely clear.
       Do not add overlay or blur.
    */

    .hero-video {
        object-fit: cover;
        object-position: center center;
    }


    .hero-content-wrapper {
        align-items: center;
    }


    .hero-content {
        width: calc(100% - 24px);
    }


    .hero-text {
        width: 100%;
        box-sizing: border-box;
        padding: 25px 20px;
        border-radius: 12px;
        background: rgba(10,25,40,.45);
    }


    .highlight-text {
        font-size: clamp(38px, 11vw, 52px);
    }


    .sub-heading {
        font-size: clamp(17px, 5vw, 23px);
    }


    .slogan-slider {
        margin-top: 18px;
    }


    .slogan-slider-wrapper {
        min-height: 60px;
    }


    .slogan-text {
        font-size: 13px;
    }


    .slogan-icon {
        font-size: 16px;
    }


    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }


    .hero-button,
    .hero-button-secondary {
        width: 100%;
        box-sizing: border-box;
        padding: 0 9px;
        min-height: 44px;
        font-size: 10px;
    }


    .video-progress-container {
        bottom: 18px;
        width: calc(100% - 90px);
    }


    .hero-scroll-indicator {
        right: 10px;
        bottom: 19px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .hero-section {
        height: 680px;
        min-height: 620px;
    }


    .hero-content {
        width: calc(100% - 18px);
    }


    .hero-text {
        padding: 22px 16px;
    }


    .highlight-text {
        font-size: 39px;
    }


    .sub-heading {
        font-size: 17px;
    }


    .slogan-text {
        font-size: 12px;
    }


    .hero-actions {
        grid-template-columns: 1fr;
    }


    .hero-button,
    .hero-button-secondary {
        min-height: 42px;
    }


    .video-progress-container {
        width: calc(100% - 65px);
    }
}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 350px) {

    .hero-section {
        height: 650px;
    }


    .hero-text {
        padding: 19px 13px;
    }


    .highlight-text {
        font-size: 34px;
    }


    .sub-heading {
        font-size: 15px;
    }


    .slogan-text {
        font-size: 11px;
    }
}
