/* ========================================
   HERO BANNER SLIDER - MODERN DESIGN
   (Gradient overlay version — duplicate
   rule block from the original file removed)
   ======================================== */

/* .hero-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
     height: 100vh;
}

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #122560F0;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 750px;
   display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: #fff;
    text-align: center !important;
}

.hero-content.text-left {
    text-align: left !important;
}

.hero-content.text-center {
    text-align: center !important;
}

.hero-content.text-right {
    text-align: right !important;
}


.hero-btn {
       display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #f58220;
    color: #fff;
    text-decoration: none;
    border-radius: 200px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
} */
/* ========================================
   HERO BANNER SLIDER - MODERN DESIGN
   ======================================== */
/* ========================================
   HERO BANNER SLIDER - LAYOUT MATCHING SCREENSHOT
   ======================================== */

:root {
    --color-dark-blue: #0f1b3c;
    --color-accent: #f58220;
    --color-white: #ffffff;
    --color-text-light: rgba(255, 255, 255, 0.9);
    --overlay-bg: rgba(18, 37, 96, 0.85);
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    width: 100%;
    position: relative;
}

/* ========================================
   HERO BANNER - MUST HAVE HEIGHT
   ======================================== */
.hero-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

/* ========================================
   BACKGROUND MEDIA - VIDEO & IMAGE
   ======================================== */
.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video {
    display: block;
}

/* ========================================
   OVERLAY
   ======================================== */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--overlay-bg);
}

/* ========================================
   CENTER LOADING SPINNER
   ======================================== */
.hero-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    width: 70px;
    height: 70px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #00d4ff;
    border-right-color: #00d4ff;
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   HERO CONTENT - MAIN LAYOUT
   ======================================== */
/* ========================================
   HERO BANNER SLIDER - GRADIENT OVERLAY
   ======================================== */

:root {
    --color-dark-blue: #0f1b3c;
    --color-accent: #f58220;
    --color-white: #ffffff;
    --color-text-light: rgba(255, 255, 255, 0.9);
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    width: 100%;
    position: relative;
}

/* ========================================
   HERO BANNER - MUST HAVE HEIGHT
   ======================================== */
.hero-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

/* ========================================
   BACKGROUND MEDIA - VIDEO & IMAGE
   ======================================== */
.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video {
    display: block;
}

/* ========================================
   OVERLAY - GRADIENT (Dark at bottom)
   ======================================== */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Gradient: Transparent at top → Dark at bottom */
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,        /* Transparent at top - video shows clearly */
        rgba(0, 0, 0, 0.1) 30%,     /* Very slight fade */
        rgba(0, 0, 0, 0.3) 50%,     /* Medium fade */
        rgba(18, 37, 96, 0.8) 85%,  /* Dark blue at bottom */
        rgba(18, 37, 96, 0.9) 100%  /* Darkest at very bottom */
    );
}

/* ========================================
   CENTER LOADING SPINNER
   ======================================== */
.hero-center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    width: 70px;
    height: 70px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: #00d4ff;
    border-right-color: #00d4ff;
    border-radius: 50%;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   HERO CONTENT - MAIN LAYOUT
   ======================================== */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    padding: 80px;
    color: var(--color-white);
}

/* LEFT ALIGNMENT (Default) */
.hero-content.hero-content-left {
    grid-template-columns: 1fr 1fr;
    text-align: left;
}

/* CENTER ALIGNMENT */
.hero-content.hero-content-center {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
    text-align: center;
}

/* RIGHT ALIGNMENT */
.hero-content.hero-content-right {
    grid-template-columns: 1fr 1fr;
    text-align: right;
}

.hero-content.hero-content-right .hero-left-section {
    order: 2;
}

.hero-content.hero-content-right .hero-right-section {
    order: 1;
}

/* ========================================
   LEFT SECTION - TITLE & SUBTITLE
   ======================================== */
.hero-left-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
    padding-left: 40px;
    margin-bottom: 3px;
}

/* Eyebrow/Subtitle */
.hero-eyebrow {
    font-size: 50px;
    font-weight: 400;
    color: var(--color-text-light);
    letter-spacing: 0.5px;
    margin: 0;
    font-style: Racing Sans One;
}

/* Main Title */
.hero-title {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
    margin: 0;
    font-style: Poppins;
}
.hero-title-accent {
    font-family: 'Racing Sans One', cursive;
    font-weight: 400;
    font-size: 50px;
}

/* ========================================
   RIGHT SECTION - DESCRIPTION & CTA
   ======================================== */
.hero-right-section {
    display: flex;
    flex-direction: column;
    gap: 13px;
    justify-content: flex-start;
    animation: fadeInUp 0.8s ease 0.4s both;
    padding-left: 169px;
}

/* Description */
.hero-description {
    font-size: 14px;
    line-height: 1.3;
    color: var(--color-text-light);
}

.hero-description p {
    margin: 0;
    font-size: 17.28px;
}

/* ========================================
   CTA BUTTONS
   ======================================== */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 2px 15px;   /* Reduced height */
    color: var(--color-white);
    text-decoration: none;
    border-radius: 24px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1.2;
}

/* Primary Button (Orange) */
.hero-btn-primary {
    background: var(--color-accent);
    color: #122560;
    font-weight: 500;
    font-family: poppins;
    font-size: 14px;
}

.hero-btn-primary:hover {
    background: #FF9A48;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(245, 130, 32, 0.3);
}

/* Secondary Button (Outline) */
.hero-btn-secondary {
    background: transparent;
    border: 1.5px solid var(--color-white);
    color: var(--color-white);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-3px);
}

.btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ========================================
   CENTER LAYOUT ADJUSTMENTS
   ======================================== */
.hero-content.hero-content-center .hero-left-section {
    max-width: 700px;
    text-align: center;
}

.hero-content.hero-content-center .hero-right-section {
    align-items: center;
    max-width: 600px;
}

.hero-content.hero-content-center .hero-buttons {
    justify-content: center;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 100;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
/* =========================================================
   RESPONSIVE OVERRIDES
   ADD THIS ONLY AT THE VERY END OF YOUR EXISTING CSS FILE
   ========================================================= */


/* =========================================================
   LARGE LAPTOP / DESKTOP
   1441px AND ABOVE
   KEEP ORIGINAL DESIGN
   ========================================================= */

@media screen and (min-width: 1441px) {

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        padding: 80px;
        align-items: end;
    }

    .hero-left-section {
        padding-left: 40px;
        margin-bottom: 3px;
    }

    .hero-right-section {
        padding-left: 169px;
        gap: 13px;
    }

    .hero-title,
    .hero-title-accent,
    .hero-eyebrow {
        font-size: 50px;
    }
}


/* =========================================================
   NORMAL LAPTOP
   1025px - 1440px
   SAME TWO-COLUMN DESIGN
   ========================================================= */

@media screen and (min-width: 1025px) and (max-width: 1440px) {

    .hero-banner {
        height: 100vh;
        min-height: 600px;
    }

    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 60px 50px;
        align-items: end;
    }

    .hero-content.hero-content-left,
    .hero-content.hero-content-right {
        grid-template-columns: 1fr 1fr;
    }

    .hero-left-section {
        padding-left: 20px;
        gap: 18px;
    }

    .hero-right-section {
        padding-left: 60px;
        gap: 13px;
    }

    .hero-title,
    .hero-title-accent {
        font-size: 46px;
    }

    .hero-eyebrow {
        font-size: 46px;
    }

    .hero-description p {
        font-size: 16px;
        line-height: 1.4;
    }
}


/* =========================================================
   TABLET LANDSCAPE
   769px - 1024px
   KEEP TWO COLUMNS LIKE LAPTOP
   ========================================================= */

@media screen and (min-width: 769px) and (max-width: 1024px) {

    .hero-banner {
        height: 100vh;
        min-height: 600px;
    }

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 50px 35px;
        align-items: end;
    }

    .hero-content.hero-content-left,
    .hero-content.hero-content-right {
        grid-template-columns: 1fr 1fr;
    }

    .hero-left-section {
        padding-left: 10px;
        gap: 15px;
    }

    .hero-right-section {
        padding-left: 20px;
        gap: 15px;
    }

    .hero-title,
    .hero-title-accent {
        font-size: 38px;
    }

    .hero-eyebrow {
        font-size: 38px;
    }

    .hero-description p {
        font-size: 15px;
        line-height: 1.4;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero-btn {
        width: auto;
        border-radius: 24px;
    }
}


/* =========================================================
   TABLET PORTRAIT / LARGE ANDROID
   481px - 768px
   ========================================================= */

@media screen and (min-width: 481px) and (max-width: 768px) {

    .hero-banner {
        height: 100vh;
        min-height: 650px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: stretch;
        padding: 40px 30px 50px;
        gap: 25px;
    }

    .hero-left-section {
        padding-left: 0;
        margin-bottom: 0;
        gap: 10px;
    }

    .hero-right-section {
        padding-left: 0;
        gap: 18px;
    }

    .hero-title,
    .hero-title-accent {
        font-size: 36px;
        line-height: 1.15;
    }

    .hero-eyebrow {
        font-size: 36px;
        line-height: 1.1;
    }

    .hero-description p {
        font-size: 15px;
        line-height: 1.5;
    }
      .hero-description br {
        display: none;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-btn {
        width: auto;
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 24px;
    }
}


/* =========================================================
   ANDROID MOBILE
   UP TO 480px
   ========================================================= */

@media screen and (max-width: 480px) {

    .hero-banner {
        height: 100svh;
        min-height: 650px;
    }

    .hero-video,
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: stretch;
        width: 100%;
        height: 100%;
        padding: 30px 20px 40px;
        gap: 18px;
    }

    .hero-left-section {
        width: 100%;
        padding-left: 0;
        margin-bottom: 0;
        gap: 8px;
    }

    .hero-right-section {
        width: 100%;
        padding-left: 0;
        gap: 15px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 1.15;
    }

    .hero-title-accent {
        font-size: 30px;
        line-height: 1.15;
    }

    .hero-eyebrow {
        font-size: 30px;
        line-height: 1.1;
    }

    .hero-description {
        line-height: 1.5;
    }

    .hero-description p {
        font-size: 14px;
        line-height: 1.5;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-btn {
        width: auto;
        min-height: 38px;
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 24px;
    }

    .hero-center-icon {
        width: 60px;
        height: 60px;
    }

    .loading-spinner {
        width: 50px;
        height: 50px;
    }
}


/* =========================================================
   VERY SMALL ANDROID
   UP TO 360px
   ========================================================= */

@media screen and (max-width: 360px) {

    .hero-content {
        padding: 25px 16px 30px;
        gap: 15px;
    }

    .hero-title,
    .hero-title-accent,
    .hero-eyebrow {
        font-size: 26px;
    }

    .hero-description p {
        font-size: 15px;
    }

    .hero-btn {
        padding: 7px 13px;
        font-size: 11px;
    }
}