/* ================= GLOBAL ================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #F8FAFC;
    color: #1E293B;
}

/* ================= NAVBAR ================= */
.navbar {
    background: linear-gradient(90deg, #0f172a, #1f3a8a);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.navbar a {
    color: #fff !important;
    font-weight: 500;
}

.navbar a:hover {
    color: #F59E0B !important;
}

/* ================= HERO ================= */
.hero-modern {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15,23,42,0.75), rgba(15,23,42,0.75)),
                url('../images/banner.jpg') center/cover;
    color: #fff;
    text-align: center;
}

.hero-modern h1 {
    font-size: 52px;
    animation: fadeUp 1s ease;
}

.hero-modern p {
    animation: fadeUp 1.5s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= TRUST BAR ================= */
.trust-bar {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    padding: 20px;
}

.trust-item h4 {
    color: #0F172A;
    font-weight: bold;
}

/* ================= CARDS ================= */
.home-card {
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.home-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.home-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

.home-card:hover img {
    transform: scale(1.1);
}

.home-card-body {
    padding: 15px;
}

/* ================= ULTRA CARD ================= */
.ultra-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.ultra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.ultra-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.4s;
}

.ultra-card:hover img {
    transform: scale(1.1);
}

/* ================= PRICE ================= */
.price {
    color: #F59E0B;
    font-weight: bold;
}

/* ================= BUTTONS ================= */
.btn {
    border-radius: 30px;
    transition: 0.3s;
}

.btn-warning {
    background: #F59E0B;
    border: none;
    color: #000;
    box-shadow: 0 5px 15px rgba(245,158,11,0.4);
}

.btn-warning:hover {
    background: #d97706;
    transform: translateY(-2px);
}

.btn-primary {
    background: #2563EB;
    border: none;
}

.btn-primary:hover {
    background: #1d4ed8;
}

/* ================= FEATURE BOX ================= */
.feature-box {
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* ================= TESTIMONIAL ================= */
.testimonial-card {
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: scale(1.05);
}

/* ================= CTA ================= */
.cta-modern {
    background: linear-gradient(135deg, #0F172A, #1E293B);
    color: #fff;
    border-radius: 20px;
}

/* ================= FORM ================= */
.form-modern input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* ================= PAGE BANNER ================= */
.page-banner {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.7)),
                url('../images/banner.jpg') center/cover;
    color: #fff;
}

/* ================= COMPLETED PROJECT ================= */
.completed-card {
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.completed-card:hover {
    transform: translateY(-5px);
}

.badge-completed {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #16a34a;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
}

/* ================= TAG ================= */
.tag {
    background: #eef2ff;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
}

/* ================= WHATSAPP ================= */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px;
    border-radius: 50%;
}

/* ================= CHATBOT ================= */
.chat-header {
    background: #0F172A;
    color: #fff;
}

.chat-bubble-user {
    background: #2563EB;
    color: #fff;
    padding: 8px 12px;
    border-radius: 15px;
}

.chat-bubble-bot {
    background: #F1F5F9;
    padding: 8px 12px;
    border-radius: 15px;
}

/* ================= ANIMATION ================= */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ================= SECTION ================= */

.hero-video {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
}

#videoAd {
    position: fixed;
    top: 100px;
    right: 20px;
    width: 220px;
    z-index: 999;
}

#videoAd video {
    width: 100%;
    border-radius: 10px;
}

#videoAd button {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0,0,0,0.6);
    color: white;
    border: none;
    border-radius: 5px;
}
#videoPopup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-box {
    position: relative;
    width: 80%;
    max-width: 700px;
}

.video-box video {
    width: 100%;
    border-radius: 15px;
}

/* CONTROLS */
.video-controls {
    position: absolute;
    top: 10px;
    right: 10px;
}

.video-controls button {
    margin-left: 5px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
}

/* CTA */
.video-cta {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    height: 65px;
    background: #fff;
    padding: 5px;
    border-radius: 6px;
}

.logo:hover {
    transform: scale(1.1);
}
.custom-footer {
    background: linear-gradient(90deg, #0f172a, #1f3a8a);
}
.navbar-toggler {
    border: 2px solid #fff;
}

.navbar-toggler-icon {
    filter: invert(1);
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #0f172a;
        padding: 15px;
        border-radius: 10px;
    }
}

.navbar {
    margin-bottom: 0 !important;
}

.hero {
    margin-top: 0;
}