:root {
    --brand-dark: #026a9d;
    --brand-gold: #00a2e8;
    --muted: #5a7184;
    --bg: #ffffff;
    --text: #0b1b1b;
}

html, body {
    height: 100%;
    font-family: 'Poppins',system-ui,-apple-system,"Segoe UI",Roboto,Arial;
    color: var(--text);
    background: var(--bg);
    scroll-behavior: smooth
}

a {
    text-decoration: none;
}

.container-max {
    max-width: 1140px;
    margin: 0 auto;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: .4px;
    color: var(--brand-dark)
}

.nav-link {
    color: var(--text)
}

.hero {
    background: linear-gradient(180deg,rgba(15,42,42,0.85),rgba(15,42,42,0.85)),url('/Image/Backphoto.jpeg')center/cover no-repeat;
    color: #fff;
    padding: 100px 0;
}

.nav-link:hover {
    color: var(--brand-gold)
}

.hero .lead {
    opacity: .95;
    font-size: 1.1rem;
}

.btn-gold {
    background: var(--brand-gold);
    color: white;
    border: none;
    font-weight: 600;
}

    .btn-gold:hover {
        background: #026a9d; /* example darker gold */
        color: white; /* optional change */
    }

.btn-outline-gold {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
}

.section {
    padding: 70px 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.section-sub {
    color: var(--muted);
    max-width: 760px;
}

.product-card {
    border: 1px solid rgba(15, 42, 42, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    background: #fff;
    color: black;
    text-align: center;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 40px rgba(2, 6, 23, 0.08);
    }

/* Product Image Container */
.product-img {
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square aspect ratio */
    overflow: hidden;
    background: #f5f5f5;
}

.product-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .product-thumb {
    transform: scale(1.1);
}

/* Product Overlay - Appears on Hover */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 162, 232, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Product Link Button */
.product-link {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #fff;
}

    .product-link:hover {
        background: #fff;
        color: #00a2e8;
        transform: scale(1.15);
    }

    .product-link i {
        display: block;
    }

/* Product Info */
.product-info {
    padding: 20px 15px;
    background: #fff;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
    transition: color 0.25s;
}

.product-card:hover .product-title {
    color: #00a2e8;
}


.gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.bg-lightTop {
    bs-bg-opacity: 1;
    background-color: #00b4d8 !important;
    border-radius: 20px;
}

.header-top {
    background: #00a2e8 /*rgb(8, 49, 128);*/
}

.social-icon {
    color: white; /* make it white */
    text-align: center;
}

.classic-logo {
    padding-bottom: 31px;
}

.classic-logo {
    padding-bottom: 31px;
}

.classic-logo {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.hd-sec {
    background: #fff;
    border-top: none;
}

footer {
    background: rgb(8, 49, 128);
    color: #cfd8d8;
    padding: 30px 0;
}

    footer a {
        color: #e6e6e6;
    }

@media (max-width:767px) {
    .hero {
        padding: 70px 0
    }

        .hero h1 {
            font-size: 1.8rem
        }
}

@media (max-width: 991px) {
    .navbar .navbar-toggler {
        margin-left: auto; /* pushes it to the right */
    }
}

.logo {
    max-height: 75px; /* Keeps logo balanced in navbar */
    height: auto;
    width: auto;
}

@media (max-width: 768px) {
    .logo {
        max-height: 45px; /* Slightly smaller on mobiles */
    }
}

@media (max-width: 991px) {
    .navbar .navbar-toggler {
        margin-left: auto; /* keep toggle button on right */
    }

    .navbar-collapse {
        background: var(--brand-dark);
        padding: 0.5rem 1rem;
        border-radius: 0 0 12px 12px;
        text-align: center; /* center content */
    }

        .navbar-collapse .navbar-nav {
            flex-direction: column !important; /* stack vertically */
            align-items: stretch; /* full width */
            gap: 0.5rem;
        }

        .navbar-collapse .nav-link {
            color: #fff !important;
            font-weight: 600;
            padding: 0.75rem 1rem;
            border-radius: 6px;
            text-align: center;
        }

            .navbar-collapse .nav-link:hover {
                background: var(--brand-gold);
                color: #111 !important;
            }

        /* Center the button in mobile view */
        .navbar-collapse .btn {
            display: block;
            width: fit-content;
            margin: 1rem auto 0; /* centers button with spacing */
        }

    .map-link {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .map-link:hover {
            transform: scale(1.02);
            box-shadow: 0 6px 25px rgba(0,0,0,0.15);
        }

    #location iframe {
        border-radius: 12px;
    }
}
