/* ✅ Fix for horizontal scroll */
html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', sans-serif;
}

/* Top Info Bar */
.topbar {
  background-color: #f6a400;
  font-size: 0.9rem;
  color: white;
  padding: 8px 0;
}

.topbar a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}

.topbar i {
  margin-right: 5px;
}

/* Navbar */
.navbar-brand {
  background-color: #e63946;
  color: white !important;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 0 0 12px 12px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin-left: 15px;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #e63946 !important;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
}

.hero-left {
  flex: 1;
  background-color: #f6a400;
  padding: 70px 40px;
  /* background: url('images/bg.png') repeat; */
}

.hero-left h1 {
  font-weight: 800;
  color: #ffffff;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 4.5rem;
}

.hero-left p {
  font-size: 1.1rem;
  color: #ffffff;
  margin-top: 20px;
  max-width: 500px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 100;
  font-size: 1.4rem;
}

.btn-donate {
  background-color: #e63946;
  color: white;
  padding: 12px 28px;
  font-size: 1.1rem;
  margin-top: 30px;
  border: none;
  transition: background 0.3s ease;
}

.btn-donate:hover {
  background-color: #c8212e;
}

.hero-right {
  flex: 1;
  background: url('https://source.unsplash.com/800x700/?african,ngo') center center/cover no-repeat;
  min-height: 400px;
}

/* Animal Section */
.animal-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animal-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.animal-card img {
  height: 330px;
  object-fit: cover;
}

@media (max-width: 650px) {
  .hero-left, .hero-right {
    flex: 100%;
    text-align: center;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .hero-left p {
    margin: 0 auto;
  }
}

/* 2 */
.section {
  padding: 60px 0;
}

.impact-icon {
  font-size: 3rem;
  color: #f6a400;
}

.hover-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.orange-bg {
  background-color: #f6a400;
  color: white;
}

.highlight-text {
  color: #f6a400;
}

.donation-form input {
  margin-bottom: 15px;
}

.donation-form .btn {
  background-color: #E63946;
  border: none;
  color: white;
  transition: 0.3s ease;
}

.donation-form .btn:hover {
  background-color: #d98c00;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width: 650px) {
  .donation-form input {
    width: 100%;
  }
}

/* 3 */
.highlight {
  color: #f6a400;
}

.section {
  padding: 60px 0;
}

.feature-card {
  transition: all 0.4s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.action-table td {
  padding: 12px 20px;
}

.action-table .btn:hover {
  background-color: #d98c00;
}

.progress-container {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.icon-block {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
}

.icon-block:hover {
  transform: scale(1.05);
}

.icon-block i {
  font-size: 2.5rem;
  color: #f6a400;
}

.icon-block h6 {
  margin-top: 10px;
}

@media(max-width: 650px) {
  .action-table td {
    display: block;
    width: 100%;
    text-align: center;
  }

  .action-table tr {
    margin-bottom: 20px;
    display: block;
    border-bottom: 1px solid #eee;
  }
}

/* card */
.feature-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}

.feature-card img {
  height: 300px;
  object-fit: cover;
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.feature-card .card-body {
  padding: 1.2rem;
}

.feature-card .btn {
  border-radius: 50px;
  transition: 0.3s;
}

.feature-card .btn:hover {
  background-color: #0d6efd;
  color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.card-title{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.mb-33{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  font-size: 3.5rem;
}

.mb-44{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  font-size: 4.5rem;
}

.mb-55{
  font-family: 'Times New Roman', Times, serif;
  font-weight: 100;
  font-size: 1.4rem;
}

.font{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: #333;
}

td{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: 10;
  font-size: 1.5rem;
  color: #333;
}

.bt{
  background-color: #E63946;
  color: white;
  transition: 0.3s ease;
  border-radius: 10px;
  padding: 20px 40px;
  font-size: 1rem;
}

@media (max-width: 650px) {
  .bt {
    padding: 5px 10px;
    font-size: 0.9rem;
  }
  .mb-44{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 300;
    font-size: 2.3rem;
  }
}

/* Button */
.btt{
  background-color: #e63946;
  color: white;
  transition: 0.3s ease;
  border-radius: 10px;
  padding: 20px 40px;
  font-size: 1rem;
}
