/* new-website/new-design — companion CSS (works with Tailwind CDN) */

main img {
    border: none;
    outline: none;
    border-radius: 0;
}

.nav-link {
    display: inline-block;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 13px;
    font-weight: 600;
    color: #0d3d5c;
    transition: background 0.2s, color 0.2s;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link:hover {
    background: #e8f7fd;
    color: #0288c7;
}

.nav-dropdown-menu {
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 50;
    margin-top: 6px;
    min-width: 170px;
    transform: translateY(-4px);
    opacity: 0;
    border-radius: 0.75rem;
    border: 1px solid #f1f5f9;
    background: #fff;
    padding: 6px;
    box-shadow: 0 12px 40px rgba(13, 61, 92, 0.12);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}

.nav-dropdown-menu a {
    display: block;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 13px;
    font-weight: 500;
    color: #0d3d5c;
    text-decoration: none;
    transition: background 0.15s;
}

.nav-dropdown-menu a:hover {
    background: #e8f7fd;
    color: #0288c7;
}

.mobile-link {
    display: block;
    border-radius: 0.5rem;
    padding: 0.625rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    color: #0d3d5c;
    text-decoration: none;
}

.mobile-link:hover { background: #e8f7fd; }

.mobile-link-sub {
    display: block;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    padding-right: 1.5rem;
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
}

.mobile-link-sub:hover { background: #e8f7fd; color: #0d3d5c; }

.footer-title {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding-bottom: 0.375rem;
    border-bottom: 2px solid rgba(3, 173, 237, 0.3);
    font-size: 13px;
    font-weight: 700;
    color: #03aded;
}

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover { color: #fff; }

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.25s;
}

.social-icon:hover {
    transform: translateY(-2px);
    border-color: #03aded;
    background: #03aded;
}

.section-head {
    margin-bottom: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-right: 3px solid #03aded;
    padding-right: 1rem;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #03aded;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #0d3d5c;
}

@media (min-width: 1024px) {
    .section-title { font-size: 1.25rem; }
}

.card-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e8f7fd;
    border-radius: 0;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.group:hover .card-media img {
    transform: scale(1.05);
}

.hero-slide.hidden { display: none; }

.hero-slide:not(.hidden) {
    display: grid;
}

.hero-dot {
    height: 6px;
    width: 6px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-dot.active {
    width: 20px;
    background: #fff;
}

.about-card {
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(13, 61, 92, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 61, 92, 0.1);
}

.about-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    background: #e8f7fd;
    color: #03aded;
}

.about-card-title {
    margin-bottom: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 800;
    color: #0d3d5c;
}

.about-card-text {
    font-size: 13px;
    line-height: 1.7;
    color: #64748b;
}

.article-content {
    font-size: 14px;
    line-height: 1.9;
    color: #475569;
}

.form-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 13px;
    font-weight: 600;
    color: #0d3d5c;
}

.form-input {
    width: 100%;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.625rem 0.875rem;
    font-size: 14px;
    color: #0d3d5c;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #03aded;
}

.video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    background: #0d3d5c;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-embed video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.video-embed--html iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
