* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a192f;
    color: #8892b0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation Styles */
nav {
    position: fixed;
    width: 100%;
    padding: 1.5rem 0;
    background-color: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #64ffda;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ccd6f6;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #64ffda;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #64ffda;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(10, 25, 47, 0.95);
    padding: 1rem;
    backdrop-filter: blur(10px);
    z-index: 99;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%);
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    color: #ccd6f6;
    text-decoration: none;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

/* Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.hero-content {
    opacity: 0;
    transform: translateY(20px);
}

.small-heading {
    color: #64ffda;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.main-heading {
    color: #ccd6f6;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.sub-heading {
    color: #8892b0;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.description {
    max-width: 540px;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    color: #64ffda;
    border: 1px solid #64ffda;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

/* About Section Styles */
.about-image {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
}

.image-hexagon {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #112240;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-hexagon::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    background: url('assets/images/Profile.jpeg') center/cover;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: transform 0.3s ease;
}

.image-hexagon::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(100, 255, 218, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .image-hexagon {
    transform: translateY(-5px);
}

.about-image:hover .image-hexagon::after {
    opacity: 1;
}

.image-border {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 100%;
    height: 100%;
    border: 2px solid #64ffda;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: -1;
    transition: transform 0.3s ease;
}

.about-image:hover .image-border {
    transform: translate(-5px, -5px);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    color: #ccd6f6;
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Skills Section Styles */
.skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-card {
    background-color: #112240;
    padding: 2rem;
    border-radius: 4px;
    transition: transform 0.3s;
}

.skill-card:hover {
    transform: translateY(-5px);
}

.skill-card h3 {
    color: #ccd6f6;
    margin-bottom: 1rem;
}

/* Projects Section Styles */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background-color: #112240;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: 200px;
    background-color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    color: #ccd6f6;
    margin-bottom: 1rem;
}

.project-tech {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #64ffda;
}

/* Testimonials Section Styles */
.testimonials-container {
position: relative;
overflow: hidden;
padding: 20px 0;
max-width: 1000px;
margin: 0 auto;
}

.testimonials-track {
display: flex;
transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
flex: 0 0 100%;
padding: 0 20px;
}

.testimonial-card {
background-color: #112240;
padding: 2rem;
border-radius: 4px;
position: relative;
height: 100%;
display: flex;
flex-direction: column;
}

.slider-nav {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 2rem;
}

.slider-btn {
background: none;
border: 1px solid #64ffda;
color: #64ffda;
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s;
}

.slider-btn:hover {
background-color: rgba(100, 255, 218, 0.1);
}

.slider-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}

.slider-dots {
display: flex;
gap: 10px;
justify-content: center;
margin-top: 1rem;
}

.slider-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: #8892b0;
cursor: pointer;
transition: background-color 0.3s;
}

.slider-dot.active {
background-color: #64ffda;
}

.testimonial-text {
margin-bottom: 1.5rem;
font-style: italic;
flex-grow: 1;
}

/* Footer Styles */
footer {
    background-color: #0a192f;
    /* padding: 4rem 0; */
    margin-top: 4rem;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: #ccd6f6;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: #8892b0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #64ffda;
}

.contact-info {
    color: #8892b0;
    margin-bottom: 0.5rem;
}
.footer-credit {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    margin-top: 2rem;
}

.made-with-love {
    color: #8892b0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.heart {
    color: #ff4d5a;
    display: inline-block;
    animation: heartBeat 1.5s infinite;
    font-size: 1.2rem;
}

.credit-name {
    color: #64ffda;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.credit-name:hover {
    color: #fff;
}

.credit-name::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #64ffda;
    transition: width 0.3s;
}

.credit-name:hover::after {
    width: 100%;
}

/* Floating Shapes Styles */
.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 2px solid rgba(100, 255, 218, 0.1);
    border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-heading {
        font-size: 3rem;
    }
    .sub-heading {
        font-size: 2rem;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .about-image {
        width: 280px;
        height: 280px;
        margin: 2rem auto;
    }
}
