:root {
    --bg-color: #ffffff;
	--bg-color2: #1e293b;
	--affiliations: #fff1d7;
    --text-main: #000000;
    --text-muted: #475569;
    --primary: #002147; 
    --white: #ffffff;
	--lightwhite: #ccc;
    --border: #e2e8f0;
    --blue2: #e9eff5;
    --font-family: system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-family); background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
body img {transition: all 0.2s ease;}
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }




/* /* New */

        .coming-soon-wrapper {
            background-color: rgb(0 33 71 / 10%);
            padding: 30px;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .coming-soon-badge {
            display: inline-block;
            background: var(--primary);
            color: var(--white);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .coming-soon-wrapper h1 {
            color: var(--primary);
            font-size: 2.5rem;
            line-height: 1.2;
        }

        .cards-container {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            width: 100%;
            max-width: 800px;
            padding: 30px 0;
        }

        .logo-card {
            background-color: #ffffff;
            border-radius: 20px;
            padding: 35px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex: 1;
            min-width: 280px;
            min-height: 140px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border);
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
        }
        
        .logo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }

        .card-heading {
            color: var(--text-main);
            font-size: 1.1rem;
            font-weight: 700;
        }

        .logo-card-link {
            display: inline-block;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .logo-card-link:hover {
            transform: scale(1.1);
        }

        .logo-img-new {
            height: 60px;
            object-fit: contain;
            display: block;
        }

        .cs-contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
        }

        .cs-contact-info p {
            margin-bottom: 10px;
            color: var(--text-muted);
        }
        .footer-bottom {
            border-top: 1px solid var(--lightwhite);
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            color: #94A3B7;
            margin: 20px;
            width: 100%;
        }
        @media (max-width: 600px) {
            .coming-soon-wrapper h1 {
                font-size: 2rem;
            }
            .logo-img-new {
                height: 50px;
            }
        }
