:root {
    --gov-red: #DC143C;
    --gov-red-dark: #b01030;
    --gov-blue: #06376a;
    --gov-blue-dark: #06376a;
    --gov-amber: #ffc107;
    --gov-amber-hover: #ffca2c;
}
body {
    font-family: 'Mukta', sans-serif;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

.bg-topbar { 
    background: linear-gradient(90deg, #053b81 0%, var(--gov-blue) 100%) !important; 
}
.text-gov-red { color: var(--gov-red) !important; }
.bg-gov-blue { background: linear-gradient(90deg, #053b81 0%, var(--gov-blue) 100%) !important; }
.text-gov-blue { color: var(--gov-blue) !important; }
.border-gov-blue { border-color: var(--gov-blue) !important; }

.topbar-link {
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.topbar-link:hover {
    opacity: 0.8;
}

.gradient-text {
    background: linear-gradient(135deg, #DC143C 0%, #003893 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link-custom {
    position: relative;
    color: white !important;
    padding: 1rem 1.5rem !important;
    font-weight: 500;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link-custom:hover::after {
    width: 80%;
}

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-shine:hover::before {
    left: 100%;
}


.bg-amber-custom {
    background-color: var(--gov-amber) !important;
    color: var(--gov-blue-dark) !important;
    font-weight: 700;
}

.bg-amber-custom:hover {
    background-color: var(--gov-amber-hover) !important;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* Feature Cards */
.feature-card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 56, 147, 0.1);
    color: var(--gov-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.banner img{
    height: 500px;
}

.map-iframe iframe {
    width:480px; 
    height:240px; 
}
/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .nav-link-custom {
        padding: 0.75rem 1rem !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-link-custom::after { display: none; }
    .banner img{
    height: 250px;
}
    .map-iframe iframe{
    width:300px; 
}
}

