

:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #222222;
  --heading-color: #222222;

  --footer-bg-color: #1D725C;
  --link-color: #eeefd7;
  --header-bg-color: #fcfcfcd0;
  --font-family: 'Candara', Arial, sans-serif;
  --nav-link-color: #141414;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffff;
}

html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
    
}
  
h1 {
    font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
    font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
    font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}
  
  section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2, h3 {
  color: var(--heading-color);
}


.content-area a {
  color: rgb(160, 14, 14);
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

  
  
.error_page {
  min-height: 70vh;
}


.footer{
  background: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding-top: clamp(1rem, 3vw, 2rem);
  padding-bottom: clamp(1.75rem, 2.5vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.footer a{
  color: var(--link-color);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .01em;

  transition: opacity .2s ease, text-decoration-color .2s ease;
}

.footer a:hover,
.footer a:focus-visible{
  opacity: .9;
}
.footer .social-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: rgb(12, 54, 4);
  background: var(--link-color);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.footer .social-icon:hover,
.footer .social-icon:focus-visible{
  transform: translateY(-3px);
  background: var(--link-color / 30%);
}

.footer .footer-divider{
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--footer-text-color) 40%,
    transparent
  );
  margin: 1.25rem 0;
}

.footer .small{
  font-style: italic;
  font-size: .95rem;
}

@media (max-width: 575.98px){
  .footer .social-icon{
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .footer .small{
    font-size: .9rem;
  }
}
  
.footer img {
        filter: brightness(0) invert(1);
      }

 .navbar {
  background-color: var(--header-bg-color) !important;
  
}
.hero-section h1{
    display: inline-block;
    padding: 18px 38px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255,255,255,0.28);

    box-shadow:
        0 8px 32px rgba(0,0,0,0.22),
        inset 0 1px 0 rgba(255,255,255,0.25);

    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0,0,0,0.45);

    position: relative;
    overflow: hidden;
}

.hero-section h1::before{
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.22),
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.18)
    );

    opacity: 0.9;
    pointer-events: none;
}
.hero-section {
  padding: 155px 0 90px 0;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

  .hero-section.with-bg {
  background-image: url('/images/city-growth-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0));
  opacity: 0.5;
  z-index: 1;
}

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

  .navbar-light .navbar-nav .nav-link {
    color: var(--nav-link-color, #141414) !important;
  }

  .navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
  /* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(in srgb, var(--header-bg-color) 65%, transparent);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}


.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
  
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}
  .dropdown.open .dropdown-menu {
  display: block;
}


@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}


.floating-rounded-navbar {
  background-color: var(--header-bg-color) !important;
  position: absolute !important;
  top: 15px !important;
  left: 7px !important;
  right: 7px !important;
  width: calc(100% - 11px) !important;
  z-index: 2000;
  border-radius: 21px;
  transition: all 0.3s ease;
}


@media (max-width: 1199.98px) {
  .floating-rounded-navbar .navbar-collapse {
    top: 85px !important;
  }
}

.navbar-brand {
  margin-right: 0 !important;
}
            

.contact-form{max-width:520px;margin:0 auto;padding:21px;background:#fff;border-radius:18px;border:1px solid rgba(0,0,0,.08);box-shadow:0 24px 48px rgba(0,0,0,.08)}.contact-form h2{font-weight:750;letter-spacing:-.02em}.contact-form .intro{margin-bottom:1.75rem;font-size:1rem;color:#475569}.field{margin-bottom:1.25rem}.field label{display:block;margin-bottom:.35rem;font-size:.9rem;font-weight:600;color:#334155}.field input,.field textarea{width:100%;padding:.85rem .95rem;border-radius:12px;border:1px solid rgba(0,0,0,.14);background:#f8fafc;font-size:.95rem;color:#0f172a;transition:border-color .2s ease,box-shadow .2s ease,background .2s ease}.field input::placeholder,.field textarea::placeholder{color:#94a3b8}.field input:focus,.field textarea:focus{outline:0;background:#fff;border-color:var(--link-color);box-shadow:0 0 0 4px rgba(220,38,38,.15)}.contact-form button{width:100%;margin-top:.5rem;padding:.9rem 1rem;border:0;border-radius:14px;background:var(--link-color);color:#fff;font-size:.95rem;font-weight:700;letter-spacing:-.01em;cursor:pointer;transition:transform .15s ease,box-shadow .2s ease,opacity .2s ease}.contact-form button:hover{transform:translateY(-1px);box-shadow:0 14px 30px var(--link-color, rgba(204, 145, 63, 0.25))}.contact-form .note{display:block;margin-top:1rem;font-size:.82rem;text-align:center;color:#64748b}


.growth-section {
  margin: 60px 0;;
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 193, 7, 0.18), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(26, 115, 232, 0.16), transparent 30%),
    linear-gradient(135deg, #f7fafc 0%, #eef4f7 45%, #f8fbf3 100%);
}

.growth-section::before,
.growth-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.growth-section::before {
  width: 360px;
  height: 360px;
  left: -140px;
  bottom: -120px;
  background: rgba(35, 132, 67, 0.12);
  animation: floatGlow 9s ease-in-out infinite;
}

.growth-section::after {
  width: 420px;
  height: 420px;
  right: -170px;
  top: -160px;
  background: rgba(20, 83, 136, 0.13);
  animation: floatGlow 11s ease-in-out infinite reverse;
}

.growth-section .container {
  position: relative;
  z-index: 2;
}

.growth-section h2 {
  margin-bottom: 20px;
  color: #0d1b2a;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.growth-section .section-intro {
  max-width: 1120px;
  margin: 0 auto;
  color: #1f2933;
  font-size: 1.05rem;
  line-height: 1.8;
}

.box-one {
  position: relative;
  height: 100%;
  padding: 54px 38px 38px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 83, 136, 0.13);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(13, 27, 42, 0.09);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.box-one::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.6), rgba(35, 132, 67, 0.35), rgba(20, 83, 136, 0.45));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.box-one:hover {
  transform: translateY(-10px);
  border-color: rgba(20, 83, 136, 0.25);
  box-shadow: 0 34px 90px rgba(13, 27, 42, 0.14);
}

.box-one:hover::before {
  opacity: 1;
}

.box-icon {
  position: absolute;
  top: -34px;
  left: 38px;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #145388, #238443);
  color: #ffffff;
  font-size: 2.1rem;
  box-shadow: 0 16px 34px rgba(20, 83, 136, 0.28);
  animation: iconPulse 3.5s ease-in-out infinite;
}

.box-icon::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  border: 1px solid rgba(255, 193, 7, 0.45);
  animation: ringPulse 3.5s ease-in-out infinite;
}

.box-one h3 {
  margin: 8px 0 20px;
  color: #102a43;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.3;
}

.box-one p {
  color: #1f2933;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.box-one p:last-child {
  margin-bottom: 0;
}

@keyframes floatGlow {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes ringPulse {
  0%, 100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.15;
    transform: scale(1.12);
  }
}

@media (max-width: 991px) {
  .growth-section {
    padding: 70px 0;
  }

  .box-one {
    margin-top: 28px;
  }
}


.fancy-section {
  position: relative;
  overflow: hidden;
  padding: 95px 5%;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 193, 7, 0.18), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(20, 83, 136, 0.18), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(35, 132, 67, 0.14), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, #eef5f1 52%, #f9fbf4 100%);
  text-align: center;
}

.fancy-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -220px;
  border-radius: 50%;
  background: rgba(20, 83, 136, 0.12);
  animation: fancyFloat 10s ease-in-out infinite;
}

.fancy-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  bottom: -180px;
  border-radius: 50%;
  background: rgba(255, 193, 7, 0.16);
  animation: fancyFloat 12s ease-in-out infinite reverse;
}

.fancy-section h2 {
  position: relative;
  z-index: 2;
  max-width: 1050px;
  margin: 0 auto 34px;
  color: #0d1b2a;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.fancy-section h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #145388, #238443, #ffc107);
  animation: lineGlow 3s ease-in-out infinite;
}

.fancy-section p {
  position: relative;
  z-index: 2;
  margin: 0 auto 22px;
  padding: 26px 32px;
  color: #1f2933;
  font-size: 1.04rem;
  line-height: 1.85;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 83, 136, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.07);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.fancy-section p::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 0;
  width: 5px;
  height: calc(100% - 48px);
  border-radius: 999px;
  background: linear-gradient(180deg, #145388, #238443, #ffc107);
}

.fancy-section p:hover {
  transform: translateY(-7px);
  border-color: rgba(35, 132, 67, 0.28);
  box-shadow: 0 28px 75px rgba(13, 27, 42, 0.12);
}

.fancy-section p:nth-of-type(1) {
  animation: cardFadeUp 0.8s ease both;
}

.fancy-section p:nth-of-type(2) {
  animation: cardFadeUp 0.8s ease 0.12s both;
}

.fancy-section p:nth-of-type(3) {
  animation: cardFadeUp 0.8s ease 0.24s both;
}

.fancy-section p:nth-of-type(4) {
  animation: cardFadeUp 0.8s ease 0.36s both;
}

@keyframes fancyFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(28px, -22px, 0) scale(1.08);
  }
}

@keyframes lineGlow {
  0%, 100% {
    opacity: 0.75;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.25);
  }
}

@keyframes cardFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .fancy-section {
    padding: 70px 6%;
  }

  .fancy-section p {
    padding: 24px 22px 24px 26px;
  }
}