:root {
    --bg-dark: #050510;
    --bg-dark2: #0a0f2c;
    --neon-blue: #00f0ff;
    --neon-pink: #ff00ff;
    --neon-purple: #8a2be2;
    --text-white: #ffffff;
    --text-light: #b0b3c7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(svg/background.svg);
    background-size: cover;
    background-position: center;
}

.navbar-custom {
    height: 80px;
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    border-radius: 30px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 40px;
    height: 40px;
}

.logo-container .navbar-brand {
    font-size: clamp(28px, 2vw, 40px);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.custom-toggler {
    border-color: var(--text-light);
}

.navbar-custom ul li a {
    font-size: clamp(28px, 2vw, 40px);
    color: var(--text-white);

}

.navbar-custom ul li a:hover {
    color: var(--neon-pink);
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #00f0ff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28256, 256, 256, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/*hero section*/
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 80px);
    text-align: center;
}

.hero-section .row {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.hero-section .col {
    flex: 1;
}

.hero-greeting {
    width: fit-content;
    display: inline-block;
    padding: 8px 20px;
    font-size: clamp(14px, 3vw, 18px);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-white);
    position: relative;
    top: 30px;
     animation: float 3s ease-in-out infinite;
}

/* Gradient Border */
.hero-greeting::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 50px;
    background: linear-gradient(90deg, #00f0ff, #ff00ff);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Glow Effect */
.hero-greeting {
    box-shadow:
        0 0 10px #00f0ff,
        0 0 10px #ff00ff;
}

.hero-section h1 {
    font-size: clamp(28px, 4vw, 60px);
    color: var(--text-white);
    background: linear-gradient(90deg, #ffffff, #ff00ff);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section h2 {
    font-size: clamp(28px, 2vw, 60px);
    color: var(--neon-blue);
    margin-bottom: 20px;
}

.hero-section p {
    font-size: clamp(14px, 2.5vw, 18px);
    color: var(--text-white);
    margin-bottom: 30px;
}

.hero-section .btn {
    padding: 10px 30px;
    font-size: clamp(14px, 2.5vw, 18px);
    border-radius: 30px;
    background-color: var(--neon-pink);
    border: none;
    color: var(--text-white);
    transition: background-color 0.3s ease;
}

.hero-section .btn:hover {
    color: var(--text-white);
    background: linear-gradient(90deg, #00f0ff, #ff00ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    box-shadow:
        0 0 20px #00f0ff,
        0 0 30px #ff00ff;

}

.hero-section img {
    height: 100%;
    width: 100%;
    border-radius: 80px;
    background-image: url(image/background.jpg);
    background-size: fill;
    background-position: center;
     animation: float 3s ease-in-out infinite;
}



@media (max-width: 376px) {
.logo-container .navbar-brand {
    font-size: 16px;
}

}