/* header file css */
/* Smooth transition */
* {
    transition: all 0.3s ease-in-out;
}

/* Navbar hover animation */
.nav-animate {
    position: relative;
}





/* Sticky shadow on scroll */
.navbar {
    transition: 0.3s;
}







/* Dropdown animation */
.dropdown-menu {
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Dropdown items */
.dropdown-item {
    padding: 10px 20px;
    transition: 0.3s;
}

/* Hover effect */
.dropdown-item:hover {
    background-color: #0d6efd;
    color: #fff;
    padding-left: 25px;
}

/* Active link */
.nav-link.active {
    color: #ee8a02  !important;
    font-weight: bold;
}






/* Logo image */
.logo-img {
    height: 90px;
    width: auto;
    transition: 0.3s;
}

/* Hover effect */
.logo-img:hover {
    transform: scale(1.1);
}





/* Mobile spacing */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
}








/* footer file css */
/* Footer style */
.footer {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
}

/* Show animation */
.footer.show-footer {
    opacity: 1;
    transform: translateY(0);
}

/* Titles */
.footer-title {
    font-weight: bold;
    margin-bottom: 15px;
}

/* Links */
.footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-link:hover {
    color: #0d6efd;
    padding-left: 5px;
}

/* Social icons */
.social-icon {
    font-size: 20px;
    margin-right: 10px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #0d6efd;
}

.footer-logo {
    width: auto;
    height: 100px;
}





/* Base style */
.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin-right: 8px;
    color: #fff;
    transition: 0.3s;
    font-size: 16px;
}

/* Original brand colors */
/* Base style */
.social-icon {
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 50%;
    margin-right: 8px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s ease;
}

/* Brand colors */
.facebook {
    background: #1877f2;
}

.twitter {
    background: #1da1f2;
}

.instagram {
    background: radial-gradient(circle at 30% 107%, 
        #fdf497 0%, #fdf497 5%, 
        #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.youtube {
    background: #ff0000;   /* Official YouTube Red */
}

/* Hover */
.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    opacity: 0.9;
}

.social-icon {
    background: transparent;
    border: 2px solid;
}

.facebook { color: #1877f2; border-color: #1877f2; }
.twitter { color: #1da1f2; border-color: #1da1f2; }
.instagram { color: #e4405f; border-color: #e4405f; }
.youtube { color: #ff0000; border-color: #ff0000; } 







/* Mobile responsive */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
}