/* CSS Variables for easy customization */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Fira+Code:wght@400;500&display=swap');

:root {
  --font-primary: 'Poppins', myfamily;
  --font-mono: 'Fira Code', monospace;
}

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-gold: #ffd700;
    --text-light: #ffffff;
    --text-muted: #888888;
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}
body.light-theme {
  --primary-dark: #ffffff;
  --secondary-dark: #f0f0f0;
  --text-light: #000000;
  --text-muted: #666666;
  --accent-gold: #c59d00;
  --background: #fefefe;
  --gradient-dark: #ffffff;
  color: var(--text-light);
  background-color: var(--background);
}

body.light-theme .resume-container {
    background: url('images/blackbg.jpg') center/cover;
}

body.light-theme .hero {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)),url('images/white-background.jpg') center/cover;
}

body.light-theme .contact-left {
    background: #0a0a0a;
}
body.light-theme .contact-info a{
    color: var(--primary-dark);
}

body.light-theme .contact-title {
    color: var(--primary-dark);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* theme toggle button */
.theme-toggle-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--secondary-dark);
  color: var(--accent-gold);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.theme-toggle-btn:hover {
  transform: rotate(20deg);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

body {
    font-family: var(--font-primary);
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: url('images/house.png'),auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('images/mountain.jpg') center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none; /* Prevents it from blocking clicks */
}

.hero-content {
    z-index: 2;
    position: relative;
    top: -40px;
}

.hero-figure img{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    max-width: 250px;
    width: 100%;
}

/* .hero-figure img {
    width: 120%;
    height: auto;
} */

.hero-badge {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--accent-gold);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: inline-block;
    animation: slideDown 1s ease-out;
}

body.light-theme .hero-badge {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid var(--text-light);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 10px;
    animation: slideUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 15px;
    animation: slideUp 1s ease-out 0.4s both;
    color: var(--text-light);
}

.scroll-indicator {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-gold);
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 1s both;
    z-index: 3;
    cursor: pointer;
    text-decoration: none;
}
body.light-theme .scroll-indicator {
    color: var(--text-light);
}

.scroll-indicator i {
    display: block;
    margin-top: 10px;
    animation: bounce 2s infinite;
}

/* Main Content */
.main-content {
    background: var(--gradient-dark);
    min-height: 100vh;
}

.section {
    padding: 10px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Resume Section */
.resume-container {
    background: url(images/bg.jpg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
}

.resume-section {
    margin-bottom: 40px;
}

.section-title-resume{
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.resume-section h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-dark);
    padding-bottom: 10px;
}

.resume-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.resume-item:last-child {
    border-bottom: none;
}

.resume-left {
    flex: 1;
}

.resume-right {
    color: var(--primary-dark);
    font-weight: 500;
    min-width: 120px;
    text-align: right;
}

.resume-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.resume-company {
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 10px;
}

.resume-description {
    color: var(--primary-dark);
    list-style: none;
}

.resume-description li {
    margin-bottom: 5px;
    padding-left: 20px;
    position: relative;
    color: var(--primary-dark);
}

.resume-description li::before {
    content: '•';
    color: var(--primary-dark);
    position: absolute;
    left: 0;
}

/* About Section */


.about-section{
    border-radius: 20px;
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
}

.profile-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), #ffed4a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 5px; /* Space for the golden border */
    }

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

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


.about-text {
      -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--secondary-dark);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.portfolio-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.project-1 .portfolio-image {
    background: url('images/bloomnet.png') center/cover;
}
.project-2 .portfolio-image {
    background: url('images/house.png') center/cover;
}
.project-3 .portfolio-image {
    background: url('images/library.jpeg') center/cover;
}
.project-4 .portfolio-image{
    background: url('images/ragai.png') center/cover;
}
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay i {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.portfolio-description {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.portfolio-btn {
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 14px;         
    font-size: 0.85rem;        
    border: none;
    border-radius: 20px;     
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.portfolio-btn:hover {
    transform: scale(1.05);
}

/* Experience Section */
.experience-item {
    background: var(--secondary-dark);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1200px;
    margin: 20px 135px 20px 135px;
    
}

.section-experience{
    background: url('images/divider.jpg') center/cover;
}

.experience-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.experience-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.experience-company {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.experience-description {
    color: var(--text-muted);
    line-height: 1.6;
}



/* Certificates Section */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.certificate-item {
  background: var(--secondary-dark);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.certificate-item:hover::before {
  left: 100%;
}

.certificate-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.certificate-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.certificate-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.certificate-icon img {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.certificate-badge {
  background: rgba(255, 215, 0, 0.2);
  color: var(--accent-gold);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--accent-gold);
}

.certificate-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.certificate-issuer {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 15px;
}

.certificate-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.certificate-btn {
  background: linear-gradient(135deg, var(--accent-gold), #ffed4a);
  color: var(--primary-dark);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.certificate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffed4a, var(--accent-gold));
}

.certificate-toggle-btn {
  background: linear-gradient(135deg, var(--accent-gold), #ffed4a);
  color: var(--primary-dark);
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.certificate-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Animation container for extra certificates */
.certificates-extra-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

/* When expanded */
.certificates-extra-wrapper.expanded {
  max-height: 3000px;
}

/* Initial hidden state for extra items — no display: none */
.extra-certificate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Animated appearance */
.certificates-extra-wrapper.expanded .extra-certificate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Grid Setup */
.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .certificates-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .certificate-item {
    padding: 25px;
  }

  .certificate-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .certificate-icon {
    width: 50px;
    height: 50px;
  }

  .certificate-icon i {
    font-size: 1.3rem;
  }

  .certificate-title {
    font-size: 1.2rem;
  }
}














/* Skills Section */
.section {
    padding: 10px 0;
    max-width: 1200px;
    margin: 0 auto ;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--accent-gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 2px;
}

/* Skills Section Styles */
.skills-section {
    position: relative;
    padding: 30px 0 80px 0;
    margin: 0px 20px 0px 20px;
    overflow: hidden;
}
.skills-container {
    position: relative;
    z-index: 2;
}

.skills-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2), transparent);
    filter: blur(30px);
    animation: float-orb 6s ease-in-out infinite;
}

.orb-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.orb-2 {
    width: 100px;
    height: 100px;
    top: 70%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float-orb {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 3;
}

.skill-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.skill-item:hover::before {
    left: 100%;
}

.skill-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 20px 40px rgba(255, 215, 0, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.4);
}

.skill-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.skill-logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.skill-logo img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(1.2);
}

.skill-logo i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.skill-item:hover .skill-logo {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
}

.skill-info {
    flex: 1;
}

.skill-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.skill-category {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-link-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: rgba(255, 215, 0, 0.6);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.skill-item:hover .skill-link-icon {
    color: var(--accent-gold);
    transform: translate(3px, -3px);
}

.skill-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    animation: particle-float 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 70%;
    right: 25%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 70%;
    animation-delay: 2s;
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skill-item {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .skill-content {
        gap: 12px;
    }
    
    .skill-logo {
    width: 12vw;              
    height: auto;             
    padding: 0.4rem;          
    border-radius: 6px;       
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.03); 
  }

  .skill-logo img {
    width: 8vw;              
    max-width: 24px;         
    height: auto;            
    object-fit: contain;
    filter: brightness(1.1);
  }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .skills-grid {
        gap: 15px;
    }
}














/* Contact Section */
.contact-section {
    background: var(--primary-dark);
    padding: 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.contact-left {
    background: #ffed4a;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.contact-left::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 3px dashed #333;
    border-radius: 50%;
    opacity: 0.3;
}

.contact-left::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d5016;
    margin-bottom: 40px;
    z-index: 2;
    position: relative;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    z-index: 2;
    position: relative;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    background: var(--accent-gold);
}

.contact-icon i {
    color: var(--accent-gold);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-icon:hover i {
    color: var(--primary-dark);
}

.contact-info a {
    font-size: 0.75rem ;
    color: #2d5016;
    font-weight: 400;
    text-decoration:solid;
}

.resume-download {
    margin-top: 20px;
}

.resume-button {
    background: var(--primary-dark);
    color: var(--accent-gold);
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.resume-button i {
    font-size: 18px;
}

.resume-button:hover {
    animation: bounceY 0.4s ease infinite;
}

@keyframes bounceY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.contact-right {
    background: url('images/IMG_1467.jpg') center/cover;
}

body.light-theme .contact-right {
    background: url('images/light-contact.png')center/cover;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    padding: 10px 0;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .profile-image {
    width: 350px;
    height: 350px;
    margin: 0 auto; 
  }

    .skill-info {
    flex-direction: column;            
    width: 100%;            
    margin-top: 0.5rem;     
  }
   .contact-info a {
        font-size: 0.9rem; 
        padding: 6px 0;    
        display: inline-block;
    }
    .section {
        padding: 60px 15px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
      .skill-name {
    font-size: 1rem;          
    margin-bottom: 4px;
  }

  .skill-category {
    font-size: 0.75rem;       
    letter-spacing: 0.4px;
  }
    
    .resume-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .resume-right {
        text-align: left;
    }
}
