* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    overflow-y: scroll;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 20px;
    position: relative;
}

nav a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 80px 20px 20px 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-main {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.hero-top {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1rem;
}

.profile-section {
    display: flex;
    justify-content: left;
    align-items: center;
}

.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
    gap: 2rem;
    text-align: center;
    padding: 1rem;
}

.hero-bottom {
    flex: 0 0 auto;
    height: 50vh;
    width: 100vw;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.profile-image {
    margin-bottom: 1rem;
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
}

.hero-content span {
    color: #f39c12;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-details {
    margin-bottom: 2rem;
}

.hero-details p {
    font-size: 0.95rem;
    margin: 0.8rem 0;
    font-weight: 500;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-size: 1rem;
    font-weight: 600;
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.6);
}

/* Achievements Carousel - Inside Hero */
.hero-bottom .achievements-carousel {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(240, 147, 251, 0.1) 25%, 
        rgba(102, 126, 234, 0.08) 50%, 
        rgba(245, 87, 108, 0.1) 75%, 
        rgba(255, 255, 255, 0.15) 100%);
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    border-radius: 25px;
    backdrop-filter: blur(25px);
    height: 100%;
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 8px 32px rgba(0,0,0,0.1);
}

.hero-bottom .achievements-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-bottom .achievements-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(270deg, rgba(255,255,255,0.4) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-bottom .carousel-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bottom .carousel-track {
    display: flex;
    animation: scrollInfinite 30s linear infinite;
    gap: 20px;
    width: calc(200% + 40px);
}

@keyframes scrollInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-bottom .achievement-item {
    flex: 0 0 350px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.35) 0%, 
        rgba(240, 147, 251, 0.2) 25%, 
        rgba(102, 126, 234, 0.15) 50%, 
        rgba(245, 87, 108, 0.2) 75%, 
        rgba(248, 249, 250, 0.35) 100%);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    height: 280px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

.hero-bottom .achievement-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    border-color: rgba(240, 147, 251, 0.8);
}

.hero-bottom .achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s;
}

.hero-bottom .achievement-item:hover::before {
    left: 100%;
}

.hero-bottom .achievement-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.5);
    border-color: rgba(240, 147, 251, 1);
}

.hero-bottom .achievement-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,1);
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    padding: 5px 0;
}

.hero-bottom .achievement-item img {
    width: 100%;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.3);
    padding: 0;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.hero-bottom .achievement-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: rgba(240, 147, 251, 0.8);
}

.hero-bottom .achievement-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.98);
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    font-weight: 400;
    position: relative;
    z-index: 2;
}

/* About Section */
.about {
    height: 100vh;
    padding: 0;
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.95) 0%, 
        rgba(102, 126, 234, 0.1) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(52, 152, 219, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 40%, rgba(52, 152, 219, 0.05) 50%, transparent 60%);
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 5fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text {
    text-align: left;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: rgba(102, 126, 234, 0.4);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chip-design {
    position: relative;
    width: 300px;
    height: 300px;
}

.circuit-board {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.circuit-board::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: 
        linear-gradient(90deg, #3498db 2px, transparent 2px),
        linear-gradient(180deg, #3498db 2px, transparent 2px),
        radial-gradient(circle at 25% 25%, #e74c3c 4px, transparent 4px),
        radial-gradient(circle at 75% 25%, #f39c12 4px, transparent 4px),
        radial-gradient(circle at 25% 75%, #27ae60 4px, transparent 4px),
        radial-gradient(circle at 75% 75%, #9b59b6 4px, transparent 4px);
    background-size: 40px 40px, 40px 40px, 80px 80px, 80px 80px, 80px 80px, 80px 80px;
    border-radius: 15px;
}

.microchip {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.microchip::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.3) 1px, transparent 1px);
    background-size: 10px 10px;
    border-radius: 5px;
}

.about h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.about p {
    text-align: left;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #2c3e50;
}

.skills {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s;
}

.skill:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Experience Section */
.experience {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.95) 0%, 
        rgba(102, 126, 234, 0.1) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
}

.experience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.experience-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: transform 0.3s;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.experience-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.company {
    color: #3498db;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.location {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.experience-item ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.experience-item li {
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.5;
}

.education {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: transform 0.3s;
    margin-top: 2rem;
}

.education:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.education h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.education-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.education-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.education-item p {
    margin-bottom: 0.3rem;
    color: #666;
}

.education-item p strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Certifications Section */
.certifications {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
    backdrop-filter: blur(10px);
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 147, 251, 0.1), transparent);
    transition: left 0.5s;
}

.cert-card:hover::before {
    left: 100%;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.cert-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.cert-org {
    color: #3498db;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.cert-desc {
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.cert-skills {
    color: #27ae60;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.cert-id {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-family: monospace;
    background: rgba(102, 126, 234, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* Projects Section */
.projects {
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.95) 0%, 
        rgba(102, 126, 234, 0.1) 50%, 
        rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
}

.projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: white;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.project-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.project-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-links a {
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

.project-links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Contact Section */
.contact {
    min-height: 100vh;
    background: #f8f9fa;
}

.contact-banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23667eea" width="1200" height="400"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: white;
}

.breadcrumb {
    font-size: 1.1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.contact-form button {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.contact-info {
    padding: 2rem;
}

.info-header .small-heading {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.info-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.info-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.detail-item .icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.detail-item h4 {
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.detail-item p {
    color: #666;
    margin: 0;
}

.social-media {
    text-align: center;
}

.social-label {
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.social-icons svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        text-align: center;
    }
    
    .chip-design {
        width: 250px;
        height: 250px;
    }
}