body {
    margin: 0;
    background: #0a0f1f;
    color: #e6e6e6;
    font-family: 'Inter', sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    color: #00eaff;
}

.logo span {
    color: #8a2be2;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #e6e6e6;
    transition: 0.3s;
}

nav a:hover {
    color: #00eaff;
}

.btn-glow {
    padding: 8px 14px;
    border: 1px solid #00eaff;
    border-radius: 6px;
    box-shadow: 0 0 10px #00eaff;
}

.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a0f1f 0%, #11172b 100%);
}

.glitch {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff, 0 0 20px #8a2be2;
}

.btn-primary {
    display: inline-block;
    margin-top: 20px;
    background: #00eaff;
    padding: 12px 22px;
    border-radius: 6px;
    color: #0a0f1f;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 0 15px #00eaff;
}

.services-preview {
    padding: 60px 40px;
    text-align: center;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.card {
    width: 280px;
    padding: 20px;
    background: #11172b;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.2);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 234, 255, 0.5);
}

footer {
    padding: 20px;
    text-align: center;
    background: #0d1324;
}
/* Contact Page Styling */
.contact-wrapper {
    padding: 80px 20px;
    text-align: center;
}

.contact-wrapper h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00eaff;
    font-size: 36px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00eaff;
}

.contact-subtext {
    margin-bottom: 40px;
    color: #a8b3d0;
    font-size: 16px;
}

.contact-form {
    max-width: 450px;
    margin: auto;
    background: #11172b;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.3);
    border: 1px solid #00eaff;
    text-align: left;
}

.contact-form label {
    display: block;
    margin: 10px 0 5px;
    color: #00eaff;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border-radius: 6px;
    border: none;
    background: #0a0f1f;
    color: white;
    font-size: 15px;
    outline: none;
    box-shadow: inset 0 0 10px rgba(0, 234, 255, 0.2);
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form button {
    width: 100%;
}
/* ABOUT PAGE */
.about-wrapper {
    padding: 70px 40px;
    text-align: center;
}

.about-wrapper h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00eaff;
    font-size: 38px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #00eaff;
}

.about-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
}

.about-text {
    max-width: 550px;
    background: #11172b;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.2);
    text-align: left;
    line-height: 1.6;
}

.about-box {
    width: 300px;
    background: #11172b;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.2);
    text-align: left;
}

.about-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #8a2be2;
    margin-bottom: 15px;
}

.about-box ul {
    padding-left: 20px;
}

.about-box li {
    margin-bottom: 8px;
    color: #e6e6e6;
}
/* PORTFOLIO PAGE */
.portfolio-wrapper {
    padding: 70px 40px;
    text-align: center;
}

.portfolio-wrapper h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00eaff;
    font-size: 38px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #00eaff;
}

.portfolio-subtext {
    color: #a8b3d0;
    margin-bottom: 40px;
}

.portfolio-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.portfolio-card {
    width: 300px;
    background: #11172b;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.2);
    text-align: left;
    transition: 0.3s;
    border: 1px solid #00eaff;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px rgba(0, 234, 255, 0.45);
}

.portfolio-card h3 {
    color: #8a2be2;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
}

.tag {
    display: inline-block;
    margin-top: 10px;
    background: #00eaff;
    color: #0a0f1f;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 6px;
    box-shadow: 0 0 10px #00eaff;
}
/* SERVICES PAGE */
.services-hero {
    padding: 70px 40px 20px;
    text-align: center;
}

.services-hero h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    color: #00eaff;
    text-shadow: 0 0 10px #00eaff;
}

.services-hero p {
    color: #a8b3d0;
    margin-top: 10px;
}


.services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 40px;
}

.service-card {
    width: 320px;
    background: #11172b;
    border-radius: 12px;
    border: 1px solid #00eaff;
    padding: 25px;
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.2);
    transition: .3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 35px rgba(0, 234, 255, 0.45);
}

.service-card h3 {
    color: #8a2be2;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 12px;
}

.service-card ul {
    padding-left: 20px;
    color: #e6e6e6;
}

.service-card li {
    margin-bottom: 8px;
}

.why-me {
    padding: 60px 40px;
    text-align: center;
}

.why-me h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00eaff;
    font-size: 32px;
    margin-bottom: 40px;
    text-shadow: 0 0 10px #00eaff;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.why-box {
    width: 260px;
    background: #11172b;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #00eaff;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.25);
}

.why-box h4 {
    color: #8a2be2;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 10px;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo img {
    height: 40px;   /* adjust size here */
    width: auto;
    display: block;
}

/* HERO SECTION */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    gap: 40px;
}

.hero-content {
    max-width: 550px;
}

.hero-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
}

.highlight {
    background: linear-gradient(90deg, #4cc9f0, #4361ee, #7209b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.6;
    color: #cfcfcf;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 26px;
    margin-right: 15px;
    margin-top: 20px;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    background: #4361ee;
    color: white;
}

.btn-primary:hover {
    background: #3552d3;
}

.btn-secondary {
    border: 1px solid #4361ee;
    color: #4361ee;
}

.btn-secondary:hover {
    background: #4361ee;
    color: white;
}

.hero-visual img {
    width: 380px;
    opacity: 0.85;
    filter: drop-shadow(0 0 25px rgba(67, 97, 238, 0.4));
}

/* FEATURES SECTION */
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 70px 10%;
    text-align: center;
}

.feature {
    width: 280px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-6px);
    border-color: #4361ee;
}
