/* ===============================
   GLOBAL RESET & FIX
================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
    overflow-x: hidden !important;

    /* 🔥 LIGHT PREMIUM BACKGROUND */
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f4f6fb 40%,
        #eef2f8 100%
    ) !important;
}

/* Prevent overflow */
img, iframe {
    max-width: 100%;
    display: block;
}


/* ===============================
   NAVBAR
================================ */

.navbar {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.navbar .nav-link {
    color: #222 !important;
    font-weight: 500;
    margin-left: 18px;
}

.navbar .nav-link:hover {
    color: #ff9800 !important;
}

.navbar-logo {
    height: 45px;
    object-fit: contain;
}

/* Mobile hamburger */
.navbar-toggler {
    border: none;
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.85)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* ===============================
   HERO SECTION
================================ */

.hero {
    height: 520px;
    position: relative;
    overflow: hidden;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item {
    background-size: cover;
    background-position: center;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
}

.slider-content h1 {
    font-size: 42px;
    font-weight: 700;
    text-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.slider-content p {
    font-size: 18px;
    margin-top: 10px;
}


/* ===============================
   GLASS SECTION STYLE
================================ */

section {
    background: transparent !important;
}

section .container {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 45px 30px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.07);
    margin-bottom: 45px;
}


/* ===============================
   ABOUT SECTION
================================ */

.about-title {
    font-size: 34px;
    font-weight: 700;
    color: #222;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-img-wrap {
    display: flex;
    justify-content: center;
}

.about-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}


/* ===============================
   SERVICES CARDS (FIXED)
================================ */

.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.service-card {
    height: 380px;
    max-height: 400px;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-img-box {
    height: 250px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-bottom: 1px solid #eee;
}

.service-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.service-card .card-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h5 {
    font-size: 17px;
    font-weight: 600;
}


/* ===============================
   GALLERY
================================ */

#gallery img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

#gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 22px 45px rgba(0,0,0,0.25);
}


/* ===============================
   VIDEO
================================ */

#video iframe {
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}


/* ===============================
   FOOTER
================================ */

footer {
    background: #111;
    color: #fff;
    padding: 50px 0;
}

footer a {
    color: #ccc;
    text-decoration: none;
}


/* ===============================
   WHATSAPP BUTTON
================================ */

.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .hero {
        height: 420px;
    }

    .slider-content h1 {
        font-size: 28px;
    }

    .about-img-wrap img {
        height: 260px;
    }
}
