/*
 Design and Develop by creativeboxdm.com
*/

:root {
    --primary-color: #0c3c4c;
    --accent-color: #f5b700;
    --text-dark: #2b303a;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.container {
    overflow: hidden;
}

.bg-primary-custom {
    background: var(--primary-color);
}

.text-accent {
    color: var(--accent-color);
}

@media(max-width: 768px) {
    .fixed-top {
        position: relative;
    }
}

.navbar {
    background: rgba(12, 60, 76, 0.95) !important;
    backdrop-filter: blur(10px);
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.hdr-logo {
    padding: 1%;
    width: 300px;
    margin: 50px auto 0;
}

.hdr-logo img {
    width: 100%;
}

.hero-section {
    background:
        linear-gradient(rgba(12,60,76,.65), rgba(12,60,76,.75)),
        url('../img/hero-img.webp') center/cover no-repeat;
    height: 850px;
    display: flex;
    align-items: center;
}

@media(max-width: 991px) {
    .hero-section {
        height: auto !important;
        padding: 50px 0 !important;
    }
}

.hero-section h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

.interactive-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
}

.interactive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-img-zoom {
    overflow: hidden;
}

.card-img-zoom img {
    transition: 0.5s ease;
}

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

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding-bottom: 450px;
    height: 0;
}

.map-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
}

.seo-highlight {
    background: #fff7df;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    border-radius: 10px;
}

.ftr-logo {
    width: 12%;
    margin-bottom: 20px;
}

@media(max-width: 991px) {
    .ftr-logo {
        width: 35%;
    }
}

@media(max-width: 640px) {
    .ftr-logo {
        width: 45%;
    }
}

@media(max-width: 480px) {
    .ftr-logo {
        width: 55%;
    }
}

@media(max-width: 320px) {
    .ftr-logo {
        width: 75%;
    }
}

.border-light {
    border-style: dashed;
}