* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #0a2463;
            --secondary: #3e92cc;
            --accent: #2dc5fa;
            --light: #f8f9fa;
            --dark: #212529;
            --success: #28a745;
            --warning: #ffc107;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../Logos/logo1.jpeg'); /* Relative path from css/style.css */
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 50%; /* Adjust size as needed */
            opacity: 0.1; /* Adjust opacity for watermark effect */
            z-index: -1; /* Ensure it's behind content */
            pointer-events: none; /* Allow clicks to pass through */
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--accent);
        }

        .logo-img {
            height: 40px; /* Adjust as needed */
            margin-right: 10px;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 1.5rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
        }
        
        .hero {
            background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.8)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 5rem 1rem;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        
        .btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background: #1ab0e6;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid white;
            margin-left: 1rem;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--primary);
        }

        .btn-admin:hover {
            background: var(--secondary);
        }

        .btn-info {
            background: var(--accent);
        }

        .btn-info:hover {
            background: #1ab0e6;
        }
        
        section {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }
        
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .card:hover {
            transform: translateY(-10px);
        }
        
        .card-header {
            background: var(--primary);
            color: white;
            padding: 1.5rem;
            text-align: center;
        }
        
        .card-body {
            padding: 1.5rem;
        }
        
        .card-body ul {
            list-style: none;
            margin: 1rem 0;
        }
        
        .card-body ul li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
        }
        
        .card-body ul li i {
            color: var(--success);
            margin-right: 10px;
            margin-top: 4px;
        }
        
        .warning-box {
            background: #fff3cd;
            border-left: 4px solid var(--warning);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 4px;
        }
        
        .contact-info {
            background: var(--light);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .contact-item i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-right: 1rem;
            margin-top: 4px;
        }
        
        .mission-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
            padding: 5rem 0;
        }
        
        .service-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .service-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            backdrop-filter: blur(5px);
        }
        
        .service-item i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--accent);
        }

        /* Certification Section Styles */
        .certification-section {
            background-color: var(--light);
        }
        
        .certification-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .certification-item {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .certification-item:hover {
            transform: translateY(-10px);
        }
        
        .certification-item i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .certification-item h3 {
            color: var(--secondary);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .certification-item p {
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        .certification-item .btn {
            margin-top: auto;
        }
        
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            text-align: left;
        }
        
        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: var(--accent);
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        
        .logo-slider {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            width: 100%;
            padding: 20px 0;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            margin-top: 2rem;
        }

        .logo-track {
            display: inline-block;
            animation: scroll-left 30s linear infinite; /* Adjust duration as needed */
        }

        .logo-track img {
            height: 80px; /* Adjust logo size as needed */
            margin: 0 40px; /* Spacing between logos */
            vertical-align: middle;
            filter: grayscale(100%); /* Optional: make logos grayscale */
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .logo-track img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%); /* Moves half the track width to loop seamlessly */
            }
        }
        #past-president .card-container {
            display: flex;
            flex-wrap: nowrap; /* Ensures items stay in a single line */
            overflow-x: auto; /* Enables horizontal scrolling if content overflows */
            justify-content: flex-start; /* Aligns items to the start of the flex container */
            gap: 1rem; /* Adjust spacing between cards */
            padding-bottom: 1rem; /* Add some padding for scrollbar if present */
        }

        #past-president .card {
            flex: 0 0 auto; /* Prevent cards from growing or shrinking, maintain their size */
            width: 250px; /* Set a fixed width for each card */
            height: 380px; /* Set a fixed height for each card */
            margin-right: 1rem; /* Add margin between cards */
        }
        #past-president .card img {
            width: 150px;
            height: 150px;
            object-fit: cover;
        }
        .events-blog-container {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }

        .events-column, .blog-column {
            flex: 1;
            min-width: 300px; /* Ensure columns don't get too small */
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .events-column h4, .blog-column h4 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.5rem;
        }

        .footer-section h4 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            position: relative;
            display: inline-block;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
        }

        .tabs {
            display: flex;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
        }

        .tab-button {
            background-color: #f1f1f1;
            border: none;
            outline: none;
            cursor: pointer;
            padding: 14px 20px;
            transition: 0.3s;
            font-size: 1rem;
            color: var(--primary);
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            margin-right: 5px;
        }

        .tab-button:hover {
            background-color: #ddd;
        }

        .tab-button.active {
            background-color: var(--primary);
            color: white;
        }

        .tab-content {
            display: none;
            padding-top: 1rem;
        }

        .tab-content.active {
            display: block;
        }

        .event-item, .blog-post-item {
            border-bottom: 1px solid #eee;
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .event-item:last-child, .blog-post-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .event-item h4, .blog-post-item h4 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .event-item p, .blog-post-item p {
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 0.5rem;
        }

        .event-item p i, .blog-post-item p i {
            margin-right: 8px;
            color: var(--accent);
        }

        .blog-meta {
            font-size: 0.85rem;
            color: #888;
            margin-bottom: 1rem;
        }

        .btn-sm {
            padding: 0.5rem 1rem;
            font-size: 0.9rem;
            border-radius: 25px;
        }
        .mission-section .section-title h2 {
            color: white;
        }
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--accent);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            text-decoration: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 999;
            opacity: 0; /* Hidden by default */
            visibility: hidden; /* Hidden by default */
            transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                background: var(--primary);
                width: 100%;
                height: calc(100vh - 70px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .nav-links li {
                margin: 1.5rem 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .btn {
                display: block;
                margin: 1rem auto;
                width: 80%;
            }
            
            .btn-outline {
                margin-left: 0;
            }
        }
#requirements {
    background-color: #f8f9fa;
}

#requirements .warning-box a {
    color: var(--primary);
    font-weight: bold;
}

#cpn .warning-box {
    background-color: #f8d7da;
    border-left-color: #dc3545;
}

#cpn div[style] {
    text-align: center;
    margin: 2rem 0;
}

#past-president {
    background-color: #f8f9fa;
}

#events-blog {
    background-color: #f8f9fa;
}

footer div[style] {
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}



