/* Portfolio Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid #f0f0f0;
    border-radius: 50%;
}

.loader-line-mask {
    position: absolute;
    width: 150px;
    height: 150px;
    overflow: hidden;
    transform-origin: 75px 75px;
    animation: rotate 1.5s infinite linear;
    mask: none;
}

.loader-line {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    transform-origin: 75px 75px;
}

.loader-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 180px;
    letter-spacing: 3px;
}

.loader-percentage {
    position: absolute;
    font-size: 18px;
    color: var(--text-color-dark);
    margin-top: 40px;
}

/* Welcome Modal */
.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
}

.welcome-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.welcome-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-color);
}

.welcome-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 400px;
    z-index: 9997;
    transform: translateY(150%);
    transition: transform 0.3s ease;
    display: none; /* Initially hidden */
}

.cookie-notice.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-accept-all,
.btn-accept-selected {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-accept-all {
    background: var(--primary-color);
    color: white;
}

.btn-accept-selected {
    background: var(--card-bg);
    color: var(--text-color-dark);
}

/* Make sure cookie notice is visible on mobile */
@media (max-width: 768px) {
    .cookie-notice {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}

/* Notification Toast */
.notification-toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 9996;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    font-size: 1.2rem;
}

.notification-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color-dark);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.notification-close:hover {
    opacity: 1;
}
.portfolio {
    padding: 100px 0;
    background: linear-gradient(145deg, #f9f9f9 0%, #ffffff 100%);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--card-bg);
    border: none;
    border-radius: 10px;
    color: var(--text-color-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.thumbnail {
    position: relative;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 1, 79, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.portfolio-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
}

.portfolio-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: white;
    color: var(--primary-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.portfolio-item:hover img {
    transform: scale(1.1);
}

.category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.portfolio-links {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.view-project {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: var(--hover-primary);
    color: white;
}

.like-view {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.like-view span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Resume Styles */
.resume {
    padding: 100px 0;
    background: linear-gradient(145deg, #f9f9f9 0%, #ffffff 100%);
}

.resume-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: var(--card-bg);
    color: var(--text-color-dark);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

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

.timeline {
    display: grid;
    gap: 2rem;
}

.timeline-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
}

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

.timeline-header {
    margin-bottom: 1rem;
}

.year {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-header h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin: 0.5rem 0;
}

.location,
.company,
.grade {
    color: var(--text-color-dark);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-right: 1rem;
}

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

.skills-column h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.skill-item {
    margin-bottom: 2.5rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.skill-info span {
    color: var(--heading-color);
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 1s ease-in-out;
    position: relative;
}

.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.15) 25%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0.15) 75%);
    animation: shimmer 2s infinite;
}

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

/* Hover Effects */
.skill-item:hover .progress {
    animation: progress-glow 1s ease infinite;
}

@keyframes progress-glow {
    0% { box-shadow: 0 0 5px var(--primary-color); }
    50% { box-shadow: 0 0 10px var(--primary-color); }
    100% { box-shadow: 0 0 5px var(--primary-color); }
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .resume-tabs {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        width: calc(50% - 0.5rem);
        padding: 0.8rem;
        text-align: center;
    }
    
    .timeline-item {
        padding: 1.5rem;
    }
}

/* Testimonials Styles */
.testimonials-slider {
  padding: 2rem 0;
}
/* Preloader */


.testimonial-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  margin: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

/* Pricing Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.pricing-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

/* Contact Styles */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 2rem 0;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

.btn {
  background: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: var(--hover-primary);
}

/* General Layout */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

section {
  padding: 5rem 0;
}

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

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.8rem 0;
}

.navbar-hidden {
    transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--heading-color);
    position: relative;
    overflow: hidden;
}

.logo h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.logo:hover h2::before {
    transform: translateX(0);
}

.logo .highlight {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-color-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--hover-primary);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: var(--heading-color);
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--heading-color);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

/* Mobile Menu Styles */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .mobile-menu-btn.active .hamburger {
        background: transparent;
    }

    .mobile-menu-btn.active .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-menu-btn.active .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}

/* Enhanced Hero Section Styles */
.hero {
    min-height: 100vh;
    padding: 100px 0;
    background: linear-gradient(145deg, #f9f9f9 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

/* Photos Section */
.hero-photos {
    position: relative;
    padding: 2rem;
}

.photo-box {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.photo-frame {
    position: relative;
    padding-bottom: 125%; /* 4:5 Aspect ratio */
    border-radius: 30px;
    overflow: hidden;
    background: #1e1e1e; /* VS Code dark theme color */
    box-shadow: 
        -5px -5px 10px rgba(255, 255, 255, 0.8),
        5px 5px 10px rgba(0, 0, 0, 0.1);
}

.photo-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo-box:hover .photo-frame img {
    transform: scale(1.05);
}

/* Decorative Shapes */
.photo-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    animation: floatShape 3s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: -20px;
    left: -20px;
    background: linear-gradient(145deg, var(--primary-color), var(--hover-primary));
    animation-delay: 0s;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: -20px;
    background: rgba(255, 1, 79, 0.7);
    animation-delay: 0.5s;
}

.shape-3 {
    width: 25px;
    height: 25px;
    bottom: -10px;
    left: 30%;
    background: rgba(255, 1, 79, 0.5);
    animation-delay: 1s;
}

.shape-4 {
    width: 35px;
    height: 35px;
    top: 20%;
    left: -15px;
    background: rgba(255, 1, 79, 0.6);
    animation-delay: 1.5s;
}

/* Enhanced Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(30, 30, 30, 0.9);
    color: #fff;
    border: 1px solid rgba(0, 255, 0, 0.3);
    padding: 1.2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
    animation: badgePulse 2s ease-in-out infinite;
}

.experience-badge:hover {
    transform: translateY(-5px);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(to right, #00ff00, #00aa00);
    
    -webkit-text-fill-color: transparent;
}

.experience-badge .text {
    font-size: 0.9rem;
    color: #d4d4d4;
    font-weight: 500;
    margin-top: 0.3rem;
}

/* Animations */
@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    50% {
        box-shadow: 0 15px 40px rgba(255,1,79,0.2);
    }
}

/* Photo Frame Border Animation */
.photo-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 40%,
        rgba(0, 255, 0, 0.1) 45%,
        rgba(0, 255, 0, 0.2) 50%,
        rgba(0, 255, 0, 0.1) 55%,
        transparent 60%
    );
    z-index: 1;
    animation: matrixGlow 3s linear infinite;
    border-radius: 32px;
}

@keyframes matrixGlow {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-photos {
        padding: 1rem;
    }

    .photo-frame {
        border-radius: 20px;
    }

    .experience-badge {
        padding: 1rem;
        bottom: 20px;
        right: 20px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    .shape-1 { width: 40px; height: 40px; }
    .shape-2 { width: 30px; height: 30px; }
    .shape-3 { width: 20px; height: 20px; }
    .shape-4 { width: 25px; height: 25px; }
}

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

.welcome-text {
    background: linear-gradient(to right, var(--primary-color), var(--hover-primary));
  
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.highlight {
    color: var(--primary-color);
}

.typed-container {
    font-size: 2rem;
    margin-bottom: 2rem;
    min-height: 2.5rem;
}

.prefix {
    color: var(--text-color-dark);
}

.typed-text {
    color: var(--primary-color);
    font-weight: 600;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-color-dark);
    line-height: 1.8;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-color-dark);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--text-color-dark);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--text-color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.mouse-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-color-dark);
    text-decoration: none;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-color-dark);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .typed-container {
        font-size: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  position: relative;
  height: 200px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.blog-meta i {
  margin-right: 0.5rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  margin-top: 1rem;
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
} 

/* Footer Styles */
.footer {
  background: var(--secondary-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links,
.contact-info {
  list-style: none;
  padding: 0;
}

.footer-links li,
.contact-info li {
  margin-bottom: 0.8rem;
}

.footer-links a,
.social-link {
  color: #ffffff90;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.social-link:hover {
  color: var(--primary-color);
}

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

.social-link {
  font-size: 1.2rem;
}

.contact-info i {
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #ffffff20;
  padding-top: 2rem;
  text-align: center;
  color: #ffffff90;
}

/* Additional Animations */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.service-card i {
  animation: float 3s ease-in-out infinite;
}

/* Hover Effects */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--primary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--hover-primary);
  transform: translateY(-3px);
} 

/* Testimonials Styles */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-quote {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-color-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--heading-color);
    margin: 0;
}

.author-info p {
    color: var(--text-color-dark);
    opacity: 0.8;
    margin: 0;
}

.rating {
    color: #ffd700;
    margin-top: 0.5rem;
}

/* Clients Styles */
.clients {
    padding: 100px 0;
    background: linear-gradient(145deg, #f9f9f9 0%, #ffffff 100%);
}

.client-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: var(--card-bg);
    border: none;
    border-radius: 8px;
    color: var(--text-color-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 1, 79, 0.2);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.client-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.client-card:hover {
    transform: translateY(-10px);
}

.client-card:hover::before {
    opacity: 0.9;
}

.client-image {
    height: 100px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.client-image img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
}

.client-card:hover .client-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.client-info {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.client-card:hover .client-info {
    opacity: 1;
    transform: translateY(0);
}

.client-info h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.client-role {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Animation for filtering */
.client-card {
    animation: fadeIn 0.5s ease-out forwards;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .client-categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Section Headers */
section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--heading-color);
    font-size: 2.5rem;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
} 

/* Pricing Styles */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: translateY(-20px);
    border: 2px solid var(--primary-color);
}

.featured-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: var(--heading-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.duration {
    font-size: 1rem;
    color: var(--text-color-dark);
    opacity: 0.7;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-color-dark);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.btn-pricing {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--card-bg);
    color: var(--text-color-dark);
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card:hover .btn-pricing {
    background: var(--primary-color);
    color: white;
}

.pricing-card.featured .btn-pricing {
    background: var(--primary-color);
    color: white;
}

.pricing-card.featured:hover {
    transform: translateY(-30px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-card.featured {
        transform: translateY(0);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
} 

/* Blog Section Styles */
.blog {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-color-dark);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 1rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 200px;
    }
} 

/* Contact Section Styles */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-color-dark);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: var(--hover-primary);
    transform: translateY(-2px);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
} 

/* Dropdown Menu Styles */
.nav-link-dropdown {
    position: relative;
    padding-right: 1.5rem;
}

.nav-link-dropdown::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.nav-link-dropdown.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (min-width: 1025px) {
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }

    .nav-link-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-color-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--card-bg);
    color: var(--primary-color);
}

/* Loading Animation for Links */
.nav-link.loading::after {
    width: 100%;
    background: var(--primary-color);
    animation: loading 1s infinite;
}

@keyframes loading {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Enhanced Mobile Menu */
@media (max-width: 1024px) {
    .nav-menu {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
    }

    .dropdown-menu {
        background: var(--card-bg);
        margin: 0.5rem 0;
        border-radius: 8px;
    }

    .dropdown-menu a {
        padding: 1rem 1.5rem;
    }

    .btn-nav {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
} 

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 0.8rem 0 0.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    justify-content: space-around;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color-dark);
    font-size: 0.8rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.mobile-nav-item.active {
    color: var(--primary-color);
    opacity: 1;
}

.mobile-nav-item:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color-dark);
    cursor: pointer;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.mobile-menu-links li {
    margin: 1rem 0;
}

.mobile-menu-links a {
    color: var(--text-color-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* Hide desktop navbar */
    .navbar {
        display: none;
    }

    /* Show mobile bottom navigation */
    .mobile-bottom-nav {
        display: flex;
    }

    /* Add padding to bottom of content to account for fixed nav */
    body {
        padding-bottom: 70px;
    }

    /* Adjust footer padding */
    .footer {
        padding-bottom: calc(4rem + 70px);
    }
} 

/* Features Section Styles */
.features {
    padding: 100px 0;
    background: linear-gradient(145deg, #f9f9f9 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
    color: var(--heading-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover * {
    color: white;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--card-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background: rgba(255, 255, 255, 0.1);
}

.icon-box i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--heading-color);
    transition: all 0.3s ease;
}

.service-card p {
    color: var(--text-color-dark);
    margin-bottom: 25px;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.card-link i {
    transition: transform 0.3s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
} 

/* Interview Tab Styles */
.interview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.interview-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.interview-card:hover {
    transform: translateY(-5px);
}

.interview-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.interview-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.interview-header h3 {
    color: var(--heading-color);
    margin: 0;
}

.interview-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.interview-list li {
    margin-bottom: 1.5rem;
}

.interview-title {
    display: block;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.interview-list p {
    color: var(--text-color-dark);
    margin: 0;
    line-height: 1.6;
}

/* Enhanced Tab Transitions */
.tab-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Progress Bars */
.progress-bar {
    background: linear-gradient(145deg, #f6f6f6, #ffffff);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.progress {
    background: linear-gradient(145deg, var(--primary-color), var(--hover-primary));
    box-shadow: 0 2px 4px rgba(255,1,79,0.2);
}

/* Skill Item Hover Effect */
.skill-item:hover .progress {
    animation: progress-pulse 1s infinite;
}

@keyframes progress-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
} 

/* Portfolio Animation Styles */
.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.portfolio-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.portfolio-stats i {
    font-size: 1.1rem;
}

/* Filter Button Active State */
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 1, 79, 0.3);
} 

/* Portfolio Modal Styles */
.portfolio-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 1000px;
    margin: auto;
    border-radius: 20px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.portfolio-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.modal-image {
    border-radius: 15px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.modal-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color-dark);
}

.project-details h3 {
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.modal-description {
    color: var(--text-color-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.project-meta {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.meta-item h4 {
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tool-tag {
    padding: 0.3rem 0.8rem;
    background: var(--card-bg);
    border-radius: 15px;
    font-size: 0.9rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

.btn-live,
.btn-like {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-live {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.btn-like {
    background: var(--card-bg);
    color: var(--text-color-dark);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-live:hover,
.btn-like:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
    }
} 

/* Enhanced Photo Box Styles */
.photo-frame {
    position: relative;
    padding-bottom: 125%;
    border-radius: 30px;
    overflow: hidden;
    background: #1e1e1e; /* VS Code dark theme color */
    box-shadow: 
        -5px -5px 10px rgba(255, 255, 255, 0.8),
        5px 5px 10px rgba(0, 0, 0, 0.1);
}

/* Code Overlay */
.code-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.85);
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Consolas', monospace;
    color: #d4d4d4;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow: hidden;
}

.photo-box:hover .code-overlay {
    opacity: 1;
}

.code-line {
    transform: translateX(-100%);
    opacity: 0;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.photo-box:hover .code-line {
    transform: translateX(0);
    opacity: 1;
}

/* Code line animations */
.photo-box:hover .code-line:nth-child(1) { animation: slideIn 0.3s ease forwards; }
.photo-box:hover .code-line:nth-child(2) { animation: slideIn 0.3s ease 0.1s forwards; }
.photo-box:hover .code-line:nth-child(3) { animation: slideIn 0.3s ease 0.2s forwards; }
.photo-box:hover .code-line:nth-child(4) { animation: slideIn 0.3s ease 0.3s forwards; }
.photo-box:hover .code-line:nth-child(5) { animation: slideIn 0.3s ease 0.4s forwards; }
.photo-box:hover .code-line:nth-child(6) { animation: slideIn 0.3s ease 0.5s forwards; }
.photo-box:hover .code-line:nth-child(7) { animation: slideIn 0.3s ease 0.6s forwards; }

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Syntax Highlighting */
.tag {
    color: #569cd6; /* Blue */
}

.attr {
    color: #9cdcfe; /* Light blue */
}

.value {
    color: #ce9178; /* Orange */
}

/* Cursor Animation */
.code-overlay::after {
    content: '|';
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    color: #fff;
    font-weight: bold;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .code-overlay {
        padding: 1rem;
        font-size: 0.8rem;
    }
} 

/* Tech Stack Icons */
.tech-stack {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.tech-icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-icon:hover {
    transform: translateY(-5px);
}

.tech-icon i {
    transition: all 0.3s ease;
}

.tech-icon:hover i {
    animation: bounce 0.5s ease infinite;
}

.tech-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tech-icon:hover .tech-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -40px;
}

/* Icon-specific colors */
.tech-icon:nth-child(1) i { color: #e34f26; } /* HTML5 */
.tech-icon:nth-child(2) i { color: #264de4; } /* CSS3 */
.tech-icon:nth-child(3) i { color: #f7df1e; } /* JavaScript */
.tech-icon:nth-child(4) i { color: #61dafb; } /* React */
.tech-icon:nth-child(5) i { color: #339933; } /* Node.js */

/* Animated Background Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s linear infinite;
}

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

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 5s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 40%;
    animation-delay: 10s;
}

/* Enhanced Hero Content Styles */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-welcome {
    position: relative;
    display: inline-block;
}

.hero-welcome::before,
.hero-welcome::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.hero-welcome::before {
    right: calc(100% + 15px);
}

.hero-welcome::after {
    left: calc(100% + 15px);
}

/* Enhanced Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes float-particle {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(100px, 100px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(200px, 0) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translate(100px, -100px) rotate(270deg);
        opacity: 0.6;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0.3;
    }
}

/* Enhanced Responsive Styles */
@media (max-width: 768px) {
    .tech-stack {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .hero-welcome::before,
    .hero-welcome::after {
        width: 20px;
    }
}

/* Add a glowing effect to the hero title */
.hero h1 {
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        transparent 40%,
        rgba(255,1,79,0.2) 45%,
        rgba(255,1,79,0.4) 50%,
        rgba(255,1,79,0.2) 55%,
        transparent 60%
    );
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero h1:hover::after {
    opacity: 1;
} 

/* Error Pages Styles */
.connection-error,
.page-not-found {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-content {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: slideUp 0.5s ease forwards;
}

.error-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.error-content h2 {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--text-color-dark);
    margin-bottom: 2rem;
}

.retry-btn,
.home-btn,
.back-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.retry-btn,
.home-btn {
    background: var(--primary-color);
    color: white;
}

.back-btn {
    background: var(--card-bg);
    color: var(--text-color-dark);
}

.retry-btn:hover,
.home-btn:hover,
.back-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Show error pages */
.connection-error.show,
.page-not-found.show {
    display: flex;
    opacity: 1;
}

/* Responsive styles */
@media (max-width: 768px) {
    .error-content {
        width: 90%;
        padding: 1.5rem;
    }

    .error-icon {
        font-size: 3rem;
    }

    .error-content h2 {
        font-size: 1.5rem;
    }

    .error-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .retry-btn,
    .home-btn,
    .back-btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}