.navbar .nav-link.active {
    color: #d9437e !important;
    font-weight: 600;
}

/* Navbar Social Icons */
.navbar-social {
    gap: 10px !important;   /* Pehle gap-3 tha (~16px), ab kam kar diya */
}

.navbar-social .social-icon {
    width: 42px;   /* Pehle 50px */
    height: 42px;  /* Pehle 50px */
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

.navbar-social .social-icon svg {
    width: 18px;   /* Pehle 22px */
    height: 18px;  /* Pehle 22px */
    display: block;
}

.navbar-social .social-icon:hover {
    transform: scale(1.1);   /* Thoda subtle hover */
}

/* Brand single color icons */
.facebook { color: #1877F2; }
.instagram { color: #E4405F; }
.linkedin { color: #0A66C2; }
.youtube { color: #FF0000; }



