
/* * {
  outline: 1px solid red;
}
 */

/* =====================================================
   GLOBAL (MERGED & CLEAN)
===================================================== */
/* ================= NAV ================= */
.navbar {
  background: #fff;
}

.navbar-brand {
  font-weight: 700;
  color: #000 !important;
}

.nav-link {
  color: #001F3F;
}

.nav-link:hover {
  color: #00674c;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #000;
  padding-top: 70px;
  margin: 0;
  overflow-x: hidden;
}

/* =====================================================
   SECTIONS
===================================================== */

section,
.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section,
  .section {
    padding: 60px 20px;
  }
}

.section-title {
  font-weight: 700;
  margin-bottom: 20px;
  color: #001F3F;
}

/* =====================================================
   HERO (UNCHANGED DESIGN)
===================================================== */

.about-hero {
  min-height: 60vh;
  background: url("addons/images/the team.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;

  border-radius: 15px;          /* minimal curve */
  overflow: hidden;             /* REQUIRED so image respects radius */
  margin: 0 20px;               /* optional: floating card feel */
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.about-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  color: #00674c;
  font-size: 5.5rem;
  font-weight: 700;
  font-style: bolder;
}

.hero-sub {
  color: #fff;
  font-size: 1.3rem;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 1.1rem; }
}



/* ================= MISSION & VISION - FAIL-SAFE VERSION ================= */

.mv-section {
  background: linear-gradient(135deg, #14b8a6, #306844);
  position: relative;
  overflow: hidden;
}

.mv-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0, 31, 63, 0.05);
  border-radius: 50%;
  top: -100px;
  left: -100px;
}
.mv-card {
  /* SOLID background ensures they are never invisible */
  background: #ffffff; 
  
  padding: 60px 45px;
  border-radius: 40px;
  height: 100%;
  position: relative;
  
  /* Solid shadow so the card has depth */
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  
  /* Remove the animation if it's causing the 'missing' issue */
  /* If you want animation, keep these, but ensure your scroll script is working */
  opacity: 2.;
  transform: translateY(40px);
  transition: all 0.6s ease;
}


.mv-card.show {
  opacity: 0.5;
  transform: translateY(0);
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Force the icon visibility */
.mv-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 25px;
  display: block;
}

.mv-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #001F3F;
}

.mv-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}


/* Core section */

.wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  padding: 0px 20px;
}

.core-values-section {
  padding: 5px 10px;
  background: #f9fafb;
  
}

/* Centered container */
.core-values-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  padding: 0px 10px;
}

/* Left vertical cards */
.values-left {
  flex: 0 0 200px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual card */
.value-card {
  padding: 15px 20px;
  border-radius: 12px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  opacity: 0;
  transform: translateX(-50px);
}

/* Active card */
.value-card.active {
  background: #00674c;
  color: #fff;
  transform: translateX(0);
}

/* Drop-in animation staggered */
.value-card:nth-child(1){ transition-delay: 0.1s; }
.value-card:nth-child(2){ transition-delay: 0.2s; }
.value-card:nth-child(3){ transition-delay: 0.3s; }
.value-card:nth-child(4){ transition-delay: 0.4s; }
.value-card:nth-child(5){ transition-delay: 0.5s; }
.value-card:nth-child(6){ transition-delay: 0.6s; }

/* Right panel */
.values-right {
  flex: 1;
}

/* Individual detail */
.value-detail {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.value-detail.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Image */
.value-img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  margin-bottom: 20px;
  object-fit: cover;
}

/* Text */
.values-right h3 {
  font-size: 1.8rem;
  color: #001F3F;
  margin-bottom: 15px;
}

.values-right p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

/* Responsive */
@media(max-width: 992px){
  .wrapper{
   flex-direction: column;
    align-items: center;
    padding: auto;
  }
  .core-values-container {
    flex-direction: column;
    align-items: center;
    padding: auto 10px;
  }
  
  .values-left {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .values-left .value-card {
    width: 140px;
    text-align: center;
  }

  .values-right {
    margin-left: 0;
    margin-top: 40px;
    text-align: center;
  }

  .value-img {
    max-width: 100%;
  }
}






/* =====================================================
   VALUE CARDS (UNCHANGED)
===================================================== 

.value-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border-left: 4px solid #306844;
  transition: 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
*/
/* =====================================================
   CEO SECTION
===================================================== */

.ceo-card {
  display: flex;
  gap: 30px;
  max-width: 800px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.ceo-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #001F3F;
}

/* =====================================================
   CTA BUTTONS (UNCHANGED DESIGN)
===================================================== */

.cta-section .btn,
.cta-button,
.cta-btn {
  display: inline-block;
  padding: 12px 40px;
  background: #00674c;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.cta-section .btn:hover,
.cta-button:hover,
.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  background: #fff;
  color: #00674c;
}

/* =====================================================
   SERVICE INTRO CARD (UNCHANGED)
===================================================== */

.service-intro-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px 30px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* =====================================================
   SERVICE PAGE – FORCE CATEGORY BUTTON DESIGN
===================================================== */

.category-btn {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #00674c !important;
  border-radius: 50px !important;
  padding: 12px 30px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-block !important;
  width: auto !important;
}

.category-btn:hover {
  background: #00674c !important;
  color: #fff !important;
  transform: scale(1.08);
}


/* Updated Carousel Mobile Styling */
@media (max-width: 768px) {
  #servicesCarousel {
    margin-top: 20px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
    /* This prevents the white gap by rounding the container itself */
    border-radius: 20px; 
    overflow: hidden;
    background: transparent !important; /* Removes the white background */
    height: 250px; /* Force the container to be the same height as images */
  }
  
  #servicesCarousel .carousel-inner,
  #servicesCarousel .carousel-item {
    height: 100%; /* Ensures the inner wrapper fills the 250px height */
  }
  
  #servicesCarousel .carousel-item img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
}

/* =====================================================
   HARDWARE PAGE CSS (CLEANED – NO DESIGN CHANGES)
===================================================== */

/* ================= GLOBAL ================= 
body {
  font-family: "Segoe UI", sans-serif;
  background: #fff;
  color: #000;
  padding: 60px;
}
*/

/* ================= HARDWARE HERO ================= */
/* Hardware page only */
body.ware-page {
  padding-top: 0 !important;
}

.hardware-hero {
  margin-top: 45px;   /* pushes content below sticky header */
  padding: 60px 20px 60px;
  text-align: center;
}

.hardware-hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
}

.hardware-hero p {
  max-width: 700px;
  margin: 15px auto 0;
  color: #444;
}

/* ================= CATEGORY NAV ================= */
.hardware-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 60px;
}

.hw-tab {
  background: transparent;
  border: 2px solid #00674c;
  padding: 10px 26px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hw-tab.active,
.hw-tab:hover {
  background: #00674c;
  color: #fff;
  border-color: #00674c;
}

/* ================= CONTENT ================= */
.hardware-content {
  max-width: 1100px;
  margin: auto;
}

.hw-panel {
  display: none;
  align-items: center;
  gap: 60px;
}

.hw-panel.active {
  display: flex;
}

.hw-image img {
  width: 480px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.hw-text h2 {
  font-size: 2rem;
  font-weight: 700;
}

.hw-text p {
  margin: 20px 0;
  color: #444;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 600px) {

  /* HERO */
  .hardware-hero {
    padding: 45px 18px 30px; /* clears fixed navbar */
  }

  .hardware-hero h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .hardware-hero p {
    font-size: 14px;
    max-width: 90%;
  }

  /* CATEGORY BUTTONS */
  .hardware-nav {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
    padding: 0 12px;
  }

  .hw-tab {
    padding: 8px 18px;
    font-size: 14px;
  }

  /* PRODUCT PANEL */
  .hw-panel {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  /* IMAGE */
  .hw-image img {
    width: 100%;
    max-width: 420px;
  }

  .carousel-fade {
    width: 100%;
    max-width: 320px;
    height: 210px;
    margin: auto;
  }

  /* TEXT */
  .hw-text h2 {
    font-size: 1.4rem;
  }

  .hw-text p {
    font-size: 14px;
    margin: 12px 0 18px;
  }

  /* CTA BUTTON */
  .cta-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* PAGE TITLE */
  .page-title {
    font-size: 1.5rem !important;
  }

  /* BACK BUTTON */
  .back {
    font-size: 14px;
    padding: 5px 10px;
  }

  .page-header-wrap {
    top: 40px;              /* slightly closer to navbar */
    padding: 8px 14px;
  }

}

/* ================= PANEL FADE ANIMATION ================= */
.hw-panel {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}

.hw-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ================= MINI FADE CAROUSEL ================= */
.carousel-fade {
  position: relative;
  width: 480px;
  height: 320px;
}

.carousel-fade .fade-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 1s ease;
}

.carousel-fade .fade-img.active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .carousel-fade {
    width: 100%;
    max-width: 420px;
    height: 260px;
  }
}


/* ================= PAGE HEADER ================= */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* ❌ remove margin-bottom */
  margin: 0;

  padding: 18px 24px;
  min-height: 72px;
  border-bottom: 1px solid #eee;
}

.page-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-top: 5px;
}

/* ================= STICKY PAGE HEADER ================= */
.page-header-wrap {
  position: sticky;
  top: 70px; /* below navbar */
  z-index: 20;
  background: #fff;
}




/* ================= BACK BUTTON ================= */
.back {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  margin-top: 0;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border: 2px solid #00674c;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.back:hover {
  background: #00674c;
  color: #fff;
  border-color:#00674c;
}

/* ================= PRODUCT CARD ================= */
.product-card {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 90px;
}

.product-left {
  width: 30%;
}

.product-right {
  width: 70%;
}

/* ================= CAROUSEL ================= */
.carousel {
  position: relative;
  width: 520px;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= CAROUSEL ARROWS ================= */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px 14px;
  font-size: 22px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.arrow.left {
  left: 12px;
}

.arrow.right {
  right: 12px;
}

.arrow:hover {
  background: #00674c;
}

/* ================= MORE CTA ================= */
.more-box {
  margin-top: 12px;
  text-align: right;
}

.more-box small {
  font-weight: 600;
}

.cta-small {
  display: inline-block;
  padding: 6px 16px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  border: 2px solid #00674c;
  border-radius: 30px;
}

.cta-small:hover {
  background: #00674c;
  color: #fff;
}

/* ================= FINAL CTA ================= */
/* ================= FINAL CTA CARD ================= */
/* ================= FINAL CTA CARD ================= */
.final-cta {
  padding: 80px 20px 60px; /* top | sides | bottom */
  margin: 0% !important;
}

.cta-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 40px;
  background: #fff;
  border-radius: 24px;
  border: 2px solid #eee;
}


.cta-card h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-card p {
  color: #444;
  margin-bottom: 25px;
}

/* CTA BUTTON (reuse your existing style) */
.cta-phone {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  background: #00674c;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(20,184,166,0.35);
}


/* =====================================================
   SOFTWARE PAGE CSS 
===================================================== */

/* =====================================================
   SOFTWARE CARD CSS (CLEANED – NO DESIGN CHANGES)
===================================================== */

/* ================= SOFTWARE CARD ================= */
/* ================= SOFTWARE PAGE ================= */

.software-container {
  max-width: 1100px;
}

/* Intro */
.software-intro h3 {
  font-size: 2rem;
  color: #000;
}

.software-intro p {
  max-width: 760px;
  font-size: 1.05rem;
}

/* Cards */
.software-card {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  position: relative;
}

/* Badge */
.solution-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #00674c;
  background: rgba(48, 104, 68, 0.1);
  padding: 6px 16px;
  border-radius: 999px;
}

.solution-badge.neutral {
  background: rgba(0,0,0,0.06);
  color: #000;
}

/* Powered text */
.powered {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
}

/* Offers list */
.offers-list {
  list-style: none;
  padding-left: 0;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
}

.offers-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 500;
  color: #000;
}

.offers-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #306844;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .offers-list {
    grid-template-columns: 1fr;
  }

  .software-card {
    padding: 28px;
  }
}

/* ================= ANIMATIONS ================= */
/* Base animation state */
.animate {
  opacity: 0;
  transform: translateX(0);
  transition: all 1s ease;
}

/* Slide from left */
.animate.left {
  transform: translateX(-40px);
}

/* Slide from right */
.animate.right {
  transform: translateX(40px);
}

/* When visible */
.animate.show {
  opacity: 1;
  transform: translateX(0);
}

/* ================= CTA BUTTON ================= */
.cta-button {
  display: inline-block;
  padding: 14px 36px;
  font-weight: 600;
  color: #ffffff;
  background: #00674c;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.9s ease, box-shadow 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  color: #000;
}

/* =====================================================
   SOFTWARE PAGE – CTA CENTER FIX
===================================================== */

.cta-section {
  text-align: center;
}

.cta-section h2,
.cta-section p,
.cta-section .cta-button {
  margin-left: auto;
  margin-right: auto;
}
/* =====================================================
   CTA – CONTINUOUS BOUNCE ANIMATION
===================================================== */

@keyframes cta-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.cta-section h2 {
  animation: cta-bounce 2.5s ease-in-out infinite;
}

/* @keyframes button-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.cta-section .cta-button {
  animation: button-bounce 2s ease-in-out infinite;
} */

/* =====================================================
   MAP
===================================================== */

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
}

/* =====================================================
   FOOTER (MOBILE SAFE)
===================================================== */

.site-footer {
  background:#00674c;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .site-footer {
    position: relative;
  }
}

/* =====================================================
   ANIMATIONS (UNCHANGED)
===================================================== */

.pull-up,
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.pull-up.show,
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   LOGO SAFETY
===================================================== */

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00674c;
}


/* =====================================================
   CONTACT PAGE – CLEAN RESTORE (NO DESIGN CHANGES)
===================================================== */


.contact-info h2,
.contact-form h2 {
  font-size: 1.6rem;
}
/* ================= HEADER ================= */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0px; /* accounts for fixed navbar */
}

.page-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
}

.page-subtitle {
  margin-top: 10px;
  color: #444;
  
}

/* ================= CONTACT SECTION ================= */
.cpage-title{
  margin: auto;
  font-size: 2.8rem;
  font-weight: 700;
  color: #000;
}
.contact-header {
  padding-top: 20px;
  padding-bottom: 40px;
}


.contact-section {
  background: #fff;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}


/* ================= CONTACT INFO ================= */
.contact-info h2,
.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #000;
}


.contact-info p {
  color: #000 !important;
  margin-bottom: 30px;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  margin-bottom: 20px;
  color: #000;
}

/* phone / email links (as before) */
.hyperlink {
  color: #00674c;
  font-weight: 600;
  text-decoration: none;
}

.hyperlink:hover {
  color: #068f6a;
}

/* ================= FORM / EXPERTS CARD ================= */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}

/* expert list */
.expert-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.expert-list li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 500;
  color: #000;
}

.expert-dot {
  width: 8px;
  height: 8px;
  background: #00674c;
  border-radius: 50%;
  margin-right: 12px;
}

/* ================= CTA BUTTONS ================= */
.cta-btn {
  display: inline-block;
  background: #00674c;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(20, 184, 166, 0.6);
}

/* outline CTA */
.cta-outline {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  border: 2px solid #00674c;
  color: #00674c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-outline:hover {
  background: #00674c;
  color: #fff;
}

/* ================= TRUSTED SECTION ================= */
.trusted-section {
  background: #f9f9f9;
  padding: 70px 20px;
  border-radius: 26px;
  margin: 80px auto;
  max-width: 1100px;
  position: relative;
  box-shadow:
    0 18px 40px rgba(0,0,0,0.08),
    0 6px 14px rgba(0,0,0,0.04);
}

.trusted-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 6px;
  background: #00674c;
  border-top-left-radius: 26px;
  border-bottom-right-radius: 26px;
}

.trusted-section h2 {
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.trusted-section p {
  font-size: 1.05rem;
  font-weight: 500;
  color: #000;
}

/* ================= MAP ================= */
.map-section {
  background: #fff;
  padding: 80px 0;
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
}

/* ================= FINAL CTA ================= */
.final-cta {
  padding: 80px 20px;
  margin: 100px 0;
}

.cta-card {
  background: #fff; /* white card */
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(0,0,0,.1), 0 8px 20px rgba(0,0,0,.05);
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1250px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.cta-text h2 {
  font-weight: 700;
  color: #000;
  font-size: 2rem;
}

.cta-socials .social {
  margin-right: 15px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.cta-socials .social:hover {
  color: #14b8a6;
}

.cta-image img {
  width: 220px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0,0,0,.12);
}

@media (max-width: 768px) {
  /* 1. Header & Grid Layout */
  .cpage-title {
    font-size: 2rem;
  }

  .contact-page .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  /* 2. Unified Block Styling (Info & Form) */
  .contact-info, 
  .contact-form {
    width: 100%;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures children stay centered */
  }

  /* 3. Get In Touch Details */
  .contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .contact-details li {
    text-align: center;
    margin-bottom: 25px; /* Spacing between phone, email, etc. */
  }

  /* 4. Experts In List */
  .expert-list {
    display: inline-block; 
    text-align: left; /* Keeps dots aligned with text */
    margin: 20px auto;
    padding: 0;
  }

  .expert-list li {
    justify-content: center; /* Centers the whole row in the container */
  }

/* 5. Buttons */
.contact-page .cta-btn {
  width: 100%;
  display: block;
}

/* Fix the Final CTA button from stretching on mobile */
.cta-text .cta-btn {
  width: max-content;
  max-width: 100%;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
}





/*========= Projects Page =========*/
.project-btn {
  background: #00674c !important; /* button color */
  color: #fff !important;
  border: 2px solid #00674c !important;
  border-radius: 50px !important;
  padding: 12px 30px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-block !important;
}
.project-btn:hover {
  background: #fff!important;
  color: #00674c  !important;
}

/* extras*/
/* ================= SOFTWARE PAGE BACKGROUND ================= */
.software-page {
  position: relative;
  min-height: 100vh;

  background:
    linear-gradient(
      rgba(255,255,255,0.3),
      rgba(255,255,255,0.3)
    ),
    url("addons/images/sw-bg2.avif") center / cover no-repeat;

  background-attachment: fixed;
}

/* ================= HARDWARE PAGE BACKGROUND ================= */
.hardware-page {
  position: relative;
  min-height: 100vh;

  background:
    linear-gradient(
      rgba(255,255,255,0.80),
      rgba(255,255,255,0.80)
    ),
    url("addons/images/hardware-bg.webp") center / cover no-repeat;

  background-attachment: fixed;
}




/*========FOOTER FORM===========*/
/* FOOTER CONTACT FORM 
.footer-form {
  max-width: 520px;
  margin: 0 ;
  background: #ffffff;
  padding: 8px 12px !important;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9);
}

.footer-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #001F3F;
  margin-bottom: 6px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #14b8a6;
  font-size: 0.95rem;
  margin-bottom: 16px;
  transition: all 0.25s ease;
  background: #fafafa;
}

.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: #306844; 
  background: #fff;
  
}

.footer-form textarea {
  resize: none;
}

.footer-form button {
  width: 100%;
  background: #14b8a6;
  color: #fff;
  padding: 13px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-form button:hover {
  background: #14b8a6;
  transform: translateY(-1px);
}

.footer-form button:active {
  transform: translateY(0);
}*/

/* FOOTER CONTACT SECTION */
.footer-contact {
  background: #f8fafc;
  padding: 60px 0 40px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT TEXT */
.footer-contact-text h3 {
  font-weight: 700;
  color: #001F3F;
  margin-bottom: 10px;
}

.footer-contact-text p {
  color: #555;
  max-width: 420px;
  line-height: 1.6;
}

/* FORM CARD */
.footer-form {
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* premium */
}

/* INPUTS */
.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 0.9rem;
  margin-bottom: 12px;
  background: #f9fafb;
}

.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: #14b8a6;
  background: #fff;
}

/* BUTTON */
.footer-form button {
  width: 100%;
  background: #00674c;
  color: #fff;
  padding: 11px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.8s;
}

.footer-form button:hover {
  filter: brightness(0.90);
  transition: 0.8s;
}

@media (max-width: 768px) {
  .footer-contact-grid {
    grid-template-columns: 1fr;
  }
}


/* Add this to ALL sections that should "pop" */

.mps-overview,
.mps-leasing,
.mps-workflow,
.mps-contact {
  position: relative;
  margin-top: -40px; /* pulls section up into previous one */
  border-radius: 15px;

  /* TOP SHADOW (key part) */
  box-shadow: 0 -20px 40px rgba(175, 174, 174, 0.35);

  z-index: 2;
}
/* ================= MPS HERO ================= */

.mps-hero {
  position: relative;
  height: 90vh;
  background: url("addons/images/mps-bg.avif") center/cover no-repeat;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.mps-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.mps-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.mps-text {
  max-width: 600px;
}

.mps-text h1 {
  font-size: 3.5rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  font-family: "Georgia", "Times New Roman", serif;
}

.mps-hero::after {
  content: "INTERSYNC GLOBAL";
  position: absolute;
  top: 25px;
  right: 30px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
  .mps-hero {
    height: 70vh;
  
  }

  .mps-content {
    justify-content: center;
    text-align: center;
  }

  .mps-text h1 {
    font-size: 2rem;
  }
}


/* ================= MPS OVERVIEW ================= */

.mps-overview{
  background:#dfe6df;
  padding:100px 0 40px 0;
}

.mps-overview-text h2{
  font-size:3rem;
  font-family: "Georgia", "Times New Roman", serif;
  margin-bottom:25px;
}

.mps-overview-text p{
  font-size:1rem;
  line-height:1.8;
  color:#333;
  max-width:500px;
}

.mps-diagram{
  max-width:480px;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25));
}

/* Mobile */

@media (max-width:768px){

  .mps-overview{
    padding:60px 20px;
    overflow-x: hidden; /* safety net */
  }

  .mps-overview-text{
    text-align:center;
    margin-bottom:40px;
  }

  .mps-overview-text h2{
    font-size:2rem;
  }
  
  .mps-diagram{
    width:100%;
    max-width:100%;
    height:auto;
    display:block;
    margin:0 auto;
  }

}

/* ================= LEASING SECTION ================= */

.mps-leasing{
background:#dfe6df;
padding:40px 0 100px 0;
}

.mps-card img{
border-radius:4px;
margin-bottom:15px;
width: 100%;
height: 200px;       /* Forces all images to the same height */
object-fit: contain; /* Ensures the printer is visible without being cropped */
/* background: #fff;    Optional: creates a clean white box if the image is small */
padding: 10px;       /* Gives the printers some breathing room */
}

.mps-card h5{
font-size:18px;
font-weight:600;
margin-top: auto;    /* Pushes text to start at the same line */
margin-bottom: 10px;
}

.mps-card p{
font-size:14px;
color:#555;
height: 100%;
display: flex;
flex-direction: column;
font-size: 14px;
line-height: 1.6;
}

.leasing-text {
  padding-top: 10px;
}

.leasing-text h2{
font-size:3rem;
font-family:"Georgia","Times New Roman",serif;
margin-bottom:20px;
}

.leasing-text p{
font-size:15px;
line-height:1.7;
color:#444;
margin-bottom:25px;
}

.leasing-btn{
background:#1e6b3a;
color:#fff;
padding:12px 25px;
border-radius:2px;
font-size:14px;
}

.leasing-btn:hover{
background:#15552d;
color:#fff;
}

@media (max-width:768px){

  .mps-leasing .row{
    display:flex;
    flex-direction:column;
  }

  .leasing-col{
    order:-1;
    margin-bottom:40px;
    text-align:center;
  }

}

/* ================= WORK FLOW ================= */

.mps-workflow{
background:#dfe6df;
padding:80px 0 120px 0;
}

.workflow-title{
font-size:3rem;
font-family:"Georgia","Times New Roman",serif;
margin-bottom:40px;
}

.workflow-card {
  background: transparent; /* Ensures no white box shows behind content */
  height: 100%;
}

.workflow-card img {
  width: 100%;
  /* Set a fixed height for all images */
  height: 220px; 
  /* 'cover' crops the image to fill the box perfectly without stretching */
  object-fit: cover; 
  /* 'center' ensures the most important part of the photo stays visible */
  object-position: center; 
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Soft shadow for a modern look */
}

.workflow-card h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #001F3F; /* Matches your brand navy */
}

.workflow-card p{
font-size:14px;
color:#444;
line-height:1.7;
max-width:330px;
}

/* mobile */

@media(max-width:768px){

.workflow-title{
font-size:2rem;
text-align:center;
}

.workflow-card{
text-align:center;
}

.workflow-card p{
max-width:100%;
}

.workflow-card img {
    height: 200px; /* Slightly shorter on mobile to save screen space */
    width: 90%;    /* Adds a tiny bit of breathing room on the sides */
    margin: 0 auto 20px auto;
  }
  
  .workflow-card {
    margin-bottom: 40px; /* Space between the cards when stacked */
  }

}

/* ================= MPS CONTACT ================= */

.mps-contact {
  position: relative;
  background: url("addons/images/mps-contact.png") center/cover no-repeat;
  padding:80px 0 120px 0;
  width: 100%;
  margin: 0; 
  overflow: hidden;
  border-radius: 0 !important;
}

/* Dark overlay */
.mps-contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/* Content */
.mps-contact-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* Title */
.contact-title {
  font-size: 3rem;
  font-family: "Georgia", "Times New Roman", serif;
  margin-bottom: 60px;
  line-height: 1.2;
}

/* Info section */
.contact-info h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-info p {
  font-size: 0.9rem;
  color: #ddd;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {

  /* Keep heading nice */
  .contact-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 25px;
  }

  /* 🔥 FORCE HORIZONTAL LAYOUT */
  .contact-info {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    text-align: center;
  }

  .contact-info .col-md-4 {
    flex: 1;
    margin-bottom: 0; /* remove vertical stacking */
  }

  /* Make text smaller so it fits */
  .contact-info h6 {
    font-size: 0.75rem;
    margin-bottom: 5px;
  }

  .contact-info p {
    font-size: 0.7rem;
    line-height: 1.4;
  }

}


/* ================= SERVICE CENTER HERO ================= */

/* ================= SERVICE CENTER HERO ================= */

.service-hero{
  position:relative;
  height:90vh;
  background:url("addons/images/sc.png") center/cover no-repeat;
  display:flex;
  align-items:center;

  /* ✅ FIXES */
  margin:0;
  border-radius:0;
  box-shadow:none;
  overflow:hidden;
  padding-bottom: 0 !important;

  background-position: center;
  transition: background-position 6s ease;
}
.service-hero:hover {
  background-position: center top;
}

.service-overlay{
position:absolute;
inset:0;
background:rgba(0,0,0,0.45);
}

.service-content{
position:relative;
z-index:2;
}

.service-text{
max-width:650px;
color:white;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFade 1s ease forwards;
  animation-delay: 0.3s;
}
@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-text h1{
font-size:3.5rem;
font-weight:600;
line-height:1.2;
margin-bottom:20px;
}

.service-text p{
font-size:1.2rem;
margin-bottom:30px;
color:#eaeaea;
}

.service-btn{
background:#2f7d4f;
color:white;
padding:14px 30px;
font-weight:600;
border-radius:3px;
}

.service-btn:hover{
background:#25633f;
color:white;
}


/* mobile */

@media(max-width:768px){

  .service-hero{
    height:70vh;
    margin:0; /* ✅ remove gap */
  }

  .service-text h1{
    font-size:2rem;
  }

  .service-text p{
    font-size:1rem;
  }

}


/* ================= SERVICE INFO ================= */

.service-info{
margin-top:0;
padding-top: 0 !important;
padding-bottom: 0 !important;
padding-left: 0 !important;
padding-right: 0 !important;
}

.service-image{
  background:url("addons/images/s-c.png") center/cover no-repeat;
  height:100%;
}
.service-info .row{
  min-height:600px;
}

.service-info-text{
background:#3f8b5b;
display:flex;
align-items:center;
}

.service-info-content{
max-width:520px;
margin:auto;
color:white;
}

.service-info-content h2{
font-size:2.8rem;
font-weight:600;
margin-bottom:20px;
}

.service-info-content h5{
color:#000;
font-weight:600;
margin-bottom:25px;
}

.service-info-content p{
font-size:1rem;
line-height:1.8;
color:#e8e8e8;
}


/* MOBILE */

@media(max-width:768px){

.service-info {
padding-left: 0 !important;
padding-right: 0 !important;
}

.service-image{
height:350px;
width:100%;
}
.service-info-text{
width:100%;
}

.service-info .row{
min-height:auto; /* 🔥 reset for mobile */
}


.service-info-content{
padding:40px 30px;
text-align:center;
}

.service-info-content h2{
font-size:2rem;
}

}

/* ================= SERVICE DETAILS ================= */

.service-details{
background:#f3f3f3;
padding:100px 0 0 0;
}

.service-details-title{
font-size:3rem;
font-weight:700;
margin-bottom:15px;
}

.service-details-subtitle{
color:#3f8b5b;
font-weight:600;
margin-bottom:30px;
}

.service-details p{
font-size:1rem;
line-height:1.8;
color:#333;
max-width:520px;
}

.service-bottom-bar{
height:80px;
background:#3f8b5b;
margin-top:0px;
padding-left: 0 !important;
padding-right: 0 !important;
}


/* MOBILE */

@media(max-width:768px){

.service-bottom-bar {
height: 80px;
background: #3f8b5b;
margin-top: 60px;
margin-left: 0;   /* Changed from -25px */
margin-right: 0;  /* Changed from -25px */
}

.service-details-title{
font-size:2rem;
}

.service-details p{
max-width:100%;
}
.service-bottom-bar{
padding-left: 0 !important;
padding-right: 0 !important;
}

}
/* ;================= WHY US ================= */

.why-us {
  background: #f3f3f3;
  padding: 40px 0 0 0 !important;
  padding-bottom: 0 !important;
}

.why-title {
  font-size: 3rem;
  font-weight: 700;
}

/* Cards */
.why-card {
  background: #e9e9e9;
  padding: 60px 30px;
  border-radius: 4px;
  transition: 0.3s ease;
  opacity: 3;
  transform: translateY(5px);
}
/* Hover enhancement */
.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Icon animation */
.why-card:hover .why-icon {
  transform: scale(1.15) rotate(3deg);
  transition: 0.4s ease;
}
/* Icon */
.why-icon {
  width: 70px;
  margin-bottom: 25px;
  opacity: 0.6;
}

/* Text */
.why-card h6 {
  color: #3f8b5b;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}

/* ================= SERVICE CTA ================= */

.service-cta {
  width: 100%;
  padding-top: 0 !important;
}

/* LEFT SIDE */
.service-cta-left {
  background: #3f8b5b;
  color: #e8f2ec;
  display: flex;
  align-items: center;
  min-height: 500px;
}

.cta-content {
  padding: 80px;
  max-width: 600px;
}

/* Top label */
.cta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  font-weight: 600;
  letter-spacing: 1px;
}

.cta-icon {
  width: 30px;
}

/* Main title */
.cta-content h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Text */
.cta-content p {
  font-size: 1rem;
  line-height: 1.7;
}

/* Bottom text */
.cta-bottom {
  margin-top: 50px;
  font-size: 1.4rem;
}

/* Add this to your CSS */
.email-text {
  word-wrap: break-word;
  word-break: break-all; /* Forces the link to wrap if it exceeds container width */
  overflow-wrap: break-word;
}

/* RIGHT SIDE */
.service-cta-right {
  background: #e9e9e9;
}

@media (max-width: 768px) {

  .service-cta {
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }


  .service-cta-left {
    min-height: auto;
  }


  .cta-content {
    padding: 40px 20px;   /* reduce padding */
    max-width: 100%;      /* 🔥 allow it to shrink properly */
    box-sizing: border-box; /* ensures padding stays inside */
  }



  .cta-content h2 {
    font-size: 2.2rem;
  }

  .cta-top {
    justify-content: center;
  }

  .cta-bottom {
    font-size: 1.1rem;
  }

  .cta-content {
    padding: 40px 20px;
    text-align: left; /* Optional: keeps text aligned left like your screenshot */
  }
  
  /* Centers the 'Service Center' icon header on mobile if you prefer */
  .cta-top {
    justify-content: flex-start; 
  }

}



/* extras */
.hyperlink-white{
  color: #ffffff;
}


/* =====================================================
   CONTACT OUR TEAM SECTION
===================================================== */

.team-contact-section {
  background: #ffffff;
  padding: 90px 0 70px;
}

/* MAIN WRAPPER */
.team-contact-wrapper {
  background: #ffffff;
  border-radius: 28px;
  padding: 55px;
  box-shadow:
    0 20px 45px rgba(0,0,0,0.06),
    0 8px 20px rgba(0,0,0,0.03);

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;

  position: relative;
  overflow: hidden;
}

/* subtle accent */
.team-contact-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 120px;
  height: 6px;

  background: linear-gradient(90deg, #00674c, #00674c);

  border-top-left-radius: 28px;
  border-bottom-right-radius: 18px;
}

/* ================= LEFT CONTENT ================= */

.contact-tag {
  display: inline-block;
  background: rgba(20,184,166,0.12);
  color: #00674c;

  padding: 8px 16px;
  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 22px;
}

.team-contact-info h2 {
  font-size: 2.7rem;
  font-weight: 700;
  color: #000;

  margin-bottom: 20px;
}

.team-contact-info p {
  color: #555;
  line-height: 1.8;
  font-size: 1rem;

  margin-bottom: 32px;
}

/* bullet points */

.contact-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 12px;

  font-weight: 600;
  color: #111;
}

.point-item i {
  color: #14b8a6;
  font-size: 1.05rem;
}

/* ================= RIGHT CARDS ================= */

.team-contact-actions {
  display: grid;
  gap: 24px;
}

.action-card {
  background: #ffffff;

  border: 1px solid #f1f1f1;
  border-radius: 24px;

  padding: 34px;

  box-shadow: 0 10px 28px rgba(0,0,0,0.05);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.action-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 22px 45px rgba(0,0,0,0.08),
    0 8px 18px rgba(0,0,0,0.04);
}

/* ICONS */

.action-icon {
  width: 72px;
  height: 72px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 30px;

  margin-bottom: 24px;
}

.support-icon {
  background: linear-gradient(135deg, #14b8a6, #00674c);
}

.consultation-icon {
  background: linear-gradient(135deg, #00c6a2, #14b8a6);
}

/* CARD TEXT */

.action-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;

  margin-bottom: 14px;
}

.action-card p {
  color: #666;
  line-height: 1.7;

  margin-bottom: 28px;
}

/* ================= BUTTONS ================= */

.action-btn,
.submit-consultation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;

  padding: 14px 26px;

  border: none;
  border-radius: 14px;

  background: linear-gradient(135deg, #00674c, #00674c);

  color: #fff;
  text-decoration: none;

  font-weight: 600;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
}

.action-btn:hover,
.submit-consultation-btn:hover {
  transform: translateY(-3px);

  box-shadow: 0 14px 28px rgba(20,184,166,0.28);

  color: #fff;
}

/* ================= MODAL ================= */

.consultation-modal {
  border: none;
  border-radius: 26px;

  padding: 10px;
}

.consultation-modal .modal-title {
  font-weight: 700;
  color: #000;
}

/* form fields */

.consultation-modal .form-control,
.consultation-modal .form-select {
  height: 56px;

  border-radius: 14px;

  border: 1px solid #e5e7eb;

  padding-left: 16px;

  font-size: 0.95rem;

  transition: all 0.3s ease;
}

.consultation-modal .form-control:focus,
.consultation-modal .form-select:focus {
  border-color: #14b8a6;

  box-shadow:
    0 0 0 4px rgba(20,184,166,0.12);

  outline: none;
}

/* submit */

.submit-consultation-btn {
  width: 100%;
  height: 56px;

  border-radius: 16px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

  .team-contact-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 32px;
  }

  .team-contact-info h2 {
    font-size: 2.2rem;
  }

}

@media (max-width: 768px) {

  .team-contact-section {
    padding: 70px 0 50px;
  }

  .team-contact-wrapper {
    padding: 32px 22px;
    border-radius: 24px;
    gap: 35px;
  }

  .team-contact-info {
    text-align: center;
  }

  .contact-points {
    align-items: center;
  }

  .team-contact-info h2 {
    font-size: 2rem;
  }

  .action-card {
    padding: 28px;
  }

  .action-btn,
  .submit-consultation-btn {
    width: 100%;
  }

}

@media (max-width: 576px) {

  .team-contact-info h2 {
    font-size: 1.7rem;
  }

  .action-icon {
    width: 64px;
    height: 64px;

    font-size: 26px;
  }

  .action-card h4 {
    font-size: 1.2rem;
  }

}


/*about extra*/
/* =========================
   COMPANY SNAPSHOT
========================= */

.company-snapshot{
  background:#fff;
}

.snapshot-subtext{
  max-width:650px;
  margin:auto;
}

.snapshot-card{
  background:#fff;
  border-radius:20px;
  padding:40px 25px;
  text-align:center;

  position:relative;

  border:1px solid rgba(0,0,0,0.06);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

  transition:all .3s ease;
}

/* Green accent */
.snapshot-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;

  width:100%;
  height:4px;

  background:#306844;

  border-radius:20px 20px 0 0;
}

.snapshot-card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.10);
}

.snapshot-card h2{
  font-size:3rem;
  font-weight:800;
  color:#306844;
  margin-bottom:10px;
}

.snapshot-card p{
  margin:0;
  color:#666;
  font-weight:500;
}

.snapshot-item{
  text-align:center;
  flex:0 0 auto;
  transition: transform .3s ease;
}

.snapshot-item:hover{
  transform: translateY(-4px);
}

.snapshot-number{
    font-size: 2.4rem;
    font-weight: 700;
    color:#306844;
}

.snapshot-label{
    font-size:0.95rem;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#666;
}

.snapshot-text{
    font-size:0.9rem;
    color:#777;
}

.snapshot-strip{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
    max-width:700px;
    margin:0 auto;
}

.snapshot-divider{
    width:1px;
    height:90px;
    background:#e5e5e5;
}

@media (max-width:768px){

    .snapshot-strip{
        flex-direction:column;
        gap:30px;
    }

    .snapshot-divider{
        width:80px;
        height:1px;
    }
}


/* sc extra*/
/* ===================================
   GO TO SERVICE PARTNER
=================================== */

.go-to-section{
  padding:100px 0;
  background:#fff;
}

.go-to-left h2{
  font-size:2.2rem;
  font-weight:700;
  margin-bottom:20px;
  color:#001F3F;
}

.lead-text{
  color:#555;
  line-height:1.8;
  margin-bottom:25px;
}

.go-to-list{
  list-style:none;
  padding:0;
  margin:0;
}

.go-to-list li{
  position:relative;
  padding-left:30px;
  margin-bottom:15px;
  font-weight:500;
}

.go-to-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#306844;
  font-weight:700;
}

/* GRAPH CARD */

.graph-card{
  background:#fff;
  border-radius:24px;
  padding:35px;
  text-align:center;

  border:1px solid rgba(0,0,0,0.06);

  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);

  transition:all .4s ease;
}

.graph-card:hover{
  transform:translateY(-8px);
}

.graph-title{
  display:block;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#777;
  margin-bottom:20px;
}

.graph-svg{
  width:100%;
  max-width:320px;
  height:auto;
}

/* GRAPH LINE */

.graph-line{
  fill:none;
  stroke:#306844;
  stroke-width:5;

  stroke-dasharray:500;
  stroke-dashoffset:500;

  animation:drawGraph 2s ease forwards;
}

.graph-svg circle{
  fill:#306844;
}

@keyframes drawGraph{
  to{
    stroke-dashoffset:0;
  }
}

.graph-number{
  font-size:3rem;
  font-weight:700;
  color:#306844;
  margin-top:10px;
}

.graph-card small{
  color:#777;
  font-size:.9rem;
}

/* MOBILE */

@media(max-width:768px){

  .go-to-left{
    text-align:center;
  }

  .go-to-list li{
    text-align:left;
  }

  .graph-number{
    font-size:2.4rem;
  }

}