body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f3f5f7;
}

/* Navbar */
.navbar {
  background: wheat;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.navbar-brand {
  color: #ffb700 !important;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 1px;
}
.navbar-nav .nav-link {
  color: #f1de30 !important;
  margin-right: 15px;
  font-weight: 500;
  transition: 0.3s;
}
.navbar-nav .nav-link:hover {
  color: #ffb700 !important;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(13,59,102,0.7), rgba(13,59,102,0.7)),
              url('img/hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 0;
  text-align: center;
  position: relative;
}
.hero h1 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}
.cta-btn {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffb700, #ffaa00);
  color: #0d3b66;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.cta-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(90deg, #ffaa00, #ffcc00);
}

/* Sections */
.section {
  padding: 80px 0;
}

/* Cards */
.card-feature {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: none;
  border-radius: 15px;
}
.card-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.card-feature i {
  transition: transform 0.3s, color 0.3s;
}
.card-feature:hover i {
  transform: scale(1.2);
  color: #ffb700 !important;
}

/* Affiliate / Offers Cards */
.card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.card img {
  transition: transform 0.3s;
}
.card:hover img {
  transform: scale(1.05);
}

/* Keywords */
.keyword {
  color: #1a73e8;
  font-weight: 700;
  position: relative;
}
.keyword::after {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: #ffb700;
  margin-top: 3px;
  border-radius: 2px;
}

/* Footer */
footer {
  background: linear-gradient(90deg, #1a73e8, #0d3b66);
  color: #fff;
  padding: 40px 0;
  text-align: center;
  font-weight: 500;
}
footer p {
  margin: 0;
}

/* Media Queries */
@media (max-width: 767px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .navbar-nav { text-align: center; }
  .navbar-nav .nav-link { margin: 8px 0; }
}


/* Featured Categories Section */
#categories {
  position: relative;
}

/* Card Base */
.card-feature {
  border: none;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff, #f1f5ff);
  transition: all 0.35s ease;
  overflow: hidden;
  position: relative;
}

/* Gradient top line */
.card-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #1a73e8, #ffb700);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Hover Effect */
.card-feature:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.card-feature:hover::before {
  opacity: 1;
}

/* Icon Styling */
.card-feature i {
  transition: transform 0.4s ease, color 0.3s ease;
}

/* Icon Animation on Hover */
.card-feature:hover i {
  transform: rotate(-5deg) scale(1.15);
}

/* Card Title */
.card-feature .card-title {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

/* Card Text */
.card-feature .card-text {
  color: #555;
  font-size: 0.95rem;
}

/* Button Styling */
.card-feature .btn {
  border-radius: 30px;
  font-weight: 600;
  padding: 8px 22px;
  transition: all 0.3s ease;
}

/* Button Hover */
.card-feature .btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Education Button */
.btn-outline-primary:hover {
  background: #1a73e8;
  border-color: #1a73e8;
}

/* Travel Button */
.btn-outline-success:hover {
  background: #198754;
  border-color: #198754;
}

/* Growth Button */
.btn-outline-warning:hover {
  background: #ffb700;
  border-color: #ffb700;
  color: #0d3b66;
}

/* Section Title Enhancement */
#categories h2 {
  font-weight: 800;
  position: relative;
  display: inline-block;
}

#categories h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #ffb700;
  margin: 10px auto 0;
  border-radius: 10px;
}












/* About LearnTravelGrow */
.about-ltg {
  padding: 90px 0;
  background: #f7fafc;
}

/* Content Card */
.about-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 45px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.about-card h2 {
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #0d3b66;
}

.about-card .lead {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #444;
}

/* Feature Pills */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 25px;
}

.feature-pill {
  background: #eef4ff;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 600;
  color: #0d3b66;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.feature-pill i {
  color: #ffb700;
  font-size: 1.1rem;
}

.feature-pill:hover {
  background: #0d3b66;
  color: #fff;
  transform: translateY(-3px);
}

.feature-pill:hover i {
  color: #ffb700;
}

/* Button */
.btn-main {
  background: linear-gradient(135deg, #ffb700, #ffaa00);
  color: #0d3b66;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(255, 183, 0, 0.35);
  transition: all 0.3s ease;
}

.btn-main:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffaa00, #ffb700);
}

/* Image Layout */
.image-wrapper {
  position: relative;
}

.img-main {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.img-overlay {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 55%;
  border-radius: 22px;
  border: 6px solid #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 991px) {
  .img-overlay {
    position: static;
    width: 100%;
    margin-top: 25px;
  }

  .about-card {
    padding: 35px;
  }
}
