/* Global Variables */
:root {
    --primary-color: #4361ee;
    --primary-color-light: #4895ef;
    --secondary-color: #f72585;
    --accent-color: #7209b7;
    --text-color: #333;
    --text-color-light: #777;
    --bg-color: #ffffff;
    --bg-color-light: #f9f9f9;
    --border-color: #e9e9e9;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width-lg: 80%;
    --container-width-md: 90%;

    /* Dark Theme Variables */
    --dark-bg: #121212;
    --dark-bg-light: #1e1e1e;
    --dark-text: #e0e0e0;
    --dark-text-light: #aaaaaa;
    --dark-border: #333333;
    --dark-card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Dark Theme Class */
body.dark-theme {
    --text-color: var(--dark-text);
    --text-color-light: var(--dark-text-light);
    --bg-color: var(--dark-bg);
    --bg-color-light: var(--dark-bg-light);
    --border-color: var(--dark-border);
    --card-shadow: var(--dark-card-shadow);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    transition: var(--transition);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    color: var(--text-color);
}

section {
    padding: 80px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.05;
    z-index: -1;
}

.container {
    width: var(--container-width-lg);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    color: white;
    box-shadow: 0 6px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.theme-toggle i {
    color: white;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(67, 97, 238, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 8px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

body.dark-theme .header {
    background: rgba(18, 18, 18, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(67, 97, 238, 0.2);
}

body.dark-theme .header.scrolled {
    background: rgba(18, 18, 18, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-brand {
    flex: 0 0 auto;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.brand-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(67, 97, 238, 0.2);
    transition: var(--transition);
}

.brand-logo:hover .brand-image {
    transform: scale(1.05);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nav-brand h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.nav-brand p {
    font-size: 0.8rem;
    color: var(--text-color-light);
    font-weight: 500;
    margin: 0;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(67, 97, 238, 0.05);
}

.nav-link.active {
    color: var(--primary-color);
    background: rgba(67, 97, 238, 0.1);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    border-radius: 1px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(67, 97, 238, 0.1);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 3px 0;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Home Section */
.home-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -1;
}

.home-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    margin-top: 10px;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(247, 37, 133, 0.1));
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s forwards;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 700;
    animation: fadeInUp 1s forwards;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.highlight {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-color-light);
    margin-bottom: 30px;
    max-width: 580px;
    line-height: 1.7;
    animation: fadeInUp 1.2s forwards;
}

.hero-stats {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    animation: fadeInUp 1.4s forwards;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
    background: var(--bg-color-light);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    min-width: 80px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-image-slice: 1;
}

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

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-color-light);
    font-weight: 500;
}

.hero-buttons {
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    animation: fadeInUp 1.6s forwards;
}

.social-links {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1.8s forwards;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
}

.hero-image-container {
    position: relative;
    animation: fadeIn 1.5s forwards;
}

.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.15), rgba(247, 37, 133, 0.15));
    top: -70px;
    right: -70px;
    z-index: -1;
    animation: pulse 5s infinite alternate;
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.15), rgba(67, 97, 238, 0.15));
    bottom: -50px;
    left: -50px;
    z-index: -1;
    animation: pulse 5s infinite alternate-reverse;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.profile-image {
    width: 380px;
    height: 380px;
    border-radius: 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    z-index: 2;
    object-fit: cover;
    border: 5px solid var(--bg-color);
}

.profile-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.floating-badge {
    position: absolute;
    padding: 10px 20px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

.shopify-badge {
    top: 30px;
    right: -30px;
    color: #96bf48;
    animation-delay: 0s;
}

.react-badge {
    bottom: 60px;
    left: -20px;
    color: #61dafb;
    animation-delay: 0.5s;
}

.api-badge {
    bottom: -20px;
    right: 50px;
    color: var(--secondary-color);
    animation-delay: 1s;
}

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

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

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

/* About Section */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="10" fill="%234361ee" opacity="0.1"/></svg>');
}

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

.about-description {
    font-size: 1.1rem;
    color: var(--text-color-light);
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}

.highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-color-light);
    border-radius: 10px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.highlight-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: var(--bg-color-light);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color-light);
    font-weight: 500;
}

/* Experience Section */
.experience-section {
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect x="40" y="40" width="20" height="20" fill="%23f72585" opacity="0.1"/></svg>');
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1.5px;
    border-radius: 3px;
}

.timeline-item {
    padding: 15px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd):before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(67, 97, 238, 0.2);
}

.timeline-item:nth-child(even):before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: -10px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(67, 97, 238, 0.2);
}

.timeline-date {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 20px;
}

.timeline-content {
    padding: 25px;
    background: var(--bg-color-light);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
}

.timeline-content::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 15px;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -15px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--bg-color-light);
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -15px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--bg-color-light);
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-content h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color-light);
}

.timeline-content ul {
    margin-left: 20px;
    list-style-type: disc;
}

.timeline-content ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-color-light);
}

/* Projects Section */
.projects-section {
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><polygon points="50,20 80,50 50,80 20,50" fill="%237209b7" opacity="0.1"/></svg>');
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.project-card {
    background: var(--bg-color-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
}

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

.project-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-image::before {
    opacity: 1;
}

.project-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

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

.project-content {
    padding: 25px;
}

.project-content h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
}

.project-content p {
    color: var(--text-color-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-tag {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(247, 37, 133, 0.1));
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.tech-tag:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-3px);
}

.project-links {
    display: flex;
    justify-content: space-between;
}

.project-link {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.project-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

.project-link:hover::after {
    width: 100%;
}

/* Skills Section */
.skills-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 100px;
}

.skills-section::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="10" fill="%234895ef" opacity="0.1"/></svg>');
}

.skills-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: var(--text-color-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.skills-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.technical-skills {
    background: var(--bg-color-light);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    border-top: 5px solid transparent;
    border-image: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-image-slice: 1;
}

.technical-skills::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
    border-radius: 50%;
    z-index: 0;
}

.skills-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.skills-tab {
    padding: 10px 25px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 30px;
    margin-right: 15px;
    transition: var(--transition);
    position: relative;
    font-size: 1rem;
    color: var(--text-color-light);
}

.skills-tab.active {
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(247, 37, 133, 0.1));
    color: var(--primary-color);
}

.skills-tab::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.skills-tab.active::after {
    width: 80%;
}

.tab-content {
    display: none;
    animation: fadeIn 0.6s forwards;
}

.tab-content.active {
    display: block;
}

.skills-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.skills-category {
    margin-bottom: 30px;
}

.skills-category h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
}

.skills-category h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.skill-item {
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

body.dark-theme .skill-item {
    background: rgba(30, 30, 30, 0.5);
}

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

.skill-item::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: center;
}

.skill-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    padding-left: 15px;
}

.skill-percentage {
    color: var(--text-color);
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.skill-bar {
    height: 10px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.skill-progress {
    position: absolute;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
}

.tools-category, .soft-skills-category {
    background: var(--bg-color-light);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 40px;
    height: 100%;
}

.tools-grid, .soft-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tool-item, .soft-skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 25px 15px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

body.dark-theme .tool-item, 
body.dark-theme .soft-skill-item {
    background: rgba(30, 30, 30, 0.5);
}

.tool-item::after, .soft-skill-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.tool-item:hover::after, .soft-skill-item:hover::after {
    transform: scaleX(1);
}

.tool-item:hover, .soft-skill-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tool-item i, .soft-skill-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Education Section */
.education-section {
    position: relative;
    overflow: hidden;
}

.education-section::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect x="25" y="25" width="50" height="50" rx="10" fill="%234895ef" opacity="0.1"/></svg>');
}

.education-card {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    padding: 35px;
    background: var(--bg-color-light);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.education-card::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.education-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.education-icon {
    font-size: 3rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.education-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.education-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color-light);
    margin-bottom: 15px;
}

.education-date {
    display: inline-block;
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 5px 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 30px;
    font-size: 0.9rem;
}

.education-description {
    color: var(--text-color-light);
    line-height: 1.7;
}

.education-extras h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.education-extras h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

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

.course-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-color-light);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.course-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.course-item:hover::after {
    transform: scaleX(1);
}

.course-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.course-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.course-details p {
    font-size: 0.95rem;
    color: var(--text-color-light);
}

/* Achievements Section */
.achievements-section {
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M50,20 L80,50 L50,80 L20,50 Z" fill="%23f72585" opacity="0.1"/></svg>');
}

.achievements-content {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); */
    gap: 35px;
}

.achievement-card {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--bg-color-light);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

.achievement-details h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--accent-color);
}

.achievement-details p {
    font-size: 0.95rem;
    color: var(--text-color-light);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="%234361ee" stroke-width="2" fill="none" opacity="0.1"/></svg>');
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: var(--bg-color-light);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-item::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-color-light);
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1rem;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: transparent;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    font-size: 1rem;
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

/* Footer */
.footer {
    background: var(--bg-color-light);
    padding: 80px 0 20px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo p {
    color: var(--text-color-light);
    font-size: 1rem;
}

.footer-links h4, .footer-social h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.footer-links h4:after, .footer-social h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a {
    color: var(--text-color-light);
    transition: var(--transition);
    font-size: 1rem;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    display: inline-block;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.95rem;
    color: var(--text-color-light);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
}

.fade-in.visible {
    animation: fadeInUp 0.8s forwards;
}

.slide-in-left {
    opacity: 0;
}

.slide-in-left.visible {
    animation: slideInLeft 0.8s forwards;
}

.slide-in-right {
    opacity: 0;
}

.slide-in-right.visible {
    animation: slideInRight 0.8s forwards;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .profile-image {
        width: 340px;
        height: 340px;
    }
    
    .floating-badge {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    :root {
        --container-width-lg: 90%;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .home-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-description {
        margin: 0 auto 30px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .hero-image-container {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .profile-image {
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        margin-top: 20px;
    }
    
    .contact-item {
        padding: 20px;
        gap: 20px;
    }
    
    .contact-item i {
        font-size: 1.8rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline:before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(even):before {
        left: 22px;
    }

    .timeline-item:nth-child(odd):before {
        left: 22px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: span 2;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
}

@media screen and (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .navbar {
        padding: 12px 5%;
    }
    
    .theme-toggle {
        display: none;
    }
    
    .hero-title {
        font-size: 2.7rem;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 72px);
        background: var(--bg-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 12px 15px;
        border-radius: 8px;
        font-size: 1rem;
    }

    body.dark-theme .nav-links {
        background: var(--dark-bg);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }
    
    .skills-row {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .skills-tab {
        margin-bottom: 10px;
    }
    
    .technical-skills {
        padding: 30px 20px;
    }
    
    .tools-category, 
    .soft-skills-category {
        padding: 30px 20px;
    }

    
    .floating-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .shopify-badge {
        right: -15px;
    }
    
    .react-badge {
        left: -10px;
    }
    
    .api-badge {
        right: 30px;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
    }
    
    .achievements-content,
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .tools-grid, .soft-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 15px;
    }
    
    .contact-item i {
        font-size: 1.5rem;
    }
    
    .contact-item::after {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    label {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    input, textarea {
        padding: 12px;
        font-size: 0.95rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
    
    .hero-stats {
        /* flex-wrap: wrap; */
        justify-content: center;
    }
    
    .hero-buttons {
        /* flex-direction: column; */
        gap: 15px;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
        border-radius: 20px;
    }
    
    .floating-badge {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
    
    .shopify-badge {
        top: 20px;
        right: -45px;
    }
    
    .react-badge {
        bottom: 50px;
        left: -60px;
    }
    
    .api-badge {
        bottom: -10px;
        right: 20px;
    }
    
    .stat-item {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    
    
    .education-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .skills-tab {
        padding: 8px 15px;
        font-size: 0.9rem;
        margin-right: 10px;
    }
    
    .technical-skills, 
    .tools-category, 
    .soft-skills-category {
        padding: 25px 15px;
    }
    
    .skills-category h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .skill-name {
        font-size: 1rem;
    }
}/* Footer - Redesigned */
.footer {
    background: linear-gradient(to right, rgba(67, 97, 238, 0.1), rgba(247, 37, 133, 0.1));
    padding: 80px 0 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(67, 97, 238, 0.2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="80" cy="20" r="15" fill="%234361ee" opacity="0.05"/><circle cx="20" cy="80" r="25" fill="%23f72585" opacity="0.05"/></svg>');
    background-size: 400px;
    opacity: 0.5;
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    position: relative;
}

.footer-logo h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-logo p {
    color: var(--text-color-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 80%;
    line-height: 1.6;
}

.footer-links h4, .footer-social h4 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.footer-links h4::after, .footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links ul li a {
    color: var(--text-color);
    transition: var(--transition);
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: -5px;
    opacity: 0;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.3rem;
    background: white;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.social-icons a:hover {
    color: white;
    transform: translateY(-8px);
}

.social-icons a:hover::before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(67, 97, 238, 0.2);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 0 0 10px 10px;
}

.footer-bottom p {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

@media screen and (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: span 2;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-logo p {
        margin: 0 auto 25px;
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
    
    .footer-links h4, .footer-social h4 {
        text-align: center;
    }
    
    .footer-links h4::after, .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links ul li a {
        text-align: center;
        display: block;
    }
}/* Enhanced Responsive Contact Section */
.contact-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(to right, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
}

.contact-section::before {
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="%234361ee" stroke-width="2" fill="none" opacity="0.1"/></svg>');
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: var(--bg-color-light);
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    align-items: center;
}

.contact-item::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 2rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.contact-details {
    flex-grow: 1;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.contact-details p {
    font-size: 1rem;
    color: var(--text-color-light);
    word-break: break-word;
}

.contact-details a {
    color: var(--text-color-light);
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--bg-color-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-color);
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    background: transparent;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    font-size: 1rem;
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.contact-form button {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
}

/* Media Queries for Contact Section */
@media screen and (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-item {
        padding: 20px;
        gap: 20px;
    }
    
    .contact-item i {
        font-size: 1.8rem;
    }
    
    .contact-details h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-item {
        padding: 18px;
        gap: 18px;
    }
    
    .contact-item i {
        font-size: 1.6rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    label {
        margin-bottom: 8px;
    }
    
    input, textarea {
        padding: 12px;
    }
}

@media screen and (max-width: 480px) {
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 18px;
    }
    
    .contact-item i {
        font-size: 1.5rem;
    }
    
    .contact-item::after {
        width: 100%;
        height: 4px;
        top: 0;
        left: 0;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    input, textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .contact-form button {
        font-size: 1rem;
        padding: 12px;
    }
}

.contact-form button.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.3);
}

.contact-form button.error {
    background: linear-gradient(135deg, #f44336, #e53935);
    box-shadow: 0 6px 15px rgba(244, 67, 54, 0.3);
}