
        :root {
            --primary-gold: #D4AF37;
            --secondary-gold: #FFD700;
            --light-gold: #FFF8DC;
            --dark-gold: #B8860B;
            --silver: #C0C0C0;
            --dark-silver: #A9A9A9;
            --dark-bg: #1a1a1a;
            --light-bg: #f8f5f0;
            --text-dark: #333333;
            --text-light: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-dark);
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
            position: relative;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        .cursive {
            font-family: 'Great Vibes', cursive;
        }

        /* Header & Navigation */
        .header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            border-bottom: 2px solid var(--primary-gold);
        }

        .header.scrolled {
            padding: 10px 0;
            background: rgba(26, 26, 26, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 3px solid var(--silver);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
            background: #fff;
        }
        
        .logo-img {
            width: 100%;
            height: 100%;
            /* object-fit: cover; */
            border-radius: 20%;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            color: var(--primary-gold);
            margin: 0;
            line-height: 1.2;
        }

        .logo-text span {
            font-size: 0.9rem;
            color: var(--silver);
        }
        .reg-number {
            font-size: 0.8rem;
            color: var(--silver);
            margin-top: 5px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 10px;
        }

        .nav-menu a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-gold);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-menu a:hover::after {
            width: 80%;
        }

        .nav-social {
            display: flex;
            gap: 15px;
        }

        .nav-social a {
            color: var(--silver);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .nav-social a:hover {
            color: var(--primary-gold);
            transform: translateY(-3px);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: var(--primary-gold);
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-menu {
            display: none;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 5% 80px;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 100%;
            /* Fallback background if image not set */
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1589674781759-5f209b3e86e8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            /* Image quality enhancements */
            image-rendering: auto;
            image-rendering: -webkit-optimize-contrast;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            transform: translateZ(0);
            will-change: transform;
            /* Better image scaling and smoothing */
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            /* Force hardware acceleration for better rendering */
            -webkit-transform: translateZ(0);
            -moz-transform: translateZ(0);
            -ms-transform: translateZ(0);
            -o-transform: translateZ(0);
        }
        
        /* Override with inline style if image is provided */
        .hero[style*="background"] {
            background-attachment: fixed !important;
            background-size: 110% auto !important;
            background-position: left center !important;
            background-repeat: no-repeat !important;
        }
        
        /* Ensure full image visibility on different screen sizes */
        @media (max-width: 1920px) {
            .hero[style*="background"] {
                background-size: 110% auto !important;
            }
        }
        
        @media (max-width: 1200px) {
            .hero[style*="background"] {
                background-size: 120% auto !important;
            }
        }
        
        /* Bottom fade overlay to blend image with background */
        .hero-with-bottom-fade::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 30%;
            background: linear-gradient(to bottom, 
                transparent 0%, 
                rgba(248, 245, 240, 0.3) 40%,
                rgba(248, 245, 240, 0.7) 70%,
                rgba(248, 245, 240, 1) 100%
            );
            pointer-events: none;
            z-index: 1;
        }
        
        /* Enhanced image quality for high DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .hero {
                background-size: cover;
                image-rendering: auto;
                image-rendering: -webkit-optimize-contrast;
            }
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            color: var(--text-light);
            z-index: 3;
            position: relative;
        }

        .hero h1 {
            font-size: 2rem;
            margin-bottom: 70px;
            background: linear-gradient(to right, var(--primary-gold), var(--silver));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            color: var(--light-gold);
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s both;
            margin-bottom: 200px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn {
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            color: var(--dark-bg);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.6);
        }

        .btn-secondary {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--silver);
        }

        .btn-secondary:hover {
            background: var(--silver);
            color: var(--dark-bg);
            transform: translateY(-5px);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            font-size: 2rem;
            color: rgba(212, 175, 55, 0.3);
            animation: float 6s ease-in-out infinite;
        }

        /* Quick Actions Section */
        .quick-actions {
            padding: 100px 5%;
            background: var(--dark-bg);
            position: relative;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-gold);
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-gold), var(--silver));
        }

        .actions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .action-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 40px 25px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.2);
            backdrop-filter: blur(10px);
        }

        .action-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary-gold);
            box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
        }

        .action-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-gold), var(--silver));
        }

        .action-icon {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 20px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .action-card h3 {
            color: var(--text-light);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .action-card p {
            color: var(--silver);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .action-btn {
            display: inline-block;
            margin-top: 20px;
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .action-btn:hover {
            color: var(--secondary-gold);
            letter-spacing: 1px;
        }

        /* Latest Posts Section */
        .latest-posts {
            padding: 100px 5%;
            background: var(--light-bg);
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        .posts-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .post-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgb(212 175 55);
            transition: all 0.4s ease;
        }

        .post-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .post-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .post-card:hover .post-image img {
            transform: scale(1.1);
        }

        .post-date {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary-gold);
            color: var(--dark-bg);
            padding: 8px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .post-content {
            padding: 25px;
        }

        .post-content h3 {
            margin-bottom: 15px;
            color: var(--text-dark);
            font-size: 1.4rem;
            line-height: 1.4;
        }

        .post-content p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .post-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }

        .post-share {
            display: flex;
            gap: 10px;
        }

        .post-share a {
            color: var(--dark-silver);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .post-share a:hover {
            color: var(--primary-gold);
        }

        .post-comment-btn {
            background: none;
            border: none;
            color: var(--primary-gold);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .post-comment-btn:hover {
            color: var(--dark-gold);
        }

        /* Sidebar Layout */
        .content-section {
            padding: 100px 5%;
            background: var(--light-bg);
        }

        .content-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 40px;
        }

        .sidebar {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .sidebar-title {
            font-size: 1.5rem;
            color: var(--primary-gold);
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--light-gold);
            position: relative;
        }

        .sidebar-title::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--primary-gold);
        }

        .marquee-container {
            height: 300px;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .marquee-content {
            animation: marquee 20s linear infinite;
        }

        .marquee-content:hover {
            animation-play-state: paused;
        }

        .notice-item {
            background: var(--light-bg);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary-gold);
        }

        .notice-item h4 {
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .notice-date {
            color: var(--dark-silver);
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: block;
        }

        .facebook-widget {
            margin-bottom: 30px;
        }

        .promo-card {
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            color: var(--dark-bg);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .promo-card:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        .promo-card h4 {
            margin-bottom: 10px;
        }

        .promo-card i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        /* Main Content */
        .main-content {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        /* President Message */
        .president-section {
            padding: 100px 5%;
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
            background-size: cover;
            background-attachment: fixed;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            color: var(--text-light);
        }

        .president-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .president-top-row {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 50px;
            align-items: start;
        }

        .president-image {
            position: relative;
            max-width: 320px;
        }

        .president-img {
            width: 100%;
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 5px solid var(--primary-gold);
            display: block;
        }

        .president-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--primary-gold);
            color: var(--dark-bg);
            padding: 15px 25px;
            border-radius: 10px;
            font-weight: bold;
            text-align: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .president-message {
            min-width: 0;
        }

        .president-message h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: var(--primary-gold);
        }

        .president-message p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .president-vision {
            width: 100%;
           
        }

        .president-vision h1,
        .president-vision h2,
        .president-vision h3,
        .president-vision h4,
        .president-vision h5,
        .president-vision h6 {
            color: var(--primary-gold);
            /* margin: 20px 0 15px; */
        }

        .president-vision p {
            /* margin: 15px 0; */
        }

        .president-vision ul,
        .president-vision ol {
            text-align: left;
            display: inline-block;
            /* margin: 15px 0; */
        }

        .president-vision a {
            color: var(--primary-gold);
            text-decoration: underline;
        }

        .president-vision a:hover {
            color: var(--dark-gold);
        }

        .president-vision strong,
        .president-vision b {
            color: var(--primary-gold);
            font-weight: 600;
        }

        .president-signature {
            font-family: 'Great Vibes', cursive;
            font-size: 2.5rem;
            color: var(--primary-gold);
            text-align: right;
            width: 100%;
        }

        /* Objectives */
        .objectives {
            padding: 100px 5%;
            background: var(--light-bg);
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        .objectives-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .objective-card {
            background: white;
            border-radius: 15px;
            padding: 40px 25px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-top: 5px solid var(--primary-gold);
        }

        .objective-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .objective-icon {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 20px;
        }

        .objective-card h3 {
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        /* Gallery */
        .gallery-section {
            padding: 100px 5%;
            background: var(--dark-bg);
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .gallery-slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 20px 0;
            scrollbar-width: none;
        }

        .gallery-slider::-webkit-scrollbar {
            display: none;
        }

        .gallery-item {
            min-width: 300px;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-bg);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .gallery-nav:hover {
            background: var(--secondary-gold);
            transform: translateY(-50%) scale(1.1);
        }

        .gallery-prev {
            left: -25px;
        }

        .gallery-next {
            right: -25px;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 5%;
            background: var(--light-bg);
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            padding: 0 60px;
        }

        .testimonial-slider-wrapper {
            overflow: hidden;
            position: relative;
        }

        .testimonial-slider {
            display: flex;
            overflow-x: auto;
            gap: 30px;
            padding: 20px 0;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .testimonial-slider::-webkit-scrollbar {
            display: none;
        }

        .testimonial-card {
            min-width: 350px;
            flex: 0 0 350px;
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 4rem;
            color: var(--light-gold);
            font-family: 'Playfair Display', serif;
        }

        .testimonial-content {
            margin-bottom: 20px;
            font-style: italic;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary-gold);
        }

        .testimonial-author h4 {
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .testimonial-author p {
            color: var(--dark-silver);
            font-size: 0.9rem;
        }

        /* Testimonial Navigation */
        .testimonial-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-gold);
            color: var(--dark-bg);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .testimonial-nav:hover {
            background: var(--dark-gold);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
        }

        .testimonial-nav:active {
            transform: translateY(-50%) scale(0.95);
        }

        .testimonial-prev {
            left: 0;
        }

        .testimonial-next {
            right: 0;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 30px;
            padding: 10px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .testimonial-dot:hover {
            background: rgba(212, 175, 55, 0.6);
            transform: scale(1.2);
        }

        .testimonial-dot.active {
            background: var(--primary-gold);
            width: 30px;
            border-radius: 6px;
            border-color: var(--primary-gold);
        }

        @media (max-width: 768px) {
            .testimonials-container {
                padding: 0 50px;
            }

            .testimonial-nav {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            .testimonial-prev {
                left: 5px;
            }

            .testimonial-next {
                right: 5px;
            }

            .testimonial-card {
                min-width: 280px;
                flex: 0 0 280px;
            }
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 80px 5% 30px;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo h3 {
            font-size: 2rem;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }

        .footer-about p {
            color: var(--silver);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .footer-links h4,
        .footer-contact h4 {
            color: var(--primary-gold);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--silver);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }

        .footer-contact p {
            color: var(--silver);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--silver);
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: var(--primary-gold);
            color: var(--dark-bg);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--silver);
            font-size: 0.9rem;
        }

        .footer-bottom a {
            color: var(--primary-gold);
            text-decoration: none;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
        }

        @media (max-width: 768px) {
            .whatsapp-btn {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 20px;
                right: 20px;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes marquee {
            0% {
                transform: translateY(0);
            }

            100% {
                transform: translateY(-50%);
            }
        }

        /* Indian Art Elements */
        .art-border {
            position: relative;
        }

        .art-border::before,
        .art-border::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 100px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 C70,10 90,30 90,50 C90,70 70,90 50,90 C30,90 10,70 10,50 C10,30 30,10 50,10 Z" fill="none" stroke="%23D4AF37" stroke-width="2"/><circle cx="50" cy="50" r="15" fill="%23D4AF37"/><circle cx="50" cy="50" r="5" fill="%23FFFFFF"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.3;
        }

        .art-border-top::before {
            top: 20px;
            left: 20px;
        }

        .art-border-top::after {
            top: 20px;
            right: 20px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .content-container {
                grid-template-columns: 1fr;
            }

            .sidebar {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
            }

            .president-top-row {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .president-image {
                max-width: 100%;
                margin: 0 auto;
            }

            .president-vision {
                font-size: 1rem;
                padding: 20px 0;
            }

            .president-signature {
                font-size: 2rem;
                text-align: center;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .nav-social {
                display: none;
            }

            .mobile-menu {
                display: block;
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: var(--dark-bg);
                padding: 80px 30px 30px;
                transition: all 0.5s ease;
                z-index: 999;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
            }

            .mobile-menu.active {
                right: 0;
            }

            .mobile-menu ul {
                list-style: none;
            }

            .mobile-menu li {
                margin-bottom: 20px;
            }

            .mobile-menu a {
                color: var(--text-light);
                text-decoration: none;
                font-size: 1.2rem;
                display: block;
                padding: 10px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .mobile-menu-social {
                display: flex;
                gap: 15px;
                margin-top: 30px;
            }

            .mobile-menu-close {
                position: absolute;
                top: 20px;
                right: 20px;
                color: var(--primary-gold);
                font-size: 1.5rem;
                background: none;
                border: none;
                cursor: pointer;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .actions-grid {
                grid-template-columns: 1fr;
            }

            .posts-grid {
                grid-template-columns: 1fr;
            }

            .gallery-nav {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .nav-container {
                padding: 15px 20px;
            }

            .logo {
                width: 50px;
                height: 50px;
            }

            .logo-text h1 {
                font-size: 1.3rem;
            }

            .hero {
                padding: 100px 20px 60px;
            }

            .president-badge {
                position: relative;
                bottom: 0;
                right: 0;
                margin-top: 20px;
            }
        }
    

/* ========== SEPARATOR ========== */


        /* Modern Content Section Styles */
        .modern-content-section {
            padding: 100px 5%;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 100%;
        }

        .modern-content-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg,
                    transparent 0%,
                    var(--primary-gold) 50%,
                    transparent 100%);
            animation: shine 3s infinite;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .gold-text {
            background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .gold-text::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
        }

        .section-subtitle {
            color: var(--silver);
            font-size: 1.1rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Content Container */
        .modern-content-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr;
            gap: 30px;
            position: relative;
            z-index: 2;
            width: 100%;
            padding: 0;
        }

        /* Modern Sidebar Cards */
        .modern-sidebar-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .modern-sidebar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(212, 175, 55, 0.05) 0%,
                    rgba(212, 175, 55, 0.02) 50%,
                    transparent 100%);
            pointer-events: none;
        }

        .modern-sidebar-card:hover {
            transform: translateY(-5px);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .header-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .gold-title {
            color: white;
            font-size: 1.4rem;
            font-weight: 600;
            margin: 0;
            position: relative;
        }

        .pulse-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #4CAF50;
            border-radius: 50%;
            margin-left: 8px;
            animation: pulse 2s infinite;
        }

        /* Activity Timeline */
        .activity-timeline {
            position: relative;
            padding-left: 30px;
        }

        .activity-timeline::before {
            content: '';
            position: absolute;
            left: 20px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom,
                    rgba(212, 175, 55, 0.3) 0%,
                    rgba(212, 175, 55, 0.1) 100%);
        }

        .activity-item {
            position: relative;
            margin-bottom: 25px;
            animation: slideInLeft 0.5s ease forwards;
            opacity: 0;
        }

        .activity-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .activity-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .activity-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .activity-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .activity-badge {
            position: absolute;
            left: -35px;
            top: 0;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--dark-bg), #2a2a2a);
            border-radius: 50%;
            border: 2px solid var(--primary-gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
            font-size: 1rem;
            z-index: 2;
        }

        .activity-content {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 15px;
            border-left: 3px solid var(--primary-gold);
        }

        .activity-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 8px;
        }

        .activity-header h4 {
            color: white;
            font-size: 1rem;
            margin: 0;
            flex: 1;
        }

        .activity-time {
            color: var(--silver);
            font-size: 0.8rem;
            white-space: nowrap;
        }

        .activity-text {
            color: #aaa;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 10px;
        }

        .activity-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .tag {
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .tag.important {
            background: rgba(255, 87, 34, 0.2);
            color: #ff5722;
        }

        .tag.deadline {
            background: rgba(255, 193, 7, 0.2);
            color: #ffc107;
        }

        .tag.workshop {
            background: rgba(33, 150, 243, 0.2);
            color: #2196f3;
        }

        .tag.limited {
            background: rgba(156, 39, 176, 0.2);
            color: #9c27b0;
        }

        .tag.meeting {
            background: rgba(76, 175, 80, 0.2);
            color: #4caf50;
        }

        .tag.mandatory {
            background: rgba(244, 67, 54, 0.2);
            color: #f44336;
        }

        .tag.award {
            background: rgba(212, 175, 55, 0.2);
            color: var(--primary-gold);
        }

        .tag.nomination {
            background: rgba(0, 150, 136, 0.2);
            color: #009688;
        }

        .view-all-activities {
            margin-top: 20px;
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 20px;
            background: rgba(212, 175, 55, 0.1);
        }

        .view-all-btn:hover {
            background: rgba(212, 175, 55, 0.2);
            gap: 12px;
            padding-right: 20px;
        }

        /* Quick Links Grid */
        .quick-links-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .quick-link-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .quick-link-item:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateX(5px);
        }

        .quick-link-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--silver), var(--dark-silver));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-bg);
            font-size: 1.2rem;
        }

        .quick-link-item:nth-child(2) .quick-link-icon {
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
        }

        .quick-link-content {
            flex: 1;
        }

        .quick-link-content h4 {
            color: white;
            font-size: 1rem;
            margin: 0 0 4px 0;
        }

        .quick-link-content p {
            color: var(--silver);
            font-size: 0.85rem;
            margin: 0;
        }

        .quick-link-arrow {
            color: var(--primary-gold);
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .quick-link-item:hover .quick-link-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        /* Modern Main Content */
        .modern-main-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .welcome-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 30px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
            overflow: hidden;
        }

        .welcome-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .welcome-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .welcome-title-container {
            flex: 1;
            min-width: 300px;
        }

        .welcome-title {
            font-size: 2.2rem;
            color: white;
            margin: 0 0 15px 0;
            line-height: 1.2;
        }

        .gold-highlight {
            background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            padding-right: 10px;
        }

        .welcome-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(212, 175, 55, 0.1);
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .badge-text {
            color: var(--primary-gold);
            font-weight: 500;
            font-size: 0.9rem;
        }

        .welcome-badge i {
            color: var(--primary-gold);
            font-size: 0.9rem;
        }

        .stats-container {
            display: flex;
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-gold);
            line-height: 1;
        }

        .stat-label {
            color: var(--silver);
            font-size: 0.8rem;
            margin-top: 5px;
        }

        .welcome-intro {
            color: #ccc;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 40px;
            padding-right: 20px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .feature-item {
            text-align: center;
            padding: 25px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(192, 192, 192, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
            font-size: 1.5rem;
        }

        .feature-item h4 {
            color: white;
            font-size: 1.1rem;
            margin: 0 0 10px 0;
        }

        .feature-item p {
            color: #aaa;
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
        }

        .welcome-cta {
            text-align: center;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            color: var(--dark-bg);
            text-decoration: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }

        .cta-arrow {
            transition: transform 0.3s ease;
        }

        .cta-button:hover .cta-arrow {
            transform: translateX(5px);
        }

        /* Live Feed Card */
        .live-feed-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 25px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .feed-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .feed-header h3 {
            color: white;
            font-size: 1.3rem;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feed-header i {
            color: var(--primary-gold);
        }

        .feed-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .indicator-dot {
            width: 8px;
            height: 8px;
            background: #4CAF50;
            border-radius: 50%;
            animation: blink 2s infinite;
        }

        .indicator-text {
            color: #4CAF50;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .feed-content {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .feed-item {
            background: rgba(255, 255, 255, 0.03);
            padding: 15px;
            border-radius: 12px;
            border-left: 4px solid transparent;
            transition: all 0.3s ease;
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        .feed-item:nth-child(1) {
            animation-delay: 0.1s;
            border-left-color: #2196f3;
        }

        .feed-item:nth-child(2) {
            animation-delay: 0.2s;
            border-left-color: #ff9800;
        }

        .feed-item:nth-child(3) {
            animation-delay: 0.3s;
            border-left-color: #9c27b0;
        }

        .feed-item:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(5px);
        }

        .feed-item.active {
            background: rgba(33, 150, 243, 0.1);
            border: 1px solid rgba(33, 150, 243, 0.3);
        }

        .feed-type {
            margin-bottom: 8px;
        }

        .feed-badge {
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .feed-badge.event {
            background: rgba(33, 150, 243, 0.2);
            color: #2196f3;
        }

        .feed-badge.announcement {
            background: rgba(255, 152, 0, 0.2);
            color: #ff9800;
        }

        .feed-badge.achievement {
            background: rgba(156, 39, 176, 0.2);
            color: #9c27b0;
        }

        .feed-message {
            color: white;
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 5px;
        }

        .feed-time {
            color: var(--silver);
            font-size: 0.8rem;
        }

        /* Member Spotlight */
        .spotlight-card .spotlight-content {
            text-align: center;
        }

        .member-profile {
            position: relative;
            margin-bottom: 20px;
        }

        .profile-image {
            width: 120px;
            height: 120px;
            margin: 0 auto 15px;
            position: relative;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid var(--primary-gold);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
        }

        .profile-badge {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            border: 2px solid var(--dark-bg);
        }

        .member-name {
            color: white;
            font-size: 1.3rem;
            margin: 0 0 5px 0;
        }

        .member-role {
            color: var(--primary-gold);
            font-size: 0.9rem;
            margin: 0 0 15px 0;
        }

        .member-stats {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .member-stat {
            text-align: center;
        }

        .stat-value {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-gold);
            line-height: 1;
        }

        .stat-label {
            display: block;
            color: var(--silver);
            font-size: 0.8rem;
            margin-top: 5px;
        }

        .member-testimonial {
            background: rgba(212, 175, 55, 0.05);
            padding: 20px;
            border-radius: 15px;
            margin-top: 20px;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .testimonial-text {
            color: #ccc;
            font-style: italic;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 15px;
            position: relative;
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            color: var(--primary-gold);
            font-size: 1.5rem;
            font-family: 'Times New Roman', serif;
        }

        .testimonial-rating {
            color: var(--primary-gold);
            font-size: 1rem;
            letter-spacing: 2px;
        }

        .spotlight-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }

        .nav-btn {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            color: var(--silver);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn:hover {
            background: rgba(212, 175, 55, 0.1);
            color: var(--primary-gold);
            border-color: var(--primary-gold);
        }

        .nav-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: var(--primary-gold);
            transform: scale(1.2);
        }

        /* Events Card */
        .events-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .event-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .event-item.featured {
            background: rgba(212, 175, 55, 0.1);
            border-color: rgba(212, 175, 55, 0.3);
            position: relative;
            overflow: hidden;
        }

        .event-item.featured::before {
            content: 'FEATURED';
            position: absolute;
            top: 10px;
            right: -25px;
            background: var(--primary-gold);
            color: var(--dark-bg);
            padding: 3px 25px;
            font-size: 0.7rem;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .event-item:hover {
            transform: translateX(5px);
            background: rgba(255, 255, 255, 0.05);
        }

        .event-date {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .date-day {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-gold);
            line-height: 1;
        }

        .date-month {
            font-size: 0.8rem;
            color: white;
            font-weight: 500;
            text-transform: uppercase;
        }

        .event-details {
            flex: 1;
        }

        .event-title {
            color: white;
            font-size: 1rem;
            margin: 0 0 5px 0;
        }

        .event-time {
            color: var(--silver);
            font-size: 0.85rem;
            margin: 0 0 8px 0;
        }

        .status-badge {
            padding: 3px 10px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .status-badge.seats {
            background: rgba(244, 67, 54, 0.2);
            color: #f44336;
        }

        .status-badge.free {
            background: rgba(76, 175, 80, 0.2);
            color: #4caf50;
        }

        .status-badge.premium {
            background: rgba(212, 175, 55, 0.2);
            color: var(--primary-gold);
        }

        .events-cta {
            margin-top: 20px;
            text-align: center;
        }

        .view-calendar-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 500;
            padding: 10px 20px;
            border-radius: 20px;
            background: rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

        .view-calendar-btn:hover {
            background: rgba(212, 175, 55, 0.2);
            gap: 15px;
            padding-right: 25px;
        }

        /* Stats Card */
        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }

        .stat-circle {
            text-align: center;
        }

        .circle-progress {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto 10px;
        }

        .circle-progress::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: conic-gradient(var(--primary-gold) calc(var(--value) * 3.6deg),
                    rgba(212, 175, 55, 0.1) 0deg);
            mask: radial-gradient(transparent 60%, white 61%);
            -webkit-mask: radial-gradient(transparent 60%, white 61%);
        }

        .circle-value {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-gold);
        }

        .circle-label {
            color: white;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .social-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 15px;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .social-link.facebook {
            background: rgba(59, 89, 152, 0.1);
            color: #3b5998;
        }

        .social-link.instagram {
            background: rgba(225, 48, 108, 0.1);
            color: #e1306c;
        }

        .social-link:hover {
            transform: translateX(5px);
            border-color: currentColor;
        }

        .social-link i {
            font-size: 1.2rem;
        }

        .social-link span {
            flex: 1;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Animations */
        @keyframes shine {
            0% {
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                opacity: 0;
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.2);
                opacity: 0.7;
            }
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.3;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .modern-content-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .modern-sidebar {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
            }

            .modern-sidebar-card {
                margin-bottom: 0;
            }
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2.2rem;
            }

            .welcome-header {
                flex-direction: column;
            }

            .stats-container {
                width: 100%;
                justify-content: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .welcome-title {
                font-size: 1.8rem;
            }

            .modern-content-section {
                padding: 60px 3%;
                width: 100%;
                max-width: 100%;
            }

            .modern-content-container {
                width: 100%;
                max-width: 100%;
                padding: 0;
                gap: 20px;
            }

            .modern-sidebar {
                width: 100%;
                max-width: 100%;
            }

            .modern-main-content {
                width: 100%;
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .modern-content-section {
                padding: 60px 15px;
                width: 100%;
                max-width: 100%;
            }

            .modern-content-container {
                width: 100%;
                max-width: 100%;
                padding: 0;
                gap: 15px;
            }

            .stat-item {
                padding: 10px 15px;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .event-item.featured::before {
                right: -30px;
                font-size: 0.6rem;
            }

            .modern-sidebar-card {
                width: 100%;
                max-width: 100%;
                padding: 20px;
            }

            .modern-main-content {
                width: 100%;
                max-width: 100%;
            }
        }

        /* Membership Application Modal */
        .member-modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow-y: auto;
        }

        .member-modal-content {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            border-radius: 15px;
            max-width: 600px;
            width: 100%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            position: relative;
            border: 2px solid var(--primary-gold);
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .member-modal-header {
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            color: var(--dark-bg);
            padding: 20px 30px;
            border-radius: 13px 13px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .member-modal-header h2 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .member-modal-close {
            color: var(--dark-bg);
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
            transition: transform 0.3s ease;
        }

        .member-modal-close:hover {
            transform: rotate(90deg);
        }

        .member-modal-body {
            padding: 30px;
        }

        .member-modal-body .form-group {
            margin-bottom: 20px;
        }

        .member-modal-body label {
            color: var(--text-light);
            font-weight: 500;
            margin-bottom: 8px;
            display: block;
            font-size: 0.95rem;
        }

        .member-modal-body label i {
            color: var(--primary-gold);
            margin-right: 5px;
        }

        .member-modal-body .required {
            color: #ff4444;
        }

        .member-modal-body .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 8px;
            color: var(--text-light);
            padding: 12px 15px;
            width: 100%;
            transition: all 0.3s ease;
        }

        .member-modal-body .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--primary-gold);
            outline: none;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
        }

        .member-modal-body .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .member-modal-body .form-text {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            margin-top: 5px;
        }

        .member-modal-body .custom-control-input:checked ~ .custom-control-label::before {
            background-color: var(--primary-gold);
            border-color: var(--primary-gold);
        }

        .member-modal-body .custom-control-label {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .member-modal-body .custom-control-label a {
            color: var(--primary-gold);
            text-decoration: underline;
        }

        .member-modal-body .alert {
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
        }

        .member-modal-body .alert-danger {
            background: rgba(220, 53, 69, 0.2);
            border-color: #dc3545;
            color: #ff6b6b;
        }

        .member-modal-body .alert-success {
            background: rgba(40, 167, 69, 0.2);
            border-color: #28a745;
            color: #51cf66;
        }

        .member-modal-body .alert ul {
            margin: 0;
            padding-left: 20px;
        }

        .member-modal-footer {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
        }

        .member-modal-footer .btn {
            padding: 12px 30px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .member-modal-footer .btn-primary {
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            color: var(--dark-bg);
        }

        .member-modal-footer .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }

        .member-modal-footer .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .member-modal-footer .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
        }

        @media (max-width: 768px) {
            .member-modal-content {
                max-width: 100%;
                margin: 10px;
            }

            .member-modal-header {
                padding: 15px 20px;
            }

            .member-modal-header h2 {
                font-size: 1.2rem;
            }

            .member-modal-body {
                padding: 20px 15px;
            }

            .member-modal-footer {
                flex-direction: column;
            }

            .member-modal-footer .btn {
                width: 100%;
            }
        }

        /* Footer Mobile Styles */
        @media (max-width: 768px) {
            .footer {
                padding: 60px 15px 30px !important;
            }

            .footer-container {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
                padding: 0 !important;
            }

            .footer-logo h3 {
                font-size: 1.5rem;
            }

            .map-container {
                width: 100%;
                max-width: 100%;
                overflow: hidden;
            }

            .map-container iframe {
                width: 100% !important;
                max-width: 100% !important;
                height: 200px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .footer-bottom p {
                font-size: 0.85rem;
            }
        }

        /* Comprehensive Mobile Fix - Prevent Horizontal Overflow */
        @media (max-width: 768px) {
            * {
                max-width: 100%;
            }

            body, html {
                overflow-x: hidden !important;
                width: 100% !important;
                max-width: 100% !important;
                position: relative;
            }

            section, div, article, aside, main {
                max-width: 100%;
                box-sizing: border-box;
            }

            .hero-content,
            .actions-grid,
            .posts-container,
            .president-container,
            .objectives-grid,
            .gallery-container,
            .testimonials-container,
            .footer-container {
                width: 100%;
                max-width: 100%;
                padding-left: 0;
                padding-right: 0;
            }

            img {
                max-width: 100%;
                height: auto;
            }

            /* Fix for any elements with fixed widths */
            [style*="width"] {
                max-width: 100% !important;
            }
        }
    