/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --background-color: #f8f9fa;
    --text-color: #2c3e50;
    --light-text: #ffffff;
    --gray-text: #6c757d;
    --border-color: #dee2e6;
    --hover-color: #2980b9;
    --section-bg: #ffffff;
    --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --gradient-1: linear-gradient(135deg, #3498db, #e74c3c);
    --gradient-2: linear-gradient(135deg, #e74c3c, #2c3e50);
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background-color: var(--section-bg);
    box-shadow: var(--card-shadow);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-brand {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 2rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.navbar-brand:hover {
    color: var(--primary-color);
}

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

.nav-menu li {
    margin: 0;
    padding: 0;
}

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

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

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .navbar .container {
        padding: 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--section-bg);
        padding: 1rem 0;
        box-shadow: var(--card-shadow);
    }

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

    .nav-menu a {
        padding: 1rem 2rem;
        display: block;
        text-align: center;
    }

    .nav-menu a::after {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 50px,
        rgba(255, 255, 255, 0.1) 50px,
        rgba(255, 255, 255, 0.1) 100px
    );
    animation: movePattern 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--text-color);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    line-height: 1.4;
}

.hero-description {
    margin-top: 2rem;
}

.hero-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-description h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 2rem 0 1rem;
}

.hero-specialties {
    list-style: none;
    margin: 1.5rem 0;
}

.hero-specialties li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hero-specialties i {
    color: var(--accent-color);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.hero-specialties strong {
    color: var(--text-color);
    margin-right: 0.5rem;
}

.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    padding-top: 120%;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blob-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blobAnimation 8s ease-in-out infinite;
}

.image-placeholder img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    object-fit: cover;
    border-radius: 28% 68% 68% 28% / 28% 28% 68% 68%;
    z-index: 1;
}

.image-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    animation: floatAnimation 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: -30px;
    right: -20px;
    background: linear-gradient(45deg, var(--accent-color), transparent);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: shapeAnimation1 8s ease-in-out infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: -20px;
    background: linear-gradient(45deg, var(--secondary-color), transparent);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: shapeAnimation2 7s ease-in-out infinite;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: -20px;
    right: 20%;
    background: linear-gradient(45deg, var(--accent-color), transparent);
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
    animation: shapeAnimation3 9s ease-in-out infinite;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: -10px;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    border-radius: 30% 70% 50% 50% / 30% 30% 70% 70%;
    animation: shapeAnimation4 6s ease-in-out infinite;
}

.cta-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 2rem 0;
    color: var(--text-color);
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: transform 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px);
}

@keyframes blobAnimation {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    50% {
        border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
    }
    75% {
        border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes shapeAnimation1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate(20px, 20px) rotate(180deg);
        border-radius: 40% 60% 70% 30% / 30% 60% 40% 70%;
    }
}

@keyframes shapeAnimation2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    50% {
        transform: translate(-20px, -10px) rotate(-180deg);
        border-radius: 60% 40% 30% 70% / 50% 40% 50% 60%;
    }
}

@keyframes shapeAnimation3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
    }
    50% {
        transform: translate(15px, -15px) rotate(90deg);
        border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%;
    }
}

@keyframes shapeAnimation4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 30% 70% 50% 50% / 30% 30% 70% 70%;
    }
    50% {
        transform: translate(-10px, 10px) rotate(-90deg);
        border-radius: 50% 50% 70% 30% / 70% 70% 30% 30%;
    }
}

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

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

/* Responsive design for hero section */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    .hero-specialties li {
        justify-content: center;
    }

    .image-wrapper {
        padding-top: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.3rem;
    }

    .hero-description p {
        font-size: 1rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--section-bg);
}

.section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

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

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

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.stat-item .label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.4;
}

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

    .stat-item {
        padding: 1rem;
    }

    .stat-item .number {
        font-size: 2rem;
    }

    .stat-item .label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .stats {
        grid-template-columns: 1fr;
    }
}

.skills {
    background: var(--section-bg);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.skill-name {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.skill-bar {
    height: 10px;
    background: var(--section-bg);
    border-radius: 5px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 5px;
    transition: width 1.5s ease-in-out;
}

.about-specialties {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.about-specialties li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.about-specialties i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-text h3 {
    color: var(--text-color);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

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

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.service-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.4;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--section-bg);
}

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

.portfolio-item:nth-child(1) {
    border-top: 4px solid #4285F4;
    border-radius: 8px;
}

.portfolio-item:nth-child(2) {
    border-top: 4px solid #EA4335;
    border-radius: 8px;
}

.portfolio-item:nth-child(3) {
    border-top: 4px solid #FBBC05;
    border-radius: 8px;
}

.portfolio-item:nth-child(4) {
    border-top: 4px solid #34A853;
    border-radius: 8px;
}

.portfolio-item:nth-child(5) {
    border-top: 4px solid #8A2BE2;
    border-radius: 8px;
}

.portfolio-item:nth-child(6) {
    border-top: 4px solid #FF6347;
    border-radius: 8px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.portfolio-info {
    padding: 20px;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.portfolio-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.portfolio-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.portfolio-links {
    padding: 0 20px 20px;
}

/* Video Lightbox Styles */
#video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
}

#video-lightbox .lb-container {
    position: relative;
    width: 80%;
    max-width: 1000px;
    margin: 50px auto;
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
}

#video-lightbox .lb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #222;
    color: white;
}

#video-lightbox .lb-title {
    font-size: 18px;
    font-weight: bold;
}

#video-lightbox .lb-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

#video-lightbox .lb-content {
    padding: 0;
}

#video-lightbox video {
    width: 100%;
    display: block;
}

#video-lightbox .lb-nav {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #222;
}

#video-lightbox .lb-prev,
#video-lightbox .lb-next {
    background: #444;
    border: none;
    color: white;
    padding: 5px 15px;
    border-radius: 3px;
    cursor: pointer;
}

#video-lightbox .lb-prev:hover,
#video-lightbox .lb-next:hover {
    background: #555;
}

/* Lightbox Customization */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

/* Video thumbnail styles */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.play-icon i {
    font-size: 24px;
}

.video-thumbnail:hover .play-icon {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.8);
}

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

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.video-container {
    width: 100%;
    padding-top: 0;
}

.video-container video {
    width: 100%;
    display: block;
}

.video-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #222;
    color: white;
}

#videoTitle {
    font-size: 18px;
    font-weight: bold;
}

#prevVideo, #nextVideo {
    background-color: #444;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#prevVideo:hover, #nextVideo:hover {
    background-color: #555;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px auto;
    }
    
    .video-navigation {
        padding: 10px;
    }
    
    #videoTitle {
        font-size: 14px;
    }
    
    #prevVideo, #nextVideo {
        padding: 5px 10px;
        font-size: 12px;
    }
}

/* Kontakt Section */
.contact {
    padding: 6rem 0;
    background-color: var(--section-bg);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    width: 2rem;
    text-align: center;
}

.contact-item .info h3 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-item .info p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0;
}

.contact-item .info a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item .info a:hover {
    color: var(--accent-color);
}

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

    .contact-item {
        padding: 1rem;
    }
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: var(--section-bg);
}

.achievements-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.achievements .stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.achievements .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.achievements .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.achievements .label {
    display: block;
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .achievements {
        padding: 60px 0;
    }

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

    .achievements .stat-item {
        padding: 1.5rem;
    }

    .achievements .number {
        font-size: 2.5rem;
    }

    .achievements .label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .achievements .stats {
        grid-template-columns: 1fr;
    }

    .achievements .stat-item {
        padding: 1.25rem;
    }
}

.achievements {
    padding: 100px 0;
    background: var(--gradient-1);
}

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

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--section-bg);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--gradient-1);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-color);
    z-index: 1;
}

.step-content {
    width: calc(50% - 50px);
    padding: 2rem;
    background: var(--section-bg);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Technologies Section */
.technologies {
    padding: 6rem 0;
    background-color: var(--section-bg);
}

.tech-category {
    margin-bottom: 4rem;
}

.tech-category h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-size: 1.8rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    height: 120px;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.tech-item i,
.tech-item .tech-icon {
    font-size: 2.25rem;
    width: 36px;
    height: 36px;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.tech-item:hover i,
.tech-item:hover .tech-icon {
    transform: scale(1.1);
}

.tech-item span {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
    text-align: center;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .tech-item {
        height: 100px;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.testimonials-slider {
    max-width: 800px;
    margin: 3rem auto 0;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--text-color);
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--section-bg);
}

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

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

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 1.5rem;
}

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

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

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

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

.read-more i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--accent-color);
}

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

@media (max-width: 768px) {
    .blog {
        padding: 60px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    font-weight: bold;
    margin: 0;
}

/* Animations */
@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger {
        display: block;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: row !important;
    }
    
    .step-content {
        width: calc(100% - 90px);
        margin-left: 30px;
    }
    
    .testimonial {
        margin: 1rem 0;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-color);
    border-radius: 15px;
    position: relative;
}

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

@keyframes scrollAnimation {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}
