/* ===============================
   Global
================================ */
body{
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f9fafb;

}

/* ===============================
   Navbar
================================ */
.navbar{
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
}

.navbar-brand{
    font-weight: 700;
    color: #fff !important;
}

.nav-link{
    color: #ddd !important;
    margin: 0 8px;
}

.contact-pill{
    background: #fff;
    color: #000;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}

.hero {
    height: 100vh;
    overflow: hidden;
}

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

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

.text-white {
    color: #fff;
}


/* ===============================
   Hero Section
================================ */
.hero{
    min-height: 100vh;
    position: relative;
}
.frist-title{
    background-color: #d97706;
    color: #fff;
    padding: 5px;
    border-radius: 40px;
    margin-bottom: 10px;
    font-size: 12px;
    text-transform: uppercase;
}

.hero-badge{
    display: inline-block;
    background: #d97706;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.hero h1{
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
}

.hero p{
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

/* ===============================
   Form Card
================================ */
.form-card{
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    color: #000;
}

.form-control,
.form-select{
    height: 48px;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    font-size: 14px;
}

.form-control:focus,
.form-select:focus{
    box-shadow: none;
    border: 1px solid #d97706;
}

/* ===============================
   Buttons
================================ */
.btn-orange{
    background: #d97706;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    padding: 12px;
    border: none;
}

.btn-orange:hover{
    background: #b45309;
    color: #fff;
}

/* ===============================
   Responsive
================================ */
@media(max-width: 768px){
    .hero h1{
        font-size: 2.2rem;
    }

    .form-card{
        margin-top: 30px;
    }
}
@media(max-width: 480px){
    .hero h1{
        font-size: 1.8rem;
    }
}

.dropdown-toggle{
    border-radius: 50%;
    width: 42px;
    height: 42px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}





.service-card{
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.service-card img{
    object-fit: contain;
}