/* --------------------
GLOBAL STYLES
-------------------- */

body {
    background: radial-gradient(circle at top, rgba(0, 234, 255, 0.12), transparent 70%), #0a0f14;
    color: white;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.bg-dark-2 {
    background: #0d131a;
}


/* Light Mode */

body.light-mode {
    background: #f6f6f6;
    color: #000;
}

body.light-mode .navbar,
body.light-mode .bg-dark-2 {
    background: #fff !important;
}

body.light-mode .text-cyan {
    color: #0097a7 !important;
}

body.light-mode .card,
body.light-mode .section-box {
    background: #fff !important;
    color: #000 !important;
    border-color: #0097a763 !important;
}


/* Text */

.text-cyan {
    color: #00eaff !important;
}


/* Navbar */

.nav-link {
    margin-left: 15px;
    color: #ccc !important;
    transition: 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #00eaff !important;
}


/* Buttons */

.btn-cyan {
    background: #00eaff;
    color: #000;
    font-weight: 600;
    border: none;
    box-shadow: 0 0 18px rgba(0, 234, 255, 0.7);
    transition: 0.3s;
    animation: glowPulse 2s infinite ease-in-out;
}

.btn-cyan:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 234, 255, 1);
}

.btn-outline-cyan {
    border: 1px solid #00eaff;
    color: #00eaff;
    transition: 0.3s;
}

.btn-outline-cyan:hover {
    background: rgba(0, 234, 255, 0.2);
    box-shadow: 0 0 18px rgba(0, 234, 255, 0.7);
    transform: translateY(-3px);
}


/* Social Buttons */

.btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #00eaff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    background: transparent;
}

.btn-icon i {
    font-size: 16px;
    color: #00eaff;
}

.btn-icon:hover {
    background: #00eaff;
    box-shadow: 0 0 15px rgba(0, 234, 255, 1);
}

.btn-icon:hover i {
    color: #000;
}


/* Glow Animation */

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 10px rgba(0, 234, 255, 0.25);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 234, 255, 0.55);
    }
    100% {
        box-shadow: 0 0 10px rgba(0, 234, 255, 0.25);
    }
}


/* Loader */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0f14;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: 0.5s;
}

.loader-circle {
    width: 80px;
    height: 80px;
    border: 4px solid #00eaff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite, glowPulse 2s infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}


/* HEX Image */

.profile-hex {
    width: 290px;
    padding: 10px;
    border: 3px solid #00eaff;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.4);
}

.profile-img {
    border-radius: 18px;
}

.hex-large {
    width: 350px;
    padding: 15px;
    border: 3px solid #00eaff;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.4);
}


/* Cards / Sections */

.card,
.section-box {
    background: #0f161d;
    border: 1px solid rgba(0, 234, 255, 0.3);
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
}

.card:hover,
.section-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
}


/* List */

.list-dot li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.list-dot li::before {
    content: "•";
    color: #00eaff;
    position: absolute;
    left: 0;
}


/* Projects */

.project-card {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(0, 234, 255, 0.3);
}

.project-card img {
    transition: 0.4s;
    width: 100%;
    display: block;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover {
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.3);
}


/* Form */

.form-control-dark {
    background: #0f161d;
    border: 1px solid rgba(0, 234, 255, 0.4);
    color: #fff;
}

.form-control-dark:focus {
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.5);
    border-color: #00eaff;
}


/* Theme toggle position */

.theme-toggle {
    position: fixed;
    top: 95px;
    right: 15px;
    z-index: 999;
}


/* Footer */

footer {
    border-top: 1px solid rgba(0, 234, 255, 0.2);
    padding-bottom: 30px;
}


/* Responsive tweaks */

@media (max-width:767px) {
    .profile-hex {
        width: 220px;
    }
    .profile-img {
        width: 170px;
    }
    .hex-large {
        width: 240px;
    }
    .nav-link {
        font-size: 14px;
    }
}