/* Partners */
.partners-section { background: #F7F9FC; }
.partner-slide { text-align: center; }
.partner-card { background: transparent; border: none; padding: 0.5rem; }
.partner-icon {
  width: 276px;
  height: 235px;
  max-width: 100%;
  margin: 0 auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  color: #123456;
}
.partner-icon i { font-size: 3.5rem; }

@media (min-width: 992px) {
  .partner-icon i { font-size: 4rem; }
}
.partner-title { font-weight: 700; color: #123456; }
.project-frame {
  position: relative;
  border-radius: 14px;
  padding: 6px;
  background: linear-gradient(135deg, rgba(22,182,204,0.9), rgba(149,124,61,0.9));
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-frame:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.project-frame .project-img {
  border-radius: 10px;
  display: block;
  will-change: transform;
}

/* Animated border shimmer */
.project-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: borderSweep 3.5s linear infinite;
}

@keyframes borderSweep {
  0% { opacity: 0.25; }
  50% { opacity: 0.6; }
  100% { opacity: 0.25; }
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
/* === NAVIGATION === */
*{
  font-family: 'Benton-Book', Arial, sans-serif;
}
/* === NAVBAR BASE === */
.navbar {
  background-color: #123456;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
}

.navbar .navbar-brand { margin-right: 1rem; }

/* Navbar on scroll: shrink, add shadow */
.navbar.scrolled {
  background-color: rgba(18, 52, 86, 0.98);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* Logo */
.logo-img {
  max-height: 120px;
  width: auto;
}

.navbar.scrolled .logo-img {
  max-height: 80px;
}

/* Navbar Links */
.navbar-nav {
  gap: 1.5rem;
}

.nav-link {
  color: #ffffff;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease-in-out;
}

.nav-link:hover,
.nav-link:focus {
  color: #957C3D;
}

.nav-link.active,
.nav-link[aria-current="page"] {
  color: #957C3D;
}

@media (min-width: 992px) {
  .navbar-nav {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #009970;
    visibility: hidden;
    transition: 0.3s ease-in-out;
  }

  .nav-link:hover::before,
  .nav-link.active::before {
    width: 100%;
    visibility: visible;
  }
}

/* Desktop Call Button */
.call-btn {
  border: 1px solid #957C3D;
  color: #ffffff;
  font-weight: 600;
  padding: 6px 14px;
  margin:0px; /****addition***/
  border-radius: 5px;
  background-color: transparent;
}

.call-btn:hover {
  background-color: #6495ED;
  border-color: #16B6CC;
  color: #fff;
}

/* Mobile Phone Button */
.call-btn-mobile {
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid #957C3D;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
  background-color: transparent;
  text-decoration: none;
}

.call-btn-mobile:hover {
  background-color: #ffffff;
  color: #125063;
}

/* Navbar Toggler Icon Color */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23957C3D' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 991.98px) {
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    height: auto;
    position: relative;
    gap: 0;
  }

  .navbar-brand {
    order: 1;
    flex-shrink: 0;
  }

  .call-btn-mobile {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 10;
  }

  .navbar-toggler {
    order: 3;
    flex-shrink: 0;
    margin-left: auto;
    z-index: 1001;
  }

  .navbar-collapse {
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem 1.5rem;
    z-index: 999;
    border-radius: 0 0 0.5rem 0.5rem;
  }

  .navbar-collapse .nav-link {
    color: #957C3D;
    text-align: left;
    text-transform: uppercase;
    padding: 0.75rem 0;
    display: block;
  }

  .logo-img {
    max-height: 90px;
    transform: translate(-50%);/***addition***/
  }
}

/* Removed special 321-360px overrides per revert */

/* Removed ultra-small overrides per revert */

/* Hide mobile phone button on desktop */
@media (min-width: 992px) {
  .call-btn-mobile {
    display: none !important;
  }

  .navbar .call-btn { margin-left: 1rem; }
}


/* Utility Classes */
.transition {
  transition: all 0.3s ease-in-out;
}

.hover-shadow:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.shadow-sm {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1) !important;
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #001F3F; /* fallback color */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
  transform: scale(1);
  transform-origin: center center;
  animation: heroZoom 22s ease-in-out infinite alternate;
}

/* Content box for text */
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;   /* Controls how wide the text area gets */
  margin: 0 auto;
  padding: 1rem;
  text-align: center;
}

.hero-box {
  background: rgba(0, 0, 0, 0.40);
  border: 1px solid #16B6CC;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 680px;   /* Optional: to make text area even narrower */
  margin: 0 auto;
}

.hero-box h1 {
  font-family: 'Benton-Book', Arial, sans-serif;
  font-size: 2.5rem;
  color: #957C3D;
}

.hero-box p {
  color: #f1f1f1;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Button styling */
.hero-section .btn-primary {
  background-color: #16B6CC;
  border-color: #16B6CC;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-section .btn-primary.btn-lg {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(22,182,204,0.25);
}

.hero-section .btn-primary:hover {
  background-color: #0e8ca5;
  border-color: #0e8ca5;
}

/* Responsive font scaling */
@media (min-width: 768px) {
  .hero-box h1 {
    font-size: 3.25rem;
  }

  .hero-box p {
    font-size: 1.25rem;
  }
}

/* === GENERAL SECTION STYLES === */
/* === INFO SECTION === */
.info-section {
  background-color: #F7F9FC;
  padding: 2rem 1rem;
}

.full-width-section {
  width: 100vw;
  overflow-x: hidden;
  background-color: #F7F9FC;
  padding: 2rem 1rem; /* restore padding */
}

.full-width-section .row {
  margin-left: 0;
  margin-right: 0;
  gap: 0; /* eliminate internal row gap */
}

.info-box {
  background-color: transparent;
  border: none;
  border-radius: 0;
  transition: none;
  width: 100%;
  height: 100%;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-box:hover { box-shadow: none; }

.section-title {
  color: #123456;
  font-weight: 700;
  font-size: 1.8rem;
}

/* Accented gradient title option */
.section-title.accent {
  background: linear-gradient(135deg, #123456, #16B6CC);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.custom-checklist li {
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #223;
  margin-left: 0;
  list-style: none;
  position: relative;
  padding-left: 1.6rem;
}

.custom-checklist li::before {
  content: "\2714"; /* checkmark */
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #16B6CC;
  font-weight: 800;
}

.img-fluid {
  max-height: 420px;
  object-fit: cover;
  width: 100%;
  border: 1px solid #dee2e6;
  transition: transform 0.3s ease;
  height: 100%;
}

.img-fluid:hover {
  transform: scale(1.015);
}

/* Interactive project image effects */
.project-img:hover {
  transform: scale(1.03) rotateZ(0.6deg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  filter: saturate(1.05);
}

.object-cover {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border: 1px solid #dee2e6;
  transition: transform 0.3s ease;
}

.object-cover:hover {
  transform: scale(1.01);
}

.info-section h2 {
  color: #957C3D;
}

.info-section img {
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  height: 100%;
}

@media (max-width: 767.98px) {
  .info-section,
  .full-width-section {
    padding: 2rem 1rem;
  }

  .info-section .row,
  .full-width-section .row {
    margin-left: 0;
    margin-right: 0;
    gap: 1.25rem; /* ensure spacing between stacked cols */
  }

  .info-box {
    padding: 1.5rem 1rem;
  }

  .object-cover,
  .img-fluid {
    height: auto;
  }

  .info-section [class^="col-"],
  .full-width-section [class^="col-"] {
    margin-bottom: 1.5rem;
  }
}


/* === INFO SECTION ENDS === */
/****SERVICE SECTION STARTS****/
.services-section {
  background-color: #EFF6FB;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.services-section h2 {
  color: #957C3D;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.services-section .services-list {
  list-style: none;
  padding-left: 0;
  font-size: 1.05rem;
  color: #333;
}

/* New: Service cards grid */
.services-grid {
  margin-top: 0.25rem;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 1.25rem;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-color: #d6d6d6;
}

/* Rotate icon on hover */
.service-card:hover .service-icon i { transform: rotate(360deg); }

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #ffffff;
  background: linear-gradient(135deg, #16B6CC 0%, #0e8ca5 100%);
  box-shadow: 0 6px 14px rgba(22,182,204,0.25);
}

.service-icon i {
  font-size: 1.1rem;
  transition: transform 0.6s ease;
}

.service-title {
  font-weight: 700;
  color: #123456;
  margin-bottom: 0.25rem;
}

.service-text {
  color: #444;
  font-size: 0.975rem;
  line-height: 1.5;
}

.services-section .services-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
}

.services-section .services-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: #007FFF;
  font-size: 1rem;
  line-height: 1.4;
}

/* Style the image */
.services-section .services-img {
  max-height: 420px;
  object-fit: cover;
  width: 100%;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
}

/* Add spacing between image and list */
@media (min-width: 768px) {
  .services-section .services-img {
    margin-right: 2rem;
  }

  .services-section .services-list {
    padding-left: 1rem;
  }
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .services-section {
    padding: 2rem 1rem;
  }

  .services-section h2 {
    text-align: center;
    margin-bottom: 1.2rem;
  }

  .services-section .services-img {
    margin-bottom: 1.5rem;
  }

  .services-section .services-list {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  /* Center cards and icons on mobile */
  .service-card { text-align: center; }
  .service-card .service-icon { margin-left: auto; margin-right: auto; }
  .service-title { text-align: center; }
}


/***SERVICE SECTION ENDS***/

/* === PROJECTS SECTION === */
.projects-section {
  background-color: #123456;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.projects-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #957C3D;
}

.project-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.project-img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: 360px;
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}

.project-title {
  font-size: 1.1rem;
  color: #333;
  margin-top: 0.75rem;
  text-align: center;
}

.projects-cta {
  margin-top: 2rem;
}

.projects-cta .btn {
  border-radius: 10px;
  border: 1px solid #957C3D;
  color: #ffffff;
}

.projects-cta .btn:hover {
  background-color: #957C3D;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .projects-section {
    padding: 2rem 1rem;
  }

  .project-img {
    height: 280px;
  }

  .project-title {
    font-size: 1rem;
  }
}

/* === DIASPORA SECTION === */
.diaspora-section {
  background-color: #EFF7FF;
  padding: 3rem 1rem;
}

.diaspora-box {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  transition: none;
  height: 100%;
}


.diaspora-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.diaspora-box .section-title {
  color: #957C3D;
  font-weight: 700;
  font-size: 1.8rem;
}

.diaspora-box p {
  font-size: 1.05rem;
  color: #444;
  font-weight: 500;
}

.diaspora-checklist {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.diaspora-checklist li {
  position: relative;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  padding-left: 1.5rem;
  color: #333;
}
/* Centered variant spacing */
.text-center .diaspora-checklist { display: inline-block; text-align: left; }

.diaspora-checklist .checkmark {
  color: #28a745;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Image Styling */
.diaspora-section img {
  max-height: 440px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #dee2e6;
  transition: transform 0.3s ease;
}

/* removed accent/edge styles per request */

.diaspora-section img:hover {
  transform: scale(1.01);
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .diaspora-box {
    padding: 1.5rem 1rem;
    margin-top: 1rem;
  }

  .diaspora-section {
    padding: 2rem 1rem;
  }

  .diaspora-section .row {
    gap: 1.5rem;
  }

  .diaspora-box .section-title {
    font-size: 1.6rem;
    text-align: center;
  }

  .diaspora-box ul {
    padding-left: 0.5rem;
  }
}

/* Diamond Animation */
.diaspora-checklist .diamond {
  color: #007FFF;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.1rem;
  transition: transform 0.3s ease-in-out;
}

.diaspora-checklist li:hover .diamond {
  transform: scale(1.4) rotate(45deg);
}

/* === FOOTER SECTION === */
.footer-section {
  background-color: #123456;
  color: #fff;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-logo { height: 120px; width: 120px; object-fit: contain; }

@media (max-width: 767.98px) {
  .footer-brand { text-align: center; }
  .footer-logo { height: 120px; width: 120px; display: block; margin-left: auto; margin-right: auto; }
}

.footer-section h6 {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-section ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #007FFF;
}

/* distinct credit link */
.footer-credit {
  color: #16B6CC !important;
  text-decoration: underline;
  margin-left: 0.1rem;
}
.footer-credit:hover { color: #0e8ca5 !important; }

.footer-section .fa,
.footer-section .fab {
  color: #007FFF;
  margin-right: 6px;
}

.footer-section .row > div {
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-section .border-top {
  border-color: rgba(255,255,255,0.2) !important;
}

/* copyright layout */
.footer-section .copyright-line { margin-top: 0.4rem; }

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .footer-section .row > div {
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .footer-section .col.text-center {
    font-size: 0.85rem;
  }
}

/* === RESPONSIVE TOUCH AREAS === */
a, button {
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

/*=====ABOUT PAGE====*/
/* === CEO Section === */
.about-ceo-section {
  background-color: #F1F5FA;
  /**padding: 4rem 1rem;**/

}
.ceo-section{
  padding-top: 10rem;
}
.ceo-portrait {
  max-height: 400px;
  width: 100%;
  object-fit: cover;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}


.about-ceo-section .lead {
  color: #444;
}
.about-ceo-section .section-title, .about-demiros-section .section-title, .about-values-section h5{
  color:#957C3D;
}

/* === About Demiros === */
.about-demiros-section {
  background-color: #123456;
  padding: 4rem 1rem;
}

.about-demiros-section .lead {
  max-width: 800px;
  margin: auto;
  color: #ffffff;
}

/* === Mission, Vision, Core Values === */
.about-values-section {
  background-color: #F7F9FC;
  padding: 4rem 1rem;
}

.value-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  color: #007FFF;
  margin-bottom: 1rem;
}

/* Custom diamond bullet list */
.custom-diamond-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.custom-diamond-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.custom-diamond-list .diamond {
  color: #16B6CC;
  font-size: 0.75rem;
  margin-right: 10px;
}

/* Headings */
.section-title {
  color: #007FFF;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.5vw, 2.75rem);
  margin-bottom: 1.5rem;
}
/**Projecthtml styles**/
/* === PROJECTS SLIDER SECTION === */
.projects-slider-section h2{
  color:#957C3D;
}
.projects-slider-section {
  background-color: #F7F9FC;
}

.project-slide {
  text-align: center;
  padding: 2rem;
}

.project-slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.project-slide h5 {
  color: #007FFF;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.project-slide p {
  color: #444;
  font-size: 1rem;
}

.swiper {
  padding-bottom: 40px;
}

.swiper-slide {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
  background-color: transparent;
  border: none;
  width: 44px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.1rem;
  font-weight: 900;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

@media (max-width: 768px) {
  .project-slide img {
    height: 200px;
  }
  .project-slide h5 { text-align: center; }

  .swiper-button-next,
  .swiper-button-prev {
    width: 32px;
    height: 32px;
  }
}
/***** end of Project styles *****/
/**** Diaspora Page styling ****/
/* === DIASPORA SECTION === */

.diaspora-section {
  background-color: #F7F9FC;
}

.diaspora-section h2 {
  color: #957C3D;
  font-weight: 700;
  margin-bottom: 1rem;
}

.diaspora-list {
  list-style: none;
  padding-left: 0;
}

.diaspora-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  color: #333;
}

.diaspora-list li::before {
  content: "◆";
  color: #007FFF;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  animation: popIn 0.3s ease-in;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.diaspora-img {
  border-radius: 8px;
  max-height: 400px;
  object-fit: cover;
  width: 100%;
  border: 1px solid #dee2e6;
  transition: transform 0.3s ease-in-out;
}

.diaspora-img:hover {
  transform: scale(1.01);
}

/* Diaspora build process: neon cards */
.process-grid .process-card {
  position: relative;
  background-color: #ffffff;
  border-radius: 22px;
  padding: 1.5rem;
  border: 3px solid var(--accent, #16B6CC);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-grid .process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.process-card::before {
  /* subtle corner accent */
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 80px;
  height: 80px;
  border-top: 6px solid var(--accent, #16B6CC);
  border-left: 6px solid var(--accent, #16B6CC);
  border-top-left-radius: 24px;
  pointer-events: none;
  opacity: 0.65;
}

@media (max-width: 576.98px) {
  .process-card::before { display: none; }
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #fff;
  background: color-mix(in oklab, var(--accent, #16B6CC) 85%, #000 15%);
  box-shadow: 0 8px 18px color-mix(in oklab, var(--accent, #16B6CC) 35%, transparent);
}

.process-icon i { font-size: 1.25rem; }

.process-title { font-weight: 800; letter-spacing: 0.02em; color: #123456; }
.process-text { color: #444; }

/* accent variants */
.accent-blue { --accent: #16B6CC; }
.accent-pink { --accent: #ff2e83; }
.accent-lime { --accent: #8be42a; }
.accent-gold { --accent: #957C3D; }

/* Growth Factors social-style cards */
.gf-card {
  background: #ffffff;
  border: 1.5px solid #ced4da;
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-color: #adb5bd;
}

.gf-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f3f5;
  color: #123456;
  margin-bottom: 0.75rem;
}
.gf-icon i { font-size: 1.2rem; }

.gf-title {
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
  color: #123456;
}
.gf-text { color: #555; font-size: 0.975rem; }

.gf-btn {
  display: inline-block;
  margin-top: 0.75rem;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  text-decoration: none;
}
.gf-btn:hover { opacity: 0.9; }

/* removed KPI card styles */

/* folded-card styles removed */

@media (max-width: 767.98px) {
  .diaspora-section .row {
    flex-direction: column;
  }

  .diaspora-img {
    margin-bottom: 1.5rem;
  }
}
/****contact page***/
/* === CONTACT SECTION === */
/* === CONTACT SECTION === */
.contact-section {
  background-color: #F7F9FC;
}

.contact-section .section-title {
  color: #957C3D;
  font-size: 2rem;
  font-weight: 700;
}

/* Form styling */
.contact-form .form-control {
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form .form-control:focus {
  border-color: #007FFF;
  box-shadow: 0 0 0 0.2rem rgba(0, 127, 255, 0.1);
}

.contact-form .btn-primary {
  background-color: #007FFF;
  border-color: #007FFF;
  font-weight: 600;
}

.contact-form .btn-primary:hover {
  background-color: #005ec4;
  border-color: #005ec4;
}

/* Info box */
.contact-info-box {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: #444;
  width: 100%;
  max-width: 100%;
}

.contact-info-box i {
  color: #007FFF;
}

.contact-info-box p {
  margin-bottom: 0.75rem;
}

.contact-info-box hr {
  border-color: #ddd;
}

/* Gap between columns on desktop */
.row.gx-5 {
  row-gap: 2rem;
}

/* Responsive */
@media (max-width: 767.98px) {
  .contact-form,
  .contact-info-box {
    width: 100%;
  }

  .contact-section .section-title {
    text-align: center;
  }
}

/* Mobile centering tweaks */
@media (max-width: 767.98px) {
  /* Build process cards */
  .process-card { text-align: center; }
  .process-icon { margin-left: auto; margin-right: auto; }

  /* About page CEO section */
  .about-ceo-section .section-title,
  .about-ceo-section .lead { text-align: center; }
}
