
.modal-content {
    background: #ffffff;
}

.form-control {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.form-control:focus {
    border-color: #1b641f;
    box-shadow: 0 0 0 0.15rem rgba(27, 100, 31, 0.15);
}

.btn-success {
    background-color: #1b641f;
    border-color: #1b641f;
}
.gallery-section .filter-menu {
    list-style-type: none;
    padding: 0;
    margin: 40px auto;
    text-align: center;
    border-bottom: 2px solid #e5e5e5;
    max-width: 100%;
}
.gallery-section .filter-menu li {
    display: inline-block;
    font-weight: 500;
    margin: 0 10px 10px;
    cursor: pointer;
    color: #212121;
}
.feature-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light sweep animation */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
   
    transform: translateX(-120%);
}

.feature-card:hover::before {
    animation: sweep 0.7s ease forwards;
}

@keyframes sweep {
    to {
        transform: translateX(120%);
    }
}

/* Lift + depth */
.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

/* Icon animation */
.feature-card i {
    transition: transform 0.4s ease;
}

.feature-card:hover i {
    transform: scale(1.25) rotate(-6deg);
}

.invest-card {
  background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 30px;
    height: 100%;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #0c498b;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.invest-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(41,99,84,0.03), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.invest-card:hover::before {
    transform: translateX(100%);
}

.invest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #296354;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-box i {
    color: #fff;
    font-size: 26px;
}

.invest-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
}

.invest-card p {
    color: #6b7280;
    line-height: 1.6;
}

.infra-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #0c498b, #5fa8ff);
}

.infra-card {
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column; /* Stack icon, title, and text vertically */
  align-items: center;    /* Center horizontally */
  text-align: center;     /* Center text */
  justify-content: center; /* Center vertically if card has fixed height */
  padding: 30px;
  height: 100%;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  border-top: 4px solid #0c498b;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.infra-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(13,110,253,0.03),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.infra-card:hover::before {
  transform: translateX(100%);
}

.infra-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.infra-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #fff;
  font-size: 26px;
  transition: transform 0.3s ease;
}

.infra-card:hover .infra-icon {
  transform: scale(1.1);
}

.infra-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.infra-card p {
  color: #6c757d;
  line-height: 1.6;
}
.infra-section h2{
  position: relative;
  padding-bottom: 10px;
}
.why-invest-section h2 {
  position: relative;
  padding-bottom: 10px;
}
.project-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.project-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #0c498b;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      120deg,
      transparent 40%,
      rgba(13,110,253,0.05) 50%,
      transparent 60%
  );
}

.project-title {
  font-weight: 600;
  margin-bottom: 10px;
}

.project-desc {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 15px;
}

.learn-more {
  font-size: 0.85rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.3s;
}
.border-primary{
  border-color:#0c498b
}
.learn-more:hover {
  color: #0056b3;
}

.section-title h2::before {
    content: none !important
}
/* =====================================================
   IMAGE MODERNIZATION
===================================================== */
img {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

img:hover {
  transform: scale(1.015);
}

/* =====================================================
   SERVICES / BLOG CARD POLISH
===================================================== */
.single_blog {
  border-radius: 18px;
  overflow: hidden;
}

.single_blog img {
  border-radius: 0;
}

.single_blog:hover img {
  transform: scale(1.05);
}

/* =====================================================
   FUTURISTIC HEADING ACCENT
===================================================== */
.section-title h2,
.infra-section h2,
.why-invest-section h2 {
  position: relative;
}

.section-title h2::after,
.infra-section h2::after,
.why-invest-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(to right, #0c498b, #5fa8ff);
  border-radius: 5px;
}

