/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@400;600;800&display=swap');

:root {
  --primary-color: #1e3c72;
  /* Deep elegant blue */
  --secondary-color: #2a5298;
  --accent-color: #f9a826;
  /* Vibrant orange */
  --accent-hover: #ffc837;
  --text-dark: #1A1A1A;
  --text-light: #F5F5F7;
  --bg-light: #FFFFFF;
  --bg-gray: #F8F9FA;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
  padding-top: 76px;
  /* Space for fixed navbar */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* Glassmorphism Navbar */
.glass-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  transition: var(--transition);
  padding: 0.5rem 1.2rem !important;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
  color: var(--primary-color) !important;
  background: rgba(30, 60, 114, 0.05);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  animation: fadeInDown 0.3s ease;
}

.dropdown-item {
  padding: 0.7rem 1.5rem;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: rgba(249, 168, 38, 0.1);
  color: var(--primary-color);
  padding-left: 2rem;
}

/* CTA Donate Button */
.btn-donate {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: var(--text-dark) !important;
  font-weight: 700;
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(249, 168, 38, 0.4);
  transition: var(--transition);
}

.btn-donate:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(249, 168, 38, 0.6);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Global Sections */
.section-padding {
  padding: 100px 0;
}

.bg-light-gray {
  background-color: var(--bg-gray);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.8rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  color: var(--primary-color);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.85), rgba(42, 82, 152, 0.8)), url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
  color: white;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeUp 1s ease;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  animation: fadeUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-btns {
  animation: fadeUp 1s ease 0.4s;
  animation-fill-mode: both;
}

.btn-primary-custom {
  background: var(--primary-color);
  color: white;
  border: 2px solid var(--primary-color);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  background: transparent;
  color: white;
  border-color: white;
}

/* Work Area Cards */
.work-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.work-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.work-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.work-card-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.work-icon {
  position: absolute;
  bottom: 15px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(249, 168, 38, 0.4);
}

.work-card-body {
  padding: 2rem 1.5rem;
}

.work-card-body h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.work-card-body p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer Features */
.main-footer {
  background: #0d1b2a;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 20px;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  display: block;
  text-decoration: none;
}

.main-footer h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 10px;
  transition: var(--transition);
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

/* Page Header for Inner Pages */
.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.breadcrumb-custom {
  justify-content: center;
  background: transparent;
  padding: 0;
}

.breadcrumb-custom .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
  color: var(--accent-color);
}
/* Smooth Carousel Fade */
.carousel-fade .carousel-item {
  transition: opacity 1.5s ease-in-out !important;
}
