/* Main Wrapper */
.hero-wrapper {
    overflow: hidden;
    background-color: #fff;
}

/* Left side (Hero) */
.hero-left {
    position: relative;
    background: #f8f9fa; /* fallback background */
    color: #000;
}

/* Background image — keep bright and clean */
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1; /* No dark filter */
    z-index: 1;
}

/* Text over image */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
}

/* Animated elements */
.hero-icon {
    position: absolute;
    opacity: 0;
    width: 50px;
    z-index: 2;
}

.icon-book {
    top: 10%;
    left: 10%;
}

.icon-globe {
    bottom: 10%;
    right: 10%;
    width: 70px;
}

.hero-main {
    position: absolute;
    right: 15%;
    top: 25%;
    width: 350px;
    z-index: 2;
    opacity: 0;
}


/* Animations */
@keyframes slideLeft {
    from {
        transform: translateX(60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}



@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-slide-left {
    animation: slideLeft 1s ease-out 0.5s forwards;
}


.animate-zoom-in {
    animation: zoomIn 1.2s ease-out 1.5s forwards;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-left, .hero-right {
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-main {
        position: static;
        width: 250px;
        opacity: 1;
        margin: 1rem auto;
    }

    .hero-icon {
        display: none;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}

/* === PREMIUM RIGHT PANEL === */
.hero-right {
    position: relative;
    background: linear-gradient(145deg, rgba(25, 27, 38, 0.9) 0%, rgba(35, 37, 50, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.06), 0 8px 25px rgba(0, 0, 0, 0.45);
    color: #e9ecef;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    min-height: 100%;
    transition: all 0.4s ease;
    overflow: hidden;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

    /* Subtle gradient light overlay */
    .hero-right::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 70%);
        z-index: 0;
    }

    /* Text content stays on top */
    .hero-right > * {
        position: relative;
        z-index: 2;
    }

    /* Heading */
    .hero-right h3 {
        color: #fff;
        font-weight: 700;
        font-size: 1.75rem;
        letter-spacing: 0.3px;
        margin-bottom: 1rem;
    }

    /* Paragraph text */
    .hero-right p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    /* Email Highlight */
    .hero-right h5 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

        .hero-right h5 a {
            color: #ffc107;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 193, 7, 0.5);
            transition: all 0.3s ease;
        }

            .hero-right h5 a:hover {
                color: #fff;
                border-bottom: 1px solid #fff;
            }

    /* Button – premium glowing style */
    .hero-right .btn {
        background: linear-gradient(90deg, #ffc107 0%, #ffd95c 100%);
        border: none;
        color: #212529;
        font-weight: 600;
        padding: 12px 28px;
        border-radius: 8px;
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
        transition: all 0.3s ease-in-out;
    }

        .hero-right .btn:hover {
            background: linear-gradient(90deg, #ffd95c 0%, #ffe880 100%);
            box-shadow: 0 0 30px rgba(255, 193, 7, 0.7);
            transform: translateY(-3px);
        }

/* Animated button pulse (optional) */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 rgba(255,193,7,0.6);
    }

    50% {
        box-shadow: 0 0 20px rgba(255,193,7,0.9);
    }

    100% {
        box-shadow: 0 0 0 rgba(255,193,7,0.6);
    }
}

.hero-right .btn.glow {
    animation: pulse-glow 2s infinite;
}

/* Divider line between sections */
.hero-wrapper .row::before {
    content: "";
    position: absolute;
    top: 0;
    right: 33.333%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15), transparent);
    z-index: 5;
    pointer-events: none;
}

/* Hover highlight */
.hero-right:hover {
    box-shadow: inset 0 0 50px rgba(255,255,255,0.05), 0 12px 30px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}



/* Clean & Professional Modal Design */
.modal-content {
    border-radius: 10px;
    border: 1px solid #e3e6ea;
}

.modal-header {
    background-color: #0d6efd;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.form-label {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #ced4da;
    font-size: 0.95rem;
    padding: 0.6rem 0.75rem;
}

    .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
    }

.btn-primary {
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

    .btn-primary:hover {
        background-color: #0b5ed7;
    }


#queryMessage .alert {
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    padding: 10px 15px;
}

#queryForm .form-control {
    border-radius: 6px;
    box-shadow: none;
    border-color: #ced4da;
}

    #queryForm .form-control:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
    }
