html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f7fb;
    color: #1f2933;
}

.navbar {
    backdrop-filter: blur(6px);
}

.hero-section {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: white;
    padding: 100px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.section-padding {
    padding: 70px 20px;
}

.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

footer {
    background: #111827;
    color: white;
}

.btn-premium {
    background: white;
    color: #0d6efd;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
}

.btn-premium:hover {
    background: #e9ecef;
}

/* FULLSCREEN HERO */

.carousel,
.carousel-inner,
.carousel-item {
    height: 100vh;
}

.carousel-item img {
    height: 100vh;
    object-fit: cover;
}

/* Premium Dark Mask */

.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

/* Premium Glass Box */

.carousel-caption {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    max-width: 520px;

    animation: unfoldBox 0.9s ease;
}

/* UNFOLDING EFFECT */

@keyframes unfoldBox {

    0% {
        opacity: 0;
        transform: scaleX(0.75) scaleY(0.25);
    }

    50% {
        opacity: 1;
        transform: scaleX(1.05) scaleY(0.65);
    }

    100% {
        transform: scaleX(1) scaleY(1);
    }
}

/* Text Animation */

.carousel-caption h5 {
    animation: textFade 0.6s ease;
}

.carousel-caption p {
    animation: textFade 0.8s ease;
}

@keyframes textFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Premium Navbar */

.navbar {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(6px);
}

/* Hero Text */

.hero-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
}

/* Premium Contact Styling */

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
}

.contact-item i {
    font-size: 20px;
    color: #0d6efd;
    margin-top: 4px;
}

.contact-item label {
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: 4px;
}

.contact-item p {
    margin: 0;
    font-weight: 500;
}

.form-control {
    padding: 12px;
    border-radius: 10px;
}

.btn-primary {
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
}