body {
    font-family: 'Roboto', sans-serif;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    /* Bold */
}

/* =========================
   NAVBAR – MINIMAL & PRO
   ========================= */

.navbar {
    padding: 0.8rem 0;
}

.navbar-nav .nav-link {
    color: #f8f9fa;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    position: relative;
    transition: color 0.25s ease;
}

/* Hover effect – simple underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background-color: #ffc107;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffc107;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Active page */
.nav-active {
    color: #ffc107 !important;
    font-weight: 600;
}

.nav-active::after {
    width: 100%;
}

/* Call Now button – clean CTA */
.navbar .btn-warning {
    box-shadow: none;
    transition: background-color 0.3s ease;
}

.navbar .btn-warning:hover {
    background-color: #e0a800;
    color: #000;
}

/* Optional: Backdrop blur support if not using Tailwind or utility framework */
.backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* Landing Video Section */
.video-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.video-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.video-hero-content {
    position: relative;
    z-index: 2;
}





.text-justify {
    text-align: justify !important;
}

.hover-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
    /* subtle glow */
}

.hover-card:hover {
    transform: translateY(-10px) scale(1.03) rotateX(3deg) rotateY(-3deg);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
    /* brighter on hover */
}

.hover-icon {
    transition: transform 0.3s ease;
}

.hover-card:hover .hover-icon {
    transform: scale(1.2) rotate(5deg);
}

.hover-card h5,
.hover-card p {
    color: #f8f9fa;
}

.bg-whatsapp {
    background-color: #25D366;
    /* WhatsApp green */
    color: #fff;
}

.bg-whatsapp:hover {
    background-color: #1ebe5d;
    color: #fff;
}

.btn-call {
    background-color: #111;
    color: #ffc107;
    border: 2px solid #ffc107;
}

.btn-call:hover {
    background-color: #ffc107;
    color: #111;
}


/* service */

/* =========================
   PREMIUM SERVICE CARD
   ========================= */

.service-card {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    position: relative;
    transition: all 0.45s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 193, 7, 0.18),
            transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.18);
}

.service-card img {
    height: 240px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.service-card:hover img {
    transform: scale(1.12);
}

.service-card .card-body {
    position: relative;
    z-index: 2;
    padding: 2rem;
    text-align: center;
}

.service-card i {
    font-size: 2.6rem;
    color: #ffc107;
    margin-bottom: 14px;
    transition: transform 0.4s ease;
}

.service-card:hover i {
    transform: scale(1.25) rotate(-5deg);
}

.service-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}


.section-divider {
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(0, 0, 0, 0.15),
            transparent);
    margin: 80px 0;
}

/* about us */



.section-title {
    font-weight: 700;
    border-left: 5px solid #ffc107;
    padding-left: 10px;
}

.about-img {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.highlight {
    color: #ffc107;
    font-weight: 600;
}

.hover-bg:hover {
    background-color: rgba(255, 193, 7, 0.2) !important;
}

/* Navbar links default */
.navbar .nav-link {
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

/* Hover effect */
.navbar .nav-link:hover {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
}

/* Active page – DIFFERENT style (not yellow bg) */
.nav-active {
    position: relative;
    color: #ffc107 !important;
}

/* Underline glow for active page */
.nav-active::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(0%);
    width: 28px;
    height: 3px;
    background: #ffc107;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.8);
}

/* WhatsApp button */
.bg-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.bg-whatsapp:hover {
    background-color: #1ebe5d;
    color: #fff;
}

/* Service cards (future-safe) */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Mobile navbar spacing fix */
@media (max-width: 991px) {
    .navbar-nav .nav-item {
        margin-bottom: 8px;
    }
}


/* ---------- GLOBAL RESPONSIVE FIXES ---------- */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

/* ---------- NAVBAR RESPONSIVE ---------- */
@media (max-width: 991px) {
    .navbar-nav {
        background-color: #111;
        padding: 15px;
        border-radius: 12px;
    }

    .navbar-nav .nav-item {
        width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
        display: block;
    }

    .navbar-nav .btn {
        width: 100%;
    }
}

/* ---------- VIDEO HERO RESPONSIVE ---------- */
.video-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-hero-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .video-hero {
        height: 85vh;
    }

    .video-hero h1 {
        font-size: 2rem;
    }

    .video-hero p {
        font-size: 1rem;
    }
}

/* ---------- IMAGE SECTIONS ---------- */
img {
    max-width: 100%;
    height: auto;
}

/* ---------- WHY CHOOSE US ---------- */
.hover-card {
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.hover-card:hover {
    background: rgba(255, 193, 7, 0.08);
    transform: translateY(-6px);
}

@media (max-width: 768px) {
    .hover-card {
        margin-bottom: 20px;
    }
}

/* ---------- SERVICE CARDS ---------- */
.service-card img {
    height: 220px;
    object-fit: cover;
}

@media (max-width: 576px) {
    .service-card img {
        height: 180px;
    }

    .service-card {
        text-align: center;
    }
}

/* ---------- CONTACT SECTION ---------- */
@media (max-width: 576px) {
    #contact h2 {
        font-size: 1.6rem;
    }

    #contact .btn {
        width: 100%;
    }
}

/* ---------- FOOTER ---------- */
footer h5,
footer h4 {
    text-align: center;
}

@media (max-width: 768px) {

    footer .col-lg-4,
    footer .col-lg-3,
    footer .col-lg-2 {
        text-align: center;
    }

    footer ul {
        padding-left: 0;
    }
}

/* ---------- WHATSAPP BUTTON ---------- */
.bg-whatsapp {
    background-color: #25d366;
    color: #fff;
}

.bg-whatsapp:hover {
    background-color: #1ebe5d;
    color: #fff;
}

/* ---------- ACTIVE NAV LINK ---------- */
.nav-active {
    color: #ffc107 !important;
    position: relative;
}

.nav-active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(0%);
    width: 26px;
    height: 3px;
    background-color: #ffc107;
    border-radius: 10px;
}


