
.about-section {
  width: 100%;
  padding: 100px 0;
 
}



.about-section .row .col {
  width: 48%;
  position: relative;
  z-index: 1;
}

.about-content > span {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a52a2a;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
  padding-left: 50px;
}

.about-content > span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #a52a2a, #e8d5c3);
  transform: translateY(-50%);
}

.about-content h2 {
  margin: 10px 0 20px;
}

.about-content h2 .highlight {
  color: #a52a2a;
  position: relative;
  display: inline-block;
}

.about-content h2 .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(198, 160, 123, 0.2);
  z-index: -1;
}

.about-content p {
  color: #555;
  margin-bottom: 20px;
}

.about-features {
  margin: 30px 0;
}

.about-features .feature {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  background: #ffffff;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #f0e8e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.about-features .feature:hover {
  transform: translateX(8px);
  border-color: #a52a2a;
  box-shadow: 0 8px 20px rgba(198, 160, 123, 0.12);
}

.about-features .feature i {
  font-size: 24px;
  color: #a52a2a;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(198, 160, 123, 0.1) 0%, rgba(198, 160, 123, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.about-features .feature:hover i {
  background: linear-gradient(135deg, #a52a2a 0%, #d4b48c 100%);
  color: #ffffff;
  transform: scale(1.05);
}

.about-features .feature span {
  font-size: 15px;
  font-weight: 600;
  color: #2c2c2c;
  letter-spacing: 0.3px;
}

/* Button Styles */
.about-content .btn {
 
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  padding: 14px 35px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content .btn:hover {
  background: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-content .btn i {
  transition: all 0.3s ease-in-out;
}

.about-content .btn:hover i {
  transform: translateX(8px);
}

.about-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  grid-template-areas: 
    "img1 img2"
    "img1 img3";
  position: relative;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.img-1 {
  grid-area: img1;
  aspect-ratio: 2 / 4;
  object-position: center 30%;
}

.img-2 {
  grid-area: img2;
  aspect-ratio: 1 / 1;
  object-position: center;
}

.img-3 {
  grid-area: img3;
  aspect-ratio: 1 / 1;
  object-position: center;
}

/* Hover overlay effect for images */
.gallery-grid {
  position: relative;
}

.gallery-img {
  position: relative;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .about-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 70px 0;
  }
  
  .about-content h2 {
    font-size: 32px;
  }
  
  .about-features .feature {
    padding: 10px 12px;
  }
  
  .about-features .feature i {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  
  .about-features .feature span {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }
  
  .about-section .row {
    flex-direction: column;
    gap: 40px;
  }
  
  .about-section .row .col {
    width: 100%;
  }
  
  .about-content h2 {
    font-size: 28px;
  }
  
  .about-content p {
    font-size: 15px;
  }
  
  .about-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .about-features .feature {
    padding: 10px;
  }
  
  .about-features .feature i {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  
  .about-features .feature span {
    font-size: 13px;
  }
  
  .about-content .btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 40px 0;
  }
  
  .about-content h2 {
    font-size: 24px;
  }
  
  .about-content > span {
    font-size: 11px;
    letter-spacing: 2px;
  }
  
  .about-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .gallery-grid {
    gap: 12px;
  }
}

/* Animation on Scroll (Optional - add to your JS or CSS) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-section .col {
  animation: fadeInUp 0.8s ease forwards;
}

.about-section .about-gallery {
  animation-delay: 0.2s;
}