

/* ====== ABOUT US HERO SECTION ====== */

/* Background + Animations */
@keyframes fadeInBg {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-hero {
  position: relative;
 
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  animation: fadeInBg 1.5s ease-in-out forwards;
  overflow: hidden;
}

/* Dark overlay for readability */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Brush stroke divider at the bottom */
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('https://ibb.co/rV0BRfW') repeat-x bottom;
  background-size: contain;
  z-index: 2;
}

/* Text content styling */
.about-hero-content {
  position: relative;
  z-index: 3;
  animation: slideUp 1.2s ease-out forwards;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 992px) {
  .about-hero {
    height: 70vh;
  }

  .about-hero h1 {
    font-size: 2.6rem;
  }

  .about-hero p {
    font-size: 1rem;
    max-width: 90%;
  }
}

@media (max-width: 576px) {
  .about-hero {
    height: 65vh;
    padding: 0 20px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 0.95rem;
  }
}

/* HERO SECTION */
.blog-hero {
  background: url('https://images.unsplash.com/photo-1493558103817-58b2924bce98?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  position: relative;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.blog-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
}
.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
}
.hero-content h1 {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-content p {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #f1f1f1;
}

/* FEATURED BLOG */
.featured-blog {
  padding: 80px 20px;
  background: #fff;
}
.featured-content {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.featured-content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-content:hover img {
  transform: scale(1.1);
}
.featured-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}
.featured-overlay h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease;
}
.featured-overlay .read-more {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: #d8232a;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.featured-overlay .read-more:hover {
  background: #b81824;
}

/* BLOG GRID */
.blogs {
  background: #fafafa;
  padding: 80px 20px;
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  color: #d8232a;
  font-size: 2rem;
  margin-bottom: 10px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  animation: fadeInUp 1s ease;
}
.blog-card:hover {
  transform: translateY(-10px);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-info {
  padding: 20px;
}
.blog-info .date {
  color: #999;
  font-size: 0.9rem;
}
.blog-info h3 {
  color: #d8232a;
  margin: 10px 0;
  font-size: 1.2rem;
}
.blog-info p {
  font-size: 0.95rem;
  color: #555;
}
.blog-info .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 20px;
  background: #d8232a;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
}
.blog-info .btn:hover {
  background: #b81923;
}

/* CTA */
.cta {
  background: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta h2 {
  font-size: 2rem;
  color: #d8232a;
  margin-bottom: 15px;
}
.cta p{
    margin-bottom: 15px;
}
.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #d8232a;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #b81923;
}

/* ANIMATION */
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(30px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {font-size: 2.2rem;}
  .featured-content img {height: 300px;}
}


/* travel-tips */

.travel-tips {
  background: #fff;
  padding: 80px 0;
  text-align: center;
  animation: fadeInUp 1s ease-in-out;
}

.travel-tips .section-title {
  color: #d8232a;
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.travel-tips .section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 50px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.tip-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 40px 25px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
}

.tip-card i {
  font-size: 40px;
  color: #d8232a;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.tip-card h3 {
  color: #222;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.tip-card p {
  color: #666;
  font-size: 0.95rem;
}

.tip-card:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.tip-card:hover i {
  transform: scale(1.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



