:root {
    --primary-color: #1d3557;    /* Dark blue */
    --secondary-color: #457b9d;  /* Medium blue */
    --accent-color: #a8dadc;    /* Light blue */
    --text-color: #1d3557;
    --text-light: #457b9d;
    --background-color: #ffffff;
    --gradient-primary: linear-gradient(135deg, #457b9d 0%, #a8dadc 100%);
    --gradient-light: linear-gradient(135deg, rgba(168, 218, 220, 0.1) 0%, rgba(69, 123, 157, 0.1) 100%);
    --shadow-color: rgba(29, 53, 87, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    background-image: linear-gradient(rgba(168, 218, 220, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(168, 218, 220, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: center;
}

.hero-text {
    text-align: left;
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin: 2rem 0;
    max-width: 600px;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--accent-color);
}

.hero-description .highlight {
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.hero-description .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.2;
}

.typewriter-container {
    background: var(--gradient-light);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 15px var(--shadow-color);
    min-height: 4rem;
    display: flex;
    align-items: center;
}

.typewriter {
    font-family: 'Fira Code', monospace;
    letter-spacing: 0.05em;
    padding-left: 1.5rem;
    position: relative;
}

.typewriter::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-icon {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    padding: 2rem;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.7;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.secondary {
    background: var(--gradient-light);
    border: none;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.secondary:hover {
    color: white;
}

.secondary:hover::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 2px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        padding: 1rem;
    }

    .nav-links.active a {
        margin: 0.5rem 0;
    }
}

.content-section {
    padding: 120px 5% 60px;
    min-height: 100vh;
}

.about-grid, .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.profile-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.skills ul {
    list-style: none;
    margin-top: 1rem;
}

.skills li {
    display: inline-block;
    margin: 0.5rem 1rem 0.5rem 0;
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 20px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-card h3 {
    padding: 1rem;
    margin: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.project-card p {
    padding: 0 1rem 1rem;
    margin: 0;
    color: #666;
    flex-grow: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input, .contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        order: -1;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .project-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Tech Stack Section */
.tech-stack {
    padding: 6rem 5%;
    text-align: center;
    background: var(--gradient-light);
}

.tech-stack h2 {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.tech-stack h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.tech-grid::before {
    content: "Programming Languages";
    grid-column: 1 / -1;
    text-align: left;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(69, 123, 157, 0.1);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    background: rgba(168, 218, 220, 0.1);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-item:hover i {
    transform: scale(1.1);
}

.tech-item span {
    font-weight: 500;
    color: var(--text-color);
}

.tech-item .devicon-cplusplus-plain {
    color: #00599C;
}

.tech-item .devicon-csharp-plain {
    color: #239120;
}

.tech-item .devicon-r-original {
    color: #276DC3;
}

.tech-item:hover .devicon-cplusplus-plain,
.tech-item:hover .devicon-csharp-plain,
.tech-item:hover .devicon-r-original {
    color: var(--secondary-color);
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.tech-item:hover::before {
    opacity: 0.05;
}

.tech-item > * {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
        order: 2;
    }

    .hero-description {
        margin: 1.5rem auto;
    }

    .social-links {
        justify-content: center;
    }

    .hero-image {
        order: 1;
    }

    .scroll-indicator {
        display: none;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }

    .tech-item {
        padding: 1.5rem 1rem;
    }

    .tech-item i {
        font-size: 2rem;
    }
}

.app-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.app-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 8px 25px rgba(29, 53, 87, 0.15);
    opacity: 0;
    animation: fadeInIcon 0.5s ease forwards, floatIcon 3s ease-in-out infinite;
    animation-delay: calc(1s + var(--delay));
    transition: transform 0.3s ease;
}

.app-icon:hover {
    transform: scale(1.1);
}

.app-icon img {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
}

/* Adjust positions for better spacing */
.app-icon:nth-child(1) {
    top: 10%;
    left: 15%;
}

.app-icon:nth-child(2) {
    top: 20%;
    right: 20%;
}

.app-icon:nth-child(3) {
    top: 40%;
    left: 8%;
}

.app-icon:nth-child(4) {
    top: 55%;
    right: 15%;
}

.app-icon:nth-child(5) {
    top: 70%;
    left: 20%;
}

.app-icon:nth-child(6) {
    top: 80%;
    right: 25%;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .app-icon {
        width: 45px;
        height: 45px;
    }
    
    .app-icon img {
        padding: 8px;
    }
}

/* Add a subtle hover effect for the icons */
@keyframes iconPulse {
    0% {
        box-shadow: 0 8px 25px var(--shadow-color);
    }
    50% {
        box-shadow: 0 12px 30px var(--shadow-color);
    }
    100% {
        box-shadow: 0 8px 25px var(--shadow-color);
    }
}

.app-icon:hover {
    animation: iconPulse 1.5s infinite;
}

/* Add gradient text effect for headings */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Update scroll indicator */
.mouse {
    border-color: var(--secondary-color);
}

.mouse::before {
    background: var(--secondary-color);
}

/* Add subtle animation for gradient backgrounds */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn.primary {
    background-size: 200% 200%;
    animation: gradientAnimation 6s ease infinite;
}

/* Update floating shapes */
.shape-1 {
    background: var(--accent-color);
    opacity: 0.3;
}

.shape-2 {
    background: var(--secondary-color);
    opacity: 0.2;
}

.shape-3 {
    background: var(--primary-color);
    opacity: 0.1;
}

/* Add these new styles for typewriter section */
.typewriter-section {
    position: relative;
    padding-left: 2rem;
    margin: 1rem 0 2rem 0;
    border-left: 3px solid var(--accent-color);
}

.typewriter-container {
    background-size: 200% 200%;
    animation: gradient-shift 15s ease infinite;
}

/* Add a subtle background animation */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* About Page Styles */
.about-section {
    padding: 120px 5% 60px;
    background: var(--background-color);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-container h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

/* Profile Section */
.profile-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.profile-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.profile-info .title {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.profile-info .title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.profile-info .bio {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gradient-primary);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content .institution {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-content .period {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.achievements {
    list-style-type: none;
    padding-left: 0;
}

.achievements li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.achievements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Certifications Section */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Interests Section */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.interest-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    transition: transform 0.3s ease;
}

.interest-item:hover {
    transform: translateY(-5px);
}

.interest-item i {
    font-size: 2rem;
    color: var(--secondary-color);
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 4rem 0 2rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-section {
        grid-template-columns: 1fr;
    }

    .profile-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 45px;
    }

    .timeline-dot {
        left: 9px;
    }
}

/* Skills Section Styles */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skill-category {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.skill-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-items span {
    background: var(--gradient-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.skill-items span:hover {
    transform: translateY(-2px);
    background: var(--gradient-primary);
    color: white;
}

/* Project Styles */
.achievements li strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.achievements li p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.achievements li {
    background: var(--gradient-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.achievements li:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px var(--shadow-color);
}

.achievements li::before {
    top: 1.8rem;
}

/* Add project tech tags */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.project-tag {
    font-size: 0.8rem;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 500;
}

/* Projects Page Styles */
.projects-section {
    padding: 120px 5% 60px;
    background: var(--background-color);
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-container h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-type {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.project-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* GitHub Repository Link Styles */
.repo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    margin-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.repo-link i {
    font-size: 1.2rem;
}

.repo-link:hover {
    color: var(--primary-color);
}

.repo-link span {
    position: relative;
}

.repo-link span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.repo-link:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Contact Page Styles */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 5% 60px;
}

.contact-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: transform 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-light);
    border-radius: 50%;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-links-section {
    text-align: center;
    margin-top: 4rem;
}

.social-links-section h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.social-item i {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* YouTube Video Section */
.youtube-section {
    margin: 2rem 0;
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    margin: 2rem 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.3s ease;
}

.video-container:hover iframe {
    transform: scale(1.01);
}

.video-description {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 1.5rem;
}

/* Resume Section Styles */
.resume-section {
    margin: 60px 0;
    padding: 40px 0;
}

.resume-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.resume-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.resume-actions .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #4a90e2, #50c9c3);
    color: white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.resume-actions .btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.resume-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.resume-actions .btn:hover i {
    animation: rocketLaunch 0.5s ease forwards;
}

/* Loading Bar Styles */
.loading-bar {
    width: 100%;
    max-width: 300px;
    height: 4px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 2px;
    overflow: hidden;
    display: none;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #4a90e2, #50c9c3);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.loading-bar.active {
    display: block;
}

.loading-progress.complete {
    width: 100%;
}

/* Rocket Animation */
@keyframes rocketLaunch {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(-45deg);
    }
    100% {
        transform: translateY(-40px) rotate(-90deg);
        opacity: 0;
    }
}

.resume-actions .btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.resume-actions .btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Add rocket trail effect */
.resume-actions .btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.resume-actions .btn:hover::after {
    transform: translateX(100%);
}

/* Responsive Design for Resume Section */
@media (max-width: 768px) {
    .resume-container {
        padding: 20px;
    }

    .resume-actions .btn {
        width: 100%;
        justify-content: center;
    }
} 