@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Varela Round', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: -70px;
    opacity: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    top: 0px;
    opacity: 1;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 191, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.3));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #00bfff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00bfff, #0080ff);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 50%, rgba(0, 191, 255, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23003366" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00aeef, #00aeef, #00aeef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.5)); }
    to { filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.8)); }
}
.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 1));
    /* filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.3)); */
    /* animation: logoGlow 4s ease-in-out infinite alternate; */
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.3)); }
    to { filter: drop-shadow(0 0 35px rgba(0, 191, 255, 0.6)); }
}
.hero .subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero .tagline {
    font-size: 1.2rem;
    color: #00bfff;
    margin-bottom: 40px;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00bfff, #0080ff);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00bfff;
    border: 2px solid #00bfff;
}

.btn-secondary:hover {
    background: #00bfff;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.05) 0%, rgba(10, 10, 10, 1) 50%);
}


.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #00bfff;
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #00bfff;
    margin-bottom: 20px;
}

.service-card p {
    color: #cccccc;
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #0f0f0f;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: rgba(0, 191, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 191, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00bfff, #0080ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}
.nz-flag-image{
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, #00bfff, #0080ff); */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}
.feature-item h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-item p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 80, 255, 0.05) 0%, rgba(10, 10, 10, 1) 50%);
}

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.nz-flag {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #0a0a0a;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    padding: 20px;
    background: rgba(0, 191, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 191, 255, 0.2);
}

.contact-item h4 {
    color: #00bfff;
    margin-bottom: 10px;
}

.contact-item p {
    color: #cccccc;
}

/* Footer */
footer {
    background: #000000;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(0, 191, 255, 0.2);
}

footer p {
    color: #666666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.terms-page header{
    padding-top: 100px;
}

.terms-page main .container{
    padding-top: 10px;
    margin: 10px auto;
}
.terms-page ul {
  padding-left: 20px;
}