/* General Styles */
body {
    background-color: #0d0d1a;
    color: #fff;
    font-family: 'Arial', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Navigation */
header {
    padding: 10px 0;
    background-color: #13132a;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between the logo and text */
    font-size: 24px;
    font-weight: bold;
}

.logo img {
    width: 160px; /* Adjust size as needed */
    height: auto;
    padding-top: 5%;
}

nav .logo {
    font-size: 24px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between the logo and text */
    font-size: 24px;
    font-weight: bold;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 50px 20px;
}

.avatar {
    width: 120px;
    border-radius: 50%;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.highlight {
    color: #a56eff;
    text-shadow: 0px 0px 10px #a56eff;
}

.role {
    font-weight: bold;
    color: #ffcc00;
}

/* Work Experience */
.work-experience {
    padding: 50px 20px;
    text-align: center;
}

.projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.project-card {
    background-color: #1a1a3a;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: scale(1.05);
}

.project-card img {
    width: 100%;
    border-radius: 10px;
}

/* Socials */
.socials {
    padding: 50px 20px;
    text-align: center;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 2rem;
    margin-top: 20px;
}

.icons i {
    transition: color 0.3s ease, transform 0.3s ease;
}

.icons i:hover {
    color: #a56eff;
    transform: scale(1.2);
}

/* Footer */
footer {
    background-color: #13132a;
    padding: 15px;
    text-align: center;
}


/* Work Experience Section */
.work-experience {
    padding: 50px 20px;
    text-align: center;
    font-family: Comic Sans MS, sans-serif;
    font-size: 17px;
}

.projects {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, auto)); /* Adjust width dynamically */
    gap: 15px;
    padding: 20px;
    max-width: 1300px;
    justify-content: center;
}

.project-card {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(165, 110, 255, 0.4); /* Initial soft glow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
}

.project-card::after {
    content: "";
    position: absolute;
    bottom: -10px; /* Adjust the glow position */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 15px;
    background: rgba(165, 110, 255, 0.7); /* Purple glow */
    filter: blur(15px); /* More spread-out blur */
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.project-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(165, 110, 255, 0.8); /* Stronger glow on hover */
}

.project-card:hover::after {
    opacity: 1;
}



.project-card img {
    width: auto; /* Maintain original image width */
    height: auto; /* Maintain original image height */
    max-width: 100%; /* Prevent overflow */
    max-height: 100%; /* Prevent overflow */
    display: block;
}

/* Hover Effects */
.project-card:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}



/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle, rgba(34,0,70,1) 0%, rgba(13,13,26,1) 100%);
    color: #fff;
    position: relative;
    
}

/* Avatar and Arrow */
.avatar-container {
    position: relative;
    display: inline-block;
}

.avatar {
    width: 140px;
    border-radius: 50%;
    box-shadow: 0px 0px 30px rgba(255, 255, 255, 0.2);
}

.intro-text {
    font-family: Comic Sans MS, sans-serif;
    position: absolute;
    top: 20px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.highlight-name {
    color: #a56eff;
}

/* Typography */
h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-top: 20px;
    
    
}

.designer-text {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: underline;
    
}

.cover-text {
    color: #a56eff;
    text-shadow: 0px 0px 15px #a56eff;
    display: inline-block;
    border: 2px solid #a56eff;
    padding: 5px 15px;
    border-radius: 20px;
    
    
}

.subtext {
    font-size: 1rem;
    margin-top: 10px;
    color: #ccc;
    font-family: Comic Sans MS, sans-serif;
}

/* Services Section */
.services {
    padding: 50px 20px;
    background-color: #13132a;
}

.services h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    font-family: Comic Sans MS, sans-serif;
}

.services-image img {
    width: 60%;
    max-width: 1200px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0px 0px 30px rgba(165, 110, 255, 0.6); /* Glow effect on the image */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.services-image img:hover {
    box-shadow: 0px 0px 50px rgba(165, 110, 255, 0.8); /* Stronger glow on hover */
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects {
        grid-template-columns: repeat(2, 1fr); /* 2 images per row on tablets */
    }
}

@media (max-width: 600px) {
    .projects {
        grid-template-columns: repeat(1, 1fr); /* 1 image per row on mobile */
    }
}