﻿/* CSS Variables for Theme Support */
:root {
    /* Light Theme Colors */
    --primary: 59 130 246; /* #3B82F6 */
    --primary-foreground: 255 255 255; /* #FFFFFF */
    --secondary: 100 116 139; /* #64748B */
    --background: 255 255 255; /* #FFFFFF */
    --foreground: 15 23 42; /* #0F172A */
    --muted: 248 250 252; /* #F8FAFC */
    --muted-foreground: 100 116 139; /* #64748B */
    --card: 255 255 255; /* #FFFFFF */
    --card-foreground: 15 23 42; /* #0F172A */
    --border: 226 232 240; /* #E2E8F0 */
    --accent: 59 130 246; /* #3B82F6 */
    --accent-foreground: 255 255 255; /* #FFFFFF */
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.dark {
    /* Dark Theme Colors */
    --primary: 59 130 246; /* #3B82F6 */
    --primary-foreground: 255 255 255; /* #FFFFFF */
    --secondary: 148 163 184; /* #94A3B8 */
    --background: 15 23 42; /* #0F172A */
    --foreground: 248 250 252; /* #F8FAFC */
    --muted: 30 41 59; /* #1E293B */
    --muted-foreground: 148 163 184; /* #94A3B8 */
    --card: 30 41 59; /* #1E293B */
    --card-foreground: 248 250 252; /* #F8FAFC */
    --border: 51 65 85; /* #334155 */
    --accent: 59 130 246; /* #3B82F6 */
    --accent-foreground: 255 255 255; /* #FFFFFF */
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: rgb(var(--foreground));
    background-color: rgb(var(--background));
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

    .btn-primary:hover {
        background-color: rgb(var(--primary) / 0.9);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

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

    .btn-secondary:hover {
        background-color: rgb(var(--muted));
        transform: translateY(-2px);
    }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgb(var(--background) / 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgb(var(--border));
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        background-color: rgb(var(--background) / 0.98);
        box-shadow: var(--shadow);
    }

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
    }

.brand-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(var(--primary));
    text-decoration: none;
}

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

.nav-link {
    color: rgb(var(--foreground));
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: rgb(var(--primary));
        }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    color: rgb(var(--foreground));
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

    .theme-toggle:hover {
        background-color: rgb(var(--muted));
    }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: rgb(var(--foreground));
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgb(var(--background));
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid rgb(var(--border));
        display: none;
    }

        .nav-links.active {
            display: flex;
        }

    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 2rem;
    background: linear-gradient(135deg, rgb(var(--background)) 0%, rgb(var(--muted)) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.hero-image {
    text-align: center;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgb(var(--primary));
    box-shadow: var(--shadow-lg);
}

.hero-text {
    space-y: 1rem;
}

.hero-name {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(var(--foreground));
    margin-bottom: 0.5rem;
}

.hero-title {
    font-size: 1.5rem;
    color: rgb(var(--primary));
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgb(var(--muted-foreground));
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgb(var(--muted));
    color: rgb(var(--foreground));
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background-color: rgb(var(--primary));
        color: rgb(var(--primary-foreground));
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .profile-image {
        width: 250px;
        height: 250px;
    }

    .hero-name {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: rgb(var(--foreground));
    margin-bottom: 1rem;
}

.section-subtitle {
    color: rgb(var(--muted-foreground));
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: rgb(var(--primary));
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-section {
    background-color: rgb(var(--muted));
}

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

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgb(var(--muted-foreground));
    margin-bottom: 3rem;
}

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

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

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

.stat-label {
    color: rgb(var(--muted-foreground));
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

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

.skill-category {
    background-color: rgb(var(--card));
    border: 1px solid rgb(var(--border));
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .skill-category:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

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

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

    .category-header h3 {
        color: rgb(var(--card-foreground));
    }

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

.skill-tag {
    background-color: rgb(var(--primary) / 0.1);
    color: rgb(var(--primary));
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
}


/* Projects Section */
/* Projects Slider Styles */
.projects-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slider-container {
    overflow: hidden;
    border-radius: 1rem;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.project-slide {
    flex: 0 0 100%;
    padding: 0 1rem;
}

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

.project-card {
    background-color: rgb(var(--card));
    border: 1px solid rgb(var(--border));
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

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

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgb(var(--primary));
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

    .project-link:hover {
        transform: scale(1.1);
    }

.project-content {
    padding: 1.5rem;
}

.project-title {
    color: rgb(var(--card-foreground));
    margin-bottom: 0.5rem;
}

.project-description {
    color: rgb(var(--muted-foreground));
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.tech-tag {
    background-color: rgb(var(--primary) / 0.1);
    color: rgb(var(--primary));
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Slider Navigation Styles */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgb(var(--primary));
    color: rgb(var(--primary-foreground));
    border: none;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-lg);
}

    .slider-arrow:hover:not(:disabled) {
        background-color: rgb(var(--primary) / 0.9);
        transform: translateY(-50%) scale(1.1);
    }

    .slider-arrow:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.slider-arrow-prev {
    left: -1.5rem;
}

.slider-arrow-next {
    right: -1.5rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background-color: rgb(var(--border));
    cursor: pointer;
    transition: all 0.3s ease;
}

    .slider-dot.active {
        background-color: rgb(var(--primary));
        transform: scale(1.2);
    }

    .slider-dot:hover {
        background-color: rgb(var(--primary) / 0.7);
    }

@media (max-width: 768px) {
    .projects-slider {
        max-width: 100%;
    }

    .slider-arrow-prev {
        left: 0.5rem;
    }

    .slider-arrow-next {
        right: 0.5rem;
    }
}
.projects-section {
    background-color: rgb(var(--muted));
}

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

.project-card {
    background-color: rgb(var(--card));
    border: 1px solid rgb(var(--border));
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .project-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

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

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgb(var(--primary));
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

    .project-link:hover {
        transform: scale(1.1);
    }

.project-content {
    padding: 1.5rem;
}

.project-title {
    color: rgb(var(--card-foreground));
    margin-bottom: 0.5rem;
}

.project-description {
    color: rgb(var(--muted-foreground));
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.tech-tag {
    background-color: rgb(var(--primary) / 0.1);
    color: rgb(var(--primary));
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

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

.service-card {
    background-color: rgb(var(--card));
    border: 1px solid rgb(var(--border));
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgb(var(--primary) / 0.1);
    color: rgb(var(--primary));
    border-radius: 50%;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: rgb(var(--card-foreground));
    margin-bottom: 1rem;
}

.service-card p {
    color: rgb(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

    .service-features li {
        color: rgb(var(--muted-foreground));
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 1.5rem;
    }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: rgb(var(--primary));
            font-weight: bold;
        }


/* Education Section */
.education-section {
    background-color: rgb(var(--muted));
    padding: 60px 0;
}

.education-content {
    max-width: 100%;
}

.education-card {
    background-color: rgb(var(--card));
    border: 1px solid rgb(var(--border));
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.education-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgb(var(--primary) / 0.1);
    color: rgb(var(--primary));
    border-radius: 50%;
    font-size: 2rem;
    flex-shrink: 0;
}

.education-details h3 {
    color: rgb(var(--card-foreground));
    margin-bottom: 0.5rem;
}

.education-institution {
    color: rgb(var(--muted-foreground));
    margin-bottom: 0.25rem;
}

.education-grade {
    color: rgb(var(--primary));
    font-weight: 600;
    margin-bottom: 1rem;
}

.native-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    color: white;
    border-radius: 20px;
    font-weight: 500;
    margin-top: 10px;
}

/* Tabs */
.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
    gap: 10px;
}

.tab-link {
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 8px 15px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    color: rgb(var(--muted-foreground));
    border-bottom: 2px solid transparent;
}

    .tab-link.active, .tab-link:hover {
        color: rgb(var(--primary));
        border-bottom: 2px solid rgb(var(--primary));
    }

.tab-content {
    display: none;
    width: 100%;
}

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

/* Cards Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

/* View Certificate */
.view-certificate {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgb(var(--primary)) 0%, rgba(var(--primary), 0.8) 100%);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--primary), 0.2);
}

    .view-certificate:hover {
        background: linear-gradient(135deg, rgba(var(--primary), 0.9) 0%, rgba(var(--primary), 0.7) 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(var(--primary), 0.3);
    }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}

.modal-content {
    position: relative;
    margin: 5% auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

    .close-modal:hover {
        color: #ccc;
    }

#modal-image {
    max-width: 100%;
    max-height: 80vh;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .education-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .education-icon {
        margin-bottom: 1rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-link {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.education-section {
    background-color: rgb(var(--muted));
}

.education-content {
    max-width: 600px;
    margin: 0 auto;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.education-card {
    background-color: rgb(var(--card));
    border: 1px solid rgb(var(--border));
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow);
}

.education-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: rgb(var(--primary) / 0.1);
    color: rgb(var(--primary));
    border-radius: 50%;
    font-size: 2rem;
    flex-shrink: 0;
}

.education-details h3 {
    color: rgb(var(--card-foreground));
    margin-bottom: 0.5rem;
}

.education-institution {
    color: rgb(var(--muted-foreground));
    margin-bottom: 0.25rem;
}

.education-grade {
    color: rgb(var(--primary));
    font-weight: 600;
    margin-bottom: 1rem;
}

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

    .view-certificate:hover {
        color: rgb(var(--primary) / 0.8);
    }

@media (max-width: 768px) {
    .education-card {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: rgb(var(--primary) / 0.1);
    color: rgb(var(--primary));
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: rgb(var(--foreground));
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: rgb(var(--primary));
    text-decoration: none;
}

    .contact-details a:hover {
        text-decoration: underline;
    }

.contact-details p {
    color: rgb(var(--muted-foreground));
}

.contact-form {
    background-color: rgb(var(--card));
    border: 1px solid rgb(var(--border));
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}

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

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid rgb(var(--border));
        border-radius: 0.5rem;
        background-color: rgb(var(--background));
        color: rgb(var(--foreground));
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

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

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

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer */
.footer {
    background-color: rgb(var(--muted));
    padding: 2rem 0;
    border-top: 1px solid rgb(var(--border));
}

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

.footer-text {
    color: rgb(var(--muted-foreground));
}

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

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: rgb(var(--primary));
    color: rgb(var(--primary-foreground));
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 1000;
}

    .back-to-top:hover {
        transform: translateY(-2px);
        background-color: rgb(var(--primary) / 0.9);
    }

/* Loading and Animation Classes */
.fa-spin {
    animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

        .hero-actions .btn {
            width: 100%;
            justify-content: center;
        }
}
