/* ============================================   IMPORTS & FONTS   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

/* ============================================   CSS VARIABLES   ============================================ */
:root {
  /* Typography */
  --font-sans: 'Urbanist', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  /* Colors */
  --text-color: #141414;
  --topbar-text: #222;
  --teal: #00848A;
  --orange: #FCB23A;
  --light-grey: #F0F0F0;
  --white: #F4F4FA;
  --muted: #6c6c6c;
  --topbar-border: #ddd;
  /* Layout */
  --card-radius: 12px;
}

/* ============================================   BASE STYLES   ============================================ */
html,
body {
  font-family: var(--font-sans);
  color: var(--text-color);
  background-color: var(--white);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
}

a {
  text-decoration: none;
}

/* ============================================   TOP NAVIGATION   ============================================ */
.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* border-top: 2px solid var(--topbar-border); */
  background: #fff;
  /* padding: 10px 0 18px 0; */
  padding: 15px 0 15px 0;
  /* added for smooth hide/show */
  transition: transform 280ms cubic-bezier(.2, .9, .2, 1), box-shadow 180ms ease, opacity 180ms ease;
  will-change: transform, opacity;
}

/* Hidden state: slide header up out of view */
.site-topbar.hidden {
  transform: translateY(calc(-100% - 8px));
  box-shadow: none;
  opacity: 0.98;
}

/* restore normal when visible */
.site-topbar:not(.hidden) {
  transform: translateY(0);
  opacity: 1;
}

/* menu links */
.top-menu .nav-link {
  color: var(--topbar-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.25rem 1.1rem;
  transition: color 0.15s ease, transform 0.12s ease;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.top-menu .nav-link:hover {
  color: #000;
  transform: translateY(-1px);
}

/* Floating menu button */
.floating-menu-btn {
  position: fixed;
  right: 30px;
  top: 40px;
  width: 100px;
  height: 40px;
  border-radius: 5px;
  background: linear-gradient(180deg, #02A49B 0%, #046E75 100%);
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  border: none;
  cursor: pointer;
  z-index: 9999;
  /* keep it in document flow (so transitions work), but hidden by default */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform .28s cubic-bezier(.2, .9, .2, 1), opacity .28s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Visible floating button */
.floating-menu-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  z-index:2;
}

/* Hover state */
.floating-menu-btn:hover {
  transform: scale(1.08);
}

/* Keyboard focus styles */
.floating-menu-btn:focus {
  outline: 3px solid rgba(0, 132, 138, 0.18);
  outline-offset: 4px;
  box-shadow: 0 6px 18px rgba(0, 132, 138, 0.18);
}

/* ============================================   Overlay Menu   ============================================ */
.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

/* background layer (photo + teal tint) */
.overlay-bg {
  position: absolute;
  inset: 0;
  background: var(--teal);
  background-image: url('img/menu-bg.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  mix-blend-mode: normal;
  filter: saturate(.9) contrast(.95);
  opacity: 1;
}

/* inner container */
.overlay-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  width: min(1200px, 92%);
  gap: 40px;
  align-items: start;
  z-index: 10060;
}

/* left nav — large stacked items */
.overlay-left {
  padding-left: 40px;
}

.overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.overlay-link {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
  cursor: pointer;
}

.overlay-link:hover,
.overlay-link:focus {
  color: var(--orange);
  transform: translateX(6px);
  outline: none;
}

/* Active state for overlay links */
.overlay-link.active {
  color: var(--orange);
}

/* center column (logo + sub links) */
.overlay-center {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 0;
  padding-left: 20px;
  min-width: 300px;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding-top: 50px;
  height: 100%;
}

/* When submenu is shown via JavaScript */
.overlay-center[style*="display: block"] {
  display: flex !important;
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.overlay-logo {
  font-weight: 800;
  color: #fff;
  font-size: 54px;
  letter-spacing: 2px;
}

.overlay-sublinks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
  width: 100%;
}

.menu-logo {
  z-index: 10061;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 200px;
}

.sub-link {
  color: rgba(255, 255, 255, 0.95);
  font-size: 24px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease, transform 0.15s ease;
}

.sub-link:hover,
.sub-link:focus {
  color: var(--orange);
  transform: translateX(5px);
}

/* close button top-right */
.overlay-close {
  position: fixed;
  right: 28px;
  top: 18px;
  background: transparent;
  border: none;
  color: var(--orange);
  font-size: 48px;
  font-weight: 700;
  z-index: 10070;
  cursor: pointer;
  transition: transform .18s ease;
  line-height: 1;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-close:hover {
  transform: scale(1.15) rotate(90deg);
}

/* open state */
.overlay-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* ============================================   MOBILE STYLES   ============================================ */
/* Tablet and below - hide top navigation, always show floating button */
@media (max-width: 900px) {
  /* Hide the top navigation bar completely on mobile */
  .site-topbar {
    display: none !important;
  }
  
  /* Always show floating button on mobile - override default hidden state */
  .floating-menu-btn {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateY(0) scale(1) !important;
    top: 20px;
    right: 20px;
    width: 90px;
    height: 38px;
    font-size: 18px;
  }
  
  /* Overlay menu adjustments for mobile */
  .overlay-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 28px;
    width: 100%;
  }
  
  .overlay-left {
    padding-left: 8px;
  }
  
  .overlay-link {
    font-size: clamp(24px, 6.6vw, 40px);
  }
  
  .overlay-center {
    padding-top: 30px;
    padding-left: 10px;
  }
  
  .menu-logo {
    max-width: 160px;
    top: 15px;
  }
  
  .overlay-close {
    right: 20px;
    top: 15px;
    font-size: 42px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .floating-menu-btn {
    width: 80px;
    height: 36px;
    font-size: 16px;
    right: 15px;
    top: 15px;
  }
  
  .overlay-link {
    font-size: clamp(20px, 7vw, 32px);
  }
  
  .sub-link {
    font-size: 20px;
  }
  
  .overlay-bg {
  position: absolute;
  inset: 0;
  background: var(--teal);
  background-image: url('img/menu-bg-mobile.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  mix-blend-mode: normal;
  filter: saturate(.9) contrast(.95);
  opacity: 1;
}


}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .overlay-menu,
  .site-topbar,
  .floating-menu-btn,
  .overlay-center {
    transition: none !important;
  }
}
/* ============================================   HERO SECTION   ============================================ */
#hero {
  overflow: visible;
  position: relative;
  border-bottom: 1px solid #ccc;
}

.hero-left {
  position: relative;
  min-height: 320px;
}

.hero1,
.hero-img {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 280px;
  max-width: 90%;
  border-radius: 18px;
  will-change: transform, border-radius;
  display: block;
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 20px;
}

.welcome-text {
  font-weight: 500;
  font-size: 16px;
  color: #505050;
}

/* ============================================   BOTTOM BAR & ICONS   ============================================ */
.bottom-bar i {
  font-size: 25px !important;
  bottom:5vh;
}

.bottom-bar{
  bottom:5vh;
}

.bottom-bar-desktop.bottom-bar{
bottom:0;	
}

.bord-bottom{
border-bottom:1px solid rgba(72, 98, 132, 0.16);	
}
.circle-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid #444;
  border-radius: 50%;
}

.bounce-arrow {
  display: inline-block;
  /* animation: arrowBounce 1.8s ease-in-out infinite; */
  animation: arrowBounce 0.8s ease-in-out infinite;
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(6px);
  }
}

.tab-navigation {
  display: inline-block;
}

.tab-buttons {
  display: inline-flex;
  border: 1px solid var(--text-color);
  border-radius: 50px;
  overflow: hidden;
  position: absolute;
  right: 0px;
  margin-top: -80px;
  padding: 2px;
}

.tab-btn {
  padding: 9px 15px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: var(--teal);
  background-color: transparent;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tab-btn.active {
  background-color: var(--teal);
  color: white;
  border-radius: 25px;
}

.tab-btn:hover:not(.active) {
  background-color: rgba(26, 139, 157, 0.1);
}

.tab-btn:not(:last-child) {
  border-radius: 25px;
}

/* Tab Content Styles */
.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ============================================   SECTION LABELS & HEADINGS   ============================================ */
.section-label {
  color: var(--teal);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
}

.portfolio-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 0.9;
  width: 100%;
  pointer-events: none;
}

.section-quote {
  color: var(--text-color);
  text-align: right;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
}

.video-section-title {
  color: var(--teal);
  font-size: 96px;
  font-weight: 900;
  line-height: 118%;
}

.portfolio-item {
  overflow: hidden;
}

.learn-more-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  position: absolute;
  bottom: 20px;
  left: 20px;
  opacity: 0;
  transform: scale(0.7);
  cursor: pointer;
  pointer-events: none;
}

.portfolio-item:hover .learn-more-circle {
  pointer-events: auto;
}

/* ============================================   LINKS & INTERACTIONS   ============================================ */
.open-link a {
  color: var(--teal);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.open-link.small a {
  font-size: 20px;
}

.open-link a::after {
  content: "\F4FE";
  font-family: "bootstrap-icons";
  display: inline-block;
  font-size: 30px;
  font-weight: 900;
  color: var(--orange);
  margin-left: 0;
  position: relative;
  top: -9px;
  transition: transform 0.3s ease;
}

.open-link.small a::after
 {
    content: "\F4FE";
    font-family: "bootstrap-icons";
    display: inline-block;
    font-size: 22px;
    font-weight: 900;
    color: var(--orange);
    margin-left: 0;
    position: relative;
    top: -4px;
    transition: transform 0.3s  ease;
}
.open-link a:hover::after {
  animation: bounceSpin 0.6s ease;
}

@keyframes bounceSpin {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  30% {
    transform: translateY(-6px) rotate(45deg) scale(1.2);
  }

  60% {
    transform: translateY(0) rotate(90deg) scale(1.05);
  }

  100% {
    transform: translateY(-2px) rotate(120deg) scale(1.1);
  }
}

/* Circular Button */
.circle-btn {
  width: 160px;
  height: 160px;
  background: rgba(20, 20, 20, 0.70);
  color: #fff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.3s ease;
  z-index: 10;
  bottom: calc(50px - 5rem);
  left: 50px;
}

.circle-btn:hover {
  background-color: #222;
  transform: scale(1.08) translateY(-5px);
}

/* === Video Section Background + Floating Plus Icon === */
#video-section {
  position: relative;
  overflow-x: hidden;
}

#video-section::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -40px;
  width: 160px;
  height: 160px;
  background-image: url('img/plus-bg.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  transform: translateY(-50%);
  z-index: 1;
  animation: floatPlus 4s ease-in-out infinite;
}

#about-us {
  position: relative;
  overflow-x: hidden;
}

#about-us::before {
  content: "";
  position: absolute;
  top: 60%;
  right: 35%;
  transform: translateX(60%);
  width: 160px;
  height: 160px;
  background-image: url('img/plus-bg.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 1;
  animation: floatPlus 4.5s ease-in-out infinite;
}

#why-us {
  position: relative;
  overflow-x: hidden;
}

#why-us::before {
  content: "";
  position: absolute;
  top: 33%;
  left: -25px;
  transform: translateX(60%);
  width: 160px;
  height: 160px;
  background-image: url('img/plus-bg.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 1;
  animation: floatPlus 4.5s ease-in-out infinite;
}

#portfolio-single {
  position: relative;
  overflow-x: hidden;
}

#portfolio-single::before {
  content: "";
  position: absolute;
  top: 13%;
  right: 27%;
  transform: translateX(60%);
  width: 160px;
  height: 160px;
  background-image: url('img/plus-bg.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 1;
  animation: floatPlus 4.5s ease-in-out infinite;
}

.portfolio-single-content {
  position: relative;
  overflow-x: hidden;
}

.portfolio-single-content::before {
  content: "";
  position: absolute;
  top: 31%;
  left: -2%;
  transform: translateX(60%);
  width: 160px;
  height: 160px;
  background-image: url('img/plus-bg.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 1;
  animation: floatPlus 4.5s ease-in-out infinite;
}

.portfolio-single-content::after {
  content: "";
  position: absolute;
  bottom: 0%;
  right: 45%;
  transform: translateX(60%);
  width: 160px;
  height: 160px;
  background-image: url('img/plus-bg.svg');
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: 1;
  animation: floatPlus 4.5s ease-in-out infinite;
}

@keyframes floatPlus {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }

  50% {
    transform: translateY(-55%) rotate(8deg);
  }

  100% {
    transform: translateY(-50%) rotate(0deg);
  }
}

/* ============================================   SECTIONS & UTILITIES   ============================================ */
.section-grey {
  background: var(--light-grey);
}

.rounded-img {
  border-radius: 18px;
}

/* ============================================   TEAM PROFILE CARDS   ============================================ */
.team-row {
  max-width: 1200px;
  margin: 0 auto;
}

.profile-card {
  border: none;
  border-radius: var(--card-radius);
  overflow: hidden;
  /* box-shadow: 0 6px 18px rgba(20, 20, 20, 0.06); */
  background: #fff;
  text-align: center;
   /* padding: 20px;  */
      padding: 0px; 
}

.profile-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: var(--card-radius);
  border-top-right-radius: var(--card-radius);
}

.profile-hero img.person {
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(10, 10, 10, 0.12);
}

.card-body {
  padding: 18px 20px 26px;
}

.profile-name {
  color: var(--teal);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px;
}

.profile-role {
  font-weight: 600;
  font-size: 14px;
  color: #222;
  margin-bottom: 6px;
}

.profile-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.profile-foot {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 10px;
}

/* ============================================   STATISTICS SECTION   ============================================ */
.stats-hero {
  background: var(--text-color);
  color: #fff;
  padding: 1.25rem 0.75rem;
}

.stat-cell {
  position: relative;
  padding: 0.5rem 1.5rem;
  min-width: 25%;
}

.stat-cell.divider-left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 42px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.stat-number {
  display: inline-block;
  color: var(--orange);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.stat-number .plus {
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 0.12rem;
}

.stat-label {
  color: var(--white);
  font-size: 28px;
  font-weight: 400;
}

/* ============================================   LOGO MARQUEE   ============================================ */
.marquee-container {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.marquee-content {
  display: flex;
  width: fit-content;
  position: relative;
}

.logo-row {
  display: flex;
  flex-shrink: 0;
  gap: 40px;
  padding: 0 20px;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 120px;
  height: 80px;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0);
  transition: filter 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0) brightness(1.1);
}

.review-card {
  border: 1px solid var(--text-color);
  border-radius: var(--card-radius);
  background: transparent;
}

.review-text {
  font-size: 15px;
  line-height: 1.6;
  color: #3C3C3C;
}

.review-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.customer-name {
  font-weight: 700;
  color: var(--teal);
  font-size: 15px;
}

.customer-position {
  font-size: 14px;
  color: var(--teal);
  opacity: 0.8;
}

.site-footer {
  background: var(--white);
  color: var(--text-color);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(72, 98, 132, 0.16);
}

.footer-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-links-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links-row li {
  margin: 0;
}

.footer-links-row a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links-row a:hover {
  color: var(--teal);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 26px;
  height: 26px; 
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  background: #006f75;
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(72, 98, 132, 0.16);
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.copyright {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 120px;
  height: 120px;
  background-color: #00848A;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  cursor: pointer;
  transition: transform .3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.circle-text {
  position: absolute;
  width: 95%;
  height: 95%;
  animation: rotateCircle 10s linear infinite;
}

.text {
  font-size: 16px;
  letter-spacing: 5px;
  fill: white;
  font-weight: 600;
  text-transform: uppercase;
}

@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.whatsapp-icon {
  position: absolute;
  font-size: 40px;
  color: #fff;
  z-index: 2;
}

.next-section {
  background: var(--text-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.scroll-hint {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.section-main-title {
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
}

.next-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.3s ease;
}

.next-page-btn:hover {
  color: white;
  transform: translateX(5px);
}

.circle-plus {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.next-page-btn:hover .circle-plus {
  border-color: var(--orange);
  transform: rotate(90deg);
}

.circle-plus i {
  font-size: 1.5rem;
  color: var(--orange);
}

.plus-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.deco-plus {
  width: 25px;
  height: 25px;
  opacity: 0.9;
  animation: plusFloat 3s ease-in-out infinite;
}

.deco-plus:nth-child(2) {
  animation-delay: 0.5s;
}

.deco-plus:nth-child(3) {
  animation-delay: 1s;
}

.deco-plus:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes plusFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ============================================   RESPONSIVE DESIGN   ============================================ */
@media (max-width: 768px) {
  .footer-links-row {
    flex-direction: column;
    gap: 1rem;
  }

  .social-icons {
    justify-content: start;
    margin-top: 1.5rem;
  }

  .section-main-title {
    font-size: 2.5rem;
  }

  .plus-grid {
    justify-content: space-around;
  }
}

@media (max-width: 576px) {
  .profile-hero {
    height: auto;
  }

  .profile-hero img.person {
    max-height: auto;
  }

  .video-section-title {
    font-size: 48px;
  }

  .section-quote {
    font-size: 28px;
  }

  .open-link {
    font-size: 28px;
  }
  
    .open-link.small {
    font-size: 18px;
  }
  
  .profile-name {
    
    font-size: 20px;
  
}
}

/* ============================================   SERVICES PAGE   ============================================ */
.inside-main-title {
  color: var(--teal);
  font-size: 96px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  /* 96px */
}

.top-inside {
    position: relative;
}

.top-inside::before {
    content: "";
    position: absolute;
    top: var(--rand-top);
    left: var(--rand-left);
    transform: translate(-50%, -50%);   /* <-- FIX */
    width: 160px;
    height: 160px;
    background-image: url('img/plus-bg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
}



.random-left,
.random-right {
    position: relative;
}

/* LEFT SVG ICON */
.random-left::before {
    content: "";
    position: absolute;
    left: -40px; /* adjust how far outside */
    top: var(--rand-left-top, 50%);
    transform: translateY(-50%);
   width: 160px;
    height: 160px;
    background-image: url('img/plus-bg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    pointer-events: none;
}

/* RIGHT SVG ICON */
.random-right::after {
    content: "";
    position: absolute;
    right: -40px;
    top: var(--rand-right-top, 50%);
    transform: translateY(-50%);
   width: 160px;
    height: 160px;
    background-image: url('img/plus-bg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    pointer-events: none;
}




#wheel-section {
  position: relative;
  height: 55vh;
  margin: 0; /* Remove any default margins */
  padding: 0;
}

#wheel-section .row-wheel {
  position: relative;
  margin: auto;
  width: 100%;
  height: 55vh;
  display: flex;
  justify-content: start;
  align-items: center;
  text-align: left;
  z-index: 1;
}

#column1 {
  position: relative;
  overflow: hidden;
    width: 100%;
    max-width: 100%;
  height: 55vh;
  z-index: 1;
}

#wheel_1 {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.box {
  position: relative;
  margin: auto;
  width: 100%;
  height: 100px;
  font-size: 42px;
  padding: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  opacity: 0.3;
  transition: opacity 0.3s ease;
  box-sizing: border-box;
}

.box.active {
  opacity: 1;
}

/* Remove spacing from sections above if needed */
#wheel-section + section {
  margin-top: 0;
  padding-top: 0;
}
 
 
 /*new auto scroll*/
 
     .scroll-container {
      height: 40vh;
      overflow: hidden;
      position: relative;
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
      mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 20%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    }

    .scroll-content {
      animation: autoScroll 20s linear infinite;
    }

    .scroll-item {
      position: relative;
      margin: auto;
      width: 100%;
      height: 70px;
      font-size: 42px;
      padding: 15px 20px;
      display: flex;
      justify-content: start;
      align-items: center;
      transition: opacity 0.3s ease;
      box-sizing: border-box;
      cursor: pointer;
    }

    .scroll-item:hover {
      opacity: 1 !important;
    }

    @keyframes autoScroll {
      0% {
        transform: translateY(0);
      }
      100% {
        transform: translateY(-50%);
      }
    }

    /* Pause on hover */
    .scroll-container:hover .scroll-content {
      /* animation-play-state: paused; */
    }
	
	 
 /*End auto scroll*/
.strategy-heading {
  color: var(--teal);
  font-size: 42px;
  font-weight: 700;
  line-height: 100%;
  /* 42px */
}

.with-line {
  position: relative;
  padding-bottom: 20px;
  /* space below paragraph */
}

.with-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 1px;
  background: var(--Border-Gray-300, #D1D5DB);
}

.custom-checklist li {
  position: relative;
  padding-left: 28px;
  /* space for icon */
  margin-bottom: 10px;
}

.custom-checklist li::before {
  content: "\F26A";
  /* bi-check-circle-fill */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 18px;
}

#page-reveal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00848A;
  /* TEAL */
  z-index: 9999;
  pointer-events: none;
  transform-origin: left center;
}

/*Portfolio page*/
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 220px);
  gap: 16px;
  padding: 20px;
}

.masonry-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

/* Row 1: 1(long), 2(short), 3(long), 4(short) */
.masonry-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

.masonry-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / 2;
}

.masonry-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1 / 3;
}

.masonry-item:nth-child(4) {
  grid-column: 4;
  grid-row: 1 / 2;
}

/* Row 2: 5(short), 6(long), 7(short), 8(long) */
.masonry-item:nth-child(5) {
  grid-column: 1;
  grid-row: 3 / 4;
}

.masonry-item:nth-child(6) {
  grid-column: 2;
  grid-row: 2 / 4;
}

.masonry-item:nth-child(7) {
  grid-column: 3;
  grid-row: 3 / 4;
}

.masonry-item:nth-child(8) {
  grid-column: 4;
  grid-row: 2 / 4;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 100px);
  }

  .masonry-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .masonry-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 2;
  }

  .masonry-item:nth-child(3) {
    grid-column: 1;
    grid-row: 3 / 5;
  }

  .masonry-item:nth-child(4) {
    grid-column: 2;
    grid-row: 2 / 3;
  }

  .masonry-item:nth-child(5) {
    grid-column: 1;
    grid-row: 5 / 6;
  }

  .masonry-item:nth-child(6) {
    grid-column: 2;
    grid-row: 3 / 5;
  }

  .masonry-item:nth-child(7) {
    grid-column: 1;
    grid-row: 6 / 7;
  }

  .masonry-item:nth-child(8) {
    grid-column: 2;
    grid-row: 5 / 7;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(10, 80px);
  }

  .masonry-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .masonry-item:nth-child(2) {
    grid-column: 1;
    grid-row: 3 / 4;
  }

  .masonry-item:nth-child(3) {
    grid-column: 1;
    grid-row: 4 / 6;
  }

  .masonry-item:nth-child(4) {
    grid-column: 1;
    grid-row: 6 / 7;
  }

  .masonry-item:nth-child(5) {
    grid-column: 1;
    grid-row: 7 / 8;
  }

  .masonry-item:nth-child(6) {
    grid-column: 1;
    grid-row: 8 / 10;
  }

  .masonry-item:nth-child(7) {
    grid-column: 1;
    grid-row: 10 / 11;
  }

  .masonry-item:nth-child(8) {
    grid-column: 1;
    grid-row: 11 / 13;
  }
}

/*Testi slide*/

.testi-apotrophe{
position: absolute;
    height: 150px;
    left: 25%;
}

.testi-white{
	border-radius:18px;
}


.testi-title{
color: var(--teal);
font-size: 42px;
font-style: normal;
font-weight: 600;
line-height: 118%; /* 49.56px */
height:150px;
margin-bottom: 90px;
}
.testimonial-card {
  background: white;
  padding: 30px 35px;
  border-radius: 0 0 20px 20px;   /* bottom rounded only */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  
  /* Shadow: left & right soft, bottom thicker, top none */
  box-shadow:
    0 6px 15px rgba(251, 177, 58, 0.35),  /* bottom warm shadow */
    0 2px 6px rgba(251, 177, 58, 0.25),   /* softer stacking */
    0 0 0 rgba(0,0,0,0);                  /* ensures top has no shadow */

  transition: all 0.3s ease;
    width: 90%;
  margin: 0 auto;
}

/* Equal spacing between all slides */
.testimonial-carousel .slick-slide {
  padding: 0 15px;
}

.testimonial-carousel .slick-list {
    overflow: visible !important;
}

.testimonial-carousel .slick-track {
    overflow: visible !important;
}



.testimonial-carousel .slick-slide .testimonial-card {
  transform: scale(0.7);
  opacity: 1;
  transition: all 0.3s ease;
}

/* Child 2 and 4 */
.testimonial-carousel .slick-center + .slick-slide .testimonial-card,
.testimonial-carousel .slick-slide:has(+ .slick-center) .testimonial-card {
  transform: scale(0.85);
  opacity: 1;
}

/* Child 3 center */
.testimonial-carousel .slick-center .testimonial-card {
  transform: scale(1.1);
  opacity: 1;
  z-index: 10;

 
}


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

.profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  border: 3px solid #e0e0e0;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-info {
  text-align: center;
  margin-bottom: 20px;
}

.customer-name{
color: var(--teal);
font-family: Urbanist;
font-size: 20px;
font-style: normal;
font-weight: 800;
line-height: 140%; /* 28px */
}

.customer-position{
color: var(--teal);
font-family: Urbanist;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 150%; /* 24px */
text-transform: capitalize;
}

.testimonial-text {
  text-align: center;
  color: #666;
  line-height: 1.7;
  font-size: 0.9rem;
}

/* Slick Carousel Custom Styles */
.slick-dots {
  bottom: -40px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: #ccc;
}

.slick-dots li.slick-active button:before {
  color: #ffa726;
}

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  z-index: 1;
}

.slick-prev {
  left: -50px;
}

.slick-next {
  right: -50px;
}
.slick-prev:before, .slick-next:before {
    font-size: 35px;
    color: #00848A;
}

@media (max-width: 768px) {
  .slick-prev {
    left: -25px;
  }

  .slick-next {
    right: -25px;
  }
}

/*Portfolio Single Content*/


.portfolio-single-content h3 {
color: var(--teal);

font-size: 48px;
font-style: normal;
font-weight: 800;
line-height: 44px; /* 91.667% */
}
.portfolio-single-content h4 {
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
}

/*FAQ Page*/
.faq-accordion .accordion-button {
  color: var(--teal);
  font-size: 18px;
  font-weight: 700;
  line-height: 118%;
  background-color: white;
  border: none;
  box-shadow: none !important;
  padding: 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #ECFEFF;
  color: var(--teal);
}

.faq-accordion .accordion-button::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url('../2026/img/faq-plus.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: auto;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url('../2026/img/faq-minus.svg');
}

.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-accordion .accordion-body {
  background-color: #ECFEFF;
  padding: 20px;
}

.faq-accordion .accordion-body ul {
  margin-bottom: 0;
}

.faq-accordion .accordion-body li {
  color: #333;
  margin-bottom: 8px;
}

/*Contact Us*/
.contact-icon-box {
  width: 50px;
  height: 50px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-box i {
  color: white;
  font-size: 24px;
}

.contact-item {
  margin-bottom: 1rem;
}

.contact-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-text {
  color: #6b7280;
  line-height: 1.6;
}

.contact-link {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-link:hover {
  color: #0e7490;
  text-decoration: underline;
}

.contact-form-wrapper {
  background: #f3f4f6;
  border-radius: 16px;
  padding: 2.5rem;
}

.contact-form-wrapper h2 {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-form-wrapper p {
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.form-control {
  border: none;
  border-radius: 12px;
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
  border-color: var(--teal);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  border-radius: 20px;
  background: linear-gradient(90deg, #02A49B 0%, #046E75 100%);
  color: white;
  border: none;
  padding: 0.875rem;
  width: 100%;
  font-weight: 600;
  cursor: pointer;
  /* smoother transitions */
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.45s ease;
}

.btn-submit:hover {
  transform: translateY(-4px);
  /* smoother + slightly bigger lift */
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
  /* soft shadow */
  background: linear-gradient(90deg, #03c2b9 0%, #04848d 100%);
  /* lighter gradient */
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 700px;
  border: 0;
}

/*Awards*/

.awards-card .card-title{
color: var(--teal);
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 1.2; /* 23.6px */
}

/** Career*/

.slick-gallery .slick-slide {
    opacity: 1;
    transition: all 0.3s ease;
      padding: 0 12px;

}

.slick-gallery .slick-list {
	 margin: 0 -12px;
    overflow: hidden; /* hides cropped edges clean */
}

.slick-gallery img {
    border-radius: 20px;
    display: block;
}

.career-slide .career-item {
    padding: 0 14px;
}

.career-slide .slick-list {
    overflow: hidden;
    margin: 0 -14px;
}

/* Card style */
.career-slide .career-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    border: none;
  border-radius: 0 0 20px 20px;   /* bottom rounded only */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  
  /* Shadow: left & right soft, bottom thicker, top none */
  box-shadow:
    0 6px 15px rgba(251, 177, 58, 0.35),  /* bottom warm shadow */
    0 2px 6px rgba(251, 177, 58, 0.25),   /* softer stacking */
    0 0 0 rgba(0,0,0,0);              
}

.career-slide .career-icon {
    width: 32px;
    margin-bottom: 15px;
}


.career-slide .slick-slide {
  padding: 0 15px;
}

.career-slide .slick-list {
    overflow: visible !important;
}

.career-slide .slick-track {
    overflow: visible !important;
}

/* center dots */
.career-slide .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 25px;
}

/* remove ugly default slick dot */
.career-slide .slick-dots li button:before {
    display: none !important;
}

/* spacing */
.career-slide .slick-dots li {
    margin: 0 6px;
}

/* inactive dot */
.career-slide .slick-dots li button {
    width: 10px;
    height: 10px;
    background-color: #C9EFEA;
    border-radius: 50%;
    padding: 0;
    transition: all 0.3s ease;
}

/* active dot = pill */
.career-slide .slick-dots li.slick-active button {
    width: 30px;
    height: 10px;
    background-color: #00848A;
    border-radius: 20px;
}


.career-item h5{
	font-size:24px;
	font-weight:900;
}
.career-item p{
	margin-left:90px;
}



.vacancy-card {
background: #F0F0F0;
border-radius: 12px;
border: none;
height: 100%;
}


.vacancy-card h6{
font-size:20px;
font-weight:800;
}


.vacancy-card .card-img {
  width: 100%;
  height: 200px;
  background: #F0F0F0;
  border-radius: 12px;
}

.vacancy-card .know-more-link {
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  color: #000;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.vacancy-card .know-more-link i {
  transition: transform 0.3s ease;
}

.vacancy-card .know-more-link:hover {
  color: var(--teal);
}

.vacancy-card .know-more-link:hover i {
  transform: translateX(4px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
}
.brand-logo-temp{
	    max-width: 650px;
	}
/* Mobile */
@media (max-width: 768px) {
	
	body {
	font-size:18px;
	}



    .inside-main-title {
        font-size: 48px;
        line-height: 105%;
    }
	
	 .whatsapp-float {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
    }
	
	.whatsapp-icon {
        font-size: 30px;
    } 
	
	.hero1, .hero-img {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 0 auto;
        width: 100%;
        max-width: 380px; /* optional */
    }

    .hero-left {
        min-height: auto; /* let content size naturally */
        display: flex;
        justify-content: center;
    }
	
	    .hero-right {
        text-align: center;          /* center all content */
        padding: 20px 10px;          /* nicer spacing */
    }

    .hero-right .brand-logo {
        max-width: 180px;            /* scale logo size on small screen */
        margin-left: auto;
        margin-right: auto;
    }
	
	
	.brand-logo-temp{
	    max-width: 100%;
	}
	
	
    .bottom-bar {
        text-align: center;
        bottom: 10px; /* lift up a bit on mobile */
    }

    .bottom-bar .d-flex {
        flex-direction: column;       /* stack into 2 rows */
        gap: 6px;
    }

    .bottom-bar .left,
    .bottom-bar .right {
        width: 100%;
        text-align: center;           /* center left + right */
    }

    .bottom-bar .center {
        order: -1;                    /* put SCROLL TO EXPLORE on top */
    }

    /* Resize arrow + text */
    .circle-arrow {
        font-size: 1.5rem !important;
    }

    .scroll-text {
        font-size: 0.9rem;
        display: inline-block;
        margin-top: 2px;
    }

    .welcome-text {
        font-size: 0.85rem;
        opacity: 0.9;
    }
    
      .circle-btn {
        width: 90px;
        height: 90px;
        font-size: 14px;
        left: 54px;
        transform: translateX(-50%);
        bottom: 6px;
        background: rgba(20, 20, 20, 0.65);
    }
    
    .open-link a {
    font-size: 25px;
    }
    
    .stat-number {
        font-size: 28px;
    
        
    }
    
    .stat-label {
    font-size: 20px;
    }
    
    .scroll-item {
   
    height: 60px;
    font-size: 20px;
    padding: 15px 20px;
    }
    
    .strategy-heading {
    
    font-size: 28px;
    
    }
    
    
    .contact-form-wrapper {

    padding: 1.5rem;
    }

    .inside-main-title {
        font-size: 48px;
       
        text-align: center;
    }
    
    .top-para{
        text-align:center;
    }
    
    .portfolio-single-content h3 {
 
    font-size: 28px;

    line-height: 1.2;
    }
    
	
	.bottom-bar-desktop.bottom-bar i{
		position: absolute;
    margin: 0px auto;
    left: calc(50% - 19px);
    margin-bottom: -82px;
	}
	
	.bottom-bar-desktop.bottom-bar{
		/* bottom:5vh; */
		bottom: calc( 5vh + 66px ) ;
	}
	
	.open-link a::after
	 {
	font-size: 20px;
	left: -4px;
	}
	
	
	.stat-number .plus {
    font-size: 0.7em;
    vertical-align: super;
    margin-left: -5px;
}

.site-footer{
	padding: 30px 0 30px;
}


.social-icon {
    width: 26px;
    height: 26px;

    font-size: 13px;

}

	 .profile-home .col-12 {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 20px;
    }
	
	.profile-card {
   
    padding: 0px;
}

.with-line {
    position: relative;
    padding-bottom: 0px;
}

.with-line::after {
   display:none;
}

    .portfolio-title {
        font-size: 24px;
    }


	
} 