/**************************** CodeGeeX Inline Diff ****************************/
/* ==========================================
   GENERAL STYLES
========================================== */
/* Light Theme (default) */
:root {
    /* Main colors - Black and White Theme */
    --primary-color: #000000;      /* Black */
    --secondary-color: #333333;    /* Dark Gray */
    --accent-color: #666666;       /* Medium Gray */
    --dark-color: #000000;         /* Black */
    --light-color: #F5F5F5;        /* Light Gray */
    --white-color: #FFFFFF;        /* White */
    
    /* Text colors */
    --text-dark: #000000;
    --text-muted: #666666;
    --text-light: #FFFFFF;
    
    /* Background colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F5F5F5;
    --bg-accent: #EEEEEE;
    
    /* Success and error colors */
    --success-color: #333333;
    --error-color: #000000;
    
    /* Gradients */
    --primary-gradient: linear-gradient(120deg, #000000, #333333);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Font families */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Inter', sans-serif;
    --accent-font: 'Playfair Display', serif;
    
    /* Font sizes */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 4rem;      /* 64px */
    
    /* Border radius */
    --radius-sm: 0.25rem;   /* 4px */
    --radius-md: 0.5rem;    /* 8px */
    --radius-lg: 0.75rem;   /* 12px */
    --radius-xl: 1rem;      /* 16px */
    --radius-full: 9999px;
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container max width */
    --container-width: 1200px;
    /* Spacing */
  --spacing-xs: 0.5rem;
  }
  /* Footer Styles - Matches your existing style system */

/* Main footer styling */

  /* Responsive adjustments */
 
  
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  html {
    scroll-behavior: smooth;
  }
  
body {
  font-family: var(--body-font);
  color: #000000; /* black font */
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #ffffff; /* white background */
  transition: background-color 0.3s ease, color 0.3s ease;
  animation: fadeInBody 1s ease forwards;
}

@keyframes fadeInBody {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
  
  /* Theme Toggle Button */
  .theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease; /* 添加过渡动画 */
    opacity: 0; /* 初始状态为透明 */
  }
  
  .theme-toggle:hover {
    transform: scale(1.1);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-normal);
  }
  
  a:hover {
    color: var(--secondary-color);
  }
  
  ul {
    list-style: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
  }
  
  p {
    margin-bottom: 1rem;
  }
  
  .container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  section {
    padding: 6rem 0;
  }
  
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
  }
  
  .section-title {
    font-size: var(--text-4xl);
    margin-bottom: 1rem;
    position: relative;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    border-radius: var(--radius-full);
  }
  
  .section-description {
    font-size: var(--text-lg);
    color: var(--text-muted);
    margin-top: 2rem;
  }
  
  /* ==========================================
     BUTTONS
  ========================================== */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    border: none;
    outline: none;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
  }
  
  .btn-primary:hover {
    background-color: #333333;
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  .btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white-color);
  }
  
  .btn-secondary:hover {
    background-color: #000000;
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  .btn-accent {
    background-color: var(--accent-color);
    color: var(--white-color);
  }
  
  .btn-accent:hover {
    background-color: #333333;
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  .btn-light {
    background-color: var(--white-color);
    color: var(--primary-color);
  }
  
  .btn-light:hover {
    background-color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  
  .btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--text-sm);
  }
  
  .btn-lg {
    padding: 1rem 2rem;
    font-size: var(--text-lg);
  }
  
  /* ==========================================
     HEADER & NAVIGATION
  ========================================== */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
  }
  
  .header.scrolled {
    box-shadow: var(--shadow-md);
  }
  
  .header-content {
   
      display: flex;
      align-items: center;
      height: 80px;
      justify-content: space-between; /* Added to space out logo and actions */
  }
  
  .logo a {
    display: flex;
    align-items: center;
    color: var(--dark-color);
  }
  
  .logo-icon {
    width: 10%;
    height: 10%;
    background-color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: var(--text-xl);
    margin-right: 0.75rem;
  }
  
  .logo-text {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: var(--text-xl);
    color: var(--dark-color);
  }
  
  .main-nav {
    display: none;
    margin-left: auto; /* ✅ Added this line to push the menu to right */
}
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: var(--text-xl);
    color: var(--text-dark);
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .mobile-menu-btn.active {
    transform: rotate(45deg);
  }
  
  .mobile-menu {
    position: absolute;
    top: 80px;
    right: 0; /* Changed from left: 0 to right: 0 to align menu to right */
    width: 100%;
    max-width: 300px; /* Limit width for slide-in */
    background-color: var(--white-color);
    box-shadow: var(--shadow-md);
    padding: 1.5rem;
    display: none;
    transform: translateX(100%) translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    z-index: 200;
  }
  
  .mobile-menu.active {
    display: block;
    transform: translateX(0) translateY(0);
    opacity: 1;
  }
  
  .mobile-nav-links {
    margin-bottom: 1.5rem;
  }
  
  .mobile-nav-links li {
    margin-bottom: 1rem;
  }
  
  .mobile-nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: var(--text-lg);
    display: block;
    padding: 0.5rem 0;
  }
  
  .mobile-nav-links a:hover,
  .mobile-nav-links a.active {
    color: var(--primary-color);
  }
  
  .mobile-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  @media (min-width: 992px) {
    .main-nav {
      display: block;
    }
    
    .mobile-menu-btn {
      display: none;
    }
    
    .mobile-menu {
      display: none !important;
    }
  }
  
  /* ==========================================
     HERO SECTION
  ========================================== */
  .hero {
    padding: 10rem 0 6rem;
    background-color: var(--light-color);
    overflow: hidden;
  }
  
  .hero .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .hero-content {
    max-width: 600px;
  }
  
  .hero-title {
    font-size: var(--text-5xl);
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  
  .hero-title .highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  
  .hero-description {
    font-size: var(--text-xl);
    color: var(--text-muted);
    margin-bottom: 2rem;
  }
  
  .hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }
  
  .hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 1rem;
  }
  
  .stat-item h3 {
    font-size: var(--text-3xl);
    color: var(--primary-color);
    margin-bottom: 0.25rem;
  }
  
  .stat-item p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    margin-bottom: 0;
  }
  
  .hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .hero-video{


    
  }
  
  @media (min-width: 992px) {
    .hero .container {
      flex-direction: row;
      align-items: center;
    }
    
    .hero-content {
      flex: 1;
    }
    
    .hero-image {
      flex: 1;
    }
    
    .hero-title {
      font-size: var(--text-6xl);
    }
  }
  
  /* ==========================================
     SERVICES SECTION
  ========================================== */
  .services {
    background-color: var(--white-color);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  
  .service-card {
    background-color: var(--white-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(108, 99, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: var(--text-2xl);
    color: var(--primary-color);
  }
  
  .service-card h3 {
    font-size: var(--text-xl);
    margin-bottom: 1rem;
  }
  
  .service-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }
  
  .read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
  }
  
  .read-more i {
    margin-left: 0.5rem;
    transition: var(--transition-normal);
  }
  
  .read-more:hover i {
    transform: translateX(5px);
  }
  
  .services-cta {
    margin-top: 3rem;
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 992px) {
    .services-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* ==========================================
     PRODUCTS SECTION
  ========================================== */
  .products {
    background-color: var(--light-color);
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  
  .product-card {
    background-color: var(--white-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
  }
  
  .product-card:hover {
    transform: translateY(-10px);
 
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 添加过渡动画 */
  }
  
.product-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: visible;
  }
  
  .product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .about-images-row {
    display: flex;
    gap: 2rem; /* Horizontal space between images */
    margin-top: 2rem;
    padding-top: 10rem; /* ✅ This adds space above the images */
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .about-images-row img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
  }
  .about-images-row img:hover {
    transform: scale(1.05); /* Optional: Add a hover effect to the images */
  }
  

  
  
  .product-card:hover .product-image img {
    transform: scale(1.05);
  }
  
  .product-content {
    padding: 2rem;
  }
  
  .product-content h3 {
    font-size: var(--text-xl);
    margin-bottom: 1rem;
  }
  
  .product-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
  }
  
  .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .product-price {
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .products-cta {
    margin-top: 3rem;
    text-align: center;
  }
  
  @media (min-width: 768px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
@media (min-width: 992px) {
    .products-grid {
      grid-template-columns: repeat(3, 1fr);
    }
    #product-analytics.product-detail {
      grid-template-columns: 1fr !important;
    }
  }
  
  
  /* ==========================================
     UTILITY CLASSES
  ========================================== */
  .text-center {
    text-align: center;
  }
  
  .mt-4 {
    margin-top: 1.5rem;
  }
  
  .mb-4 {
    margin-bottom: 1.5rem;
  }
  
  .py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .bg-light {
    background-color: var(--light-color);
  }
  
  .bg-white {
    background-color: var(--white-color);
  }
  
  /* Art Preview Section */
  .art-preview-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .art-preview-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;

    transition: transform 0.3s ease; /* 添加过渡动画 */
  }
  
  .art-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .art-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .art-preview-card:hover img {
    transform: scale(1.05);
  }
  
  .art-preview-card:hover .art-preview-overlay {
    opacity: 1;
  }
  
  @media (min-width: 768px) {
    .art-preview-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  /* Page Banner */
  .page-banner {
    padding: 10rem 0 4rem;
    background-color: var(--light-color);
    text-align: center;
  }
  
  .page-banner h1 {
    font-size: var(--text-5xl);
    margin-bottom: 1rem;
  }
  
  .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
  }
  
  .breadcrumb a {
    color: var(--text-dark);
  }
  
  .breadcrumb i {
    font-size: 0.75rem;
  }
  

  
/******************** 10080181-dba7-491e-bae8-9299aca24417 ********************/

/* Slide-in animations for left and right side elements */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Classes to apply slide-in animations */
.slide-in-left {
  animation: slideInLeft 0.6s ease forwards;
}

.slide-in-right {
  animation: slideInRight 0.6s ease forwards;
}

/* Smooth transition for font color and size on hover */




/* Image hover animations with scale and fade */
img {
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Social icons animation and hover effect */
.contact-social .social-links a {
  color: #000000;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  border-radius: 50%;
  padding: 0.25rem;
  transition: color 0.3s ease, background-color 0.3s ease;
  box-shadow: none;
}

.contact-social .social-links a:hover {
  color: #ffffff;
  background-color: #000000;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.contact-social .social-links a i {
  position: relative;
  z-index: 1;
  color: inherit;
  transition: color 0.3s ease;
}

.contact-social .social-links a img {
  position: relative;
  z-index: 1;
  transition: filter 0.3s ease;
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

.contact-social .social-links a:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}

@keyframes fadeInIcon {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact form animations */
.contact-form-wrap {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

.contact-form-wrap.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-form-wrap .form-control {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
  animation-fill-mode: forwards;
}

.contact-form-wrap .form-control:nth-child(1) {
  animation-delay: 0.3s;
}

.contact-form-wrap .form-control:nth-child(2) {
  animation-delay: 0.4s;
}

.contact-form-wrap .form-control:nth-child(3) {
  animation-delay: 0.5s;
}

.contact-form-wrap .form-control:nth-child(4) {
  animation-delay: 0.6s;
}

.contact-form-wrap .form-control:focus {
  border-color: #0056b3;
  box-shadow: 0 0 8px rgba(0, 86, 179, 0.5);
  outline: none;
  transform: scale(1.02);
  transition: all 0.3s ease;
}

.contact-form-wrap .btn-primary {
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrap .btn-primary:hover {
  background-color: #004085;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 64, 133, 0.6);
}

/* Floating label style */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group label {
  position: absolute;
  top: 14px;
  left: 15px;
  color: #666;
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.3s ease;
  background: white;
  padding: 0 5px;
}

.form-control:focus + label,
.form-control:not(:placeholder-shown) + label {
  top: -8px;
  left: 10px;
  font-size: 0.85rem;
  color: #0056b3;
  background: white;
  border-radius: 4px;
}

/* Success and error message animations */
.alert {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Map container styles for responsiveness and professional look */
.contact-map {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  margin-top: 2rem;
}

.contact-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: filter 0.3s ease;
}

.contact-map iframe:hover {
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* Responsive portfolio grid */
@media (max-width: 767px) {
  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }
  /* Contact page responsiveness */
  .contact-section.container {
    flex-direction: column !important;
    padding: 1rem !important;
  }
  .contact-form-wrapper,
  .contact-info.contact-info-card {
    flex: 1 1 100% !important;
    min-width: 100% !important;
    margin-bottom: 2rem !important;
  }
  .contact-form-wrapper form input,
  .contact-form-wrapper form textarea,
  .contact-form-wrapper form button {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .contact-form-wrapper form button {
    padding: 1rem !important;
    font-size: 1.2rem !important;
  }
  /* Mobile menu link color fix */
  .mobile-nav-links a {
    color: var(--primary-color) !important;
  }
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
