/* ============================
   HERO SECTION
============================ */
.hero {
  position: relative;
  height: 500px;
  
  overflow: hidden;
}

/* Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
}

/* Background image */
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient overlay on top of image */
.hero .overlay {
  position: absolute;
  inset: 0;
 
  z-index: 2;
}

/* Text content */
.hero .content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
}

.hero h2 {
  font-size: 3rem; /* similar to text-5xl */
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem; /* text-xl */
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

.hero .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .btn-orange {
  background-color: #f97316;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero .btn-orange:hover {
  background-color: #ea580c;
}

.hero .btn-white {
  background-color: white;
  color: #166534;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero .btn-white:hover {
  background-color: #f3f4f6;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* ============================
   GLOBAL
============================ */
body {
  background: white;
  font-family: system-ui, sans-serif;
}

.title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #059669;
}

.subtitle {
  font-size: 0.85rem;
  color: #6b7280;
}

/* ============================
   NAVBAR
============================ */
.navbar a,
.navbar .nav-link,
.navbar .nav-item-custom a {
  color: #1f2937 !important;
  font-weight: 500;
}

.navbar a:hover,
.navbar .nav-link:hover,
.navbar .nav-item-custom a:hover {
  color: #059669 !important;
}

.nav-item-custom {
  font-weight: 500;
  color: #1f2937 !important;
  transition: 0.3s;
}

.nav-item-custom:hover {
  color: #059669 !important;
}

/* ============================
   INFO CARDS (ABOUT PAGE)
============================ */
.info-card {
  background: linear-gradient(to bottom right, #fff7ed, #ecfdf5);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.info-card i {
  margin-bottom: 20px;
}

/* ============================
   REUSABLE: ICON BOX + ICON
============================ */
.icon-box {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon {
  width: 28px;
  height: 28px;
}

/* ============================
   SCHEMES PAGE
============================ */
.schemes-section {
  padding: 60px 0;
  background: #f9fafb;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  color: #166534;
  margin-bottom: 10px;
  font-size: 32px;
}

.section-header p {
  color: #4b5563;
}

.schemes-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.scheme-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.scheme-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.scheme-top {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 15px;
}

.scheme-title h3 {
  color: #166534;
  margin-bottom: 5px;
}

.status {
  background: #dcfce7;
  color: #166534;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 12px;
}

.scheme-description {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 12px;
}

.scheme-benefits {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 14px;
}

.user-icon {
  width: 18px;
  height: 18px;
}

.schemes-footer {
  margin-top: 50px;
  background: linear-gradient(to right, #ea580c, #15803d);
  color: white;
  text-align: center;
  padding: 40px;
  border-radius: 12px;
}

.schemes-footer h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.schemes-footer p {
  opacity: 0.9;
  margin-bottom: 20px;
}

.contact-btn {
  background: white;
  color: #166534;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #f1f1f1;
}

/* ============================
   SERVICES PAGE
============================ */
.services-section {
  padding: 70px 0;
  background: white;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h2 {
  color: #166534;
  font-size: 32px;
  margin-bottom: 8px;
}

.header p {
  color: #4b5563;
}

.services-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: linear-gradient(to bottom right, #fff7ed, #ffffff);
  padding: 25px;
  border: 1px solid #ffedd5;
  border-radius: 12px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.service-card h3 {
  color: #166534;
  font-size: 18px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: #4b5563;
}

.apply-section {
  margin-top: 40px;
  text-align: center;
}

.apply-btn {
  background: #ea580c;
  color: white;
  padding: 12px 30px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.apply-btn:hover {
  background: #c2410c;
}
/* ============================
   PROJECTS SECTION
============================ */
.project-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s;
}

.project-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.project-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media(min-width: 768px) {
  .project-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.project-info {
  flex: 1;
}

.status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  text-transform: capitalize;
}

.status.completed {
  background-color: #d1fae5;
  color: #166534;
}

.status.ongoing {
  background-color: #ffedd5;
  color: #ea580c;
}

.status.planned {
  background-color: #dbeafe;
  color: #1d4ed8;
}

.budget {
  color: #166534;
  font-weight: bold;
}

.progress-container {
  margin-top: 1rem;
}

.progress-bar-bg {
  width: 100%;
  background-color: #e5e7eb;
  height: 0.5rem;
  border-radius: 9999px;
  overflow: hidden;
}

.progress-bar {
  height: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(to right, #f97316, #22c55e);
  transition: width 0.5s;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.project-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  color: #166534;
}

.project-description {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Status icons as inline SVGs */
.status-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================
   FOOTER
============================ */
.footer-section {
    background: linear-gradient(135deg, #52d4e0, #3088d0);
    border-top: 4px solid #0d6efd;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.footer-heading::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #0d6efd;
    display: block;
    margin-top: 6px;
    border-radius: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0d6efd;
    padding-left: 6px;
}

.contact-box p {
    margin-bottom: 8px;
    color: #444;
}

.contact-box a {
    color: #0d6efd;
    text-decoration: none;
}

.footer-divider {
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer-bottom {
    font-size: 14px;
    color: #555;
}

.footer-bottom a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.photo-gallery {
    margin-top: 30px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

/* ====== PHOTO CARD ====== */
.photo {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.photo img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.photo::after {
    content: "🔍";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 40px;
    color: white;
    transition: 0.4s;
}

.photo:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.photo:hover img {
    transform: scale(1.15);
}

.photo:hover {
    transform: translateY(-6px);
}

/* ====== LIGHTBOX ====== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.lightbox span {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 38px;
    color: #fff;
    cursor: pointer;
}

/* =========================
   SCHEME SECTION
========================= */

.scheme-card-full{
  background:#fff;
  border:1px solid #dce7d8;
  padding:25px;
  border-radius:12px;
  margin-bottom:35px;
  box-shadow:0 2px 6px rgba(0,0,0,.04);
}

.scheme-card-full h3{
  margin-bottom:8px;
  font-size:20px;
  color:#0a5e0a;
  display:flex;
  align-items:center;
  gap:10px;
}

.badge-green{
  background:#0a5e0a;
  color:#fff;
  padding:4px 10px;
  border-radius:6px;
  font-size:12px;
}

.scheme-card-full p{
  margin:8px 0 15px;
  line-height:1.4;
}

.scheme-list{
  margin-bottom:18px;
  padding-left:18px;
}

.scheme-list li{
  margin-bottom:6px;
  color:#333;
}

/* benefit box */
.scheme-box{
  background:#f3fff3;
  border-left:4px solid #0a5e0a;
  padding:15px;
  border-radius:8px;
  font-size:14px;
}

.scheme-box p{
  margin-bottom:6px;
}

/* for the scheme sections */
/* RESET */
.scheme-filter button,
.filter-btn {
  all: unset;
}

/* filter container */
.scheme-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0 8px;
}

/* FILTER buttons */
.filter-btn {
  display: inline-block;
  border: 1px solid #065233;
  background: #ffffff;
  color: #065233;
  padding: 8px 20px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1.4;
  transition: 0.2s;
  font-weight: 500;
}

.filter-btn:hover {
  background: #06523312;
}

.filter-btn.active {
  background: #065233;
  color: #ffffff;
}

/* section title icon */
.section-subtitle span {
  font-size: 22px;
}

/* section subtitle */
.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 22px!important;
  margin-bottom: 18px;
  color: #053421;
  font-weight: 700;
}

/* scheme card */
.scheme-card-full {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #dae6da;
  padding: 22px;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.04);
}

.scheme-card-full h3 {
  font-size: 20px!important;
  font-weight: 700;
  margin-bottom: 10px;
  color: #053421;
}

/* bullet list */
.scheme-list {
  padding-left: 20px;
}

.scheme-list li{
  margin: 6px 0;
  font-size: 15px;
  color: #111;
}

/* green badge */
.badge-green {
  background: #0b6f37;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}

/* footer box */
.scheme-box {
  margin-top: 18px;
  padding: 12px;
  background: #f4fbf4;
  border-radius: 8px;
  border: 1px solid #d7f3d7;
}

/* for copy from the scheme for test */
 body{
      font-family:"Noto Sans Devanagari",sans-serif;
      background:#f5f7fb;
      color:#1f2937;
    }

    /* ---------- NAVBAR ---------- */
    .navbar .title{
      font-weight:700;
      font-size:1.1rem;
    }
    .nav-item-custom .nav-link{
      font-weight:600;
      border-radius:8px;
      padding:8px 14px;
      transition:.2s;
    }
    .nav-item-custom .nav-link:hover,
    .nav-item-custom .nav-link.active{
      background:#f973161f;
      color:#f97316;
    }

    /* ---------- SECTION TITLE ---------- */
    .section-title{
      font-weight:700;
      font-size:2rem;
      text-align:center;
    }
    .section-title::after{
      content:"";
      width:90px;
      height:4px;
      background:linear-gradient(90deg,#f97316,#059669);
      display:block;
      margin:10px auto 0;
      border-radius:6px;
    }

    /* ---------- SCHEME CARDS ---------- */
    .scheme-card{
      background:#ffffff;
      border:none;
      border-radius:18px;
      padding:28px;
      height:100%;
      box-shadow:0 12px 35px rgba(0,0,0,.08);
      transition:all .35s ease;
      position:relative;
      overflow:hidden;
    }

    .scheme-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg,#f97316,#059669);
      opacity:0;
      transition:.35s;
    }

    .scheme-card:hover::before{
      opacity:.07;
    }

    .scheme-card:hover{
      transform:translateY(-10px);
      box-shadow:0 20px 55px rgba(0,0,0,.15);
    }

    .scheme-icon{
      width:65px;
      height:65px;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,#f97316,#059669);
      color:white;
      font-size:1.6rem;
      margin-bottom:15px;
    }

    .scheme-card h5{
      font-weight:700;
      margin-bottom:8px;
    }

    .scheme-card p{
      color:#4b5563;
      font-size:.95rem;
    }

    /* Footer */
.footer-section {
    background: linear-gradient(135deg, #52d4e0, #3088d0);
    border-top: 4px solid #0d6efd;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.footer-heading::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #0d6efd;
    display: block;
    margin-top: 6px;
    border-radius: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0d6efd;
    padding-left: 6px;
}

.contact-box p {
    margin-bottom: 8px;
    color: #444;
}

.contact-box a {
    color: #0d6efd;
    text-decoration: none;
}

.footer-divider {
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer-bottom {
    font-size: 14px;
    color: #555;
}

.footer-bottom a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* for the scheme */


    /* ---------- ANIMATIONS ---------- */
    .reveal{animation:fadeUp .8s ease both;}
    .delay-1{animation-delay:.15s}
    .delay-2{animation-delay:.3s}

    @keyframes fadeUp{
      from{opacity:0;transform:translateY(25px)}
      to{opacity:1;transform:none}
    }

    /* GLOBAL */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Inter", sans-serif;
}

body{
  background:#F9F9F4;
  color:#222;
}

/* WRAPPER */
.scheme-wrapper{
  max-width:1180px;
  margin:auto;
  padding:40px 20px;
}

/* HEAD TITLE */
.filter-top h1{
  font-size:38px;
  color:#0C4128;
  margin-bottom:8px;
}

.filter-top p{
  color:#666;
  font-size:15px;
}

/* FILTER BUTTONS */
.filter-buttons{
  margin-top:25px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.filter-buttons button{
  background:#fff;
  border:1px solid #CCCFCD;
  padding:9px 22px;
  border-radius:6px;
  cursor:pointer;
  transition:0.2s;
}

.filter-buttons button.active{
  background:#106035;
  color:#fff;
  border-color:#106035;
}

.filter-buttons button:hover{
  background:#e8f0e9;
}

/* SECTION */
.section-box{
  margin-top:45px;
}

.section-box h2{
  font-size:22px;
  margin-bottom:15px;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  color:#0A4730;
}

/* CARD */
.scheme-card{
  background:#fff;
  padding:28px;
  border-radius:10px;
  border:1px solid #E2E2E2;
}

.scheme-card h3{
  font-size:20px;
  font-weight:600;
  color:#222;
  display:flex;
  align-items:center;
  gap:10px;
}

/* ACTIVE tag */
.scheme-card .badge{
  background:#0A6A49;
  color:#fff;
  padding:2px 8px;
  border-radius:5px;
  font-size:12px;
  font-weight:600;
}

/* text */
.scheme-card p{
  margin-top:12px;
  font-size:15px;
  line-height:1.5;
}

/* list */
.scheme-card ul{
  margin-top:12px;
  margin-left:15px;
  line-height:1.9;
  color:#333;
}

/* INFO BOX */
.info-box{
  background:#F1FAF3;
  padding:15px;
  border-radius:6px;
  margin-top:18px;
}

.info-box p{
  font-size:15px;
}
  /* for the gallery hero */
  /* and also code of css from the gallery.css */
  /* ====== GENERAL ====== */
/* ====== GENERAL ====== */
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f6f8fb;
}

/* ====== SECTION ====== */
.section-title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #0d6efd;
    display: block;
    margin: 10px auto;
    border-radius: 10px;
}

/* ====== GALLERY GRID ====== */
.photo-gallery {
    margin-top: 30px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}

/* ====== PHOTO CARD ====== */
.photo {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
    transition: all 0.45s ease;
    transform: perspective(800px);
}

.photo img {
    width: 100%;
    height: 260px; /* Increased image size */
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* Glass Shine Animation */
.photo:before {
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:120%;
    height:100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
    transition: .7s;
}

/* Zoom + shine + tilt */
.photo:hover {
    transform: translateY(-8px) rotateX(4deg);
    box-shadow: 0 25px 45px rgba(0,0,0,0.18);
}

.photo:hover img {
    transform: scale(1.22);
    filter: brightness(1.05);
}

.photo:hover:before {
    left:100%;
}

/* 🔍 Hover icon */
.photo::after {
    content: "🔍";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 42px;
    color: rgba(255,255,255,0.92);
    transition: 0.5s ease;
}

.photo:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ====== LIGHTBOX ====== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 999;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox span {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 38px;
    color: #fff;
    cursor: pointer;
}


/* ====== RESPONSIVE ====== */
@media(max-width: 576px){
    .photo img {
        height: 220px;
    }
}
.page-title-modern{
    background:#f9faf6;
    padding:80px 0;
    text-align:center;
}

/* Title */
.page-title-modern .hero-title{
    font-size:46px;
    color:#07552f !important;
    font-weight:700;
    line-height:1.3;
    margin-bottom:15px;
    animation: fadeInUp .6s ease forwards;
}

/* Sub text */
.page-title-modern .hero-sub{
    font-size:18px;
    color:#333;
    max-width:850px;
    margin:auto;
    opacity:.9;
    animation: fadeInUp .8s ease forwards;
    animation-delay:.1s;
}

/* animation */
@keyframes fadeInUp{
  0%{
    opacity:0;
    transform:translateY(18px);
  }
  100%{
    opacity:1;
    transform:translateY(0);
  }
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 30px;
}
/* copy css form the contact.html*/
body{
    background:#f7f9fc;
    font-family: "Segoe UI", sans-serif;
}

/* Navbar */
.navbar-brand .title{
    font-weight:700;
    font-size:18px;
}

/* Section Title */
.section-title{
    font-weight:700;
    font-size:2.2rem;
}
.section-title::after{
    content:"";
    width:70px;
    height:4px;
    background:#198754;
    margin:10px auto;
    display:block;
    border-radius:10px;
}

/* Contact Card */
.contact-card{
    background:#fff;
    border-radius:16px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Form */
.form-control, .form-select{
    border-radius:10px;
    padding:12px;
}
.btn-theme{
    background:linear-gradient(135deg,#fd7e14,#198754);
    border:none;
    color:white;
    padding:12px;
    border-radius:12px;
}

/* Info Box */
.info-item{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}
.info-icon{
    width:48px;
    height:48px;
    background:#fff3e0;
    color:#fd7e14;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, #52d4e0, #3088d0);
    border-top: 4px solid #0d6efd;
}

.footer-heading {
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.footer-heading::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #0d6efd;
    display: block;
    margin-top: 6px;
    border-radius: 5px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #0d6efd;
    padding-left: 6px;
}

.contact-box p {
    margin-bottom: 8px;
    color: #444;
}

.contact-box a {
    color: #0d6efd;
    text-decoration: none;
}

.footer-divider {
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer-bottom {
    font-size: 14px;
    color: #555;
}

.footer-bottom a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* SECTION */
.contact-section{
    background:#f7f8f5;
    padding:100px 0 90px;
    text-align:center;
    animation: fadeSection 1.1s ease;
}

/* TITLE */
.contact-title{
    font-size:48px;
    font-weight:700;
    color:#0a532e;
    margin-bottom:12px;
    letter-spacing:-0.5px;
    animation: fadeUp .8s ease forwards;
}

/* SUB */
.contact-subtitle{
    color:#555;
    font-size:17px;
    max-width:900px;
    margin:auto;
    line-height:1.7;
    opacity:0;
    animation: fadeUp .8s ease forwards;
    animation-delay:.2s;
}

/* CARD */
.contact-box{
    background:white;
    padding:38px 34px;
    border-radius:14px;
    border:1px solid #e7e7e7;
    text-align:left;
    font-size:15px;
    line-height:1.7;
    box-shadow:0 4px 25px rgba(0,0,0,0.05);
    transition:.35s ease;
    animation: slideCard .9s ease forwards;
}

/* CARD Hover */
.contact-box:hover{
    transform:translateY(-6px);
    box-shadow:0 8px 30px rgba(0,0,0,0.08);
}

/* SMALL ALERT */
.alert-box{
    background:#fff4ed;
    color:#b94801;
    padding:6px 15px;
    width:max-content;
    border-radius:6px;
    font-size:13px;
    margin-top:15px;
    border:1px solid #ffe8d8;
}

/* ANIMATIONS */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(18px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes slideCard{
    0%{
        opacity:0;
        transform:translateY(15px);
    }
    100%{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeSection{
    0%{
        background:#fff;
    }
    100%{
        background:#f7f8f5;
    }
}

/* RESPONSIVE */
@media(max-width:768px){
    .contact-title{ font-size:38px; }
    .contact-box{ padding:28px; }
}

/* added css */
/* ============================
   HERO SECTION
============================ */
.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

  /* fade zoom */
  animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
  color: white;

  /* fade */
  animation: fadeUp 1.2s ease forwards;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;

  /* sliding animation */
  animation: slideLeft 1.4s ease forwards;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);

  /* sliding animation */
  animation: slideRight 1.5s ease forwards;
}

.hero .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;

  animation: fadeScale 1.9s ease forwards;
}

.hero .btn-orange {
  background-color: #f97316;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero .btn-orange:hover {
  background-color: #ea580c;
}

.hero .btn-white {
  background-color: white;
  color: #166534;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero .btn-white:hover {
  background-color: #f3f4f6;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}


/* ===== ANIMATIONS ===== */
@keyframes fadeUp{
  from{opacity:0; transform:translateY(20px);}
  to{opacity:1; transform:none;}
}

@keyframes slideLeft{
  from{opacity:0; transform:translateX(-30px);}
  to{opacity:1; transform:none;}
}

@keyframes slideRight{
  from{opacity:0; transform:translateX(30px);}
  to{opacity:1; transform:none;}
}

@keyframes fadeScale{
  from{opacity:0; transform:scale(.95);}
  to{opacity:1; transform:scale(1);}
}

@keyframes heroZoom{
  from{transform:scale(1);}
  to{transform:scale(1.1);}
}

/* =======================
   NAV MENU ANIMATION
========================= */

.navbar-nav .nav-link{
  opacity:0;
  transform:translateY(10px);
  animation: menuSlide .7s ease forwards;
}

.navbar-nav .nav-link:nth-child(1){
  animation-delay:.2s;
}
.navbar-nav .nav-link:nth-child(2){
  animation-delay:.35s;
}
.navbar-nav .nav-link:nth-child(3){
  animation-delay:.45s;
}
.navbar-nav .nav-link:nth-child(4){
  animation-delay:.55s;
}
.navbar-nav .nav-link:nth-child(5){
  animation-delay:.65s;
}

@keyframes menuSlide{
  from{opacity:0; transform:translateY(15px);}
  to{opacity:1; transform:none;}
}
