/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Consolas, monaco, monospace;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Navigation bar styles*/
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: translateY(-2px);
}

.nav-logo .nav-image {
    height: 50px;
    width: auto;
    max-width: 50px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo .nav-image:hover {
    transform: scale(1.05);
}

.nav-logo a {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
    line-height: 1;
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    color: #3498db;
}

.nav-logo a:hover {
    color: #3498db;
    text-decoration: underline;
    transform: translateY(-2px);
}

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

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    color: #3498db;
    transform: translateY(-2px);
}

/* Styling for mobile devices */
.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 0%, rgba(0, 247, 255, 1) 100%);
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

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

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.highlight {
    color: #b7f312;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #50db34;
    color: white;
}

.btn-primary:hover {
    background-color: white;
    color: #3498db;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #3498db;
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #3498db;
}

/* About Section */
.about {
    background-color: #f8f9fa;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Skills Section */
.skills {
    background-color: white;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.skill-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.skill-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3498db;
    transition: all 0.3s ease;
}

.skill-item:hover i {
    color: #2980b9;
    transform: scale(1.1);
}

.skill-name {
    font-weight: 600;
    color: #2c3e50;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.skill-item:hover .skill-name {
    opacity: 1;
    transform: translateY(0);
}

/* Specific skill colors */
.skill-item[data-skill="JavaScript"]:hover i { color: #f7df1e; }
.skill-item[data-skill="Python"]:hover i { color: #3776ab; }
.skill-item[data-skill="Java"]:hover i { color: #ed8b00; }
.skill-item[data-skill="React"]:hover i { color: #61dafb; }
.skill-item[data-skill="Node.js"]:hover i { color: #339933; }
.skill-item[data-skill="HTML5"]:hover i { color: #e34f26; }
.skill-item[data-skill="CSS3"]:hover i { color: #1572b6; }
.skill-item[data-skill="Git"]:hover i { color: #f05032; }
.skill-item[data-skill="Docker"]:hover i { color: #2496ed; }
.skill-item[data-skill="AWS"]:hover .icon { color: #ff9900; }

/* CSS-only Icons */
.icon {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    position: relative;
    margin-bottom: 1rem;
}

/* JavaScript Icon - JS letters */
.icon-javascript {
    background: #f7df1e;
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-javascript::before {
    content: 'JS';
}

/* Python Icon - Snake-like curves */
.icon-python {
    background: linear-gradient(45deg, #3776ab 50%, #ffd343 50%);
    border-radius: 50%;
    position: relative;
}

.icon-python::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: #fff;
    border-radius: 50%;
}

.icon-python::after {
    content: 'Py';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: bold;
    color: #3776ab;
}

/* Java Icon - Coffee cup */
.icon-java {
    background: #ed8b00;
    border-radius: 8px;
    position: relative;
}

.icon-java::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 50%;
    background: #fff;
    border-radius: 0 0 20px 20px;
    border: 3px solid #ed8b00;
    border-top: none;
}

.icon-java::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 15%;
    width: 8px;
    height: 15px;
    background: #fff;
    border-radius: 0 8px 8px 0;
    border: 2px solid #ed8b00;
    border-left: none;
}

/* React Icon - Atom-like structure */
.icon-react {
    background: #61dafb;
    border-radius: 50%;
    position: relative;
}

.icon-react::before,
.icon-react::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.icon-react::after {
    transform: translate(-50%, -50%) rotate(60deg);
}

/* Node.js Icon - Hexagon */
.icon-nodejs {
    background: #339933;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    position: relative;
}

.icon-nodejs::before {
    content: 'N';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
}

/* HTML5 Icon - Shield with 5 */
.icon-html5 {
    background: #e34f26;
    clip-path: polygon(20% 0%, 80% 0%, 75% 100%, 25% 100%);
    position: relative;
}

.icon-html5::before {
    content: '5';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
}

/* CSS3 Icon - Shield with 3 */
.icon-css3 {
    background: #1572b6;
    clip-path: polygon(20% 0%, 80% 0%, 75% 100%, 25% 100%);
    position: relative;
}

.icon-css3::before {
    content: '3';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Git Icon - Branch structure */
.icon-git {
    background: #f05032;
    border-radius: 8px;
    position: relative;
}

.icon-git::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow:
        24px 0 0 #fff,
        12px 24px 0 #fff,
        0 12px 0 2px #fff,
        12px 12px 0 2px #fff,
        24px 12px 0 2px #fff;
}

/* Docker Icon - Container boxes */
.icon-docker {
    background: #2496ed;
    border-radius: 8px;
    position: relative;
}

.icon-docker::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 15%;
    width: 12px;
    height: 8px;
    background: #fff;
    box-shadow:
        0 12px 0 #fff,
        16px 0 0 #fff,
        16px 12px 0 #fff,
        32px 0 0 #fff,
        32px 12px 0 #fff;
}

/* AWS Icon - Cloud with arrow */
.icon-aws {
    background: #ff9900;
    border-radius: 8px;
    position: relative;
}

.icon-aws::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 20%;
    width: 60%;
    height: 20%;
    background: #fff;
    border-radius: 20px;
}

.icon-aws::after {
    content: '';
    position: absolute;
    bottom: 25%;
    left: 30%;
    width: 40%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Database Icon - Cylinder */
.icon-database {
    background: #4db33d;
    border-radius: 8px;
    position: relative;
}

.icon-database::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 25%;
    width: 50%;
    height: 15%;
    background: #fff;
    border-radius: 50%;
}

.icon-database::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 25%;
    width: 50%;
    height: 40%;
    background: #fff;
    border-radius: 0 0 25px 25px;
}

/* Education Icons */
.icon-graduation {
    background: #3498db;
    border-radius: 50%;
    position: relative;
    width: 60px;
    height: 60px;
}

.icon-graduation::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 20%;
    width: 60%;
    height: 8px;
    background: #fff;
    transform: rotate(-10deg);
}

.icon-graduation::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 15%;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #fff;
}

.icon-certificate {
    background: #e74c3c;
    border-radius: 8px;
    position: relative;
    width: 60px;
    height: 60px;
}

.icon-certificate::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: #fff;
    border-radius: 4px;
}

.icon-certificate::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

.icon-award {
    background: #f39c12;
    border-radius: 50%;
    position: relative;
    width: 60px;
    height: 60px;
}

.icon-award::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    background: #fff;
    border-radius: 50%;
}

.icon-award::after {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #f39c12;
    font-size: 1.5rem;
}

/* Interest Icons */
.icon-code {
    background: #2c3e50;
    border-radius: 8px;
    position: relative;
    width: 80px;
    height: 80px;
}

.icon-code::before {
    content: '</>';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

.icon-robot {
    background: #95a5a6;
    border-radius: 12px;
    position: relative;
    width: 80px;
    height: 80px;
}

.icon-robot::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 30%;
    background: #fff;
    border-radius: 4px;
}

.icon-robot::after {
    content: '◉ ◉';
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    color: #2c3e50;
    font-size: 0.8rem;
}

.icon-cloud {
    background: #3498db;
    border-radius: 20px;
    position: relative;
    width: 80px;
    height: 80px;
}

.icon-cloud::before {
    content: '';
    position: absolute;
    top: 35%;
    left: 20%;
    width: 60%;
    height: 30%;
    background: #fff;
    border-radius: 20px;
}

.icon-cloud::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 35%;
    width: 30%;
    height: 30%;
    background: #fff;
    border-radius: 50%;
}

.icon-mobile {
    background: #34495e;
    border-radius: 12px;
    position: relative;
    width: 80px;
    height: 80px;
}

.icon-mobile::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 40%;
    height: 60%;
    background: #fff;
    border-radius: 4px;
}

.icon-mobile::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.icon-shield {
    background: #e74c3c;
    clip-path: polygon(50% 0%, 100% 25%, 85% 100%, 15% 100%, 0% 25%);
    position: relative;
    width: 80px;
    height: 80px;
}

.icon-shield::before {
    content: '🛡';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.icon-users {
    background: #9b59b6;
    border-radius: 50%;
    position: relative;
    width: 80px;
    height: 80px;
}

.icon-users::before {
    content: '👥';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

/* Project Icons */
.icon-shopping {
    background: #27ae60;
    border-radius: 8px;
    position: relative;
    width: 4rem;
    height: 4rem;
}

.icon-shopping::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 25%;
    width: 50%;
    height: 40%;
    background: #fff;
    border-radius: 4px 4px 8px 8px;
}

.icon-shopping::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 35%;
    width: 30%;
    height: 3px;
    background: #27ae60;
    border-radius: 2px;
}

.icon-tasks {
    background: #3498db;
    border-radius: 8px;
    position: relative;
    width: 4rem;
    height: 4rem;
}

.icon-tasks::before {
    content: '✓\A✓\A○';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1rem;
    line-height: 1.2;
    white-space: pre;
}

.icon-chart {
    background: #e74c3c;
    border-radius: 8px;
    position: relative;
    width: 4rem;
    height: 4rem;
}

.icon-chart::before {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 20%;
    width: 8px;
    height: 20%;
    background: #fff;
    box-shadow:
        12px -8px 0 #fff,
        24px -16px 0 #fff,
        36px -4px 0 #fff;
}

/* Contact and Social Icons */
.icon-email {
    background: #3498db;
    border-radius: 50%;
    position: relative;
    width: 50px;
    height: 50px;
}

.icon-email::before {
    content: '✉';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
}

.icon-phone {
    background: #27ae60;
    border-radius: 50%;
    position: relative;
    width: 50px;
    height: 50px;
}

.icon-phone::before {
    content: '📞';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

.icon-location {
    background: #e74c3c;
    border-radius: 50%;
    position: relative;
    width: 50px;
    height: 50px;
}

.icon-location::before {
    content: '📍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

.icon-linkedin {
    background: #0077b5;
    border-radius: 8px;
    position: relative;
    width: 50px;
    height: 50px;
}

.icon-linkedin::before {
    content: 'in';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
}

.icon-twitter {
    background: #1da1f2;
    border-radius: 50%;
    position: relative;
    width: 50px;
    height: 50px;
}

.icon-twitter::before {
    content: '🐦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
}

.icon-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    position: relative;
    width: 50px;
    height: 50px;
}

.icon-instagram::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    border: 3px solid #fff;
    border-radius: 50%;
}

.icon-instagram::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 20%;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

/* Button Icons */
.icon-download {
    background: transparent;
    position: relative;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    margin-bottom: 0;
}

.icon-download::before {
    content: '⬇';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: currentColor;
    font-size: 1rem;
}

.icon-send {
    background: transparent;
    position: relative;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    margin-bottom: 0;
}

.icon-send::before {
    content: '✈';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: currentColor;
    font-size: 1rem;
}

.icon-external {
    background: transparent;
    position: relative;
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    margin-bottom: 0;
}

.icon-external::before {
    content: '↗';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: currentColor;
    font-size: 1rem;
}

/* Update existing styles to work with new icon structure */
.skill-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3498db;
    transition: all 0.3s ease;
}

.skill-item:hover .icon {
    color: #2980b9;
    transform: scale(1.1);
}

/* Update skill-specific colors for new icon structure */
.skill-item[data-skill="JavaScript"]:hover .icon-javascript {
    background: #f7df1e;
    transform: scale(1.1);
}
.skill-item[data-skill="Python"]:hover .icon-python {
    transform: scale(1.1);
}
.skill-item[data-skill="Java"]:hover .icon-java {
    background: #ed8b00;
    transform: scale(1.1);
}
.skill-item[data-skill="React"]:hover .icon-react {
    background: #61dafb;
    transform: scale(1.1);
}
.skill-item[data-skill="Node.js"]:hover .icon-nodejs {
    background: #339933;
    transform: scale(1.1);
}
.skill-item[data-skill="HTML5"]:hover .icon-html5 {
    background: #e34f26;
    transform: scale(1.1);
}
.skill-item[data-skill="CSS3"]:hover .icon-css3 {
    background: #1572b6;
    transform: scale(1.1);
}
.skill-item[data-skill="Git"]:hover .icon-git {
    background: #f05032;
    transform: scale(1.1);
}
.skill-item[data-skill="Docker"]:hover .icon-docker {
    background: #2496ed;
    transform: scale(1.1);
}

/* Education Section */
.education {
    background-color: #f8f9fa;
}

.education-content {
    max-width: 800px;
    margin: 0 auto;
}

.education-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.education-item:hover {
    transform: translateY(-5px);
}

.education-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.education-details h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.institution {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.duration {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.description {
    color: #555;
    line-height: 1.6;
}

.cv-download {
    text-align: center;
    margin-top: 2rem;
}

/* Interests Section */
.interests {
    background-color: white;
}

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

.interest-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.interest-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.interest-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.interest-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.interest-item p {
    color: #555;
    line-height: 1.6;
}

/* Projects Section */
.projects {
    background-color: #f8f9fa;
}

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

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.project-content {
    padding: 2rem;
}

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

.project-content p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background-color: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

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

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #2980b9;
}

/* Contact Section */
.contact {
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-method h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: #666;
    margin: 0;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

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

.footer-content p {
    margin-bottom: 0.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll animations */
.skill-item,
.education-item,
.interest-item,
.project-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.skill-item:nth-child(1) { animation-delay: 0.1s; }
.skill-item:nth-child(2) { animation-delay: 0.2s; }
.skill-item:nth-child(3) { animation-delay: 0.3s; }
.skill-item:nth-child(4) { animation-delay: 0.4s; }
.skill-item:nth-child(5) { animation-delay: 0.5s; }
.skill-item:nth-child(6) { animation-delay: 0.6s; }
.skill-item:nth-child(7) { animation-delay: 0.7s; }
.skill-item:nth-child(8) { animation-delay: 0.8s; }
.skill-item:nth-child(9) { animation-delay: 0.9s; }
.skill-item:nth-child(10) { animation-delay: 1.0s; }
.skill-item:nth-child(11) { animation-delay: 1.1s; }
.skill-item:nth-child(12) { animation-delay: 1.2s; }

.education-item:nth-child(1) { animation-delay: 0.2s; }
.education-item:nth-child(2) { animation-delay: 0.4s; }
.education-item:nth-child(3) { animation-delay: 0.6s; }

.interest-item:nth-child(1) { animation-delay: 0.1s; }
.interest-item:nth-child(2) { animation-delay: 0.2s; }
.interest-item:nth-child(3) { animation-delay: 0.3s; }
.interest-item:nth-child(4) { animation-delay: 0.4s; }
.interest-item:nth-child(5) { animation-delay: 0.5s; }
.interest-item:nth-child(6) { animation-delay: 0.6s; }

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }

/* Counter animation */

.stat h3 {
    position: relative;
    overflow: hidden;
}

.stat h3::before {
    counter-increment: stat-counter;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1000;
    }
    
    /* Toggle functionality */
    .nav-toggle:checked ~ .nav-menu {
        left: 0;
    }
    
    /* Hamburger animation when checked */
    .nav-toggle:checked ~ .hamburger .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle:checked ~ .hamburger .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle:checked ~ .hamburger .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-stats {
        gap: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .education-item {
        flex-direction: column;
        text-align: center;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skill-item {
        padding: 1.5rem 0.5rem;
    }
    
    .skill-item i {
        font-size: 2.5rem;
    }
}