*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Roboto', sans-serif;
}
.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  position: relative;
  gap: 20px;
}
.logo img {
  height: 90px;
}
.search-box {
  display: flex;
  align-items: center;
  width: 400px;
  background-color: #f7f7f7;
  border-radius: 30px;
  padding: 4px 8px;
  border: 1px solid #ddd;
}

.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 4px 16px;
  outline: none;
  font-size: 14px;
  color: #333;
}

.search-box form {
  display: flex;
  align-items: center;
  width: 100%;
}

.search-box button {
  background: transparent;
  border: none;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  padding: 0 10px;
}
.feature-icons {
  display: flex;
  gap: 20px;
}
.feature-icons div a{
  text-align: center;
  font-size: 16px;
  color: #003366;
  text-decoration: none;
}
.feature-icons div a:hover{
  color: #007bff;
}
.feature-icons img {
  height: 32px;
  display: block;
  margin: 0 auto 5px;
}
.main-nav {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.main-nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 30px;
  padding: 12px 0;
}
.main-nav ul li a {
  text-decoration: none;
  color: #003366;
  font-weight: 500;
  font-size: 16px;
}
.main-nav ul li a:hover {
  color: #007bff;
}
/* Slider */
.banner {
  position: relative;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 1000px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background: #007bff;
}
/* DỰ ÁN NỔI BẬT */
.featured-projects {
  padding: 50px 20px;
  text-align: center;
}
.featured-projects h2 {
  color: #003366;
  font-size: 22px;
  margin-bottom: 30px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
  max-width: 1800px;
  margin: 0 auto;
}
.project-grid .item {
  border-radius: 10px;
  overflow: hidden;
}
.project-grid .item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s;
}
.project-grid .item:hover img {
  transform: scale(1.03);
}
.project-grid .item.large {
  grid-column: span 2;
  grid-row: span 2;
}
/* THIẾT KẾ */
.section-container {
  display: flex;
  background: url('images/bg-blueprint.jpg') left top no-repeat;
  background-size: auto 100%;
  padding: 60px 0;
  max-width: 1800px; /* Tăng max-width */
  margin: 0 auto;
}
.label-block {
  flex: 0 0 200px; /* Tăng chiều rộng của label block */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 40px;
  font-size: 26px;
  font-weight: 700;
  padding-left: 40px;
}
.label-block span {
  margin-top: 40px;
  line-height: 1.3;
}
.label-block .highlight {
  color: #00b6b6;
  font-size: 28px;
}
.image-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding-right: 20px;
}
.grid-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  background-color: #f9f9f9;
  width: 100%;
  margin: auto;
}
.grid-item img {
  width: 100%;
  height: 200px; /* Tăng chiều cao của hình ảnh */
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.grid-item:hover img {
  transform: scale(1.05);
}
.grid-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 15px 10px;
  font-weight: bold;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
}
footer {
  background: #062851;
  color: #fff;
  padding: 50px 30px;
  font-size: 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: auto;
}
.footer-grid h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: bold;
}
.footer-grid p,
.footer-grid a {
  color: #fff;
  text-decoration: none;
  line-height: 1.6;
  display: block;
}
.footer-grid .contact-box {
  display: flex;
  align-items: center;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 10px;
  font-weight: bold;
  width: fit-content;
}
.footer-grid .contact-box i {
  margin-right: 8px;
  color: #00b6b6;
}
.contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.contact-form h4 {
  color: #003366;
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #003366;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 80px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #003366;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background: #004488;
}
.social-icons {
  display: flex;
  gap: 15px;
  font-size: 22px;
  margin-top: 10px;
}
.social-icons a {
  color: #fff;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #00b6b6;
}
.achievements {
  padding: 50px 20px;
  background-color: #fff;
  color: #000;
}

.achievements .container {
  max-width: 1200px;
  margin: 0 auto;
}

.achievements .title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #003366;
  text-transform: uppercase;
}

.achievements .subtitle {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
  color: #333;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.achievement-item {
  padding: 20px;
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.achievement-item .number {
  font-size: 48px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}

.achievement-item .desc {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.achievement-item.dark {
  background-color: #002b5c;
  color: #fff;
}

.achievement-item.dark .number {
  color: #fff;
}

.achievement-item.dark .desc {
  color: #fff;
}

.achievement-item .number.special {
  font-size: 28px;
  font-weight: bold;
  color: #000;
}

.achievement-item .list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.achievement-item .list li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #000;
}
/* Basic styling for main navigation */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; /* Makes main menu items horizontal */
}

.main-nav ul li {
  position: relative; /* Important for positioning the dropdown */
}

.main-nav ul li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  white-space: nowrap; /* Prevent text wrapping */
}

/* Dropdown specific styles */
.main-nav .dropdown-menu {
  display: none; /* Hide the dropdown by default */
  position: absolute;
  top: 100%; /* Position below the parent menu item */
  left: 0;
  background-color: #fff;
  min-width: 250px; /* Adjust as needed */
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav .dropdown-menu li a {
  padding: 10px 20px;
  color: #555;
  border-bottom: 1px solid #eee; /* Optional: adds a separator */
}

.main-nav .dropdown-menu li:last-child a {
  border-bottom: none;
}

/* Show dropdown on hover */
.main-nav .has-dropdown:hover > .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu li a:hover {
  background-color: #f1f1f1;
}

/* Project */
.project-content {
  padding: 40px 0;
}

.project-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.project-title {
  font-size: 20px;
  color: #003366;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.project-info {
  margin-bottom: 40px;
}

.project-info .info-item {
  margin-bottom: 15px;
}

.project-info .info-item strong {
  color: #003366;
  margin-right: 10px;
  font-size: 16px;
}

.project-info .info-item span {
  color: #333;
  font-size: 16px;
}

.project-gallery {
  margin-bottom: 40px;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  max-width: 100%;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.project-description {
  text-align: center;
  margin-top: 30px;
}

.project-description p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.project-description .view-more {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s;
}

.project-description .view-more:hover {
  color: #004488;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .top-header {
    padding: 15px 20px;
  }
  
  .section-container,
  .project-grid,
  .footer-grid {
    max-width: 960px;
  }

  .image-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Project description responsive */
  .project-description {
    margin-top: 40px;
  }
  
  .project-description h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .project-description p {
    font-size: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 992px) {
  .feature-icons {
    gap: 10px;
  }

  .feature-icons div a {
    font-size: 14px;
  }

  .section-container {
    flex-direction: column;
  }

  .label-block {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 0;
  }

  .label-block span {
    margin-top: 0;
  }

  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .gallery-item {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    gap: 20px;
  }

  .search-box {
    width: 100%;
    max-width: 400px;
  }

  .feature-icons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav ul {
    flex-wrap: wrap;
    gap: 10px;
  }

  .slider {
    height: 400px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-grid .item.large {
    grid-column: auto;
    grid-row: auto;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .achievement-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-row {
    grid-template-columns: 1fr;
  }

  .project-info {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .logo img {
    height: 60px;
  }

  .feature-icons div {
    width: 45%;
  }

  .slider {
    height: 300px;
  }

  .label-block {
    flex-direction: column;
    text-align: center;
  }

  .contact-form {
    margin: 0 20px;
  }

  /* Project content responsive */
  .project-content .container {
    padding: 0 15px;
  }
  
  .project-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .project-info {
    margin-bottom: 25px;
  }
  
  .project-info .info-item {
    margin-bottom: 10px;
  }
  
  .project-info .info-item strong {
    font-size: 14px;
  }
  
  .project-info .info-item span {
    font-size: 14px;
  }
  
  .gallery-item {
    height: 200px;
  }

  .project-title {
    font-size: 18px;
    padding: 0 15px;
  }

  .contact-box {
    width: 100%;
    justify-content: center;
  }
}
.project-detail .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.project-header {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.project-left {
  flex: 2;
}

.project-right {
  flex: 1;
}

.main-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumbs img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.thumbs img:hover {
  border-color: #007bff;
}

.project-meta {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.project-meta li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.project-meta strong {
  color: #003366;
  margin-right: 10px;
}

.cta-box {
  background: #f8f9fa;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.cta-box form {
  margin-top: 10px;
}

.cta-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.cta-box button {
  width: 100%;
  padding: 10px;
  background-color: #003366;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.cta-box button:hover {
  background-color: #004488;
}

.project-description {
  margin-top: 50px;
}

.project-description h2 {
  color: #003366;
  font-size: 22px;
  margin-bottom: 20px;
}

.project-description p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-description img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* About Us Section */
.about-us {
  padding: 60px 0;
  background: #f9f9f9;
}

.about-us .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-us .title {
  text-align: center;
  color: #003366;
  font-size: 28px;
  margin-bottom: 50px;
  position: relative;
}

.about-us .title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #00b6b6;
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text > p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.feature {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature i {
  font-size: 36px;
  color: #00b6b6;
  margin-bottom: 15px;
}

.feature h3 {
  color: #003366;
  font-size: 18px;
  margin-bottom: 10px;
}

.feature p {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

.about-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.about-cta a {
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #003366;
  color: #fff;
}

.btn-primary:hover {
  background: #004488;
}

.btn-secondary {
  background: #fff;
  color: #003366;
  border: 2px solid #003366;
}

.btn-secondary:hover {
  background: #003366;
  color: #fff;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Responsive styles for About Us section */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-us {
    padding: 40px 0;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .about-cta {
    flex-direction: column;
  }
  
  .about-cta a {
    width: 100%;
  }
}
/* Product Section */
.product-section {
    padding: 60px 0;
    max-width: 1200px; /* Chiều rộng tối đa của section */
    margin: 0 auto; /* Căn giữa section */
}

.product-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #003366;
    position: relative;
    font-family: 'Playfair Display', serif;
}

.product-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #1a525e;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Responsive cho các màn hình nhỏ hơn */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    position: relative;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    background-color: #fff;
}

.product-title {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 5px;
    font-weight: bold;
}

.product-category {
    font-size: 0.9rem;
    color: #888;
}

.hidden-item {
    display: none;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 30px;
}

.btn-primary {
    background-color: #003366;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #c39a58;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  background: transparent;
  border: none;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #003366;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Overlay cho mobile menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Responsive cho header */
@media (max-width: 768px) {
  .top-header {
    flex-wrap: wrap;
    padding: 10px 15px;
    gap: 15px;
  }
  
  .logo img {
    height: 60px;
  }
  
  .search-box {
    width: 100%;
    max-width: 300px;
    order: 3;
    margin-top: 10px;
  }
  
  .feature-icons {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    order: 2;
    flex: 1;
  }
  
  .feature-icons div a {
    font-size: 12px;
  }
  
  /* Mobile menu styles */
  .mobile-menu-toggle {
    display: flex;
    order: 2;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fff;
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 60px 0 20px;
    gap: 0;
  }
  
  .main-nav ul li {
    border-bottom: 1px solid #eee;
  }
  
  .main-nav ul li a {
    padding: 15px 20px;
    display: block;
    color: #003366;
  }
  
  .main-nav ul li a:hover {
    background-color: #f8f9fa;
  }
  
  /* Dropdown menu cho mobile */
  .main-nav .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    min-width: auto;
    background-color: #f8f9fa;
    border-left: 3px solid #003366;
  }
  
  .main-nav .has-dropdown.active > .dropdown-menu {
    display: block;
  }
  
  .main-nav .dropdown-menu li a {
    padding: 12px 40px;
    font-size: 14px;
  }
  
  .dropdown-arrow {
    float: right;
    transition: transform 0.3s ease;
  }
  
  .has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
}

@media (max-width: 480px) {
  .top-header {
    padding: 8px 10px;
  }
  
  .logo img {
    height: 50px;
  }
  
  .search-box {
    max-width: 250px;
  }

  /* Project content extra small screens */
  .project-content .container {
    padding: 0 10px;
  }
  
  .project-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .gallery-item {
    height: 150px;
  }
  
  .project-info .info-item {
    margin-bottom: 8px;
  }
  
  .project-info .info-item strong,
  .project-info .info-item span {
    font-size: 13px;
  }
  }
  
  .feature-icons {
    gap: 10px;
  }
  
  .feature-icons div {
    width: 45%;
    text-align: center;
  }
  
  .feature-icons div a {
    font-size: 11px;
  }
}
