/* =========================
HERO SECTION BACKGROUND
========================= */
/* =========================
HERO SECTION BACKGROUND
========================= */
html, body {
    overflow-x: hidden;
}
body {
    padding-top: 50px;
}
.hero-section {
    background: #020617;
    /* Changed max-height to min-height for better content flow on small screens */
    min-height: 100vh; 
    padding: 60px 20px 60px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    background: rgba(30, 167, 255, 0.1);
    border: 1px solid rgba(30, 167, 255, 0.3);
    border-radius: 6px;
    color: #1ea7ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

/* =========================
LAYOUT
========================= */

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px; /* Reduced gap for better tablet fit */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
LEFT CONTENT
========================= */

.hero-content {
    flex: 1; /* Allow flexible growth */
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 48px; /* Slightly increased for desktop */
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-title span {
    color: #1ea7ff;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

/* =========================
BUTTONS
========================= */

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #1ea7ff; /* Updated from 'blue' to match your theme hex */
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 167, 255, 0.3);
}

.btn-secondary {
    border: 1px solid rgba(30, 167, 255, 0.4);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(30, 167, 255, 0.1);
    transform: translateY(-3px);
}

/* =========================
FEATURE ITEMS (BOTTOM)
========================= */

.hero-features {
    display: flex;
    flex-direction: row; 
    align-items: center;
    gap: 0;           
    margin-top: 50px;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
}

.feature-item:first-child {
    padding-left: 0;
}

.feature-item:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(30, 167, 255, 0.15);
    color: #1ea7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
    line-height: 1.3;
    white-space: nowrap;
}

.feature-text strong {
    color: #fff;
    font-weight: 700;
}

.feature-text span {
    color: rgba(255, 255, 255, 0.7);
}

/* =========================
RIGHT IMAGE
========================= */

/* ==========================================================================
   RIGHT GRAPHIC RESTRUCTURING
   ========================================================================== */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-img {
    width: 550px;
    height: auto;
    object-fit: contain;
    border-radius: 10px; 
    /* border: 1px solid rgba(30, 167, 255, 0.3); */
    /* box-shadow: 0 0 80px rgba(30, 167, 255, 0.25); */
    
    will-change: transform;
}
/* @keyframes zoomInOut {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.06) rotate(1deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
} */
/* 
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
} */

/* =========================
RESPONSIVE UPDATES
========================= */

/* Desktop/Tablet Transition */
@media (max-width: 1100px) {
    .hero-title { font-size: 38px; }
    .hero-container { gap: 30px; }
    .feature-item { padding: 0 15px; }
}

/* Tablet (Stacking) */
@media (max-width: 991px) {
    .hero-section {
        height: auto;
        padding-top: 50px;
        padding-bottom: 80px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-visual {
        width: 100%;
        order: 1;
        justify-content: center;
    }

    .hero-img {
        max-width: 80%;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .feature-item {
        border-right: none !important;
        padding: 10px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .hero-section { padding-top: 50px; }
    
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 350px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-img {
        max-width: 100%;
    }

    .feature-text {
        white-space: normal;
        text-align: left;
    }
}
