 .h6_footer-social ul {
     display: flex;
     gap: 10px;
     padding: 0;
     margin: 0;
     list-style: none;
 }

 .h6_footer-social ul li a {
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     transition: 0.3s;
     text-decoration: none;
 }

 /* Facebook */
 .h6_footer-social ul li a.facebook {
     background: linear-gradient(135deg, #1877F2, #0f63c7);
 }

 .h6_footer-social ul li a.facebook i {
     color: #fff;
 }

 /* YouTube */
 .h6_footer-social ul li a.youtube {
     background: linear-gradient(135deg, #FF0000, #cc0000);
 }

 .h6_footer-social ul li a.youtube i {
     color: #fff;
 }

 /* Hover effect */
 .h6_footer-social ul li a:hover {
     transform: scale(1.15);
     filter: brightness(1.2);
 }


 /* Base nav-link style */
 .nav-link {
     position: relative;
     color: #555;
     /* Default text color */
     font-weight: 500;
     transition: color 0.3s ease;
 }

 /* Hover underline animation */
 .nav-link::after {
     content: '';
     position: absolute;
     width: 0%;
     height: 2px;
     left: 0;
     bottom: -4px;
     background: linear-gradient(150deg, #082f4b 0%, #4d83c8 40%, #66a6df 70%, #d3e4f6 100%);
     /* Border color */
     transition: width 0.3s ease;
 }

 .nav-link:hover::after {
     width: 100%;
 }

 /* Active link persistent border */
 .nav-link.active {
     color: #007BFF !important;
     font-weight: 600;
 }

 .nav-link.active::after {
     width: 100%;
 }

 /* Optional: Smooth color change on hover */
 .nav-link:hover {
     color: #0056b3;
 }

 .h7_banner-content {
     position: absolute;
 }


 .alagappa-logo {
     width: 200px;
 }

 @media only screen and (max-width: 600px) {
     .h7_banner-content {
         position: absolute;
     }

     .sidebar-logo {
         background: #ffffff;
         border-radius: 5px;
     }

     .h6_single-banner {
         min-height: 340px;
     }

 }

 .section-title::after {
     content: '';
     display: block;
     width: 100px;
     height: 4px;
     background: linear-gradient(90deg, #00aaff, #00ffaa);
     margin-top: 6px;
     border-radius: 2px;
 }

 .highlight {
     color: #2672b6 !important;
     border-radius: 4px !important;
     font-weight: bold !important;
 }


 .unique-card {
     border: 1px solid #eee;
     border-radius: 10px;
     overflow: hidden;
     transition: 0.3s ease;
 }

 .unique-card:hover {
     box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
     transform: translateY(-5px);
 }

 .unique-card-img img {
     width: 100%;
     height: auto;
     display: block;
 }

 .unique-card-content {
     padding: 15px;
 }

 .unique-card-title a {
     color: #111;
     text-decoration: none;
 }

 .unique-card-title a:hover {
     color: #d9232d;
 }

 .unique-card-location,
 .unique-card-date {
     color: #666;
     font-size: 16px;
     margin: 0px 0;
 }


 .unique-event-item {
     opacity: 1;
     visibility: visible;
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 .unique-event-item.hide {
     opacity: 0;
     visibility: hidden;
     transform: scale(0.95);
     position: absolute;
     pointer-events: none;
 }