:root {
    --primary: #003132;
    --accent: #e0f465;
    --secondary: rgba(0,0,0,0.55);
    --seaccent: #2563eb;
    --text-light: #f9fafb;
    --text-dark: #1f2937;
    --glass-bg: rgba(255,255,255,0.92);
}

/* Reset + base */
* {
    box-sizing: border-box
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: var(--text-dark);
    background: #e0f465;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    /* Dynamic background (shared) */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 110%;
        height: 110%;
        background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118d?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
        transform: scale(1);
        animation: zoomPan 40s ease-in-out infinite alternate;
        z-index: -2;
    }

@keyframes zoomPan {
    0% {
        transform: scale(1) translate(0,0);
    }

    50% {
        transform: scale(1.1) translate(0,-2%);
    }

    100% {
        transform: scale(1.05) translate(0,1%);
    }
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: -1;
}

/* Page container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
}

/* Header */
.header {
    position: center;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #003132;
    backdrop-filter: blur(8px);
    padding: 12px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff
}

    .brand img {
        width: 180px;
        height: auto;
        max-height: 80px;
        object-fit: contain;
    }

    .brand h1 {
        margin: 0;
        font-size: 1.15rem;
        letter-spacing: 0.6px
    }

.nav-links {
    margin-left: auto;
    display: flex;
    gap: 10px;
    align-items: center
}

    .nav-links a {
        color: #fff;
        text-decoration: none;
        padding: 8px 12px;
        border-radius: 8px;
        font-weight: 600;
        transition: all .18s;
    }

        .nav-links a:hover {
            background: rgba(255,255,255,0.06);
            color: var(--accent)
        }

/* Main hero / page layout */
.hero {
    color: var(--text-light);
    padding-top: 120px;
    padding-bottom: 72px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: center
}

.hero h1 {
    font-size: 2.8rem;
    margin: 0;
    line-height: 1.05;
    font-weight: 800;
    text-shadow: 0 6px 18px rgba(0,0,0,0.5)
}

.hero p {
    margin-top: 14px;
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem
}

/* Buttons */
.btn {
    display: inline-block;
    border: none;
    cursor: pointer;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg,var(--primary),var(--accent));
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 1px solid rgba(255,255,255,0.12);
}

.btn-secondary {
    background: linear-gradient(135deg,var(--secondary),var(--seaccent));
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
}

/* Frosted page card */
.page-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.28);
}

/* Other sections layout */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px
}

/* Footer */
.footer {
    margin-top: 48px;
    padding: 30px 24px;
    background: linear-gradient(135deg,var(--primary),var(--accent));
    color: #fff;
    border-radius: 10px;
    text-align: center;
}

/* Fade transitions (used by transition.js) */
.fade-enter {
    animation: fadeIn .45s ease forwards;
}

.fade-exit {
    animation: fadeOut .35s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
        filter: blur(3px)
    }

    to {
        opacity: 1;
        transform: none;
        filter: blur(0)
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: none;
        filter: blur(0)
    }



    to {
        opacity: 0;
        transform: translateY(8px);
        filter: blur(3px)
    }
}

/* Small helpers/responsive */
.small {
    font-size: 0.9rem
}

.mt-4 {
    margin-top: 16px
}

.mb-4 {
    margin-bottom: 16px
}



/* Utility helpers used in HTML markup */
.bg-white {
    background: #ffffff;
}

.p-4 {
    padding: 16px;
}

.rounded-lg {
    border-radius: 12px;
}

.shadow {
    box-shadow: 0 10px 25px rgba(2,6,23,0.12);
}

/* Search wrap */
.search-wrap {
    display: flex;
    gap: 8px;
    align-items: center
}

    .search-wrap .search-input {
        flex: 1
    }

    .search-wrap .clear-btn {
        background: rgba(0,0,0,0.04);
        border: 1px solid rgba(0,0,0,0.06)
    }
/* ======== Enhanced Footer with Social + Newsletter ======== */
footer {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    padding: 60px 20px 30px;
    margin-top: 60px;
    border-top: 3px solid rgba(255,255,255,0.2);
}

    footer .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
        max-width: 1100px;
        margin: 0 auto;
    }

    footer h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 12px;
    }

    footer p, footer li, footer a {
        font-size: 0.95rem;
        color: #e0f2ff;
        text-decoration: none;
        line-height: 1.5;
    }

        footer a:hover {
            text-decoration: underline;
            color: #fff;
        }

    footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    footer .social-icons {
        display: flex;
        gap: 12px;
        margin-top: 10px;
    }

        footer .social-icons img {
            width: 22px;
            height: 22px;
            filter: brightness(0) invert(1);
            transition: transform 0.3s;
        }

            footer .social-icons img:hover {
                transform: scale(1.2);
            }

    footer .newsletter {
        margin-top: 10px;
    }

        footer .newsletter input {
            padding: 10px;
            border-radius: 6px 0 0 6px;
            border: none;
            width: 70%;
            max-width: 250px;
        }

        footer .newsletter button {
            padding: 10px 16px;
            border: none;
            border-radius: 0 6px 6px 0;
            background: #fff;
            color: var(--primary);
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

            footer .newsletter button:hover {
                background: #e0f2ff;
            }

    footer .copyright {
        text-align: center;
        margin-top: 40px;
        font-size: 0.9rem;
        color: #dce9f9;
    }

/* Mobile hamburger */

.navbar {
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background-color: #003366;*/
    padding: 10px 20px;
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

    .hamburger div {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 4px 0;
        transition: all 0.3s ease;
    }

/* Hamburger icon (hidden on desktop) */


/* Mobile view */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: transparent;
        text-align: center;
    }

        .nav-links a {
            padding: 10px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .nav-links.active {
            display: flex;
        }
    .hamburger {
        display: flex;
        flex-direction: column;     
        cursor: pointer;
    }

    
}

@media (max-width:880px){
  .brand img{width:56px;max-height:48px}
  .brand h1{font-size:1rem}
}

