.mission-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #9da1a7 0%, #a4a9b1 100%);
            position: relative;
            overflow: hidden;
        }

        .mission-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .section-title {
            color: #2d3748;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-tagline {
            color: #4a5568;
            font-size: 1.3rem;
            font-weight: 500;
            font-style: italic;
        }

        .cards-container {
            position: relative;
            z-index: 2;
        }

        .mission-card {
            background: white;
            border-radius: 25px;
            padding: 45px 40px;
            height: 100%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            border: none;
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
        }

        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .card-icon-wrapper {
            width: 90px;
            height: 90px;
            margin: 0 auto 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            font-size: 3rem;
            transition: all 0.4s ease;
        }

        .mission-card:hover .card-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        .card-print .card-icon-wrapper {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        .card-nautical .card-icon-wrapper {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
        }

        .card-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-align: center;
            color: #2d3748;
        }

        .card-subtitle {
            font-size: 1.1rem;
            font-weight: 600;
            color: #667eea;
            text-align: center;
            margin-bottom: 25px;
        }

        .card-description {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #4a5568;
            text-align: center;
            margin-bottom: 25px;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 25px 0;
        }

        .features-list li {
            padding: 12px 0;
            color: #4a5568;
            font-size: 1.05rem;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .features-list li i {
            color: #667eea;
            font-size: 1.2rem;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .commitment-section {
            background: white;
            border-radius: 25px;
            padding: 50px 45px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            margin-top: 30px;
        }

        .commitment-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
        }

        .commitment-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2d3748;
            text-align: center;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .commitment-title i {
            font-size: 2.5rem;
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .commitment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .commitment-item {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            padding: 30px;
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .commitment-item:hover {
            border-color: #667eea;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        }

        .commitment-item-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .commitment-item-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 12px;
        }

        .commitment-item-text {
            font-size: 1rem;
            color: #4a5568;
            line-height: 1.6;
            margin: 0;
        }

        .cta-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            color: white;
        }

        .cta-box h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .cta-box p {
            font-size: 1.2rem;
            margin-bottom: 0;
            opacity: 0.95;
        }

        .cta-box strong {
            font-weight: 700;
            font-size: 1.3rem;
        }

        @media (max-width: 768px) {
            .mission-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 2rem;
            }

            .section-tagline {
                font-size: 1.1rem;
            }

            .mission-card {
                padding: 35px 25px;
            }

            .card-icon-wrapper {
                width: 75px;
                height: 75px;
                font-size: 2.5rem;
            }

            .card-title {
                font-size: 1.6rem;
            }

            .commitment-section {
                padding: 35px 25px;
            }

            .commitment-title {
                font-size: 1.8rem;
            }

            .commitment-grid {
                grid-template-columns: 1fr;
            }
        }
        
        
        .hero-section {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 80px 0;
            /*text-align: center;*/
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(41, 128, 185, 0.1) 0%, transparent 50%);
        }
        
        .hero-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            color: #fff;
        }
        
        .hero-section p {
            font-size: 1.1rem;
            color: #f39c12;
            position: relative;
            z-index: 1;
        }
        
        .card-grid {
            padding: 60px 0;
        }
        
        .knowledge-card {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 40px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            background: white;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 200px;
        }
        
        .knowledge-card:hover {
            border-color: #3498db;
            box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
            transform: translateY(-5px);
        }
        .knowledge-card img{
            width: 150px !important;
        }
        
        .knowledge-card h5 {
            font-weight: 600;
            color: #2c3e50;
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        
        .btn-login {
            border: 2px solid #3498db;
            color: #3498db;
            padding: 8px 25px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-login:hover {
            background-color: #3498db;
            color: white;
        }
        
        .nav-link {
            color: #2c3e50;
            font-weight: 500;
            padding: 8px 15px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: #3498db;
        }
        
        
/* ======================
   Sidebar Styles
====================== */
.sidebar.asp {
    background-color: #2c3e50;
    width: 300px;
    position: fixed;
    left: 0;
    height: 100vh;
    overflow-y: auto;
}

.asp .nav-link {
    color: #fff !important;
    padding: 8px 15px;
    font-size: 14px;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.asp .nav-link:hover,
.asp .nav-link.active {
    background-color: #34495e;
    border-left-color: #3498db;
}

.asp .section-header {
    color: #3498db;
    font-weight: bold;
    padding: 12px 15px;
    font-size: 13px;
    text-transform: uppercase;
    margin-top: 10px;
}

.asp .nav-section {
    color: #aaa;
    padding: 8px 15px;
    font-size: 12px;
}

/* ======================
   Main Content
====================== */
.main-content {
    margin-left: 300px;
    padding: 20px;
    margin-top: 60px;
}

.content-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.video-placeholder {
    background-color: #000;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.placeholder-item {
    border: 2px dashed #ddd;
    padding: 40px 20px;
    text-align: center;
    color: #999;
    border-radius: 4px;
}
#ruleContent p {
  margin: 10px 0;
  padding: 10px 12px;
  border-left: 4px solid #0ea5e9 !important;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
}
.video-placeholder {
    width: 100%;
    margin: 20px 0;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
}

/* Responsive 16:9 video */
.video-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
}
.btn.secondary {
  background: #0b1224;
  color: #f1f5f9;
}
.btn {
  background: #0da4e8;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}
/* Desktop toggle effect */
@media (min-width: 768px) {
    .sidebar.asp {
        width: 300px;
        position: fixed;
        top: 60px;
        left: 0;
        height: calc(100vh - 60px);
        overflow-y: auto;
        transition: all 0.3s ease;
    }

    .sidebar.asp.collapsed-desktop {
        width: 0;
        overflow: hidden;
    }

    .main-content {
        margin-left: 300px;
        margin-top: 60px;
        padding: 20px;
        transition: margin-left 0.3s ease;
    }

    .sidebar.asp.collapsed-desktop + .main-content {
        margin-left: 0;
    }
}

/* Mobile view */
@media (max-width: 767.98px) {
    .main-content {
        margin-left: 0 !important;
        margin-top: 60px;
        padding: 15px;
    }
}

.topbar{position:fixed; width: 100%; top:0; z-index:100; grid-column:1/-1; display:flex; justify-content:space-between; align-items:center; padding:10px 14px; background:#ffffffdd; border-bottom:1px solid #cbd5e1;}


