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

:root {
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --white: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] {
    --light: #0f172a;
    --white: #1e293b;
    --text: #f1f5f9;
    --text-light: #cbd5e1;
    --border: #334155;
    --darker: #f8fafc;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-rendering: optimizeLegibility;
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: -150px;
    left: -150px;
    animation-delay: -10s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 50%;
    left: 50%;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    33% {
        transform: translate3d(30px, -50px, 0) rotate(120deg);
    }

    66% {
        transform: translate3d(-20px, 20px, 0) rotate(240deg);
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    will-change: padding, box-shadow;
}

[data-theme="dark"] .nav {
    background: rgba(15, 23, 42, 0.8);
}

.nav.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    z-index: 1001;
}

.logo-circle {
    width: 35px;
    height: 35px;
    background: var(--gradient);
    border-radius: 50%;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

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

.theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    z-index: 1001;
}

.theme-btn:hover {
    transform: rotate(180deg);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
    box-shadow: var(--shadow-sm);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease backwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

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

.hero-text {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 550px;
    line-height: 1.8;
    animation: fadeInUp 0.8s 0.6s ease backwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s 0.8s ease backwards;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    white-space: nowrap;
}

.cta-btn.primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.cta-btn.secondary {
    background: var(--white);
    color: var(--text);
    border: 2px solid var(--border);
}

.cta-btn.secondary:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.cta-btn.outline {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.cta-btn.outline:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.cta-btn.full {
    width: 100%;
    justify-content: center;
}

.hero-social {
    display: flex;
    gap: 12px;
    animation: fadeInUp 0.8s 1s ease backwards;
}

.hero-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    font-size: 16px;
}

.hero-social a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-5px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    background: var(--white);
    padding: 25px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.visual-card i {
    font-size: 35px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.visual-card span {
    font-weight: 600;
    font-size: 13px;
}

.card-float-1 {
    top: 50px;
    left: 0;
    animation: floatCard 3s ease-in-out infinite;
}

.card-float-2 {
    top: 0;
    right: 50px;
    animation: floatCard 3s ease-in-out infinite 1s;
}

.card-float-3 {
    bottom: 100px;
    right: 0;
    animation: floatCard 3s ease-in-out infinite 2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: var(--gradient);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--gradient);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 45px;
    border: 2px solid var(--text-light);
    border-radius: 18px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 7px;
    background: var(--text-light);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 22px;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-down span {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 35px 20px;
    border-radius: 18px;
    background: var(--light);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-size: 13px;
}

/* About Section */
.about {
    padding: 100px 0;
}

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

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-wrapper img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

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

.image-border {
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 3px solid;
    border-image: var(--gradient) 1;
    border-radius: 25px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 25px;
    right: -25px;
    background: var(--white);
    padding: 25px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-number {
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-light);
}

.section-tag {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-desc {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 15px;
}

.skills-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin: 35px 0;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

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

.skill-item i {
    font-size: 32px;
    color: var(--primary);
}

.skill-item span {
    font-size: 12px;
    font-weight: 600;
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 12px;
}

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

.service-card {
    background: var(--light);
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

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

.service-card.highlight {
    background: var(--gradient);
    color: white;
    border: none;
}

.service-card.highlight * {
    color: white !important;
}

.popular-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card.highlight .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 14px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.service-features i {
    color: #10b981;
    font-size: 12px;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
    font-size: 14px;
}

.service-link:hover {
    gap: 10px;
}

/* Certificates Section */
.certificates {
    padding: 100px 0;
}

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

.certificate-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: pointer;
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

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

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

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

.certificate-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.certificate-card:hover .certificate-image::after {
    opacity: 1;
}

.certificate-info {
    padding: 20px;
    text-align: center;
}

.certificate-info h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text);
    line-height: 1.4;
}

.certificate-info p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Work Section */
.work {
    padding: 100px 0;
}

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

.work-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.work-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(99, 102, 241, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.work-link {
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

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

.work-info {
    padding: 25px;
}

.work-category {
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.work-info h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.work-info p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 14px;
}

.work-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.work-tags span {
    padding: 5px 12px;
    background: var(--light);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light);
    padding: 35px;
    border-radius: 18px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.stars {
    color: #fbbf24;
    margin-bottom: 18px;
    font-size: 16px;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 14px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.author-name {
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 15px;
}

.author-role {
    font-size: 12px;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

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

.contact-desc {
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
    font-size: 15px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-value {
    font-weight: 600;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    font-size: 16px;
}

.social-links a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-5px);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--border);
    border-radius: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    background: var(--light);
    color: var(--text);
    transition: all 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 70px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
}

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

.footer-brand p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 35px;
}

.footer-column h4 {
    margin-bottom: 18px;
    font-size: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: white;
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

/* Tablets & Small Desktops (1024px and below) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-visual {
        height: 400px;
        margin: 0 auto;
        max-width: 500px;
    }

    .hero-image {
        width: 240px;
        height: 240px;
    }

    .visual-card {
        padding: 20px;
    }

    .visual-card i {
        font-size: 28px;
    }

    .about-grid {
        gap: 60px;
    }

    .section-title {
        font-size: 40px;
    }

    .contact-wrapper {
        gap: 50px;
    }

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

/* Tablets (768px and below) */
@media (max-width: 768px) {

    /* Navigation */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 30px 20px;
        gap: 10px;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    [data-theme="dark"] .nav-links {
        background: var(--light);
    }

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

    .nav-link {
        padding: 10px 0;
    }

    /* Hero */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

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

    .hero-visual {
        display: none;
    }

    .scroll-down {
        display: none;
    }

    /* Stats */
    .stats {
        padding: 50px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    /* About */
    .about {
        padding: 70px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .badge-number {
        font-size: 36px;
    }

    .skills-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-buttons {
        flex-direction: column;
    }

    /* Services */
    .services {
        padding: 70px 0;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Work */
    .work {
        padding: 70px 0;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Testimonials */
    .testimonials {
        padding: 70px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Contact */
    .contact {
        padding: 70px 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {

    /* Hero */
    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-social a {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* Buttons */
    .cta-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    /* Section Titles */
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* About */
    .experience-badge {
        position: static;
        margin-top: 20px;
        width: fit-content;
    }

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

    .skill-item {
        padding: 15px;
    }

    .skill-item i {
        font-size: 28px;
    }

    /* Services */
    .service-card {
        padding: 30px 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    /* Work */
    .work-image {
        height: 220px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 25px 20px;
    }

    /* Contact */
    .contact-form {
        padding: 25px 20px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .logo-circle {
        width: 32px;
        height: 32px;
    }
}

/* Extra Small Phones (360px and below) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 28px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .scroll-down {
        display: none;
    }
}