html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: 'Century';
    background: url("Background.jpg") center/cover no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

*{
    box-sizing: border-box;
}

body{
    line-height: 1.6;
}

.menu{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    height: 60px;
    gap:50px;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li{
    padding: 8px 0;
}

ul li a{
    white-space: normal;
    text-decoration: none;
    font-size: 3px;
    color:rgb(119, 157, 226);
    padding: 15px 13px;
    transition: 0.3s ease;
    font-weight: 800;
    display: block;
    height: 100%;
}

ul li a:hover{
    background-color:aliceblue;
    color:#000;
    border-radius: 2px;
}

ul li.active a{
    background-color:aliceblue;
    color:#000;
    border-radius: 2px;
    height: 100%;
}

.title{
    width: 100%;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.title h1{
    color:rgb(223, 236, 239);
    font-size: 110px;
    font-family:'Century';
    margin-bottom: 20px;
    background: rgba(60, 0, 255, 0.048);
    backdrop-filter: blur(8px);           /* glass blur */
    -webkit-backdrop-filter: blur(12px);   /* Safari support */

    border-radius: 20px;
    border: 1px solid rgba(0, 255, 234, 0.69);
    animation: pulseGlow 10s infinite; /* animation name, duration, infinite loop */
    transform-origin: center; 
}

.title h1:hover{
    background-color:rgba(15, 140, 250, 0.03);
    backdrop-filter: blur(8px);           /* glass blur */
    -webkit-backdrop-filter: blur(12px);   /* Safari support */

    border-radius: 20px;
    border: 1px solid rgba(0, 208, 255, 0.69);
}

/* Pulse + glow animation */
@keyframes pulseGlow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(173, 216, 230, 0.6);
    }
    50% {
        transform: scale(1.05); /* grows 10% */
        box-shadow: 0 0 20px rgba(173, 216, 230, 0.8); /* glow effect */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(173, 216, 230, 0.6);
    }
}

.home-content {
    display: flex;
    flex-direction: column;
    justify-content: center;      /* vertical centering */
    align-items: center;          /* horizontal centering */
    height: calc(100vh - 80px);   /* fills remaining space under menu (adjust 80px if menu height is different) */
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    height: 100%;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.08);
}

body {
    margin: 0;
    font-family: 'Century';
    background: url("pexels-incrediblerafa-4737484.jpg") center/cover no-repeat;
    position: relative;
    padding-top: 90px
}

body::before {
    content: "";
    position: fixed;      /* stays full-screen */
    inset: 0;
    background: rgba(0,0,0,0.15); /* dark overlay */
    pointer-events: none; /* allows clicks to pass through */
    z-index: 10;
}

.menu, .home-content {
    position: relative;
    z-index: 20;
}

.logo{
    float: left;
    margin-top: auto;
    margin-right: 40px;
    margin-left: 20px;
    margin-bottom: auto;
}

.offerings {
    max-width: 900px;
    margin: 50px auto;
    color:rgb(189, 179, 247);
    font-size: 22px;
    line-height: 1.6;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.08);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(12px);           /* glass blur */
    -webkit-backdrop-filter: blur(12px);   /* Safari support */

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 12px rgba(67, 84, 116, 0.9),
                0 0 25px rgba(61, 104, 186, 0.7);
}

.offerings:hover{
    background-color:rgba(187, 123, 243, 0.079);
}

p strong {
    font-weight: 900;  /* max weight in most fonts */
    color: rgb(129, 253, 255);  /* optional, matches your logo */
}

.title{
    color:rgb(255, 255, 255);
    font-size: 40px;
    width: auto;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.08);
}

.container{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0,0,0,0.45); 
    backdrop-filter: blur(12px);           /* glass blur */
    -webkit-backdrop-filter: blur(12px);   /* Safari support */

    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);

    padding: 40px;
    margin: 50px auto;

    width: 85%;
    max-width: 1000px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.08);
}

.hook{
    text-align: center;
    max-width: 800px;
    margin: 60px auto 40px;
}

.title{
    font-size: 40px;
    margin-bottom: 20px;
}

.hook-text{
    font-size: 25px;
    color: aliceblue;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.08);
}

.main-content{
    width: 80%;
    max-width: 800px;
    text-align: left;
    margin-bottom: 80px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.08);
    padding-top:0px;
}

.subheader{
    font-size: 26px;
    margin: 80px 0 10px;
    color: aliceblue;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.08);
}

p{
    font-size: 23px;
    line-height: 1.7;
    margin-bottom: 20px;
    color:rgb(189, 179, 247);
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.08);
}

.bullets, .sub-bullets{
    list-style: none;
    padding: 0;
}

.bullets{
    margin: 30px 0 40px 0;
    font-size: 22px;
    color:cyan;
    padding-left: 25px;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.08);
}

.sub-bullets{
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 30px;
    font-size: 22px;
    color:rgb(142, 215, 218);
    list-style-type: disc;
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.08);
}

.bullets > li{
    margin-bottom: 10px;
}

.sub-bullets > li{
    margin-bottom: 6px;
}

.container{
    position: relative;
    z-index: 1;
    padding-top: 1px;
}

p{
    margin: 20px 0;
}

.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 90px;
    padding: 0 2vw;
    width: 100%;
    position: fixed;

    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(0,0,0,0.5);
    background-color: rgba(8, 53, 73, 0.6);
    white-space: no-wrap;
}

.nav-container::-webkit-scrollbar {
    display: none;        /* hide scrollbar on Chrome/Safari */
}

/* Inner scroll container: flex to layout logo + menu horizontally */
.nav-scroll {
    display: flex;
    align-items: center;
    width: 100%;   /* ensures it grows with content */
}



.menu {
    display: flex;
    gap: clamp(10px, 2vw, 50px);
    list-style: none;
    margin: 0;
    padding: 0;
}


.my-image{
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;   /* makes it block so margin works */
    margin: 0 auto;   /* centers horizontally */
}

.button{
    padding: 15px 35px;
    font-size: 20px;
    border-radius:6px;
    cursor: pointer;
    font-family:'Courier New', Courier, monospace;
    font-weight: 700;
}

button:hover{
    background:cyan;
}

.image-tracker{
    align-items: center;
    padding-top: 20px;
}
/* Nav container */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 2vw;
    background-color: rgba(8, 53, 73, 0.6);
    z-index: 999;
}

/* Menu flex layout */
.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(10px, 2vw, 50px);
}

/* Parent li relative for submenu positioning */
.menu > li {
    position: relative;
}

/* Links */
.menu li a {
    display: block;
    padding: 15px 13px;
    font-size: 23px;
    font-weight: 800;
    color: rgb(119, 157, 226);
    text-decoration: none;
    transition: 0.3s ease;
}

.menu li a:hover {
    background-color: aliceblue;
    color: #000;
    border-radius: 1px;
}

/* Active link */
.menu li.active a {
    background-color: aliceblue;
    color: #000;
    border-radius: 1px;
    box-shadow: 0 0 12px rgba(19, 187, 234, 0.9),
                0 0 25px rgba(110, 28, 251, 0.7);
}

/* Submenu */
.submenu {
    display: none;              /* hidden by default */
    position: absolute;         /* absolute under parent */
    top: 100%;                  /* directly below main button */
    left: 0;
    background-color: aliceblue;/* solid light background */
    min-width: 180px;
    border-radius: 4px;
    padding: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Show submenu on hover */
.menu > li:hover > .submenu {
    display: block;
}

/* Submenu items */
.submenu li a {
    display: block;
    padding: 10px 15px;
    color: black !important;      /* ensure text is visible */
    text-decoration: none;
    border-bottom: 1px solid #fff;
    background-color: aliceblue;  /* solid background for visibility */
    font-weight: 600;
}

/* Hover effect for submenu items */
.submenu li a:hover {
    background-color: #d3eafc;
    color: #000;
}

/* Define the pulse keyframes */
@keyframes pulse{
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* grows
    }
        100% {
        transform: scale(1);
    }
}