html, body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #0f1c3f, #050b1e);
    color: #fff;
    overflow-x: hidden;
    display: contents;
}

h1 {
    background: linear-gradient(90deg, #00e5ff, #7c7cff, #00e5ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

h2 {
    font-size: 40px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #00e5ff, #7c7cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

h4 {
    color: #00f6ff;
}

p {
    color: #e6f3ff;
    text-shadow: 0 0 8px rgba(0, 204, 255, 0.4);
    animation: auroraGlow 4s ease-in-out infinite alternate;
}

.fw600 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover {
    color: #00aaff;
}

/* navbar */
.desktop-navbar {
    width: 100%;
    height: 64px;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.desktop-navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 5px;
    background: linear-gradient(10deg, #00e5ff, #7c7cff);
    opacity: 0.25;
}

.main-section {
    display: none;
}

.desktop-logo {
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.desktop-nav-links {
    display: flex;
    list-style: none;
    z-index: 1;
}

.desktop-nav-links li {
    margin-left: 2rem;
}

.desktop-nav-links a {
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .corner-container {
        display: none;
    }
}

@media (max-width: 600px) {
    .desktop-nav-links {
        display: none;
    }

    .arc-menu p {
        width: 100px;
        margin: 0px;
    }

    .corner-container {
        position: fixed;
        right: 20px;
        bottom: 20px;
        z-index: 20;
    }

    .menu-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #1c649f;
        color: #fff;
        border: none;
        font-size: 1.5rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .menu-btn:active {
        background: #29406685;
    }

    .arc-menu {
        position: absolute;
        right: 0;
        bottom: 0;
        list-style: none;
        padding: 0;
        margin: 0;
        pointer-events: none;
    }

    .arc-menu li {
        position: absolute;
        width: 50px;
        height: 50px;
        right: 5px;
        bottom: 5px;
        opacity: 0;
        transform: scale(0.5);
        transition: opacity 0.4s, transform 0.4s, right 0.4s, bottom 0.4s;
    }

    .arc-menu.open li {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
    }

    .blur-bg {
        position: fixed;
        inset: 0;
        background: rgba(34, 34, 34, 0.3);
        backdrop-filter: blur(10px);
        z-index: 10;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }

    .blur-bg.active {
        opacity: 1;
        pointer-events: auto;
    }
}

/* iframe {
    width: -webkit-fill-available;
    height: 100%;
    position: fixed;
    z-index: 1;
} */

/*end navbar */

/* footer */

.site-footer {
  background-color: #17536ea3;
  color: #fff;
  padding: 40px 0 20px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer-left {
  flex: 1;
  min-width: 300px;
  margin-right: 30px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo img {
  max-width: 150px;
}

.contact-info p {
  margin: 5px 0;
}

.footer-right {
  flex: 1;
  min-width: 200px;
  padding-top: 20px;
}

.quick-links {
  list-style: none;
  padding: 0;
}

.quick-links li {
  margin-bottom: 8px;
}

.copyright {
  border-top: 1px solid #555;
  padding-top: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
  
  .footer-left, .footer-right {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
/*end footer */

