
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica', Arial, sans-serif;
        }

                * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica', Arial, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        .hero {
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://tyncad.net/wp-content/themes/tyncad-theme/assets/images/54bcea7812aa749d97a6a9a8579a552f7d10c9d3.png ') no-repeat center center/cover;
            display: flex;
            align-items: center;
            padding: 0 10%;
            color: #fff;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin-top: 100px;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .dimmed {
            opacity: 0.7;
            text-decoration: underline;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            font-weight: 400;
            line-height: 1.5;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #1C75BA;
            color: white;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
        }
        
        .cta-button:hover {
            background-color: #0052cc;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 102, 255, 0.4);
        }
        
        .back-button {
            position: absolute;
            bottom: 40px;
            left: 5%;
            display: inline-flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 10px 20px;
            background-color: rgba(0, 0, 0, 0.4);
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
        .back-button:hover {
            background-color: rgba(0, 0, 0, 0.6);
        }
        
        .back-button i {
            margin-right: 8px;
        }
        
        /* Service Detail Content */
        .service-detail {
            padding: 80px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .detail-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #1a365d;
        }
        
        .detail-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #444;
            margin-bottom: 25px;
        }
        
        .feature-list {
            list-style-type: none;
            margin-bottom: 30px;
        }
        
        .feature-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        
        .feature-list li i {
            color: #1C75BA;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        
        .detail-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.3rem;
            }
            
            .detail-grid {
                gap: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                text-align: center;
                padding: 0 10%;
            }
            
            .hero-content {
                margin: 60px auto 0;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .back-button {
                left: 50%;
                transform: translateX(-50%);
                bottom: 30px;
            }
            
            .detail-grid {
                grid-template-columns: 1fr;
            }
            
            .detail-image {
                order: -1;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .cta-button {
                padding: 12px 28px;
                font-size: 1rem;
            }
            
            .detail-content h2 {
                font-size: 1.8rem;
            }
            
            .service-detail {
                padding: 60px 5%;
            }
        }
     
        
/* Contact Section */
.contact-section {
    padding: 80px 10%;
    padding-bottom: 0px;
    padding-top: 0px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    width: 100%;
}

.image-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0;
}

.image-column img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-column {
    background: white;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
}

.form-header {
    text-align: left;
    margin-bottom: 30px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.form-group-full {
    width: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
}

.form-input, .form-select, .form-textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
    width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: #1C75BA;
    outline: none;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    margin-top: 8px;
}

.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}

.phone-prefix {
    padding: 0 12px;
    height: 100%;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-right: 1px solid #ddd;
    font-size: 15px;
    white-space: nowrap;
}

.phone-input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    font-size: 15px;
    width: 100%;
}

.phone-input:focus {
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 25px;
}

.form-checkbox {
    margin-top: 4px;
}

.checkbox-label {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.privacy-link {
    color: #1C75BA;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-button {
    background-color: #1C75BA;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-button:hover {
    background-color: #0052cc;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-grid {
        gap: 50px;
    }
    
    .form-title {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        gap: 40px;
    }
    
    .form-column {
        padding: 35px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-column {
        order: 2;
        padding-left: 0;
    }
    
    .form-column {
        order: 1;
        padding: 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        min-width: 100%;
    }
    
    .form-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 4%;
    }
    
    .form-column {
        padding: 25px;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .form-subtitle {
        font-size: 14px;
    }
    
    .form-input, .form-select, .form-textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .phone-input {
        padding: 12px 14px;
    }
    
    .submit-button {
        padding: 14px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 3%;
    }
    
    .form-column {
        padding: 20px;
    }
    
    .form-title {
        font-size: 18px;
    }
    
    .form-header {
        margin-bottom: 20px;
    }
    
    .form-row {
        margin-bottom: 15px;
    }
    
    .checkbox-group {
        margin-bottom: 20px;
    }
    
    .form-input, .form-select, .form-textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
}

    
        /* App Development Section Styles */
        .app-dev-section {
            padding: 60px 5% 80px;
            max-width: 3500px;
            margin: 0 auto;
        }
        
        .back-link {
            display: inline-flex;
            align-items: center;
            color: #666;
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 40px;
            transition: color 0.3s ease;
        }
        
        .back-link:hover {
            color: #1C75BA;
        }
        
        .back-link i {
            margin-right: 8px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .gradient-text {
            background: linear-gradient(90deg, #1C75BA, #00c6ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-description {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
        }
        
        .feature-column {
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .feature-column:first-child {
            background-color: #F5F5F5;
            border-radius: 12px 0 0 12px;
        }
        
        .feature-column:nth-child(2) {
            background-color: #FFFFFF;
        }
        
        .feature-column:last-child {
            background-color: #E2E7F1;
            border-radius: 0 12px 12px 0;
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #222;
        }
        
        .feature-description {
            color: #444;
            line-height: 1.6;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .feature-column:first-child {
                border-radius: 12px 12px 0 0;
            }
            
            .feature-column:last-child {
                border-radius: 0 0 12px 12px;
            }
            
            .section-title {
                font-size: 2.4rem;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .section-description {
                font-size: 1.1rem;
            }
            
            .feature-title {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 576px) {
            .app-dev-section {
                padding: 40px 4% 60px;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-description {
                font-size: 1rem;
            }
            
            .feature-column {
                padding: 30px 20px;
            }
        }

        .ryn-impact-section {
  padding: 80px 20px;
  font-family: 'Helvetica', Arial, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}

.ryn-container {
  width: 100%;
  margin: 0 auto;
}

.ryn-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.ryn-blue-text {
  color: #1C75BA;
}

.ryn-black-text {
  color: #000;
}

.ryn-section-description {
  text-align: center;
  color: #000;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.ryn-testimonial-slider {
  position: relative;
}

.ryn-slider-container {
  overflow: hidden;
  margin-bottom: 20px;
}

.ryn-slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

.ryn-testimonial-card {
  flex: 0 0 calc(50% - 15px);
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.ryn-quote-mark {
  font-size: 80px;
  color: #1C75BA;
  line-height: 1;
  margin-bottom: 15px;
}

.ryn-testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
  text-align: left;
}

.ryn-user-info {
  display: flex;
  align-items: center;
  position: relative;
}

.ryn-profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.ryn-user-details {
  flex-grow: 1;
}

.ryn-user-name {
  font-size: 18px;
  margin: 0 0 4px 0;
  color: #000;
}

.ryn-user-role {
  font-size: 14px;
  margin: 0;
  color: #666;
}

.ryn-stars {
  color: #FFD700;
  font-size: 18px;
}

.ryn-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.ryn-arrow-btn {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  border: none;
  background-color: #1C75BA;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.ryn-arrow-btn:hover {
  background-color: #155a8a;
}

.ryn-arrow-btn:disabled {
  background-color: #b3d4f0;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 992px) {
  .ryn-testimonial-card {
    flex: 0 0 calc(100% - 15px);
  }
  
  .ryn-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .ryn-impact-section {
    padding: 60px 15px;
  }
  
  .ryn-section-title {
    font-size: 1.8rem;
  }
  
  .ryn-section-description {
    font-size: 1rem;
  }
  
  .ryn-testimonial-card {
    padding: 20px;
  }
  
  .ryn-quote-mark {
    font-size: 60px;
  }
}

@media (max-width: 480px) {
  .ryn-section-title {
    font-size: 1.5rem;
  }
  
  .ryn-user-info {
    flex-wrap: wrap;
  }
  
  .ryn-stars {
    width: 100%;
    margin-top: 10px;
  }
  
  .ryn-arrow-btn {
    width: 40px;
    height: 40px;
  }
}

        /* Blog Section Styles */

        .blog-section {
            padding: 2rem 0;
            color: #333;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        
        }

        /* Header with search and tags */
        .blog-header {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            gap: 1rem;
        }

        .search-container {
            position: relative;
            flex: 0 0 auto;
        }

        .search-bar {
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border-radius: 25px;
            border: 1px solid #ddd;
            width: 250px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .search-bar:focus {
            outline: none;
            border-color: #4a90e2;
            box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
        }

        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag {
            background-color: #e9ecef;
            color: #495057;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }

        .tag.active {
            background-color: #4a90e2;
            color: white;
        }

        /* Featured blog card */
        .featured-blog {
            display: flex;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        .featured-content {
            flex: 0 0 55%;
            padding: 2rem;
            display: flex;
            flex-direction: column;
        }

        .featured-image {
            flex: 0 0 45%;
            overflow: hidden;
        }

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

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

        .featured-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #212529;
        }

        .featured-excerpt {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

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

        .featured-date {
            color: #6c757d;
            font-size: 0.9rem;
        }

        .read-more {
            color: #4a90e2;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }

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

        /* Blog grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .blog-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px 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 10px 25px rgba(0, 0, 0, 0.15);
        }

        .card-image {
            height: 200px;
            overflow: hidden;
        }

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

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

        .card-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            min-height: 250px;
        }

        .card-title {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: #212529;
        }

        .card-excerpt {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

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

        .card-date {
            color: #6c757d;
            font-size: 0.85rem;
        }

        /* Responsive design */
        @media (max-width: 992px) {
            .blog-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .featured-blog {
                flex-direction: column;
            }
            
            .featured-content, .featured-image {
                flex: 1 1 100%;
            }
            
            .featured-image {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .blog-header {
                flex-direction: column;
                align-items: stretch;
            }
            
            .search-container {
                width: 100%;
            }
            
            .search-bar {
                width: 100%;
            }
            
            .tags-container {
                justify-content: center;
            }
            
            .featured-title {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
            
            body {
                padding: 1rem;
            }
            
            .featured-content {
                padding: 1.5rem;
            }
            
            .card-content {
                padding: 1.25rem;
            }
        }

                .use-case-header {
            padding: 60px 0 30px;
            text-align: left;
        }
        
        .use-case-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000;
        }
        
        .use-case-subtitle {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: #000;
        }
        
        .use-case-meta {
            background-color: #f5f5f5;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 40px;
        }
        
        .meta-item {
            margin-bottom: 10px;
            color: #000;
        }
        
        .meta-label {
            font-weight: 700;
            display: inline;
        }
        
        .section {
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000;
        }
        
        .section-content {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #000;
            margin-bottom: 20px;
        }
        
        .full-width-image {
            width: 100%;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .image-text-section {
            display: flex;
            gap: 40px;
            align-items: center;
            margin: 40px 0;
        }
        
        .image-left {
            flex: 0 0 45%;
        }
        
        .image-right {
            flex: 0 0 45%;
        }
        
        .image-left img, .image-right img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .text-right {
            flex: 1;
        }
        
        .text-left {
            flex: 1;
        }
        
        .subsection {
            margin-bottom: 30px;
        }
        
        .subsection-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #000;
        }
        
        @media (max-width: 768px) {
            .image-text-section {
                flex-direction: column;
            }
            
            .image-left, .image-right {
                flex: auto;
                width: 100%;
            }
            
            .use-case-title {
                font-size: 2rem;
            }
            
            .use-case-subtitle {
                font-size: 1.5rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
        }

        .use-case-header{margin: 0 auto; }
        .section { padding-left: 10%; padding-right: 10%; margin: 0 auto; }
.use-case-title { font-size: 2.5rem; font-weight: 700; color: #000; }
.use-case-meta { background: #f5f5f5; padding: 20px; border-radius: 8px; }
.meta-label { font-weight: 700; }
.image-text-section { display: flex; gap: 40px; align-items: center; }
.image-left, .image-right { flex: 0 0 45%; }
.image-left img, .image-right img { width: 100%; border-radius: 12px; }
.text-left, .text-right { flex: 1; }
.full-width-image { width: 100%; border-radius: 12px; margin: 30px 0; }


 .gallery-section {
            padding: 80px 10%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            color: #000;
            text-align: center;
        }
        
        .gallery-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .gallery-controls {
            justify-content: space-between;
        }
        .nav-buttons {
            margin-left: auto;
        }
        
        .filter-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .filter-label {
            font-weight: 600;
            color: #000;
            white-space: nowrap;
        }
        
        .filter-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .filter-tag {
            padding: 8px 16px;
            background-color: #f1f1f1;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .filter-tag.active {
            background-color: #1C75BA;
            color: white;
        }
        
        .nav-buttons {
            display: flex;
            gap: 10px;
        }
        
        .nav-button {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background-color: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .nav-button:hover {
            background-color: #1C75BA;
            color: white;
        }
        
        .gallery-container {
            overflow: hidden;
            position: relative;
        }
        
        .gallery-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease;
        }
        
        .gallery-item {
            flex: 0 0 auto;
            width: 300px;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            transition: width 0.5s ease;
        }
        
        .gallery-item:hover {
            width: 400px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px 15px 15px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-caption {
            opacity: 1;
            transform: translateY(0);
        }
        
        .see-more {
            text-align: center;
            margin-top: 40px;
        }
        
        .see-more-btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #1C75BA;
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .see-more-btn:hover {
            background-color: #0052cc;
        }
        
        @media (max-width: 768px) {
            .gallery-controls {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .nav-buttons {
                align-self: flex-end;
            }
            
            .gallery-item {
                width: 250px;
            }
            
            .gallery-item:hover {
                width: 300px;
            }
        }

          
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Helvetica', Arial, sans-serif;
        }
        
        .works-section {
            padding: 80px 10%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            color: #000;
            text-align: center;
        }
        
        .works-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .filter-section {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .filter-label {
            font-weight: 600;
            color: #000;
            white-space: nowrap;
        }
        
        .filter-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .filter-tag {
            padding: 8px 16px;
            background-color: #f1f1f1;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .filter-tag.active {
            background-color: #1C75BA;
            color: white;
        }
        
        .see-more-link {
            padding: 8px 16px;
            color: #1C75BA;
            font-weight: 600;
            text-decoration: none;
            white-space: nowrap;
            transition: color 0.3s ease;
        }
        
        .see-more-link:hover {
            color: #0052cc;
            text-decoration: underline;
        }
        
        .nav-buttons {
            display: flex;
            gap: 10px;
        }
        
        .nav-button {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background-color: #f1f1f1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .nav-button:hover {
            background-color: #1C75BA;
            color: white;
        }
        
        .gallery-container {
            overflow: hidden;
            position: relative;
        }
        
        .gallery-track {
            display: flex;
            gap: 20px;
            transition: transform 0.5s ease;
        }
        
        .gallery-item {
            flex: 0 0 auto;
            width: 300px;
            height: 200px;
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            transition: width 0.5s ease;
        }
        
        .gallery-item:hover {
            width: 400px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px 15px 15px;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-caption {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (max-width: 992px) {
            .works-controls {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .nav-buttons {
                align-self: flex-end;
            }
        }
        
        @media (max-width: 768px) {
            .filter-section {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .gallery-item {
                width: 250px;
            }
            
            .gallery-item:hover {
                width: 300px;
            }
        }

        .blue-text {
            color: #1C75BA;
        }
   
