/* .about-hero {
  background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  color: white;
} */

.about-hero {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470');
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  text-align: center;
  color: white;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 71%); /* Black overlay */
  z-index: 1;
}
.about-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}
.about-hero p {
  font-size: 20px;
  max-width: 700px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.about-section {
  padding: 60px 0px;
  max-width: 1200px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  aspect-ratio: 9 / 6;
  object-fit: cover;
  border-radius: 12px;
  transition:
    transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 1.2s cubic-bezier(0.25, 0.8, 0.25, 1),
    filter 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.about-grid img:hover {
  transform: scale(1.06);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  filter: brightness(1.06) contrast(1.06);
}


.about-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.about-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.feature-box h4 {
  margin-bottom: 10px;
}

/* FEATURE CARD HOVER EFFECT */
.feature-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
  cursor: pointer;
  position: relative;
}

/* Lift card on hover */
.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  background: #0b1c2d;
}

/* Icon hover enhancement (NO position shift) */
.feature-box:hover .icon-inner {
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.2));
}

/* Title color change */
.feature-box:hover h4 {
  color: #ff6a10;
  transition: color 0.3s ease;
}

.feature-box:hover p{
  color:white ;
}

/* Optional subtle border glow */
.feature-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border 0.35s ease;
}

.feature-box:hover::after {
  border: 1px solid rgba(255, 106, 16, 0.4);
}

.cta-section {
  background: #000000;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.cta-section a {
  background: #ff6a10;
  color: #000000;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.feature-box img.emoji {
    height: 2em !important;
    width:2em !important;
}


.feature-box .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-box .icon-inner {
  display: inline-block;
  font-size: 36px;
  transform-origin: center;
}

/* 🌍 Earth Rotation (NO SHIFT) */
.earth .icon-inner {
  animation: rotateEarth 6s linear infinite;
}

@keyframes rotateEarth {
  to { transform: rotate(360deg); }
}

/* 🧳 Bag Floating (VISUAL ONLY) */
.bag .icon-inner {
  animation: floatBag 2.5s ease-in-out infinite;
}

@keyframes floatBag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* 💬 Support Pulse */
.support .icon-inner {
  animation: pulseSupport 2s ease-in-out infinite;
}

@keyframes pulseSupport {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* 💰 Price Hover (CENTER SAFE) */
.price .icon-inner {
  transition: transform 0.3s ease;
}

.price:hover .icon-inner {
  transform: scale(1.2);
}
