
/* Rounded container for hero slider */
.hero-slider-rounded-container {
    border-radius: 32px;
    overflow: hidden;
    padding-top: 1px;   
    padding: 0px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin: 32px auto;
    max-width: 1200px;
    margin-top: 120px; 
}

@media (max-width: 600px) {
    .hero-slider-rounded-container {
        border-radius: 32px;
        padding: 12px;
        margin: 12px;
        
    }
}

@media (max-width: 480px) {
    .hero-slider-rounded-container {
        border-radius: 16px;
        padding: 8px;
        margin: 8px;
        margin-top: 120px;
    }
}
/* Reset and Base Styles */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 body {
     font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: #333;
     background: #f8f9fa;
}
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
}
/* Header Styles */
 .header {
     background: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1000;
     transition: transform 0.3s ease;
}
 .header-content {
     display: flex;
     align-items: center;
     justify-content: space-between;
     position: relative;
     padding: 0.5rem 0;
     min-height: 80px;
}
 .logo-section {
     display: flex;
     align-items: center;
     gap: 1rem;
     flex: 1;
}
 .logo {
     width: 60px;
     height: 60px;
    border-radius: 50%;
    
     flex-shrink: 0;
}
 .org-info {
     max-width: 400px;
}
 .org-info h1 {
     font-size: 1rem;
     color: #2c5aa0;
     margin-bottom: 0.25rem;
     line-height: 1.2;
     font-weight: 600;
}
 .org-info p {
     font-size: 0.85rem;
     color: #666;
     margin: 0;
}
 .navigation {
     display: flex;
     align-items: center;
}
 .nav-menu {
     display: flex;
     list-style: none;
     gap: 0;
     align-items: center;
}
 .nav-menu > li {
     position: relative;
}
 .nav-menu > li > a {
     display: flex;
     align-items: center;
     padding: 1rem 1rem;
     text-decoration: none;
     color: #333;
     font-family: 'Rubik', sans-serif;
  font-weight: 700;
     font-size: 1rem;
     transition: all 0.3s ease;
     white-space: nowrap;
}
 .nav-menu > li > a:hover, .nav-menu > li > a.active {
     color: #2c5aa0;
     background: rgba(44, 90, 160, 0.05);
}
/* Dropdown Styles */
 .dropdown {
     position: relative;
}
 .dropdown-toggle i {
     margin-left: 0.5rem;
     font-size: 0.8rem;
     transition: transform 0.3s ease;
}
 .dropdown:hover .dropdown-toggle i {
     transform: rotate(180deg);
}
 .dropdown-menu {
     position: absolute;
     top: 100%;
     left: 0;
     background: white;
     min-width: 200px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     border-radius: 5px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: all 0.3s ease;
     z-index: 1001;
     list-style: none;
     padding: 0.5rem 0;
}
 .dropdown:hover .dropdown-menu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .dropdown-menu li {
     margin: 0;
     
}
 .dropdown-menu a {
     display: block;
     padding: 0.75rem 1.5rem;
     color: #333;
     text-decoration: none;
     font-family: 'Rubik', sans-serif;
     font-weight: 700;
     font-size: 1rem;
     transition: all 0.3s ease;
}
 .dropdown-menu a:hover {
     background: rgba(44, 90, 160, 0.1);
     color: #2c5aa0;
}
/* Mobile Menu Toggle */
 .mobile-menu-toggle {
     display: none;
     flex-direction: column;
     cursor: pointer;
     gap: 4px;
     padding: 0.5rem;
     margin-left: 1rem;
     z-index: 2000;
     position: relative;
}
 .mobile-menu-toggle span {
     width: 25px;
     height: 3px;
     background: #333;
     transition: 0.3s;
     border-radius: 2px;
}
 .mobile-menu-toggle.active span:nth-child(1) {
     transform: rotate(45deg) translate(6px, 6px);
}
 .mobile-menu-toggle.active span:nth-child(2) {
     opacity: 0;
}
 .mobile-menu-toggle.active span:nth-child(3) {
     transform: rotate(-45deg) translate(6px, -6px);
}
/* Mobile Responsive Styles */
 @media (max-width: 1024px) {
     .org-info h1 {
         font-size: 0.9rem;
    }
     .org-info p {
         font-size: 0.8rem;
    }
     .nav-menu > li > a {
         padding: 1rem 0.75rem;
         font-size: 0.85rem;
    }
}
 @media (max-width: 768px) {
     .navigation {
         flex-direction: column;
         align-items: flex-start;
         width: 100%;
    }
     .mobile-menu-toggle {
         display: flex;
         position: absolute;
         right: 1rem;
         top: 50%;
         transform: translateY(-50%);
         z-index: 3000;
    }
     .nav-menu {
         display: none !important;
         position: fixed;
         top: 80px;
         left: 0;
         right: 0;
         background: white;
         flex-direction: column;
         gap: 0;
         box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
         transform: translateY(-100%);
         opacity: 0;
         visibility: hidden;
         transition: all 0.3s ease;
         max-height: calc(100vh - 80px);
         overflow-y: auto;
    }
     .nav-menu.active {
         display: flex !important;
         transform: translateY(0);
         opacity: 1;
         visibility: visible;
    }
     .nav-menu > li {
         width: 100%;
         border-bottom: 1px solid #eee;
    }
     .nav-menu > li:last-child {
         border-bottom: none;
    }
     .nav-menu > li > a {
         padding: 1rem 1.5rem;
         justify-content: space-between;
         width: 100%;
    }
    /* Mobile Dropdown Styles */
     .dropdown-menu {
         position: static;
         opacity: 1;
         visibility: visible;
         transform: none;
         box-shadow: none;
         background: #f8f9fa;
         max-height: 0;
         overflow: hidden;
         transition: max-height 0.3s ease;
    }
     .dropdown.active .dropdown-menu {
         max-height: 300px;
    }
     .dropdown.active .dropdown-toggle i {
         transform: rotate(180deg);
    }
     .dropdown-menu a {
         padding: 0.75rem 2.5rem;
         font-size: 0.85rem;
    }
     .org-info {
         max-width: 300px;
    }
     .org-info h1 {
         font-size: 0.8rem;
    }
     .org-info p {
         font-size: 0.75rem;
    }
}
 @media (max-width: 480px) {
     .header-content {
         padding: 0.5rem 0;
    }
     .logo {
         width: 50px;
         height: 50px;
    }
     .logo-section {
         gap: 0.75rem;
    }
     .org-info {
         max-width: 250px;
    }
     .org-info h1 {
         font-size: 0.75rem;
    }
     .org-info p {
         font-size: 0.7rem;
    }
     .nav-menu > li > a {
         padding: 0.875rem 1rem;
         font-size: 0.9rem;
    }
     .dropdown-menu a {
         padding: 0.625rem 2rem;
         font-size: 0.8rem;
    }
}
/* Hero Slider */
 .hero-slider {
     position: relative;
    height: 600px;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;
}



 .slider-container {
     position: relative;
     width: 100%;
     height: 100%;
}




 .slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 0.5s ease-in-out;
}
 .slide.active {
     opacity: 1;
}
 .slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}
 .slide-content {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
     color: white;
     padding: 3rem 2rem 2rem;
}
 .slide-content h2 {
     font-size: 2.5rem;
     margin-bottom: 1rem;
}
 .slide-content p {
     font-size: 1.1rem;
     max-width: 600px;
}
 .slider-controls {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 100%;
     display: flex;
     justify-content: space-between;
     padding: 0 2rem;
}
 .slider-controls button {
     background: rgba(255, 255, 255, 0.2);
     border: none;
     color: white;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     cursor: pointer;
     transition: background 0.3s ease;
}
 .slider-controls button:hover {
     background: rgba(255, 255, 255, 0.4);
}
 .slider-dots {
     position: absolute;
     bottom: 2rem;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 1rem;
}
 .dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     cursor: pointer;
     transition: background 0.3s ease;
}
 .dot.active {
     background: white;
}
/* Section Styles */
 .section-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 3rem;
}
 .view-all-buttons {
     padding-top: 2rem;
     text-align: center;
     margin-bottom: 3rem;
}
 .view-all-btn {
     background: #2c5aa0;
     color: white;
     padding: 0.75rem 1.5rem;
     text-decoration: none;
     border-radius: 5px;
     transition: background 0.3s ease;
}
 .view-all-btn:hover {
     background: #1e3d6f;
}

.view-all-buttons-home-events {
    text-align: center;
    margin-top: 1rem; 
}

 .view-all-btn-home-events {
     background: #1e3d6f;
     color: white;
     padding: 0.75rem 1.5rem;
     text-decoration: none;
     border-radius: 5px;
     transition: background 0.3s ease;
     margin: 0 auto;
     text-align: center;
}



/* Quick Access */
 .quick-access {
    background:#4A74B3;
     padding: 5rem 0;
    
}

.quick-access-title, .home-recent-section-title{
    font-size: 3rem;
     font-weight: 700;
     color: white;
     margin-bottom: 1.5rem;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
     text-align: center;
}
 .quick-access-section{
     padding: 5rem 0;
}
 .quick-access-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 3rem;
}
 .access-card {
     background: white;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
}
 .access-card:hover {
     transform: translateY(-5px);
}
 .access-card img {
     width: 100%;
     height: 250px;
     object-fit: cover;
}
 .card-content {
     padding: 2rem;
}
 .card-content h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: #2c5aa0;
}
 .follow-us-section h4 {
     font-size: 0.85rem;
     margin: 0.3rem 0;
     color: #2c5aa0;
}
 .card-content p {
     margin-bottom: 1.5rem;
     color: #040404;
}
 .btn-primary {
     background: #2c5aa0;
     color: white;
     padding: 0.75rem 1.5rem;
     text-decoration: none;
     border-radius: 5px;
     display: inline-block;
     transition: background 0.3s ease;
}
 .btn-primary:hover {
     background: 	#2c4e85;
}
/* Recent News */
 .recent-news {
     padding: 5rem 0;
     background: #f8f9fa;
}
 .recent-news-section {
     padding: 5rem 0;
}
 .news-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
}
 .news-item {
     background: #4A74B3;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
}
 .news-item:hover {
     transform: translateY(-5px);
}
 .news-item img {
     width: 100%;
     height: 200px;
     object-fit: cover;
}
 .news-content {
     padding: 1.5rem;
}
 .news-date {
     color: white;
     font-size: 0.9rem;
     font-weight: 600;
}
 .news-content h3 {
     margin: 0.5rem 0 1rem;
     color: white;
}
 .news-content p {
     color: white;
     margin-bottom: 1rem;
}
 .read-more {
     color: white;
     text-decoration: none;
     font-weight: 600;
}
 .read-more:hover {
     text-decoration: underline;
}
/* Recent Events */
 .recent-events {
     padding: 5rem 0;
     background:#4A74B3;
}
 .events-grid {
     display: grid;
     gap: 2rem;
}
 .event-item {
     display: flex;
     background: white;
     border-radius: 10px;
     padding: 2rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
}
 .event-item:hover {
     transform: translateY(-5px);
}
 .event-date {
     background: #2c5aa0;
     color: white;
     padding: 1rem;
     border-radius: 10px;
     text-align: center;
     margin-right: 2rem;
     min-width: 80px;
}
 .event-date .day {
     display: block;
     font-size: 2rem;
     font-weight: bold;
}
 .event-date .month {
     display: block;
     font-size: 0.9rem;
}
 .event-content h3 {
     color: #2c5aa0;
     margin-bottom: 0.5rem;
}
 .event-content p {
     color: #666;
     margin-bottom: 1rem;
}
 .event-location {
     color: #999;
     font-size: 0.9rem;
}
 .event-location i {
     margin-right: 0.5rem;
}
/* Recent Announcements */
 .recent-announcements-section {
     padding: 5rem 0;
}
 .announcements-list {
     display: grid;
     gap: 2rem;
}
 .announcement-item {
     display: flex;
     background: white;
     border-radius: 10px;
     padding: 2rem;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     border-left: 5px solid #2c5aa0;
}
 .announcement-icon {
     background: #2c5aa0;
     color: white;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 2rem;
     flex-shrink: 0;
}
 .announcement-content h3 {
     color: #2c5aa0;
     margin-bottom: 0.5rem;
}
 .announcement-content p {
     color: #666;
     margin-bottom: 1rem;
}
 .announcement-date {
     color: #999;
     font-size: 0.9rem;
}
/* Recently Uploaded */
    .recently-uploaded {
        padding: 5rem 0;
        background: #f8f9fa;
    }
 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1.5rem;
}
 .gallery-item {
     position: relative;
     border-radius: 10px;
     overflow: hidden;
     cursor: pointer;
}
 .gallery-item img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     transition: transform 0.3s ease;
}
 .gallery-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(44, 90, 160, 0.8);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.3s ease;
}
 .gallery-item:hover .gallery-overlay {
     opacity: 1;
}
 .gallery-item:hover img {
     transform: scale(1.1);
}
 .gallery-overlay i {
     color: white;
     font-size: 2rem;
}
/* Footer */
 .footer {
     background: #2c5aa0;
     color: white;
     padding: 3rem 0 1rem;
}
 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     margin-bottom: 2rem;
}
 .footer-section h3 {
     margin-bottom: 1.5rem;
     font-size: 1.2rem;
}
 .contact-info p {
     margin-bottom: 0.5rem;
     display: flex;
     align-items: center;
}
 .contact-info i {
     margin-right: 0.5rem;
     width: 20px;
}
 .map-placeholder {
     margin-top: 1rem;
}
 .map-placeholder img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     border-radius: 5px;
}
 .footer-links {
     list-style: none;
}
 .footer-links li {
     margin-bottom: 0.5rem;
}
 .footer-links a {
     color: white;
     text-decoration: none;
     transition: color 0.3s ease;
}
 .footer-links a:hover {
     color: #ccc;
}
 .social-links, .contact-social-links {
     display: flex;
     gap: 1rem;
}
 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: white;
     text-decoration: none;
     transition: background 0.3s ease;
}
 .contact-social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: #1e3d6f;
     text-decoration: none;
     transition: background 0.3s ease;
}
 .social-links a:hover {
     background: rgba(255, 255, 255, 0.2);
}
 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     padding-top: 2rem;
     text-align: center;
     color: #ccc;
}
/* Responsive Design */
 @media (max-width: 768px) {
     .mobile-menu-toggle {
         display: flex;
    }
     .nav-menu {
         display: none;
    }
     .header-content {
         flex-wrap: wrap;
    }
     .slide-content h2 {
         font-size: 1.8rem;
    }
     .slide-content p {
         font-size: 1rem;
    }
     .section-title {
         font-size: 2rem;
    }
     .section-header {
         flex-direction: column;
         gap: 1rem;
         text-align: center;
    }
     .quick-access-grid {
         grid-template-columns: 1fr;
    }
     .news-grid {
         grid-template-columns: 1fr;
    }
     .event-item {
         flex-direction: column;
         text-align: center;
    }
     .event-date {
         margin-right: 0;
         margin-bottom: 1rem;
         align-self: center;
    }
     .announcement-item {
         flex-direction: column;
         text-align: center;
    }
     .announcement-icon {
         margin-right: 0;
         margin-bottom: 1rem;
         align-self: center;
    }
     .gallery-grid {
         grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
     .footer-content {
         grid-template-columns: 1fr;
         text-align: center;
    }
}
 @media (max-width: 480px) {
     .container {
         padding: 0 15px;
    }
     .hero-slider {
         height: 400px;
         border-radius: 16px;
    }
     .slide-content {
         padding: 2rem 1rem 1rem;
    }
     .slide-content h2 {
         font-size: 1.5rem;
    }
     .slider-controls {
         padding: 0 1rem;
    }
     .access-card, .news-item, .event-item, .announcement-item {
         margin: 0 -15px;
         border-radius: 0;
    }
}
/* President Message Section Styles */
 .president-message-section {
     padding: 8rem 0 4rem;
     background: #f8f9fa;
     min-height: 100vh;
}
 .president-message {
     background: white;
     border-radius: 12px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     overflow: hidden;
     max-width: 800px;
     margin: 0 auto;
}
/* President Image Styles */
 .president-image-container {
     text-align: center;
     padding: 3rem 2rem 2rem;
     background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
}
 .president-image {
     width: 280px;
     height: 350px;
     object-fit: cover;
     border-radius: 8px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
     transition: transform 0.3s ease;
}
 .president-image:hover {
     transform: scale(1.02);
}
/* Message Content Styles */
 .message-content {
     padding: 2rem 3rem 3rem;
}
 .message-header {
     text-align: center;
     margin-bottom: 2.5rem;
     border-bottom: 2px solid #e9ecef;
     padding-bottom: 2rem;
}
 .main-title {
     font-size: 2.5rem;
     color: #2c5aa0;
     margin-bottom: 1.5rem;
     font-weight: 700;
     line-height: 1.2;
}
 .greeting-title {
     font-size: 1.5rem;
     color: #333;
     margin-bottom: 1rem;
     font-weight: 600;
}
 .namaste {
     font-size: 1.2rem;
     color: #666;
     margin-bottom: 1rem;
     font-style: italic;
     font-weight: 500;
}
 .salutation {
     font-size: 1.1rem;
     color: #333;
     margin-bottom: 0;
     font-weight: 500;
}
/* Message Body Styles */
 .message-body {
     line-height: 1.8;
     color: #444;
     font-size: 1.05rem;
}
 .message-body p {
     margin-bottom: 1.5rem;
     text-align: justify;
}
 .message-body p:last-child {
     margin-bottom: 0;
}
 .message-body strong {
     color: #2c5aa0;
     font-weight: 600;
}
/* Responsive Design */
 @media (max-width: 768px) {
     .president-message-section {
         padding: 1rem 0 2rem;
    }
     .container {
         padding: 0 15px;
    }
     .president-message {
         border-radius: 8px;
         margin: 100px -15px 0 -15px; 
    }
     .president-image-container {
         padding: 2rem 1rem 1.5rem;
    }
     .president-image {
         width: 220px;
         height: 280px;
    }
     .message-content {
         padding: 1.5rem 2rem 2.5rem;
    }
     .main-title {
         font-size: 2rem;
         margin-bottom: 1rem;
    }
     .greeting-title {
         font-size: 1.3rem;
    }
     .namaste {
         font-size: 1.1rem;
    }
     .salutation {
         font-size: 1rem;
    }
     .message-body {
         font-size: 1rem;
    }
     .message-body p {
         text-align: left;
         margin-bottom: 1.25rem;
    }
}
 @media (max-width: 480px) {
     .president-image-container {
         padding: 1.5rem 1rem 1rem;
    }
     .president-image {
         width: 180px;
         height: 230px;
    }
     .message-content {
         padding: 1rem 1.5rem 2rem;
    }
     .message-header {
         margin-bottom: 2rem;
         padding-bottom: 1.5rem;
    }
     .main-title {
         font-size: 1.75rem;
    }
     .greeting-title {
         font-size: 1.2rem;
    }
     .namaste {
         font-size: 1rem;
    }
     .message-body {
         font-size: 0.95rem;
         line-height: 1.7;
    }
}
/* Print Styles */
 @media print {
     .president-message-section {
         background: white;
         padding: 0;
    }
     .president-message {
         box-shadow: none;
         border-radius: 0;
    }
     .president-image {
         width: 200px;
         height: 250px;
    }
     .message-content {
         padding: 1rem 0;
    }
     .message-body p {
         text-align: left;
    }
}
/* Accessibility Enhancements */
 @media (prefers-reduced-motion: reduce) {
     .president-image {
         transition: none;
    }
     .president-image:hover {
         transform: none;
    }
}
/* High Contrast Mode Support */
 @media (prefers-contrast: high) {
     .president-message {
         border: 2px solid #000;
    }
     .main-title {
         color: #000;
    }
     .message-body strong {
         color: #000;
    }
}
/* for about-us page */
/* About Us Main Content Styles */
 .about-us-main {
     margin: 0;
     padding: 4rem;
}
/* Hero Section Styles */
 .hero-section {
     position: relative;
     height: 400px;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .hero-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
}
 .hero-image {
     width: 100%;
     border-radius: 32px;
     height: 100%;
     object-fit: cover;
     object-position: center;
}
 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 2;
}
 .hero-content {
     position: relative;
     z-index: 3;
     text-align: center;
     color: white;
     width: 100%;
}
 .hero-title {
     font-size: 3.5rem;
     font-weight: 700;
     margin: 0 0 1rem 0;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
     letter-spacing: 2px;
}
 .hero-subtitle {
     font-size: 2rem;
     font-weight: 400;
     margin: 0 0 2rem 0;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
     font-family: 'Arial', sans-serif;
}

.about-section-title {
    font-size: 3rem;
     font-weight: 700;
     color: white;
     margin-bottom: 1.5rem;
     padding: 0.5rem 1.5rem;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
/* Breadcrumb Styles */
 .breadcrumb {
     margin-top: 2rem;
}
 .breadcrumb-list {
     display: flex;
     align-items: center;
     justify-content: center;
     list-style: none;
     margin: 0;
     padding: 0;
     font-size: 1.1rem;
}
 .breadcrumb-item {
     color: white;
}
 .breadcrumb-link {
     color: white;
     text-decoration: none;
     transition: color 0.3s ease;
}
 .breadcrumb-link:hover {
     color: #ccc;
     text-decoration: underline;
}
 .breadcrumb-separator {
     margin: 0 1rem;
     color: white;
     font-weight: 300;
}
 .breadcrumb-item.current {
     color: #ddd;
     font-weight: 500;
}
/* Content Section Styles */
 .content-section {
     padding: 4rem 0;
     background: #f8f9fa;
     min-height: 60vh;
}
 .about-content {
     max-width: 800px;
     margin: 0 auto;
     /* padding: 10rem 0; */
     background: white;
     border-radius: 8px;
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
     overflow: hidden;
}
 .content-header {
     background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
     color: white;
     padding: 2rem;
     text-align: center;
}
 .content-body {
     padding: 3rem;
}
 .content-paragraph {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #444;
     margin-bottom: 2rem;
     text-align: justify;
     text-justify: inter-word;
}
 .content-paragraph:last-child {
     margin-bottom: 0;
}
/* Responsive Design */
 @media (max-width: 768px) {
     .hero-section {
         height: 300px;
    }
     .hero-title {
         font-size: 2.5rem;
         margin-bottom: 0.5rem;
    }
     .hero-subtitle {
         font-size: 1.5rem;
         margin-bottom: 1.5rem;
    }
     .breadcrumb-list {
         font-size: 1rem;
    }
     .breadcrumb-separator {
         margin: 0 0.75rem;
    }
     .content-section {
         padding: 2rem 0;
    }
     .container {
         padding: 0 15px;
    }
     .about-content {
         margin: 100px -15px 0 -15px; 
         border-radius: 0;
    }
     .content-header {
         padding: 1.5rem;
    }
     .section-title {
         font-size: 2rem;
    }
     .content-body {
         padding: 2rem 1.5rem;
    }
     .content-paragraph {
         font-size: 1rem;
         line-height: 1.7;
         text-align: left;
         margin-bottom: 1.5rem;
    }
}
 @media (max-width: 480px) {
     .hero-section {
         height: 250px;
    }
     .hero-title {
         font-size: 2rem;
         letter-spacing: 1px;
    }
     .hero-subtitle {
         font-size: 1.2rem;
    }
     .breadcrumb-list {
         font-size: 0.9rem;
         flex-wrap: wrap;
    }
     .breadcrumb-separator {
         margin: 0 0.5rem;
    }
     .content-header {
         padding: 1.25rem 1rem;
    }
     .section-title {
         font-size: 1.75rem;
    }
     .content-body {
         padding: 1.5rem 1rem;
    }
     .content-paragraph {
         font-size: 0.95rem;
         line-height: 1.6;
    }
}
/* Large Screen Optimization */
 @media (min-width: 1200px) {
     .hero-section {
         height: 500px;
    }
     .hero-title {
         font-size: 4rem;
    }
     .hero-subtitle {
         font-size: 2.5rem;
    }
     .content-section {
         padding: 5rem 0;
    }
     .content-body {
         padding: 4rem;
    }
     .content-paragraph {
         font-size: 1.15rem;
         line-height: 1.9;
    }
}
/* Print Styles */
 @media print {
     .hero-section {
         height: auto;
         background: white;
         color: black;
    }
     .hero-overlay {
         display: none;
    }
     .hero-title, .hero-subtitle, .breadcrumb-item, .breadcrumb-link {
         color: black;
         text-shadow: none;
    }
     .about-content {
         box-shadow: none;
         border: 1px solid #ddd;
    }
     .content-header {
         background: white;
         color: black;
         border-bottom: 2px solid #2c5aa0;
    }
     .section-title {
         color: #2c5aa0;
         text-shadow: none;
    }
}
/* Accessibility Enhancements */
 @media (prefers-reduced-motion: reduce) {
     .breadcrumb-link {
         transition: none;
    }
}
/* High Contrast Mode Support */
 @media (prefers-contrast: high) {
     .hero-overlay {
         background: rgba(0, 0, 0, 0.8);
    }
     .content-paragraph {
         color: #000;
    }
     .about-content {
         border: 2px solid #000;
    }
}
/* for gallery page */
/* Gallery Main Styles */
 .gallery-main {
     margin: 4rem 0;
     padding: 0;
}
/* Hero Section */
 .gallery-hero {
     position: relative;
     height: 400px;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .hero-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
}
 .hero-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
}
 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(44, 90, 160, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
     z-index: 2;
}
 .hero-content {
     position: relative;
     z-index: 3;
     text-align: center;
     color: white;
     width: 100%;
}
 .breadcrumb-item {
     color: white;
}
 .breadcrumb-link {
     color: white;
     text-decoration: none;
     transition: color 0.3s ease;
}
 .breadcrumb-link:hover {
     color: #ccc;
     text-decoration: underline;
}
 .breadcrumb-separator {
     margin: 0 1rem;
     color: rgba(255, 255, 255, 0.7);
}
 .breadcrumb-item.current {
     color: rgba(255, 255, 255, 0.9);
     font-weight: 500;
}
/* Gallery Content Section */
 .gallery-content {
     padding: 5rem 0;
     background: #f8f9fa;
     min-height: 80vh;
}
/* Section Header */
 .section-header {
     text-align: center;
     margin-bottom: 4rem;
}
 .section-label {
     display: inline-block;
     font-size: 0.9rem;
     font-weight: 600;
     color: #2c5aa0;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 1rem;
     padding: 0.5rem 1.5rem;
     border: 2px solid #2c5aa0;
     border-radius: 25px;
     background: rgba(44, 90, 160, 0.1);
}
 .section-divider {
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, #2c5aa0, #1e3d6f);
     margin: 0 auto;
     border-radius: 2px;
}
/* Image Grid */
 .image-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
     margin-bottom: 3rem;
}
 .image-item {
     position: relative;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     background: white;
}
 .image-item:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
 .image-container {
     position: relative;
     width: 100%;
     height: 280px;
     overflow: hidden;
     cursor: pointer;
     border-radius: 12px;
}
 .gallery-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
     border-radius: 12px;
}
 .image-item:hover .gallery-image {
     transform: scale(1.05);
}
/* Image Overlay */
 .image-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(44, 90, 160, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.3s ease;
}
 .image-item:hover .image-overlay {
     opacity: 1;
}
 .overlay-content {
     text-align: center;
     color: white;
     transform: translateY(20px);
     transition: transform 0.3s ease;
}
 .image-item:hover .overlay-content {
     transform: translateY(0);
}
 .overlay-content i {
     font-size: 2.5rem;
     margin-bottom: 1rem;
     display: block;
}
 .image-title {
     font-size: 1.1rem;
     font-weight: 600;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
/* Load More Section */
 .load-more-section {
     text-align: center;
     margin-top: 3rem;
}
 .load-more-btn {
     background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
     color: white;
     border: none;
     padding: 1rem 2.5rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}
 .load-more-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}
/* Lightbox Modal */
 .lightbox-modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.95);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     opacity: 0;
     transition: opacity 0.3s ease;
}
 .lightbox-modal.active {
     display: flex;
     opacity: 1;
}
 .lightbox-content {
     position: relative;
     max-width: 90%;
     max-height: 90%;
     text-align: center;
}
 .lightbox-image {
     max-width: 100%;
     max-height: 80vh;
     object-fit: contain;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
 .lightbox-close {
     position: absolute;
     top: -50px;
     right: -50px;
     background: none;
     border: none;
     color: white;
     font-size: 2.5rem;
     cursor: pointer;
     width: 50px;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     transition: background 0.3s ease;
}
 .lightbox-close:hover {
     background: rgba(255, 255, 255, 0.1);
}
 .lightbox-caption {
     color: white;
     font-size: 1.2rem;
     margin-top: 1rem;
     font-weight: 500;
}
 .lightbox-navigation {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 100%;
     display: flex;
     justify-content: space-between;
     pointer-events: none;
}
 .lightbox-prev, .lightbox-next {
     background: rgba(255, 255, 255, 0.1);
     border: none;
     color: white;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     cursor: pointer;
     font-size: 1.5rem;
     transition: all 0.3s ease;
     pointer-events: all;
}
 .lightbox-prev:hover, .lightbox-next:hover {
     background: rgba(255, 255, 255, 0.2);
     transform: scale(1.1);
}
 .lightbox-prev {
     margin-left: -80px;
}
 .lightbox-next {
     margin-right: -80px;
}
/* Responsive Design */
 @media (max-width: 1024px) {
     .image-grid {
         gap: 1.5rem;
    }
     .image-container {
         height: 250px;
    }
}
 @media (max-width: 768px) {
     .hero-title {
         font-size: 3rem;
         letter-spacing: 2px;
    }
     .section-title {
         font-size: 2.5rem;
    }
     .image-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 1.5rem;
    }
     .image-container {
         height: 220px;
    }
     .gallery-content {
         padding: 3rem 0;
    }
     .container {
         padding: 0 15px;
    }
     .lightbox-prev {
         margin-left: -40px;
    }
     .lightbox-next {
         margin-right: -40px;
    }
     .lightbox-close {
         top: -40px;
         right: -20px;
    }
}
 @media (max-width: 480px) {
     .gallery-hero {
         height: 300px;
    }
     .hero-title {
         font-size: 2.5rem;
         letter-spacing: 1px;
    }
     .section-title {
         font-size: 2rem;
    }
     .image-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
    }
     .image-container {
         height: 250px;
    }
     .section-header {
         margin-bottom: 3rem;
    }
     .load-more-btn {
         padding: 0.875rem 2rem;
         font-size: 1rem;
    }
     .lightbox-navigation {
         display: none;
    }
     .lightbox-close {
         top: -30px;
         right: 0;
         font-size: 2rem;
    }
}
/* Large Screen Optimization */
 @media (min-width: 1200px) {
     .gallery-hero {
         height: 500px;
    }
     .hero-title {
         font-size: 5rem;
    }
     .image-grid {
         gap: 2.5rem;
    }
     .image-container {
         height: 320px;
    }
}
/* Print Styles */
 @media print {
     .lightbox-modal, .load-more-section {
         display: none;
    }
     .image-overlay {
         display: none;
    }
     .gallery-hero {
         height: auto;
         background: white;
    }
     .hero-title {
         color: #2c5aa0;
         text-shadow: none;
    }
}
/* for documents page */
/* Documents Main Styles */
 .documents-main {
     margin: 0;
     padding: 0;
}
/* Hero Section */
 .documents-hero {
     position: relative;
     height: 300px;
     background: linear-gradient(135deg, #e8d5f2 0%, #d4c5e8 50%, #c8b9e0 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
}
 .hero-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
     z-index: 1;
}
 .hero-content {
     position: relative;
     z-index: 2;
     text-align: center;
     color: white;
     width: 100%;
}
 .hero-title {
     font-size: 3.5rem;
     font-weight: 700;
     margin: 0 0 1rem 0;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
     letter-spacing: 2px;
}
/* Breadcrumb */
 .breadcrumb-list {
     display: flex;
     align-items: center;
     justify-content: center;
     list-style: none;
     margin: 0;
     padding: 0;
     font-size: 1.1rem;
}
 .breadcrumb-item {
     color: white;
}
 .breadcrumb-link {
     color: white;
     text-decoration: none;
     transition: color 0.3s ease;
}
 .breadcrumb-link:hover {
     color: #1e3d6f;
     text-decoration: underline;
}
 .breadcrumb-separator {
     margin: 0 1rem;
     color: white;
}
 .breadcrumb-item.current {
     color: white;
     font-weight: 500;
}
/* Documents Content */
 .documents-content {
     padding: 4rem 0;
     background: #f8f9fa;
     min-height: 80vh;
}
 .documents-layout {
     display: grid;
     grid-template-columns: 300px 1fr;
     gap: 3rem;
     align-items: start;
}
/* Recent Documents Sidebar */
 .recent-documents {
     background: white;
     border-radius: 12px;
     padding: 2rem;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     position: sticky;
     top: 2rem;
}
 .sidebar-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 2rem;
     padding-bottom: 1rem;
     border-bottom: 2px solid #e9ecef;
}
 .sidebar-title {
     font-size: 1.3rem;
     font-weight: 600;
     color: #333;
     margin: 0;
}
 .view-all-link {
     color: #2c5aa0;
     text-decoration: none;
     font-size: 0.9rem;
     font-weight: 500;
     transition: color 0.3s ease;
}
 .view-all-link:hover {
     color: #1e3d6f;
     text-decoration: underline;
}
 .recent-list {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
}
 .recent-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     padding: 1rem;
     border-radius: 8px;
     transition: all 0.3s ease;
     cursor: pointer;
}
 .recent-item:hover {
     background: #f8f9fa;
     transform: translateX(5px);
}
 .document-icon {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, #dc3545, #c82333);
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.2rem;
     flex-shrink: 0;
}
 .document-info {
     flex: 1;
     min-width: 0;
}
 .document-title {
     font-size: 0.95rem;
     font-weight: 600;
     color: #333;
     margin: 0 0 0.25rem 0;
     line-height: 1.3;
     overflow: hidden;
     text-overflow: ellipsis;
     white-space: nowrap;
}
 .document-date {
     font-size: 0.8rem;
     color: #666;
     display: block;
}
/* Main Documents List */
 .documents-list {
     background: white;
     border-radius: 12px;
     padding: 2.5rem;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
 .list-header {
     margin-bottom: 3rem;
     text-align: center;
}
 .list-title {
     font-size: 2.5rem;
     font-weight: 600;
     color: #333;
     margin: 0 0 1rem 0;
}
 .list-description {
     font-size: 1.1rem;
     color: #666;
     margin: 0;
     max-width: 600px;
     margin: 0 auto;
}
/* Documents Grid */
 .documents-grid {
     display: grid;
     gap: 2rem;
     margin-bottom: 3rem;
}
 .document-card {
     border: 2px solid #e9ecef;
     border-radius: 12px;
     padding: 2rem;
     transition: all 0.3s ease;
     background: white;
     position: relative;
     overflow: hidden;
}
 .document-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 4px;
     height: 100%;
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     transform: scaleY(0);
     transition: transform 0.3s ease;
}
 .document-card:hover {
     border-color: #2c5aa0;
     box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
     transform: translateY(-2px);
}
 .document-card:hover::before {
     transform: scaleY(1);
}
 .card-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1.5rem;
}
 .document-number {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     font-size: 1.1rem;
}
 .document-type {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     background: #f8f9fa;
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-size: 0.85rem;
     color: #666;
     font-weight: 500;
}
 .document-type i {
     color: #2c5aa0;
}
 .card-content {
     margin-bottom: 2rem;
}
 .card-title {
     font-size: 1.3rem;
     font-weight: 600;
     color: #333;
     margin: 0 0 0.75rem 0;
     line-height: 1.4;
}
 .card-subtitle {
     font-size: 1rem;
     color: #666;
     margin: 0 0 1rem 0;
     font-style: italic;
}
 .card-meta {
     display: flex;
     gap: 1rem;
     font-size: 0.85rem;
     color: #999;
}
 .file-size, .file-type {
     background: #e9ecef;
     padding: 0.25rem 0.75rem;
     border-radius: 12px;
     font-weight: 500;
}
 .card-actions {
     display: flex;
     gap: 1rem;
}
 .download-btn, .preview-btn {
     padding: 0.75rem 1.5rem;
     border: none;
     border-radius: 8px;
     font-size: 0.9rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.5rem;
}
 .download-btn.primary {
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
}
 .download-btn.primary:hover {
     background: linear-gradient(135deg, #1e3d6f, #2c5aa0);
     transform: translateY(-1px);
     box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}
 .preview-btn {
     background: #f8f9fa;
     color: #666;
     border: 2px solid #e9ecef;
}
 .preview-btn:hover {
     background: #e9ecef;
     color: #333;
     border-color: #dee2e6;
}
/* Load More Section */
 .load-more-section {
     text-align: center;
     padding-top: 2rem;
     border-top: 2px solid #e9ecef;
}
 .load-more-btn {
     background: linear-gradient(135deg, #6c757d, #495057);
     color: white;
     border: none;
     padding: 1rem 2rem;
     font-size: 1rem;
     font-weight: 600;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
}
 .load-more-btn:hover {
     background: linear-gradient(135deg, #495057, #6c757d);
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(108, 117, 125, 0.3);
}
/* Single Event Page Styles */

 .event-details-section {
     padding: 4rem 0;
     background: #f8f9fa;
}
 .event-details-container {
    max-width: 100%;
    margin: 2rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
 .event-image-wrapper {
     position: relative;
}
 .event-detail-image {
     width: 100%;
     height: 400px;
     object-fit: cover;
     border-radius: 12px;
}
 .event-status-badge {
     position: absolute;
     top: 1rem;
     right: 1rem;
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: 600;
     text-transform: uppercase;
}
 .event-status-badge.status-completed {
     background: #28a745;
     color: white;
}
 .event-status-badge.status-upcoming {
     background: #007bff;
     color: white;
}
 .event-status-badge.status-cancelled {
     background: #dc3545;
     color: white;
}
 .event-info-wrapper {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
}
 .event-meta-info {
     display: flex;
     flex-direction: column;
     gap: 1rem;
}
 .event-date-display, .event-time-display, .event-location-display {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     color: #666;
     font-size: 1.1rem;
}
 .event-date-display i, .event-time-display i, .event-location-display i {
     color: #dc143c;
     width: 20px;
}
 .event-title-main {
     font-size: 2.5rem;
     color: #2c3e50;
     margin: 1rem 0;
     line-height: 1.3;
}
 .event-description {
     font-size: 1.2rem;
     color: #555;
     line-height: 1.7;
     margin-bottom: 1.5rem;
}
 .event-content {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #333;
}
 .event-content p {
     margin-bottom: 1rem;
}
 .event-actions {
     display: flex;
     gap: 1rem;
     margin-top: 2rem;
}
 .action-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 1rem 2rem;
     border: none;
     border-radius: 8px;
     font-size: 1rem;
     font-weight: 600;
     text-decoration: none;
     cursor: pointer;
     transition: all 0.3s ease;
}
 .action-btn.share-btn {
     background: linear-gradient(135deg, rgb(44, 90, 160), rgb(30, 61, 111));
     color: white;
}
 .action-btn.share-btn:hover {
     background: #0056b3;
     transform: translateY(-2px);
}
 .action-btn.back-btn {
     background: #6c757d;
     color: white;
}
 .action-btn.back-btn:hover {
     background: #545b62;
     transform: translateY(-2px);
}
/* Related Events Section */
 .related-events-section {
     margin-top: 4rem;
}
 .related-events-title {
     font-size: 2rem;
     color: #2c3e50;
     margin-bottom: 2rem;
     text-align: center;
}
 .related-events-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
}
 .related-event-card {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 .related-event-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
 .related-event-image {
     position: relative;
     height: 200px;
     overflow: hidden;
}
 .related-event-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
}
 .related-event-card:hover .related-event-image img {
     transform: scale(1.05);
}
 .related-event-date {
     position: absolute;
     top: 1rem;
     left: 1rem;
     background: #dc143c;
     color: white;
     padding: 0.5rem 1rem;
     border-radius: 6px;
     font-size: 0.9rem;
     font-weight: 600;
}
 .related-event-content {
     padding: 1.5rem;
}
 .related-event-title {
     font-size: 1.3rem;
     color: #2c3e50;
     margin-bottom: 0.75rem;
     line-height: 1.4;
}
 .related-event-description {
     color: #666;
     line-height: 1.6;
     margin-bottom: 1rem;
}
 .related-event-link {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     color: #dc143c;
     text-decoration: none;
     font-weight: 600;
     transition: color 0.3s ease;
}
 .related-event-link:hover {
     color: #a01030;
}
/* Event Not Found Styles */
 .event-not-found {
     text-align: center;
     padding: 4rem 2rem;
     grid-column: 1 / -1;
}
 .not-found-icon {
     font-size: 4rem;
     color: #dc3545;
     margin-bottom: 1rem;
}
 .event-not-found h2 {
     font-size: 2rem;
     color: #2c3e50;
     margin-bottom: 1rem;
}
 .event-not-found p {
     font-size: 1.2rem;
     color: #666;
     margin-bottom: 2rem;
}
/* Toast Notification */
 .toast-notification {
     position: fixed;
     top: 100px;
     right: 20px;
     background: #28a745;
     color: white;
     padding: 1rem 1.5rem;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     transform: translateX(100%);
     transition: transform 0.3s ease;
     z-index: 1100;
}
 .toast-notification.show {
     transform: translateX(0);
}
/* Responsive Design for Single Event Page */
 @media (max-width: 768px) {
     .event-details-container {
         grid-template-columns: 1fr;
         gap: 2rem;
         padding: 1.5rem;
    }
     .event-detail-image {
         height: 250px;
    }
     .event-title-main {
         font-size: 2rem;
    }
     .event-meta-info {
         gap: 0.75rem;
    }
     .event-date-display, .event-time-display, .event-location-display {
         font-size: 1rem;
    }
     .event-actions {
         flex-direction: column;
    }
     .action-btn {
         justify-content: center;
         padding: 0.875rem 1.5rem;
    }
     .related-events-grid {
         grid-template-columns: 1fr;
    }
     .related-events-title {
         font-size: 1.5rem;
    }
    .documents-layout {
        display: flex;
        flex-direction:column;
        gap: 2 rem;
        position: static;
    }
    .recent-documents{
        position: static; 
        width: 100%;
        z-index: auto;
    }
    .documents-list {
       display: grid;
       width: 100%;
        /* grid-template-columns: 1fr;
        gap: 1.5rem; */
    }
    .documents-grid {
        grid-template-columns: 1fr;
    }
    .document-card {
        width: 100%;
    }
    .sidebar-header {
        display:flex;
    }

    .recent-item {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
    .document-icon {
        font-size: 1.5rem;
        /* color: #2c5aa0; */
    }
    .load-more-section {
        text-align: center;
        margin-top: 2rem;
    }
}
 @media (max-width: 480px) {
     .event-details-section {
         padding: 2rem 0;
    }
     .event-details-container {
         padding: 1rem;
    }
     .event-title-main {
         font-size: 1.75rem;
    }
     .toast-notification {
         right: 10px;
         left: 10px;
         transform: translateY(-100%);
    }
     .toast-notification.show {
         transform: translateY(0);
    }
}
/* for single event page layout and components */
/* Single Event Page Styles */

 .announcement-details-section, .news-details-section, .event-details-section {
     padding: 4rem 0;
     background: #f8f9fa;
}
 .announcement-details-container, .news-details-container, .event-details-container {
    max-width: 100%;
    margin: 2rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
 .announcement-image-wrapper, .news-image-wrapper, .event-image-wrapper {
     position: relative;
}
 .announcement-detail-image, .news-detail-image, .event-detail-image {
     width: 100%;
     height: 400px;
     object-fit: cover;
     border-radius: 12px;
}
 .event-status-badge {
     position: absolute;
     top: 1rem;
     right: 1rem;
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-size: 0.9rem;
     font-weight: 600;
     text-transform: uppercase;
}
 .event-status-badge.status-completed {
     background: #28a745;
     color: white;
}
 .event-status-badge.status-upcoming {
     background: #007bff;
     color: white;
}
 .event-status-badge.status-cancelled {
     background: #dc3545;
     color: white;
}
 .event-info-wrapper, .news-info-wrapper {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
}
 .event-meta-info, .news-meta-info {
     display: flex;
     flex-direction: column;
     gap: 1rem;
}
 .event-date-display, .event-time-display, .event-location-display, .news-date-display, .news-time-display {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     color: #666;
     font-size: 1.1rem;
}
 .event-date-display i, .event-time-display i, .event-location-display i, .news-date-display i, .news-time-display i{
     color: #dc143c;
     width: 20px;
}
 .event-title-main, .news-title-main {
     font-size: 2.5rem;
     color: #2c3e50;
     margin: 1rem 0;
     line-height: 1.3;
}
 .event-description, .news-description {
     font-size: 1.2rem;
     color: #555;
     line-height: 1.7;
     margin-bottom: 1.5rem;
}
 .event-content, .news-content {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #333;
}
 .event-content p, .news-content {
     margin-bottom: 1rem;
}
 .event-actions, .news-actions {
     display: flex;
     gap: 1rem;
     margin-top: 2rem;
}
 .announcement-info-wrapper {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
}
 .announcement-meta-info {
     display: flex;
     flex-direction: column;
     gap: 1rem;
}
 .announcement-date-display, .announcement-time-display, .announcement-location-display {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     color: #666;
     font-size: 1.1rem;
}
 .announcement-date-display i, .announcement-time-display i, .announcement-location-display i {
     color: #dc143c;
     width: 20px;
}
 .announcement-title-main {
     font-size: 2.5rem;
     color: #2c3e50;
     margin: 1rem 0;
     line-height: 1.3;
}
 .announcement-description {
     font-size: 1.2rem;
     color: #555;
     line-height: 1.7;
     margin-bottom: 1.5rem;
}
 .announcement-content {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #333;
}
 .announcement-content p {
     margin-bottom: 1rem;
}
 .announcement-actions {
     display: flex;
     gap: 1rem;
     margin-top: 2rem;
}
 .action-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 1rem 2rem;
     border: none;
     border-radius: 8px;
     font-size: 1rem;
     font-weight: 600;
     text-decoration: none;
     cursor: pointer;
     transition: all 0.3s ease;
}
 .action-btn.share-btn {
     background: linear-gradient(135deg, rgb(44, 90, 160), rgb(30, 61, 111));
     ;
     color: white;
}
 .action-btn.share-btn:hover {
     background: #0056b3;
     transform: translateY(-2px);
}
 .action-btn.back-btn {
     background: #6c757d;
     color: white;
}
 .action-btn.back-btn:hover {
     background: #545b62;
     transform: translateY(-2px);
}

/* Event Not Found Styles */
 .event-not-found, .news-not-found {
     text-align: center;
     padding: 4rem 2rem;
     grid-column: 1 / -1;
}
 .not-found-icon {
     font-size: 4rem;
     color: #dc3545;
     margin-bottom: 1rem;
}
 .event-not-found h2, .news-not-found h2 {
     font-size: 2rem;
     color: #2c3e50;
     margin-bottom: 1rem;
}
 .event-not-found p, .news-not-found p {
     font-size: 1.2rem;
     color: #666;
     margin-bottom: 2rem;
}
/* Toast Notification */
 .toast-notification {
     position: fixed;
     top: 100px;
     right: 20px;
     background: #28a745;
     color: white;
     padding: 1rem 1.5rem;
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
     transform: translateX(100%);
     transition: transform 0.3s ease;
     z-index: 1100;
}
 .toast-notification.show {
     transform: translateX(0);
}
/* Responsive Design for Single Event Page */
 @media (max-width: 768px) {
     .event-details-container, .announcement-details-container, .news-details-container {
         grid-template-columns: 1fr;
         gap: 2rem;
         padding: 1.5rem;
    }
     .event-detail-image, .announcement-detail-image, .news-detail-image {
         height: 250px;
    }
     .event-title-main, .announcement-title-main, .news-title-main {
         font-size: 2rem;
    }
     .event-meta-info, .announcement-meta-info, .news-meta-info {
         gap: 0.75rem;
    }
     .event-date-display, .event-time-display, .event-location-display, .announcement-date-display, .announcement-time-display, .announcement-location-display, .news-date-display, .news-time-display {
         font-size: 1rem;
    }
     .event-actions, .announcement-actions, .news-actions {
         flex-direction: column;
    }
     .action-btn {
         justify-content: center;
         padding: 0.875rem 1.5rem;
    }
     .related-events-grid {
         grid-template-columns: 1fr;
    }
     .related-events-title {
         font-size: 1.5rem;
    }
}
 @media (max-width: 480px) {
     .event-details-section, .announcement-details-section, .news-details-section {
         padding: 2rem 0;
    }
     .event-details-container, .announcement-details-container, .news-details-container {
         padding: 1rem;
    }
     .event-title-main, .announcement-title-main, .news-title-main {
         font-size: 1.75rem;
    }
     .toast-notification, .announcement-toast-notification, .news-toast-notification {
         right: 10px;
         left: 10px;
         transform: translateY(-100%);
    }
     .toast-notification.show, .announcement-toast-notification.show {
         transform: translateY(0);
    }
}
/* for events page */
/* Recent Events Section */
 .recent-events-section {
     padding: 4rem 0;
     background: #f8f9fa;
}
/* Section Header */
 .section-header {
     text-align: center;
     margin-bottom: 4rem;
     display: flex;
     flex-direction: column;
     align-items: center;
}
/* Events Grid */
 .events-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2.5rem;
     margin-bottom: 3rem;
}
 .event-card {
     background: white;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     cursor: pointer;
     border: 2px solid transparent;
}
 .event-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
     border-color: #2c5aa0;
}
 .event-image-container {
     position: relative;
     height: 250px;
     overflow: hidden;
}
 .event-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
}
 .event-card:hover .event-image {
     transform: scale(1.05);
}
 .event-date-badge {
     position: absolute;
     top: 1rem;
     left: 1rem;
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 600;
     box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}
 .event-status {
     position: absolute;
     top: 1rem;
     right: 1rem;
     padding: 0.4rem 0.8rem;
     border-radius: 15px;
     font-size: 0.75rem;
     font-weight: 600;
     text-transform: uppercase;
}
 .status-upcoming {
     background: #d4edda;
     color: #155724;
     border: 1px solid #c3e6cb;
}
 .status-completed {
     background: #f8d7da;
     color: #721c24;
     border: 1px solid #f5c6cb;
}
 .status-ongoing {
     background: #fff3cd;
     color: #856404;
     border: 1px solid #ffeaa7;
}
 .event-content {
     padding: 2rem;
}
 .event-title {
     font-size: 1.4rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 1rem;
     line-height: 1.3;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
}
 .event-description {
     font-size: 1rem;
     color: #666;
     margin-bottom: 1.5rem;
     line-height: 1.6;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
}
 .event-meta {
     display: flex;
     align-items: center;
     gap: 1.5rem;
     margin-bottom: 1.5rem;
     font-size: 0.9rem;
     color: #666;
}
 .meta-item {
     display: flex;
     align-items: center;
     gap: 0.5rem;
}
 .meta-item i {
     color: #2c5aa0;
     width: 16px;
}
 .event-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 1rem;
     border-top: 1px solid #e9ecef;
}
 .read-more-btn {
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     border: none;
     padding: 0.75rem 1.5rem;
     border-radius: 25px;
     font-size: 0.9rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.5rem;
}
 .read-more-btn:hover {
     background: linear-gradient(135deg, #1e3d6f, #2c5aa0);
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}
 .event-category {
     background: #f8f9fa;
     color: #666;
     padding: 0.4rem 0.8rem;
     border-radius: 15px;
     font-size: 0.8rem;
     font-weight: 500;
}
/* Load More Section */
 .load-more-section {
     text-align: center;
     margin-top: 3rem;
}
 .load-more-btn {
     background: linear-gradient(135deg, #6c757d, #495057);
     color: white;
     border: none;
     padding: 1rem 2.5rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
}
 .load-more-btn:hover {
     background: linear-gradient(135deg, #495057, #6c757d);
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}
 @media (max-width: 1024px) {
     .events-grid,.announcements-grid, .news-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 2rem;
    }
     .event-image-container,.announcement-image-container, .news-image-container {
         height: 220px;
    }
}
 @media (max-width: 768px) {
     .container {
         padding: 0 15px;
    }
     .recent-events-section, .recent-news-section, .recent-announcements-section {
         padding: 3rem 0;
    }
     .section-title {
         font-size: 2.5rem;
    }
     .events-grid, .announcements-grid, .news-grid {
         grid-template-columns: 1fr !important ;
         gap: 2rem;
    }
     .event-image-container, .news-image-container, .announcement-image-container {
         height: 250px;
    }
     .event-content, .announcement-content, .news-content {
         padding: 1.5rem;
    }
     .event-meta {
         flex-direction: column;
         align-items: flex-start;
         gap: 0.75rem;
    }
     .event-footer {
         flex-direction: column;
         gap: 1rem;
         align-items: stretch;
    }
     .read-more-btn {
         justify-content: center;
    }
}
 @media (max-width: 480px) {
     .section-title {
         font-size: 2rem;
    }
     .event-content {
         padding: 1.25rem;
    }
     .event-title {
         font-size: 1.2rem;
    }
     .event-description {
         font-size: 0.95rem;
    }
     .action-btn {
         padding: 0.875rem 1.5rem;
         font-size: 0.9rem;
    }
}
/* for contact page */
 .contact-section {
     padding: 4rem 0;
     background: #f8f9fa;
}
/* Section Header */
 .section-header {
     text-align: center;
     margin-bottom: 4rem;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
}
 .section-title {
     font-size: 3rem;
     font-weight: 700;
     color: #2c5aa0;
     margin-bottom: 1.5rem;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
 .section-description {
     font-size: 1.2rem;
     color: #666;
     line-height: 1.6;
     max-width: 600px;
     margin: 0 auto 2rem;
}
 .header-divider {
     width: 80px;
     height: 4px;
     background: linear-gradient(90deg, #2c5aa0, #1e3d6f);
     margin: 0 auto;
     border-radius: 2px;
}
/* Contact Cards Row */
 .contact-cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
     margin-bottom: 4rem;
     /* background: #f8f9fa; */
     /* height: 400px; */
}
 .contact-card {
     background: #f8f9fa;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     padding: 1.5rem 1rem;
     border-radius: 16px;
     /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); */
     text-align: center;
     transition: all 0.3s ease;
     border: 2px solid transparent;
     height: 300px;
     /* height: auto; */
     /* min-height: 250px; */
     overflow: hidden;
}
 .contact-card:hover {
     transform: translateY(-8px);
     /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); */
     /* border-color: #2c5aa0; */
}

 .contact-card-content {
     padding: 2rem;
    text-align: center;

}
 .contact-card-content h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: #2c5aa0;
}

 .contact-card-content p {
     margin-bottom: 1.5rem;
     color: #040404;
}
 .contact-card-title {
     font-size: 0.85rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 0.5rem;
    
}
 .card-text {
     font-size: 0.85rem;
     color: #040404;
     line-height: 1.2;
}
 .card-link {
     display: inline-block;
     color: #2c5aa0;
     text-decoration: none;
     font-weight: 600;
     font-size: 0.85rem;
     margin-top: 0.5rem;
     padding: 0.3rem 0.8rem;
     border: 2px solid #2c5aa0;
     border-radius: 25px;
     transition: all 0.3s ease;
}
 .card-link:hover {
     background: #2c5aa0;
     color: white;
     transform: translateY(-2px);
}
/* Visual Content Row */
 .visual-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     align-items: stretch;
}
/* Office Image */
 .office-image-container {
     position: relative;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
     height: 400px;
}
 .office-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
}
 .office-image-container:hover .office-image {
     transform: scale(1.05);
}
 .image-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
     color: white;
     padding: 2rem;
     transform: translateY(100%);
     transition: transform 0.3s ease;
}
 .office-image-container:hover .image-overlay {
     transform: translateY(0);
}
 .overlay-title {
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
}
 .overlay-text {
     font-size: 1rem;
     opacity: 0.9;
}
/* Map Container */
 .map-container {
     background: white;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
     height: 100%;
     display: flex;
     flex-direction: column;
}

.map-container:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
 .map-header {
     padding: 1.5rem;
     text-align: center;
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
}
 .map-title {
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
}
 .map-description {
     font-size: 0.95rem;
     opacity: 0.9;
}
 .map-wrapper {
     position: relative;
     flex: 1;
}
 .google-map {
     width: 100%;
     height: 100%;
     border: none;
     filter: grayscale(20%);
     transition: filter 0.3s ease;
}
 .google-map:hover {
     filter: grayscale(0%);
}
 .map-overlay {
     position: absolute;
     top: 1rem;
     right: 1rem;
}
 .map-button {
     background: rgba(44, 90, 160, 0.9);
     color: white;
     border: none;
     padding: 0.75rem 1.25rem;
     border-radius: 25px;
     font-size: 0.9rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     backdrop-filter: blur(10px);
}
 .map-button:hover {
     background: rgba(30, 61, 111, 0.9);
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
/* Responsive Design - Mobile First */
 @media (max-width: 1024px) {
     .contact-cards {
         gap: 1.5rem;
    }
     .visual-row {
         gap: 2rem;
    }
     .office-image-container, .map-container {
         height: 350px;
    }
}
 @media (max-width: 768px) {
    .contact-section {
        padding: 2rem 1rem;
    }

    .contact-cards,
    .visual-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .contact-card,
    .quick-contact,
    .map-container {
        width: 100%;
    }

    .contact-cards {
        margin-bottom: 2rem;
    }

    .form-container {
        padding: 1rem;
    }

    .map-container {
        height: auto;
    }

    .map-wrapper iframe.google-map {
        min-height: 300px;
    }

    .map-header {
        padding: 1rem;
    }
}
 @media (max-width: 480px) {
     .contact-section {
         padding: 2rem 0;
    }
     .section-title {
         font-size: 2rem;
    }
     .section-description {
         font-size: 1rem;
    }
     .contact-card {
         padding: 1.5rem 1rem;
    }
     .card-icon {
         width: 60px;
         height: 60px;
         font-size: 1.5rem;
         margin-bottom: 1rem;
    }
     .card-title {
         font-size: 1.3rem;
    }
     .card-text {
         font-size: 0.95rem;
    }
     .card-link {
         font-size: 0.9rem;
         padding: 0.4rem 0.8rem;
    }
     .office-image-container, .map-container {
         height: 250px;
    }
     .map-header {
         padding: 1rem;
    }
     .map-title {
         font-size: 1.1rem;
    }
     .map-description {
         font-size: 0.9rem;
    }
     .map-button {
         padding: 0.6rem 1rem;
         font-size: 0.85rem;
    }
}
/* Large Screen Optimization */
 @media (min-width: 1200px) {
     .contact-cards {
         gap: 3rem;
    }
     .visual-row {
         gap: 4rem;
    }
     .contact-card {
         padding: 3rem 2.5rem;
    }
     .card-icon {
         width: 90px;
         height: 90px;
         font-size: 2.25rem;
    }
     .office-image-container, .map-container {
         height: 450px;
    }
}
/* Print Styles */
 @media print {
     .contact-section {
         background: white;
    }
     .contact-card, .office-image-container, .map-container {
         break-inside: avoid;
         box-shadow: none;
         border: 1px solid #ddd;
    }
     .map-button {
         display: none;
    }
     .image-overlay {
         position: static;
         background: #f8f9fa;
         color: #333;
         transform: none;
    }
}
/* Accessibility Enhancements */
 @media (prefers-reduced-motion: reduce) {
     .contact-card, .office-image, .image-overlay, .map-button, .card-link {
         transition: none;
    }
     .contact-card:hover, .card-link:hover, .map-button:hover {
         transform: none;
    }
}
/* High Contrast Mode */
 @media (prefers-contrast: high) {
     .contact-card {
         border: 2px solid #000;
    }
     .card-title {
         color: #000;
    }
     .card-link {
         border-color: #000;
         color: #000;
    }
     .card-link:hover {
         background: #000;
         color: #fff;
    }
}
/* Quick Contact Form */
 .quick-contact {
     background: white;
     border-radius: 16px;
     padding: 3rem;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
     max-width: 800px;
     margin: 0 auto;
     height:100%;
     display: flex;
     flex-direction: column;
}
.quick-contact:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
 .form-title {
     font-size: 2rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 1rem;
     text-align: center;
}
 .form-description {
     font-size: 1.1rem;
     color: #666;
     text-align: center;
     margin-bottom: 2.5rem;
}
 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
}
 .form-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
}
 .form-group {
     display: flex;
     flex-direction: column;
}
 .form-label {
     font-size: 1rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 0.5rem;
}
 .form-input, .form-textarea {
     padding: 0.85rem;
     border: 2px solid #e9ecef;
     border-radius: 8px;
     font-size: 1rem;
     transition: all 0.3s ease;
     font-family: inherit;
     height: 40px;
}
 .form-input:focus, .form-textarea:focus {
     outline: none;
     border-color: #2c5aa0;
     box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}
 .form-textarea {
     resize: vertical;
     min-height: 120px;
}
 .submit-btn {
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     border: none;
     padding: 1.25rem 2rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.75rem;
     margin-top: 1rem;
}
 .submit-btn:hover {
     background: linear-gradient(135deg, #1e3d6f, #2c5aa0);
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}
 .submit-btn:active {
     transform: translateY(0);
}
/* for announcements grid */
/* Announcements Grid */
 .announcements-grid, .news-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr) important; 
     gap: 2.5rem;
     margin-bottom: 3rem;
}
 .announcement-card, .news-card {
     background: white;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     cursor: pointer;
     border: 2px solid transparent;
}
 .announcement-card:hover, .news-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
     border-color: #2c5aa0;
}
 .announcement-image-container, .news-image-container {
     position: relative;
     height: 250px;
     overflow: hidden;
}
 .announcement-image, .news-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
}
 .announcement-card:hover .announcement-image, .news-card:hover .news-image {
     transform: scale(1.05);
}
 .announcement-date-badge, .news-date-badge {
     position: absolute;
     top: 1rem;
     left: 1rem;
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     padding: 0.5rem 1rem;
     border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 600;
     box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}
 .announcement-status, .news-status {
     position: absolute;
     top: 1rem;
     right: 1rem;
     padding: 0.4rem 0.8rem;
     border-radius: 15px;
     font-size: 0.75rem;
     font-weight: 600;
     text-transform: uppercase;
}
 .announcement-content, .news-content {
     padding: 2rem;
}
 .announcement-title, .news-title {
     font-size: 1.4rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 1rem;
     line-height: 1.3;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
}
 .announcement-description, .news-description {
     font-size: 1rem;
     color: #666;
     margin-bottom: 1.5rem;
     line-height: 1.6;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
}
 .announcement-meta, .news-meta {
     display: flex;
     align-items: center;
     gap: 1.5rem;
     margin-bottom: 1.5rem;
     font-size: 0.9rem;
     color: #666;
}
 .announcement-footer, .news-footer {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 1rem;
     border-top: 1px solid #e9ecef;
}
 .announcement-category, .news-category {
     background: #f8f9fa;
     color: #666;
     padding: 0.4rem 0.8rem;
     border-radius: 15px;
     font-size: 0.8rem;
     font-weight: 500;
}
/* for login */
 .main-content {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 8rem 0 5rem;
     min-height: calc(100vh - 200px);
}
 .login-container {
     width: 100%;
     max-width: 450px;
     padding:3rem 20px;
}
 .login-form-wrapper {
     background: white;
     border-radius: 12px;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
     padding: 3rem 2.5rem;
     border: 1px solid #e9ecef;
}
 .form-title {
     text-align: center;
     font-size: 1.8rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 2.5rem;
     letter-spacing: 1px;
}
 .form-group {
     margin-bottom: 1.5rem;
}
 .form-label {
     display: block;
     font-size: 0.95rem;
     font-weight: 500;
     color: #555;
     margin-bottom: 0.5rem;
}
 .password-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 0.5rem;
}
 .forgot-password {
     font-size: 0.85rem;
     color: #2c5aa0;
     text-decoration: none;
     transition: color 0.3s ease;
}
 .forgot-password:hover {
     color: #1e3d6f;
     text-decoration: underline;
}
 .form-input {
     width: 100%;
     padding: 0.875rem 1rem;
     border: 2px solid #e9ecef;
     border-radius: 8px;
     font-size: 1rem;
     transition: all 0.3s ease;
     background: #fff;
}
 .form-input:focus {
     outline: none;
     border-color: #2c5aa0;
     box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}
 .form-input.error {
     border-color: #dc3545;
     box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
 .password-input-wrapper {
     position: relative;
}
 .password-toggle {
     position: absolute;
     right: 1rem;
     top: 50%;
     transform: translateY(-50%);
     background: none;
     border: none;
     color: #666;
     cursor: pointer;
     font-size: 1rem;
     transition: color 0.3s ease;
}
 .password-toggle:hover {
     color: #2c5aa0;
}
 .error-message {
     color: #dc3545;
     font-size: 0.85rem;
     margin-top: 0.5rem;
     display: none;
}
 .error-message.show {
     display: block;
}
 .checkbox-group {
     margin-bottom: 2rem;
}
 .checkbox-label {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     cursor: pointer;
     font-size: 0.95rem;
     color: #555;
}
 .checkbox-input {
     display: none;
}
 .checkbox-custom {
     width: 18px;
     height: 18px;
     border: 2px solid #e9ecef;
     border-radius: 4px;
     position: relative;
     transition: all 0.3s ease;
}
 .checkbox-input:checked + .checkbox-custom {
     background: #2c5aa0;
     border-color: #2c5aa0;
}
 .checkbox-input:checked + .checkbox-custom::after {
     content: '\f00c';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     color: white;
     font-size: 0.75rem;
}
 .login-btn {
     width: 100%;
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     border: none;
     padding: 1rem;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 8px;
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     margin-bottom: 1.5rem;
}
 .login-btn:hover {
     background: linear-gradient(135deg, #1e3d6f, #2c5aa0);
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}
 .login-btn:active {
     transform: translateY(0);
}
 .login-btn:disabled {
     opacity: 0.7;
     cursor: not-allowed;
     transform: none;
}
 .btn-loader {
     display: none;
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
}
 .login-btn.loading .btn-text {
     opacity: 0;
}
 .login-btn.loading .btn-loader {
     display: block;
}
 .signup-link {
     text-align: center;
     font-size: 0.95rem;
     color: #666;
}
 .signup-link a {
     color: #1e3d6f;
     text-decoration: none;
     font-weight: 600;
     transition: color 0.3s ease;
}
 .signup-link a:hover {
     color: #2c5aa0;
     text-decoration: underline;
}
/* for members section */
 .search-container {
     position: relative;
     padding: 2rem 0 1.5rem;
}
 .search-input {
     width: 300px;
     padding: 0.875rem 1rem 0.875rem 3rem;
     border: 2px solid #e9ecef;
     border-radius: 50px;
     font-size: 1rem;
     transition: all 0.3s ease;
     background: white;
}
 .search-input:focus {
     outline: none;
     border-color: #2c5aa0;
     box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}
 .search-icon {
     position: absolute;
     left: 1rem;
     top: 50%;
     transform: translateY(-50%);
     color: #666;
     font-size: 1rem;
}
 .filter-container {
     position: relative;
}
 .filter-select {
     padding: 0.875rem 1rem;
     border: 2px solid #e9ecef;
     border-radius: 8px;
     font-size: 1rem;
     background: white;
     cursor: pointer;
     transition: all 0.3s ease;
     min-width: 200px;
}
 .filter-select:focus {
     outline: none;
     border-color: #2c5aa0;
     box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}
/* Table Styles */
 .table-container {
     background: white;
     border-radius: 16px;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
     overflow: hidden;
     margin-bottom: 2rem;
}
.members-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* ensure table doesn't shrink too small */
}
 .table-wrapper {
     overflow-x: auto;
}
 .members-table {
     width: 100%;
     border-collapse: collapse;
     font-size: 0.95rem;
}
 .members-table th {
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     padding: 1.25rem 1rem;
     text-align: left;
     font-weight: 600;
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     position: sticky;
     top: 0;
     z-index: 10;
}
 .members-table th.sortable {
     cursor: pointer;
     user-select: none;
     transition: background-color 0.3s ease;
}
 .members-table th.sortable:hover {
     background: linear-gradient(135deg, #1e3d6f, #2c5aa0);
}
 .members-table th.sortable i {
     margin-left: 0.5rem;
     opacity: 0.7;
     transition: all 0.3s ease;
}
 .members-table th.sortable.asc i::before {
     content: "\f0de";
}
 .members-table th.sortable.desc i::before {
     content: "\f0dd";
}
 .members-table td {
     padding: 1.25rem 1rem;
     border-bottom: 1px solid #e9ecef;
     vertical-align: middle;
}
 .members-table tbody tr {
     transition: all 0.3s ease;
}
 .members-table tbody tr:hover {
     background-color: #f8f9fa;
     transform: scale(1.01);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
 .member-name {
     font-weight: 600;
     color: #333;
}
 .member-designation {
     color: #666;
     font-size: 0.9rem;
}
 .member-university {
     color: #2c5aa0;
     font-weight: 500;
}
 .member-email {
     color: #666;
     font-size: 0.9rem;
}
 .view-btn {
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     border: none;
     padding: 0.75rem 1.5rem;
     border-radius: 25px;
     font-size: 0.9rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.5rem;
}
 .view-btn:hover {
     background: linear-gradient(135deg, #1e3d6f, #2c5aa0);
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}
/* No Results */
 .no-results {
     text-align: center;
     padding: 4rem 2rem;
     color: #666;
}
 .no-results i {
     font-size: 4rem;
     color: #ddd;
     margin-bottom: 1rem;
}
 .no-results h3 {
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
     color: #333;
}
/* Loading State */
 .loading-state {
     text-align: center;
     padding: 4rem 2rem;
     color: #666;
}
 .loading-spinner {
     width: 40px;
     height: 40px;
     border: 4px solid #e9ecef;
     border-top: 4px solid #2c5aa0;
     border-radius: 50%;
     animation: spin 1s linear infinite;
     margin: 0 auto 1rem;
}
 @keyframes spin {
     0% {
         transform: rotate(0deg);
    }
     100% {
         transform: rotate(360deg);
    }
}
/* Pagination */
 .pagination-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 2rem;
     padding: 1.5rem;
     background: white;
     border-radius: 12px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
 .pagination-info {
     color: #666;
     font-size: 0.95rem;
}
 .pagination-controls {
     display: flex;
     align-items: center;
     gap: 1rem;
}
 .pagination-btn {
     background: #f8f9fa;
     color: #666;
     border: 2px solid #e9ecef;
     padding: 0.75rem 1.5rem;
     border-radius: 8px;
     font-size: 0.9rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.5rem;
}
 .pagination-btn:hover:not(:disabled) {
     background: #2c5aa0;
     color: white;
     border-color: #2c5aa0;
}
 .pagination-btn:disabled {
     opacity: 0.5;
     cursor: not-allowed;
}
 .pagination-numbers {
     display: flex;
     gap: 0.5rem;
}
 .page-number {
     width: 40px;
     height: 40px;
     border: 2px solid #e9ecef;
     background: white;
     color: #666;
     border-radius: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: 600;
}
 .page-number:hover, .page-number.active {
     background: #2c5aa0;
     color: white;
     border-color: #2c5aa0;
}
/* Modal Styles */
 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     backdrop-filter: blur(5px);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     padding: 2rem;
}
 .modal-overlay.active {
     opacity: 1;
     visibility: visible;
}
 .modal-container {
     background: white;
     border-radius: 16px;
     max-width: 800px;
     width: 100%;
     max-height: 90vh;
     overflow-y: auto;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
     transform: translateY(-50px) scale(0.9);
     transition: all 0.3s ease;
}
 .modal-overlay.active .modal-container {
     transform: translateY(0) scale(1);
}
 .modal-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 2rem 2rem 0;
     border-bottom: 1px solid #e9ecef;
     margin-bottom: 2rem;
}
 .modal-title {
     font-size: 1.8rem;
     font-weight: 600;
     color: #333;
}
 .modal-close {
     background: none;
     border: none;
     font-size: 1.5rem;
     color: #666;
     cursor: pointer;
     padding: 0.5rem;
     border-radius: 50%;
     transition: all 0.3s ease;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .modal-close:hover {
     background: #f8f9fa;
     color: #333;
}
 .modal-body {
     padding: 0 2rem 2rem;
}
/* Member Profile */
 .member-profile {
     display: flex;
     gap: 2rem;
     margin-bottom: 3rem;
     padding-bottom: 2rem;
     border-bottom: 1px solid #e9ecef;
}
 .profile-image {
     flex-shrink: 0;
}
 .profile-image img {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     object-fit: cover;
     border: 4px solid #e9ecef;
}
 .profile-info {
     flex: 1;
}
 .profile-info h3 {
     font-size: 2rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 0.5rem;
}
 .designation {
     font-size: 1.2rem;
     color: #2c5aa0;
     font-weight: 500;
     margin-bottom: 1.5rem;
}
 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
}
 .contact-item {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     color: #666;
     font-size: 0.95rem;
}
 .contact-item i {
     color: #2c5aa0;
     width: 16px;
     flex-shrink: 0;
}
/* Member Details */
 .member-details {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
     margin-bottom: 3rem;
}
 .detail-section {
     background: #f8f9fa;
     padding: 2rem;
     border-radius: 12px;
}
 .detail-section h4 {
     font-size: 1.3rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 1.5rem;
     padding-bottom: 0.5rem;
     border-bottom: 2px solid #2c5aa0;
}
 .education-info, .professional-info, .involvement-info {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1rem;
}
 .education-item, .professional-item, .involvement-item {
     display: flex;
     flex-direction: column;
     gap: 0.25rem;
}
 .education-item strong, .professional-item strong, .involvement-item strong {
     color: #333;
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
}
 .education-item span, .professional-item span, .involvement-item span {
     color: #666;
     font-size: 1rem;
}
/* Modal Actions */
 .modal-actions {
     display: flex;
     gap: 1rem;
     justify-content: center;
     padding-top: 2rem;
     border-top: 1px solid #e9ecef;
}
 .action-btn {
     padding: 1rem 2rem;
     border: none;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.75rem;
}
 .contact-btn {
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
}
 .contact-btn:hover {
     background: linear-gradient(135deg, #1e3d6f, #2c5aa0);
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}
 .connect-btn {
     background: #f8f9fa;
     color: #666;
     border: 2px solid #e9ecef;
}
 .connect-btn:hover {
     background: #e9ecef;
     color: #333;
     border-color: #dee2e6;
}
 .header-actions {
     display: flex;
     flex-wrap: wrap;
    /* Optional: for responsiveness */
     gap: 40rem;
    /* Space between search and filter */
     align-items: center;
     justify-content: flex-start;
     margin-top: 1rem;
}
 .search-container, .filter-container {
     flex: 1 1 auto;
    /* Adjust width as needed */
     min-width: 250px;
    /* Prevent shrinking too small */
     display: flex;
     align-items: center;
}
 .search-input, .filter-select {
     width: 100%;
     padding: 0.5rem 1rem;
     font-size: 1rem;
}
/* Responsive Design */
 @media (max-width: 1024px) {
     .header-content {
         flex-direction: column;
         align-items: flex-start;
         gap: 2rem;
    }
     .header-actions {
         width: 100%;
         justify-content: space-between;
    }
     .search-input {
         width: 250px;
    }
     .filter-select {
         min-width: 180px;
    }
     .footer-content {
         grid-template-columns: 1fr 1fr;
         gap: 2rem;
    }
}
 @media (max-width: 768px) {
     .nav-container {
         padding: 0 15px;
    }
     .nav-menu {
         display: none;
    }
     .mobile-menu-toggle {
         display: flex;
    }
     .logo-text {
         display: none;
    }
     .hero-title {
         font-size: 2.5rem;
    }
     .section-title {
         font-size: 2rem;
    }
     .header-actions {
         flex-direction: column;
         gap: 1rem;
    }
     .search-input {
         width: 100%;
    }
     .filter-select {
         width: 100%;
    }
     .table-wrapper {
         overflow-x: scroll;
    }
     .members-table {
         min-width: 700px;
    }
     .pagination-container {
         flex-direction: column;
         gap: 1rem;
         text-align: center;
    }
     .pagination-controls {
         flex-wrap: wrap;
         justify-content: center;
    }
     .member-profile {
         flex-direction: column;
         text-align: center;
    }
     .profile-info h3 {
         font-size: 1.5rem;
    }
     .modal-actions {
         flex-direction: column;
    }
    .members-section{
        margin: 80px -15px 0 -15px;
    }
    .table-container {
        border-radius: 8px;
        margin: 1rem 0;
    }
     .members-table {
        border-radius: 8px;
        margin: 1rem 0;
    }
}
 @media (max-width: 480px) {
     .container {
         padding: 0 15px;
    }
     .hero-title {
         font-size: 2rem;
    }
     .section-title {
         font-size: 1.5rem;
    }
     .modal-container {
         margin: 1rem;
         max-height: calc(100vh - 2rem);
    }
     .modal-header, .modal-body {
         padding: 1.5rem;
    }
     .member-profile {
         gap: 1rem;
    }
     .profile-image img {
         width: 100px;
         height: 100px;
    }
     .detail-section {
         padding: 1.5rem;
    }
     .action-btn {
         padding: 0.875rem 1.5rem;
         font-size: 0.9rem;
    }
}
/* Print Styles */
 @media print {
     .search-container, .filter-container, .pagination-container, .modal-overlay {
         display: none;
    }
     .members-table {
         font-size: 0.8rem;
    }
     .members-table th, .members-table td {
         padding: 0.5rem;
    }
}
/* Accessibility */
 @media (prefers-reduced-motion: reduce) {
     .members-table tbody tr, .view-btn, .pagination-btn, .action-btn, .social-link, .modal-overlay, .modal-container {
         transition: none;
    }
     .members-table tbody tr:hover, .view-btn:hover, .pagination-btn:hover {
         transform: none;
    }
     .loading-spinner {
         animation: none;
    }
}
/* High Contrast Mode */
 @media (prefers-contrast: high) {
     .members-table th {
         background: #000;
         color: #fff;
    }
     .view-btn {
         background: #000;
         border: 2px solid #000;
    }
     .search-input, .filter-select {
         border-color: #000;
    }
}
 .members-section {
     padding: 5rem 0;
     background: #f8f9fa;
}
 .members-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2.5rem;
     margin-top: 2rem;
}
 .member-card {
     background: white;
     border-radius: 20px;
     padding: 2rem;
     text-align: center;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
     transition: all 0.4s ease;
     cursor: pointer;
     position: relative;
     overflow: hidden;
     border: 2px solid transparent;
}
 .member-card::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #2c5aa0, #1e3d6f);
     transform: scaleX(0);
     transition: transform 0.3s ease;
}
 .member-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
     border-color: #2c5aa0;
}
 .member-card:hover::before {
     transform: scaleX(1);
}
 .member-image-container {
     position: relative;
     margin-bottom: 1.5rem;
}
 .member-image {
     width: 120px;
     height: 120px;
     border-radius: 50%;
     object-fit: cover;
     border: 4px solid #e9ecef;
     transition: all 0.3s ease;
     margin: 0 auto;
     display: block;
}
 .member-card:hover .member-image {
     border-color: #2c5aa0;
     transform: scale(1.05);
}
 .member-badge {
     position: absolute;
     bottom: 0;
     right: 50%;
     transform: translateX(50%);
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     padding: 0.3rem 0.8rem;
     border-radius: 15px;
     font-size: 0.75rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
}
 .member-info h3 {
     font-size: 1.4rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 0.5rem;
     line-height: 1.3;
}
 .member-info p {
     font-size: 1rem;
     color: #2c5aa0;
     font-weight: 500;
     margin-bottom: 1rem;
}
 .view-details {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     color: #666;
     font-size: 0.9rem;
     font-weight: 500;
     opacity: 0;
     transform: translateY(10px);
     transition: all 0.3s ease;
}
 .member-card:hover .view-details {
     opacity: 1;
     transform: translateY(0);
     color: #2c5aa0;
}
/* Member Profile in Modal */
 .member-profile, .president-profile {
     display: flex;
     gap: 2rem;
     margin-bottom: 3rem;
     padding-bottom: 2rem;
     border-bottom: 1px solid #e9ecef;
}
 .profile-image-container {
     position: relative;
     flex-shrink: 0;
}
 .profile-image {
     width: 150px;
     height: 150px;
     border-radius: 50%;
     object-fit: cover;
     border: 4px solid #e9ecef;
}
 .profile-badge {
     position: absolute;
     bottom: 10px;
     right: 10px;
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     padding: 0.4rem 0.8rem;
     border-radius: 15px;
     font-size: 0.75rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
}
 .profile-info {
     flex: 1;
}
 .member-name, .president-name {
    /* font-size: 2.2rem;
     */
     font-weight: 600;
     color: #333;
     margin-bottom: 0.5rem;
     line-height: 1.2;
}
 .member-designation {
    /* font-size: 1.3rem;
     */
     color: #2c5aa0;
     font-weight: 500;
     margin-bottom: 1rem;
}
 .member-tenure {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     color: #666;
     font-size: 1rem;
     font-weight: 500;
}
 .member-tenure i {
     color: #2c5aa0;
}
 .president-tenure {
     font-size: 1.3rem;
     color: #2c5aa0;
     font-weight: 500;
     margin-bottom: 2rem;
}
/* Member Details */
 .member-details, .president-details {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
     margin-bottom: 3rem;
}
 .detail-section {
     background: #f8f9fa;
     padding: 2rem;
     border-radius: 16px;
     border-left: 4px solid #2c5aa0;
}
 .detail-section h4 {
     font-size: 1.3rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 1.5rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
}
 .detail-section h4 i {
     color: #2c5aa0;
     font-size: 1.1rem;
}
 .detail-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     background: #f8f9fa;
     padding: 1rem;
     border-radius: 12px;
}
 .detail-item i {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.9rem;
     flex-shrink: 0;
}
 .detail-item span {
     color: #666;
     line-height: 1.6;
}
/* President Achievements */
 .president-achievements {
     background: #f8f9fa;
     padding: 2rem;
     border-radius: 16px;
     border-left: 4px solid #2c5aa0;
     margin-bottom: 2rem;
}
 .president-achievements h4 {
     font-size: 1.3rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 1.5rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
}
 .president-achievements h4 i {
     color: #2c5aa0;
     font-size: 1.1rem;
}
 .achievements-list {
     background: white;
     padding: 1.5rem;
     border-radius: 12px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     list-style: none;
}
 .achievements-list li {
     position: relative;
     padding-left: 2rem;
     margin-bottom: 0.75rem;
     color: #666;
     line-height: 1.6;
}
 .achievements-list li::before {
     content: "✓";
     position: absolute;
     left: 0;
     top: 0;
     color: #2c5aa0;
     font-weight: bold;
     font-size: 1.1rem;
}
 .achievements-list li:last-child {
     margin-bottom: 0;
}
/* President Description */
 .president-description {
     background: #f8f9fa;
     padding: 2rem;
     border-radius: 16px;
     border-left: 4px solid #2c5aa0;
}
 .president-description h4 {
     font-size: 1.3rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 1.5rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
}
 .president-description h4 i {
     color: #2c5aa0;
     font-size: 1.1rem;
}
/* Contact Section */
 .contact-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 1.5rem;
}
 .contact-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     background: white;
     padding: 1rem;
     border-radius: 12px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
 .contact-item i {
     width: 40px;
     height: 40px;
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.9rem;
     flex-shrink: 0;
}
 .contact-item div {
     flex: 1;
}
 .contact-item label {
     display: block;
     font-size: 0.85rem;
     font-weight: 600;
     color: #666;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-bottom: 0.25rem;
}
 .contact-item span {
     font-size: 1rem;
     color: #333;
     font-weight: 500;
}
/* Background Section */
 .background-content {
     display: flex;
     flex-direction: column;
     gap: 1rem;
}
 .background-item {
     background: white;
     padding: 1rem;
     border-radius: 12px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
 .background-item strong {
     display: block;
     color: #2c5aa0;
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
     text-transform: uppercase;
     letter-spacing: 0.5px;
}
 .background-item span {
     color: #666;
     line-height: 1.6;
}
/* Description Section */
 .description-content {
     background: white;
     padding: 1.5rem;
     border-radius: 12px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
 .description-content p {
     color: #666;
     line-height: 1.7;
     margin-bottom: 1rem;
}
 .description-content p:last-child {
     margin-bottom: 0;
}
/* Responsibilities Section */
 .responsibilities-list {
     background: white;
     padding: 1.5rem;
     border-radius: 12px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     list-style: none;
}
 .responsibilities-list li {
     position: relative;
     padding-left: 2rem;
     margin-bottom: 0.75rem;
     color: #666;
     line-height: 1.6;
}
 .responsibilities-list li::before {
     content: "✓";
     position: absolute;
     left: 0;
     top: 0;
     color: #2c5aa0;
     font-weight: bold;
     font-size: 1.1rem;
}
 .responsibilities-list li:last-child {
     margin-bottom: 0;
}
 .registration-section {
     padding: 5rem 0 5rem;
     background: #f8f9fa;
}
 .registration-container {
     max-width: 1000px;
     margin: 0 auto;
     background: white;
     border-radius: 16px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     overflow: hidden;
}
 .registration-header {
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     padding: 3rem;
     text-align: center;
}
 .registration-title {
     font-size: 2.5rem;
     font-weight: 600;
     margin-bottom: 2rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
 .registration-note {
     background: rgba(255, 255, 255, 0.1);
     padding: 2rem;
     border-radius: 12px;
     text-align: left;
     line-height: 1.6;
}
 .registration-note p {
     margin-bottom: 1rem;
}
 .registration-note p:last-child {
     margin-bottom: 0;
}
 .highlight {
     background: rgba(255, 255, 255, 0.2);
     padding: 0.2rem 0.5rem;
     border-radius: 4px;
     font-weight: 600;
}
/* Single Page Form */
 .single-page-form {
     padding: 3rem;
}
/* Membership Type Section */
 .membership-type-section {
     margin-bottom: 3rem;
     padding-bottom: 2rem;
     border-bottom: 2px solid #e9ecef;
}
 .membership-options {
     display: flex;
     gap: 2rem;
     justify-content: center;
     flex-wrap: wrap;
}
 .membership-option {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     cursor: pointer;
     padding: 1rem 1.5rem;
     border: 2px solid #e9ecef;
     border-radius: 12px;
     transition: all 0.3s ease;
     background: white;
}
 .membership-option:hover {
     border-color: #2c5aa0;
     background: rgba(44, 90, 160, 0.05);
}
 .membership-option input[type="radio"] {
     display: none;
}
 .radio-custom {
     width: 20px;
     height: 20px;
     border: 2px solid #e9ecef;
     border-radius: 50%;
     position: relative;
     transition: all 0.3s ease;
}
 .membership-option input[type="radio"]:checked + .radio-custom {
     border-color: #2c5aa0;
     background: #2c5aa0;
}
 .membership-option input[type="radio"]:checked + .radio-custom::after {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     width: 8px;
     height: 8px;
     background: white;
     border-radius: 50%;
}
 .option-text {
     font-size: 1.1rem;
     font-weight: 600;
     color: #333;
}
 .membership-option input[type="radio"]:checked ~ .option-text {
     color: #2c5aa0;
}
/* Privacy Notice */
 .privacy-notice {
     background: #fff3cd;
     border: 1px solid #ffeaa7;
     border-radius: 8px;
     padding: 1rem;
     margin-bottom: 2rem;
     text-align: center;
}
 .privacy-notice p {
     margin: 0;
     color: #856404;
     font-weight: 500;
}
/* Form Fields Grid */
 .form-fields-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     margin-bottom: 3rem;
}
 .field-group {
     display: flex;
     flex-direction: column;
}
 .field-label {
     font-size: 1rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 0.75rem;
}
 .field-with-privacy {
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
}
 .form-field {
     padding: 0.875rem 1rem;
     border: 2px solid #e9ecef;
     border-radius: 8px;
     font-size: 1rem;
     transition: all 0.3s ease;
     background: white;
     font-family: inherit;
}
 .form-field:focus {
     outline: none;
     border-color: #2c5aa0;
     box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}
 .form-field::placeholder {
     color: #999;
}
/* Privacy Checkbox */
 .privacy-checkbox {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     cursor: pointer;
     font-size: 0.9rem;
     color: #666;
}
 .privacy-checkbox input[type="checkbox"] {
     display: none;
}
 .checkbox-custom {
     width: 16px;
     height: 16px;
     border: 2px solid #e9ecef;
     border-radius: 3px;
     position: relative;
     transition: all 0.3s ease;
}
 .privacy-checkbox input[type="checkbox"]:checked + .checkbox-custom {
     background: #2c5aa0;
     border-color: #2c5aa0;
}
 .privacy-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
     content: "✓";
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     color: white;
     font-size: 0.7rem;
     font-weight: bold;
}
 .privacy-text {
     font-weight: 500;
}
/* Terms Section */
 .terms-section {
     margin-bottom: 2rem;
     padding: 1.5rem;
     background: #f8f9fa;
     border-radius: 8px;
     border-left: 4px solid #2c5aa0;
}
 .terms-checkbox {
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
     cursor: pointer;
     font-size: 1rem;
     line-height: 1.5;
}
 .terms-checkbox input[type="checkbox"] {
     display: none;
}
 .terms-checkbox .checkbox-custom {
     width: 20px;
     height: 20px;
     margin-top: 2px;
     flex-shrink: 0;
}
 .terms-text a {
     color: #2c5aa0;
     text-decoration: none;
     font-weight: 600;
}
 .terms-text a:hover {
     text-decoration: underline;
}
/* Submit Section */
 .submit-section {
     text-align: center;
}
 .submit-btn {
     background: linear-gradient(135deg, #1e3d6f, #2c5aa0);
     color: white;
     border: none;
     padding: 1.25rem 3rem;
     border-radius: 50px;
     font-size: 1.1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 0.75rem;
     box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}
 .submit-btn:hover {
     background: linear-gradient(135deg, #20c997, #28a745);
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}
 .submit-btn:active {
     transform: translateY(0);
}
/* Loading State */
 .submit-btn.loading {
     pointer-events: none;
     opacity: 0.7;
}
 .submit-btn.loading::after {
     content: "";
     width: 16px;
     height: 16px;
     border: 2px solid rgba(255, 255, 255, 0.3);
     border-top: 2px solid white;
     border-radius: 50%;
     animation: spin 1s linear infinite;
     margin-left: 0.5rem;
}
 @keyframes spin {
     0% {
         transform: rotate(0deg);
    }
     100% {
         transform: rotate(360deg);
    }
}
/* Responsive Design */
 @media (max-width: 768px) {
     .registration-header {
         padding: 2rem;
    }
     .registration-title {
         font-size: 2rem;
    }
     .single-page-form {
         padding: 2rem;
    }
     .form-fields-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
    }
     .membership-options {
         flex-direction: column;
         align-items: center;
         gap: 1rem;
    }
     .membership-option {
         width: 100%;
         max-width: 300px;
         justify-content: center;
    }
     .submit-btn {
         width: 100%;
         max-width: 300px;
    }
}
 @media (max-width: 480px) {
     .registration-header {
         padding: 1.5rem;
    }
     .registration-title {
         font-size: 1.5rem;
    }
     .single-page-form {
         padding: 1.5rem;
    }
     .registration-note {
         padding: 1.5rem;
    }
     .form-fields-grid {
         gap: 1rem;
    }
     .field-with-privacy {
         gap: 0.5rem;
    }
}
/* Print Styles */
 @media print {
     .header, .footer, .hero-section {
         display: none;
    }
     .registration-container {
         box-shadow: none;
         border: 1px solid #ddd;
    }
     .registration-header {
         background: none;
         color: #333;
         border-bottom: 2px solid #ddd;
    }
     .submit-btn {
         display: none;
    }
}
/* High Contrast Mode */
 @media (prefers-contrast: high) {
     .form-field, .checkbox-custom, .radio-custom {
         border-color: #000;
    }
     .submit-btn {
         background: #000;
         border: 2px solid #000;
    }
}
/* Focus Styles for Accessibility */
 .form-field:focus, .submit-btn:focus, .membership-option:focus-within, .privacy-checkbox:focus-within, .terms-checkbox:focus-within {
     outline: 2px solid #2c5aa0;
     outline-offset: 2px;
}
/* Section Header */
 .section-header {
     text-align: center;
     margin-bottom: 4rem;
}
 .form-wrapper {
     background: white;
     border-radius: 20px;
     padding: 3rem;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     border: 1px solid #e9ecef;
}
/* Progress Indicator */
 .progress-indicator {
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 3rem;
     padding: 2rem 0;
     border-bottom: 1px solid #e9ecef;
}
 .progress-step {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 0.5rem;
     position: relative;
}
 .step-number {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: #e9ecef;
     color: #666;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 600;
     font-size: 1rem;
     transition: all 0.3s ease;
}
 .step-label {
     font-size: 0.85rem;
     color: #666;
     font-weight: 500;
     text-align: center;
     transition: color 0.3s ease;
}
 .progress-step.active .step-number {
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
}
 .progress-step.active .step-label {
     color: #2c5aa0;
     font-weight: 600;
}
 .progress-step.completed .step-number {
     background: #28a745;
     color: white;
}
 .progress-step.completed .step-label {
     color: #28a745;
}
 .progress-line {
     width: 60px;
     height: 2px;
     background: #e9ecef;
     margin: 0 1rem;
     position: relative;
     top: -20px;
}
 .progress-line.completed {
     background: #28a745;
}
/* Form Steps */
 .form-step {
     display: none;
}
 .form-step.active {
     display: block;
     animation: fadeInUp 0.5s ease;
}
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .step-header {
     margin-bottom: 2rem;
     text-align: center;
}
 .step-header h3 {
     font-size: 1.8rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 0.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 0.75rem;
}
 .step-header h3 i {
     color: #2c5aa0;
     font-size: 1.5rem;
}
 .step-header p {
     color: #666;
     font-size: 1.1rem;
}
/* Form Grid */
 .form-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
}
/* .form-group {
     display: flex;
     flex-direction: column;
}
 .form-group.full-width {
     grid-column: 1 / -1;
}
 */
 .form-label {
     font-size: 0.95rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 0.5rem;
     display: flex;
     align-items: center;
     gap: 0.25rem;
}
 .required {
     color: #dc3545;
     font-weight: bold;
}
 .form-input, .form-select, .form-textarea {
     padding: 0.875rem 1rem;
     border: 2px solid #e9ecef;
     border-radius: 12px;
     font-size: 1rem;
     transition: all 0.3s ease;
     background: white;
     font-family: inherit;
}
 .form-input:focus, .form-select:focus, .form-textarea:focus {
     outline: none;
     border-color: #2c5aa0;
     box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}
 .form-input.error, .form-select.error, .form-textarea.error {
     border-color: #dc3545;
     box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}
 .form-textarea {
     resize: vertical;
     min-height: 100px;
}
 .error-message {
     color: #dc3545;
     font-size: 0.85rem;
     margin-top: 0.25rem;
     display: none;
}
 .error-message.show {
     display: block;
}
/* Checkbox Styles */
 .checkbox-label {
     display: flex;
     align-items: flex-start;
     gap: 0.75rem;
     cursor: pointer;
     font-size: 0.95rem;
     line-height: 1.5;
}
 .form-checkbox {
     display: none;
}
 .checkmark {
     width: 20px;
     height: 20px;
     border: 2px solid #e9ecef;
     border-radius: 4px;
     position: relative;
     transition: all 0.3s ease;
     flex-shrink: 0;
     margin-top: 2px;
}
 .form-checkbox:checked + .checkmark {
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     border-color: #2c5aa0;
}
 .form-checkbox:checked + .checkmark::after {
     content: "✓";
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     color: white;
     font-size: 0.8rem;
     font-weight: bold;
}
/* Review Section */
 .review-section {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
}
 .review-card {
     background: #f8f9fa;
     border-radius: 12px;
     padding: 1.5rem;
     position: relative;
     border-left: 4px solid #2c5aa0;
}
 .review-card h4 {
     font-size: 1.2rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 1rem;
     display: flex;
     align-items: center;
     gap: 0.5rem;
}
 .review-card h4 i {
     color: #2c5aa0;
}
 .review-content {
     color: #666;
     line-height: 1.6;
}
 .review-content p {
     margin-bottom: 0.5rem;
}
 .edit-btn {
     position: absolute;
     top: 1rem;
     right: 1rem;
     background: none;
     border: 2px solid #2c5aa0;
     color: #2c5aa0;
     padding: 0.5rem 1rem;
     border-radius: 8px;
     font-size: 0.85rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.5rem;
}
 .edit-btn:hover {
     background: #2c5aa0;
     color: white;
}
 .terms-section {
     margin-top: 2rem;
     padding-top: 2rem;
     border-top: 1px solid #e9ecef;
}
 .terms-section a {
     color: #2c5aa0;
     text-decoration: none;
     font-weight: 600;
}
 .terms-section a:hover {
     text-decoration: underline;
}
/* Form Navigation */
 .form-navigation {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 3rem;
     padding-top: 2rem;
     border-top: 1px solid #e9ecef;
}
 .nav-btn {
     padding: 1rem 2rem;
     border: none;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.75rem;
     text-decoration: none;
}
 .prev-btn {
     background: #f8f9fa;
     color: #666;
     border: 2px solid #e9ecef;
}
 .prev-btn:hover {
     background: #e9ecef;
     color: #333;
}
 .next-btn, .submit-btn {
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     margin-left: auto;
}
 .next-btn:hover, .submit-btn:hover {
     background: linear-gradient(135deg, #1e3d6f, #2c5aa0);
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
}
 .submit-btn {
     background: linear-gradient(135deg, #1e3d6f, #2c5aa0);
}
 .submit-btn:hover {
     background: #1e3d6f;
     box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}
/* Benefits Sidebar */
 .benefits-sidebar {
     display: flex;
     flex-direction: column;
     gap: 2rem;
}
 .benefits-card {
     background: white;
     border-radius: 16px;
     padding: 2rem;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
     border: 1px solid #e9ecef;
}
 .benefits-card h3, .contact-card h3 {
     font-size: 1.3rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 1.5rem;
     display: flex;
     align-items: center;
     gap: 0.75rem;
}
 .benefits-card h3 i, .contact-card h3 i {
     color: #2c5aa0;
     font-size: 1.2rem;
}
 .benefits-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 1rem;
}
 .benefits-list li {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     color: #666;
     font-size: 0.95rem;
     line-height: 1.5;
}
 .benefits-list li i {
     color: #2c5aa0;
     font-size: 0.9rem;
     width: 16px;
     flex-shrink: 0;
}
 .contact-card p {
     color: #666;
     line-height: 1.6;
     margin-bottom: 1.5rem;
}
 .intro-section {
     padding: 5rem 0;
     background: white;
}
 .intro-content {
     text-align: center;
     max-width: 800px;
     margin: 0 auto;
}
/* Timeline Section */
 .timeline-section {
     padding: 5rem 0;
     background: #f8f9fa;
}
 .timeline-header {
     text-align: center;
     margin-bottom: 4rem;
}
 .timeline-title {
     font-size: 3rem;
     font-weight: 700;
     color: #2c5aa0;
     margin-bottom: 1.5rem;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
 .timeline-subtitle {
     font-size: 1.2rem;
     color: #666;
     max-width: 600px;
     margin: 0 auto;
}
 .timeline-container {
     position: relative;
     max-width: 1000px;
     margin: 0 auto;
}
 .timeline-container::before {
     content: "";
     position: absolute;
     left: 50%;
     top: 0;
     bottom: 0;
     width: 4px;
     background: linear-gradient(180deg, #2c5aa0, #1e3d6f);
     transform: translateX(-50%);
     border-radius: 2px;
}
 .timeline-item {
     position: relative;
     margin-bottom: 3rem;
     display: flex;
     align-items: center;
}
 .timeline-item:nth-child(odd) {
     flex-direction: row;
}
 .timeline-item:nth-child(even) {
     flex-direction: row-reverse;
}
 .timeline-content {
     background: white;
     padding: 2rem;
     border-radius: 16px;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
     width: 45%;
     position: relative;
     border: 2px solid transparent;
     transition: all 0.3s ease;
}
 .timeline-content:hover {
     border-color: #2c5aa0;
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
 .timeline-content::before {
     content: "";
     position: absolute;
     top: 50%;
     width: 0;
     height: 0;
     border: 15px solid transparent;
     transform: translateY(-50%);
}
 .timeline-item:nth-child(odd) .timeline-content::before {
     right: -30px;
     border-left-color: white;
}
 .timeline-item:nth-child(even) .timeline-content::before {
     left: -30px;
     border-right-color: white;
}
 .timeline-year {
     position: absolute;
     left: 50%;
     top: 50%;
     transform: translate(-50%, -50%);
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     width: 80px;
     height: 80px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.1rem;
     font-weight: 600;
     box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
     z-index: 2;
}
 .timeline-president {
     font-size: 1.3rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 0.5rem;
}
 .timeline-tenure {
     font-size: 1rem;
     color: #2c5aa0;
     font-weight: 500;
     margin-bottom: 1rem;
}
 .timeline-description {
     color: #666;
     line-height: 1.6;
}
/* Presidents Grid */
 .presidents-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2.5rem;
     margin-top: 2rem;
}
 .president-card {
     background: white;
     border-radius: 20px;
     padding: 2rem;
     text-align: center;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
     transition: all 0.4s ease;
     cursor: pointer;
     position: relative;
     overflow: hidden;
     border: 2px solid transparent;
}
 .president-card::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #2c5aa0, #1e3d6f);
     transform: scaleX(0);
     transition: transform 0.3s ease;
}
 .president-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
     border-color: #2c5aa0;
}
 .president-card:hover::before {
     transform: scaleX(1);
}
 .president-image-container {
     position: relative;
     margin-bottom: 1.5rem;
}
 .president-image {
     width: 150px;
     height: 150px;
     border-radius: 50%;
     object-fit: cover;
     border: 4px solid #e9ecef;
     transition: all 0.3s ease;
     margin: 0 auto;
     display: block;
}
 .president-card:hover .president-image {
     border-color: #2c5aa0;
     transform: scale(1.05);
}
 .president-badge {
     position: absolute;
     bottom: 0;
     right: 50%;
     transform: translateX(50%);
     background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
     color: white;
     padding: 0.3rem 0.8rem;
     border-radius: 15px;
     font-size: 0.75rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.5px;
}
 .president-info h3 {
     font-size: 1.4rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 0.5rem;
     line-height: 1.3;
}
 .president-info .tenure {
     font-size: 1rem;
     color: #2c5aa0;
     font-weight: 500;
     margin-bottom: 1rem;
}
 .president-info .brief {
     font-size: 0.9rem;
     color: #666;
     line-height: 1.6;
     margin-bottom: 1rem;
}
 .view-details {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     color: #666;
     font-size: 0.9rem;
     font-weight: 500;
     opacity: 0;
     transform: translateY(10px);
     transition: all 0.3s ease;
}
 .president-card:hover .view-details {
     opacity: 1;
     transform: translateY(0);
     color: #2c5aa0;
}
/* Legacy Section */
 .legacy-section {
     padding: 5rem 0;
     background: #f8f9fa;
}
 .legacy-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
}
 .legacy-text .section-title {
     text-align: left;
     margin-bottom: 1.5rem;
}
 .legacy-text .section-description {
     text-align: left;
     margin-bottom: 3rem;
}
 .legacy-stats {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
}
 .stat-item {
     text-align: center;
     padding: 1.5rem;
     background: white;
     border-radius: 16px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     transition: transform 0.3s ease;
}
 .stat-item:hover {
     transform: translateY(-5px);
}
 .stat-number {
     font-size: 2.5rem;
     font-weight: 700;
     color: #2c5aa0;
     margin-bottom: 0.5rem;
}
 .stat-label {
     font-size: 0.9rem;
     color: #666;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 0.5px;
}
 .legacy-image {
     position: relative;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
 .legacy-img {
     width: 100%;
     height: 400px;
     object-fit: cover;
     transition: transform 0.3s ease;
}
 .legacy-image:hover .legacy-img {
     transform: scale(1.05);
}
 .legacy-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
     color: white;
     padding: 2rem;
     text-align: center;
}
 .legacy-overlay i {
     font-size: 2rem;
     margin-bottom: 1rem;
     color: #2c5aa0;
}
 .legacy-overlay p {
     font-size: 1.1rem;
     font-weight: 500;
}
 

/* Benefits section */

.benefits-main {
    background: #f8f9fa;
    margin: 0;
    padding: 4rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0.5rem 1.5rem;
}

.section-label {
    display: inline-block;
     font-size: 0.9rem;
     font-weight: 600;
     color: #2c5aa0;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 1rem;
     padding: 0.5rem 1.5rem;
     border: 2px solid #2c5aa0;
     border-radius: 25px;
     background: rgba(44, 90, 160, 0.1);
}

.section-title {
    font-size: 3rem;
     font-weight: 700;
     color: #2c5aa0;
     margin-bottom: 1.5rem;
     padding: 0.5rem 1.5rem;
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #1e3d6f);
    margin: 0 auto;
    border-radius: 2px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

/* Benefit Card */
.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #1e3d6f);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #2c5aa0;
}

/* Company Header */
.company-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f1f3f4;
}

.company-logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin: 0 0 0.5rem 0;
}

.company-type {
    font-size: 1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Benefit Content */
.benefit-content {
    margin-bottom: 0;
}

.benefit-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.benefit-details {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.benefit-item i {
    color: #2c5aa0;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.benefit-item span {
    color: #444;
    font-weight: 500;
    line-height: 1.4;
}

/* Benefit Code */
.benefit-code {
    background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.code-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-right: 0.5rem;
}

.code-value {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    border: 1px dashed rgba(255, 255, 255, 0.3);
}

/* How to Use Section */
.how-to-use {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.how-to-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c5aa0;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.step-item:hover {
    background: #e9ecef;
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #1e3d6f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.step-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

/* Terms and Conditions */
.terms-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.terms-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
}

.terms-list {
    list-style: none;
    padding: 0;
}

.terms-list li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #f1f3f4;
}

.terms-list li:last-child {
    border-bottom: none;
}

.terms-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .benefits-overview {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .company-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .how-to-use,
    .terms-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .company-logo {
        width: 60px;
        height: 40px;
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .how-to-use,
    .terms-section {
        padding: 1.5rem 1rem;
    }
    
    .how-to-title,
    .terms-title {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .hero-section {
        height: auto;
        background: white;
        color: black;
    }
    
    .hero-title {
        color: #2c5aa0;
        text-shadow: none;
    }
    
    .benefit-card {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }
    
    .benefit-code {
        background: #f8f9fa;
        color: black;
        border: 1px solid #ddd;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .benefit-card,
    .benefit-item,
    .step-item {
        transition: none;
    }
    
    .benefit-card:hover,
    .benefit-item:hover,
    .step-item:hover {
        transform: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .benefit-card {
        border: 2px solid #000;
    }
    
    .company-name,
    .section-title {
        color: #000;
    }
    
    .benefit-code {
        background: #000;
        color: #fff;
    }
}
 