/* Hero Banner - Clean & Animated Premium Design */

.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0 100px;
    /* Clean background with light overlay */
    background: url("../images/hero-bg.webp");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    color: #111827;
    /* Dark text for clean look */
}

/* Background Animated Soft Glows */
.hero-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background:
        radial-gradient(circle at 30% 30%, rgba(46, 163, 214, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(0, 229, 255, 0.06) 0%, transparent 40%);
    filter: blur(60px);
    z-index: 1;
    transform: translate(-50%, -50%);
    animation: flowBg 20s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes flowBg {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-45%, -55%) rotate(5deg);
    }
}

/* Floating Glass Decorative Orbs */
.hero-deco {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.hero-deco span {
    position: absolute;
    background: linear-gradient(135deg, rgba(46, 163, 214, 0.1), rgba(0, 229, 255, 0.05));
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(46, 163, 214, 0.05);
}

.hero-deco span:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 10%;
    animation: floatOrb 15s infinite ease-in-out;
}

.hero-deco span:nth-child(2) {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 5%;
    animation: floatOrb 20s infinite ease-in-out reverse;
}

.hero-deco span:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 15%;
    animation: floatOrb 12s infinite ease-in-out;
}

.hero-deco span:nth-child(4) {
    width: 120px;
    height: 120px;
    bottom: 30%;
    left: 15%;
    animation: floatOrb 18s infinite ease-in-out reverse;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(1.05);
    }
}

.banner-content {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
}

.banner-logo-flex {

    backdrop-filter: blur(10px);
    padding: 20px 45px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 50px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.banner-logo-flex:hover {
    transform: translateY(-5px);


}

.banner-logo-flex img {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.banner-logo-flex img:hover {
    transform: scale(1.15);
}



/* Heading with Modern Shadow & Animation */
.banner-headeing h1 {
    font-size: 5rem;
    font-weight: 680;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #111827;
    letter-spacing: -2.5px;
    animation: slideUpFade 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.banner-headeing h1 span {
    background: var(--primary-color);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

@keyframes slideUpFade {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-para p {
    font-size: 1.35rem !important;
    line-height: 1.7;
    color: #4b5563;
    /* Slightly softer dark text */
    max-width: 850px;
    margin: 0 auto 50px !important;
    animation: slideUpFade 1.2s cubic-bezier(0.2, 0.6, 0.2, 1) backwards;
    animation-delay: 0.2s;
}

/* Button Refinement */
.banner-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 70px;
}

.banner-btns a {
    padding: 18px 42px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner-btns .call-btn {
    background: linear-gradient(135deg, #2EA3D6 0%, #1B6CA8 100%);
    color: #fff;
    box-shadow: 0 15px 35px rgba(46, 163, 214, 0.25);
}

.banner-btns .call-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 45px rgba(46, 163, 214, 0.4);
    background: linear-gradient(135deg, #3faadc 0%, #2ea3d6 100%);
}

.banner-btns .call-btn:hover i {
    color: #fff !important;
}

.banner-btns .quote-btn {
    background: #fff;
    border: 1px solid rgba(46, 163, 214, 0.15);
    color: #2EA3D6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.banner-btns .quote-btn:hover {
    background: #f8fafc;
    border-color: #2EA3D6;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(46, 163, 214, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .banner-headeing h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 50px 0 50px;
    }




    .banner-headeing h1 {
        font-size: 3rem;
        letter-spacing: -1.5px;
    }

    .banner-para p {
        font-size: 1.15rem !important;
    }

    .banner-btns {
        flex-direction: column;
        align-items: center;
    }

    .banner-btns a {
        width: 100%;
        justify-content: center;
    }



    .banner-logo-flex img {
        width: 100px;
    }
}

@media (max-width:550px) {
    .banner-logo-flex {
        padding: 15px 0px;
        border-radius: 20px;
        /* flex-direction: column; */
        justify-content: center;
        gap: 20px;
        background: none;
    }
}

@media(max-width:394px) {
    .banner-logo-flex img {
        width: 80px;
    }
}