:root {
    --primary-color: #253C78;
    --accent-color: #F4B41A;
    --bg-color: #F8F9FA;
    --text-color: #333333;
    --text-muted: #6C757D;
    --border-color: #E9ECEF;
    --topbar-bg: #4A5568;
    --topbar-text: #E2E8F0;
    --grid-color: rgba(0, 0, 0, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.cr-body {
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top Bar */
.top-bar {
    background-color: var(--topbar-bg);
    color: var(--topbar-text);
    padding: 8px 0;
    font-size: 12px;
    font-weight: 600;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hotline,
.portal {
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.icon {
    width: 14px;
    height: 14px;
}

.highlight {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 800;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--topbar-text);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--accent-color);
}

.divider {
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Main Navigation */
.main-nav {
    background-color: white;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 2px;
    color: #111;
}

.logo-text p {
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-nav-link {
    display: flex;
    align-items: center;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-nav-link:hover {
    transform: scale(1.08);
}

.whatsapp-nav-icon {
    height: 55px;
    /* Made smaller per user request */
    width: auto;
    object-fit: contain;
    background: transparent;
    clip-path: circle(46% at center);
    /* Crops out the checkerboard background edges */
}

.gmail-nav-link {
    display: flex;
    align-items: center;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.gmail-nav-link:hover {
    transform: scale(1.08);
}

.gmail-nav-icon {
    height: 55px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.whatsapp-hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-hero-link:hover {
    transform: scale(1.1);
}

.whatsapp-hero-icon {
    height: 44px;
    width: auto;
    object-fit: contain;
    clip-path: circle(46% at center);
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 20px 0;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Complain Registration page */
.cr-hero {
    padding: 30px 0 60px;
}

.cr-pill {
    gap: 10px;
}

.cr-card {
    width: min(720px, 100%);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(2, 6, 23, 0.10);
    padding: 22px;
    backdrop-filter: blur(8px);
}

.cr-disclaimer {
    width: min(720px, 100%);
    margin: 14px 0 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 18px;
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.06);
    text-align: left;
    color: var(--text-color);
    overflow-wrap: anywhere;
}

.cr-disclaimer-title {
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
}

.cr-disclaimer p {
    margin: 0 0 10px;
}

.cr-disclaimer ul {
    margin: 6px 0 12px 18px;
    color: var(--text-color);
    font-weight: 600;
}

.cr-disclaimer li {
    margin: 4px 0;
}

.cr-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.cr-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.12);
    color: #0f5132;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.6px;
}

.cr-number-label {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.cr-whatsapp-btn {
    width: 100%;
    border-radius: 14px;
    background: linear-gradient(135deg, #25d366 0%, #1faa59 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.22);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.14);
}

.cr-whatsapp-btn:hover {
    filter: brightness(0.99);
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.28);
}

.cr-hint {
    margin: 14px 0 0;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.6;
}

.cr-email-section {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px dashed var(--border-color);
    text-align: center;
}

.cr-email-hint {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.4;
}

.cr-email-link {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cr-email-link:hover {
    color: var(--accent-color);
}

.cr-back-btn {
    margin-top: 18px;
    border-radius: 14px;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    max-width: 100%;
    flex-wrap: wrap;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

/* Notices Slider */
.notices-slider {
    width: 100%;
    overflow: hidden;
    margin: 10px 0 30px;
    position: relative;
    padding: 10px 0;
    /* Fading effect on edges */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.notices-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollNotices 45s linear infinite;
}

.notices-track:hover {
    animation-play-state: paused;
}

@keyframes scrollNotices {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.important-notice {
    width: min(700px, 85vw);
    flex-shrink: 0;
    padding: 24px 28px;
    border-radius: 20px;
    text-align: left;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(254, 251, 232, 0.98) 100%);
    border: 2px solid var(--accent-color);
    border-left: 8px solid var(--accent-color);
    box-shadow: 0 20px 45px rgba(244, 180, 26, 0.15), 0 0 0 1px rgba(244, 180, 26, 0.1);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    animation: noticePulse 4s infinite ease-in-out;
}

@keyframes noticePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.005);
    }
}

.important-notice-title {
    font-size: 20px;
    font-weight: 900;
    color: #92400e;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.important-notice-title::before {
    content: "⚠️";
    font-size: 22px;
}

.important-notice-text {
    margin: 0;
    color: #451a03;
    font-weight: 700;
    line-height: 1.6;
    font-size: 17px;
}

.news-section {
    width: min(840px, 100%);
    margin: 10px auto 30px;
    padding: 24px 28px;
    border-radius: 20px;
    text-align: left;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 247, 255, 1) 100%);
    border: 1px solid rgba(13, 110, 253, 0.2);
    border-left: 6px solid #0d6efd;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.05);
    backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.1);
    background: linear-gradient(135deg, white 0%, #e0f0ff 100%);
}

.news-title {
    font-size: 19px;
    font-weight: 900;
    color: #0d6efd;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.news-title::before {
    content: "📰";
    font-size: 21px;
}

.news-text {
    margin: 0;
    color: #334155;
    font-weight: 700;
    line-height: 1.6;
    font-size: 16px;
}

.news-table-container {
    overflow-x: auto;
    margin-top: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Special Notices Slider (horizontal infinite scroll) */
.special-notices-slider {
    width: 100%;
    overflow: hidden;
    margin: 20px 0 40px;
    position: relative;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.special-notices-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollSpecialNotices 80s linear infinite;
}

.special-notices-track:hover {
    animation-play-state: paused;
}

@keyframes scrollSpecialNotices {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

.special-notices-track .news-section {
    width: min(840px, 90vw);
    flex-shrink: 0;
    margin: 0;
}

.news-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 14px;
}

.news-table th {
    background-color: #0d6efd;
    color: white;
    font-weight: 800;
    text-align: left;
    padding: 12px 15px;
    white-space: nowrap;
}

.news-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #edf2f7;
    color: #475569;
    font-weight: 600;
}

.news-table tr:last-child td {
    border-bottom: none;
}

.news-table tr:nth-child(even) {
    background-color: #f8fafc;
}

.news-table tr:hover {
    background-color: #f1f5f9;
}

/* Bottom-centered CTA for GIC Website View (home page) */
.bottom-gic-cta {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 900;
    display: flex;
    justify-content: center;
    width: min(100%, 560px);
    padding: 0 16px;
    pointer-events: none;
}

.bottom-gic-cta .cta-gic {
    pointer-events: auto;
}

/* Modern CTA button set (Fuel FAQ / Complain / GIC View) */
.cta-group {
    flex-wrap: wrap;
    justify-content: center;
}

.cta-btn {
    border-radius: 12px;
    padding: 10px 18px;
    min-height: 44px;
    font-size: 14.5px;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: 0.1px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.08);
    transition:
        transform 0.18s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.18s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.18s ease,
        border-color 0.18s ease,
        filter 0.18s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    will-change: transform;
}

.btn.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    /* override generic `.btn { transition: all ... }` for smoother click feel */
    transition:
        transform 0.18s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.18s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.18s ease,
        border-color 0.18s ease,
        filter 0.18s ease;
}

.cta-btn>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cta-btn:focus-visible {
    outline: 3px solid rgba(244, 180, 26, 0.55);
    outline-offset: 3px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(2, 6, 23, 0.16);
}

.cta-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.10);
}

@media (prefers-reduced-motion: reduce) {

    .cta-btn,
    .btn.cta-btn {
        transition: none;
    }

    .cta-btn:hover,
    .cta-btn:active {
        transform: none;
    }
}

.cta-btn .btn-icon {
    opacity: 0.95;
}

/* Fuel FAQ: exact blue as requested */
.btn.cta-faq {
    background: linear-gradient(135deg, #fd7e14 0%, #f05a24 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 34px rgba(253, 126, 20, 0.26);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.14);
}

.btn.cta-faq:hover {
    filter: brightness(0.98);
    box-shadow: 0 18px 42px rgba(253, 126, 20, 0.32);
}

/* Complain Registration: same color as Fuel FAQ */
.btn.cta-complain-registration {
    background: #0d6efd;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 34px rgba(13, 110, 253, 0.30);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

.btn.cta-complain-registration:hover {
    background: #0b5ed7;
    filter: brightness(0.995);
    box-shadow: 0 18px 42px rgba(13, 110, 253, 0.36);
}

/* GIC View: keep light-blue styling */
.btn.cta-gic {
    background: #3f4a5a;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 34px rgba(74, 85, 104, 0.28);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

.btn.cta-gic:hover {
    background: #364151;
    filter: brightness(0.995);
    box-shadow: 0 18px 42px rgba(74, 85, 104, 0.34);
}

/* Complain: orange */
.cta-complain {
    background: linear-gradient(135deg, #fd7e14 0%, #f05a24 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 34px rgba(253, 126, 20, 0.26);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.14);
}

.cta-complain:hover {
    filter: brightness(0.98);
    box-shadow: 0 18px 42px rgba(253, 126, 20, 0.32);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary {
    background-color: #fd7e14;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.25);
}

.btn-primary:hover {
    background-color: #e86e0c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 126, 20, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(253, 126, 20, 0.2);
}

.btn-primary:hover .btn-icon {
    transform: translate(2px, -2px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #fd7e14;
    border: 1.5px solid #fd7e14;
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.05);
}

.btn-secondary:hover {
    background-color: #fff9f5;
    border-color: #e86e0c;
    color: #e86e0c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 126, 20, 0.15);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(253, 126, 20, 0.1);
}

.btn-secondary:hover .btn-icon {
    transform: scale(1.05);
}

.collaboration-section {
    margin-top: 20px;
    width: 100%;
    max-width: 700px;
}

.collab-divider {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.collab-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--border-color);
    z-index: 1;
}

.collab-divider span {
    position: relative;
    background-color: var(--bg-color);
    padding: 0 15px;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    z-index: 2;
}

.collab-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 12px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.collab-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.collab-img:hover {
    transform: scale(1.05);
}



/* Chat Button */
.chat-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2a5a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 60, 120, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-fab:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 60, 120, 0.4);
}

.chat-icon {
    width: 20px;
    height: 20px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    top: -2px;
    right: 10px;
    border: 2px solid #4A5568;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Important Notice Header */
.important-notice-header {
    width: 100%;
    max-width: 1100px;
    margin: 45px auto 10px;
    text-align: center;
}

.important-notice-heading {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin: 0;
}

.important-notice-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 20px;
}

/* Special Notice Header */
.special-notice-header {
    width: 100%;
    max-width: 1100px;
    margin: 45px auto 10px;
    text-align: center;
}

.special-notice-heading {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin: 0;
}

.special-notice-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 4px;
    background: #0d6efd;
    border-radius: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes noticePulse {
    0% {
        box-shadow: 0 20px 45px rgba(244, 180, 26, 0.15);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 20px 60px rgba(244, 180, 26, 0.35);
        transform: scale(1.01);
    }

    100% {
        box-shadow: 0 20px 45px rgba(244, 180, 26, 0.15);
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.slide-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-up-delay {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.slide-up-delay-2 {
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.4s;
}

.pulse {
    animation: pulse 2s infinite;
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 10px;
    }

    .hero-title {
        font-size: 40px;
    }

    /* Registration Issues page */
    .cr-hero {
        padding: 24px 0 44px;
    }

    .cr-card,
    .cr-disclaimer {
        width: 100%;
    }

    .cr-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .collab-logos {
        flex-direction: column;
    }

    .hero-section {
        padding: 40px 0 110px;
    }

    .hero-btns {
        gap: 12px;
    }

    .important-notice {
        text-align: left;
        margin: -6px auto 12px;
    }

    .hero-section {
        padding: 40px 0 60px;
    }

    .bottom-gic-cta {
        bottom: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .cta-btn {
        width: 100%;
        padding: 14px 18px;
    }

    .important-notice {
        padding: 12px 14px;
        border-radius: 14px;
    }

    /* Registration Issues page */
    .hero-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .cr-card {
        padding: 16px;
        border-radius: 16px;
    }

    .cr-disclaimer {
        padding: 14px 14px;
        border-radius: 14px;
    }

    .cr-disclaimer-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .cr-disclaimer p,
    .cr-disclaimer li {
        font-size: 14px;
        line-height: 1.55;
    }

    .cr-disclaimer ul {
        margin-left: 18px;
    }
}


/* Animations */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Complaints Page Styles */
.complaints-container {
    width: min(900px, 95vw);
    margin: 20px auto 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.12);
    overflow: hidden;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.complaints-header {
    padding: 24px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
    color: white;
}

.complaints-header h3 {
    color: white !important;
    margin: 0;
    font-size: 22px;
    font-weight: 800;
}

.complaints-header p {
    margin: 6px 0 0;
    font-size: 14px;
    opacity: 0.85;
    font-weight: 500;
}

.form-wrapper {
    position: relative;
    width: 100%;
    height: 800px;
    background: #f1f5f9;
}

.complaints-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.complaints-footer {
    padding: 20px 30px;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

@media (max-width: 768px) {
    .form-wrapper {
        height: 1000px; /* More height for mobile forms */
    }
    
    .complaints-header {
        padding: 20px;
    }
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
}

.dot.pulse {
    animation: dot-pulse 1.5s infinite ease-in-out;
}

@keyframes dot-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
        box-shadow: 0 0 0 0 rgba(2, 6, 23, 0.4);
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 0 10px rgba(2, 6, 23, 0);
    }
    100% {
        transform: scale(0.8);
        opacity: 0.5;
        box-shadow: 0 0 0 0 rgba(2, 6, 23, 0);
    }
}

/* Visitor Stats UI */
.visitor-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0 30px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-width: 260px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(37, 60, 120, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-card.current-stat .stat-icon-wrapper {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 24px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.live-indicator {
    position: absolute;
    top: 12px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    color: #28a745;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(40, 167, 69, 0.1);
    padding: 4px 8px;
    border-radius: 20px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background-color: #28a745;
    border-radius: 50%;
    display: inline-block;
}

@media (max-width: 600px) {
    .visitor-stats {
        gap: 12px;
    }
    .stat-card {
        min-width: 100%;
    }
}