/* ===== Base Styles ===== */
:root {
  --primary-color: rgb(118, 201, 214);
  --primary-dark: rgb(90, 160, 172);
  --accent-color: gold;
  --text-color: #222;
  --bg-color: #fdfdfd;
  --white: #fff;
}
/* Base Header */
header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  position: relative;
  z-index: 999;
  background-color: var(--primary-color);
}

.logo {
  height: 36px;
}
/* ===== Layout ===== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgb(90, 160, 172);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 5px 20px;
}


.logo {
  max-height: 40px;
  animation: fadeInLeft 1s ease-out;
  transition: transform 0.3s ease;
}

.logo.shrink {
  height: 35px;
  transform: scale(0.9);
}

header.shrink {
  padding: 5px 40px;
  background-color: var(--primary-dark);
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  background-color: var(--primary-color);
}

nav {
  margin-left: auto; 
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: flex-end; 
}

nav a {
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}
nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--white);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a.active,
nav a:hover {
  color: var(--text-color);
}
/* Dropdown Styles */
nav .has-dropdown {
  position: relative;
}

nav .has-dropdown > .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-color);
  display: none;
  flex-direction: column;
  list-style: none;
  min-width: 200px;
  padding: 0;
  margin: 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1000;
}

nav .has-dropdown > .dropdown li a {
  padding: 12px 20px;
  display: block;
  text-align: left;
  color: var(--white);
  transition: background-color 0.3s;
}

nav .has-dropdown > .dropdown li a:hover {
  background-color: #0e98aa;
}

@media (min-width: 769px) {
  nav .has-dropdown:hover > .dropdown {
    display: flex;
  }
}
/* ===== Components ===== */
.hero {
  padding: 100px 40px;
  text-align: center;
  background: linear-gradient(to right, rgba(118, 201, 214, 0.5), rgba(255, 215, 0, 0.5)),
              url("hero-bg.jpg") center/cover no-repeat;
              color: var(--white);
  animation: fadeInUp 1.2s ease-out;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-button {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--white);
  color: var(--text-color);
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.cta-button:hover {
  background-color: #f4f4f4;
  transform: scale(1.05);
}

.services,
.contact {
  padding: 60px 40px;
  max-width: 1000px;
  margin: auto;
  animation: fadeIn 1s ease-out;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.service-card {
  background-color: #f0f8f9;
  padding: 25px;
  border-left: 5px solid var(--accent-color);
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

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

form input,
form textarea {
  display: block;
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: var(--accent-color);
  border: none;
  padding: 12px 20px;
  color: black;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #e6c200;
}

.contact-details {
  margin-top: 30px;
  line-height: 1.8;
}

footer {
  background-color: #000;
  color: var(--white);
  text-align: center;
  padding: 20px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 5px 20px;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-color);
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 30px;
  left: 0;
  background-color: var(--white);
  padding: 10px 0;
  border-radius: 5px;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1000;
}

.dropdown-content li {
  padding: 8px 20px;
}

.dropdown-content li a {
  color: #333;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.lang-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}
.lang-contact .cta-button {
  background-color: var(--white);
  color: var(--text-color);
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.lang-contact .cta-button:hover {
  background-color: #f0f0f0;
}

.cta-button.small {
  padding: 6px 14px;
  font-size: 0.9rem;
}
}

/* === Mobile Navigation === */
.hamburger {
  display: none;
  background: none;
  font-size: 1.8rem;
  cursor: pointer;
  border: none;
  color: var(--text-color);
}

.close-menu {
  display: none;
  background: none;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  z-index: 1001;
}



/* === Mobile Nav Override === */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-left: auto;
    color: var(--text-color);
  }

  .close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-color);
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 80px 30px 30px;
    display: flex;
    flex-direction: column;
  }

  .mobile-nav.active {
    right: 0;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav li {
    margin-bottom: 20px;
  }

  .mobile-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
  }

  .mobile-nav .has-dropdown > .dropdown {
    display: none;
    flex-direction: column;
    padding-left: 15px;
    margin-top: 10px;
    background-color: rgba(118, 201, 214, 0.8);
  }

  .has-dropdown.open .dropdown {
    display: flex;
  }

  .has-dropdown > a::after {
    content: "▸";
    float: right;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }

  .has-dropdown.open > a::after {
    transform: rotate(90deg);
  }
}


.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-brand {
  flex: 1 1 250px;
}

.footer-brand p {
  margin-top: 10px;
  color: #ccc;
}

.footer-logo {
  height: 40px;
  margin-bottom: 10px;
}

.footer-links,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
 
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
  }
}
/* ====== ABOUT SECTION ====== */
.about {
  padding: 60px 40px;
  max-width: 900px;
  margin: auto;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

/* ====== HIGHLIGHTS SECTION ====== */
.highlights {
  padding: 60px 40px;
  background-color: #f8fbfc;
  text-align: center;
}

.highlights h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}


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

/* ====== VALUES SECTION ====== */
.values {
  padding: 60px 40px;
  max-width: 900px;
  margin: auto;
}

.values h2 {
  text-align: center;
  margin-bottom: 30px;
}

.values ul {
  list-style: none;
  padding: 0;
}

.values li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  padding-left: 20px;
  position: relative;
}

.values li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* ====== CTA SECTION ====== */
.cta {
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  color: var(--white);
  animation: fadeInUp 1s ease-out;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .about h2,
  .highlights h2,
  .values h2,
  .cta h2 {
    font-size: 1.6rem;
  }

  .cta p {
    font-size: 1rem;
  }
}
.highlight-card {
  background: white;
  border-left: 5px solid gold;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.about-section {
  background: #e7f7fa; /* light duck blue */
  padding: 80px 40px;
  text-align: center;
  position: relative;
}


.about-content {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  gap: 40px;
  align-items: center;
  justify-content: center;
  text-align: left;
  flex-wrap: wrap;
}

.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.about-image {
  flex: 1 1 350px;
}

.about-text {
  flex: 1 1 400px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.section-divider {
  height: 40px;
  background: linear-gradient(to right, rgba(255, 215, 0, 0.2), rgba(118, 201, 214, 0.3));
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.top-divider {
  margin-bottom: 0;
}

.bottom-divider {
  margin-top: 60px;
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }
}
.values-section {
  background-color: #f5fafd;
  padding: 80px 40px;
}


.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.value-box {
  border: 2px solid #76c9d6;
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.value-header {
  padding: 20px;
  font-weight: bold;
  font-size: 1.4rem;
  color: #0e4b5d;
  background-color: #e8f6f9;
  border-bottom: 1px solid #76c9d6;
}

.value-content {
  padding: 20px;
  display: none;
  font-size: 1rem;
  color: #444;
  background-color: #ffffff;
}

.value-box.open .value-content {
  display: block;
}

/* Mobile */

.values-alt {
  position: relative;
  background: linear-gradient(to bottom right, rgba(255, 215, 0, 0.15), rgba(118, 201, 214, 0.15));
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}

.values-alt h2 {
  font-size: 2rem;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}


.value-item {
  text-align: center;
}

.value-item .emoji {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.value-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 1rem;
  color: #333;
}



/* Mobile */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
.values-alt {
  position: relative;
  padding: 80px 40px;
  background: linear-gradient(to bottom right, rgba(255, 215, 0, 0.1), rgba(118, 201, 214, 0.1));
  text-align: center;
  overflow: hidden;
}

.values-alt h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  z-index: 2;
  position: relative;
}

.values-table {
  display: flex;
  justify-content: center;
  gap: 80px;
  z-index: 2;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.values-table .column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.value-box {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  text-align: center;
}

.value-box .emoji {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.value-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.value-box p {
  font-size: 1rem;
  color: #333;
}


/* Responsive */
@media (max-width: 768px) {
  .values-table {
    flex-direction: column;
    gap: 50px;
  }
}
.expertise-alt {
  padding: 80px 40px;
  background: linear-gradient(to right, #f5fafd, #e6f9ff);
  text-align: center;
  position: relative;
}

.expertise-alt h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  animation: fadeInDown 0.8s ease-out;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.expertise-card {
  background: var(--white);
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  padding: 20px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
  font-size: 40px;
  margin-right: 25px;
  color: #0e98aa;
  flex-shrink: 0;
  animation: fadeInLeft 1s ease-out;
}

.card-content h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: var(--text-color);
}

.card-content p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 600px) {
  .expertise-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-icon {
    margin-bottom: 10px;
  }
}
.about {
  padding: 80px 40px;
  background: #fdfaf5;
  text-align: center;
  max-width: 900px;
  margin: auto;
  border-top: 3px dashed var(--accent-color);
  border-bottom: 3px dashed var(--accent-color);
  animation: fadeInUp 1s ease-out;
}

.about h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #0e98aa;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #333;
}

.values-dynamic {
  padding: 60px 40px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
.values-dynamic h2 {
  margin-bottom: 40px;
}



.value-card {
  background: #f8fbfc;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(118, 201, 214, 0.1);
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
  min-height: 80px;
  outline: none;
}
.value-card .value-title {
  display: block;
  font-weight: bold;
  font-size: 1.3rem;
  color: var(--primary-color);
  padding: 32px 0;
  transition: color 0.2s;
}
.value-card .value-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(.4,2,.6,1), padding 0.3s;
  padding: 0 20px;
  background: rgba(255,215,0,0.07);
}
.value-card.active {
  background: linear-gradient(120deg, var(--primary-color) 0%, var(--accent-color) 100%);
  box-shadow: 0 8px 32px rgba(118, 201, 214, 0.18);
  transform: scale(1.04);
}
.value-card.active .value-title {
  color: var(--white);
  padding: 16px 0 0 0;
}
.value-card.active .value-content {
  max-height: 180px; /* Enough for one paragraph */
  padding: 18px 20px 32px 20px;
}
.values-section {
  padding: 80px 40px;
  background: linear-gradient(to right, rgba(118, 201, 214, 0.05), rgba(255, 215, 0, 0.1));
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 60px;
  color: var(--text-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  perspective: 1000px;
}


.card-title {
  font-size: 1.5rem;
  color: #0d4b5c;
  margin-bottom: 12px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.card-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.value-header {
  padding: 20px;
  font-weight: bold;
  font-size: 1.4rem;
  color: #0e4b5d;
  background-color: #e8f6f9;
  border-bottom: 1px solid #76c9d6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.toggle-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.value-box.open .toggle-icon {
  transform: rotate(45deg); /* Turns + into × */
}

/* Expandable animation */
.value-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 20px;
  opacity: 0;
}

.value-box.open .value-content {
  max-height: 500px; /* enough height for your content */
  padding: 20px;
  opacity: 1;
}
.impact-section {
  background: linear-gradient(to bottom right, #e0f8fb, var(--white)9e5);
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.impact-section h2 {
  font-size: 2.4rem;
  color: var(--text-color);
  margin-bottom: 60px;
  font-weight: 700;
}

.impact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.impact-item h3 {
  font-size: 3.5rem;
  color: #76c9d6;
  margin: 0;
  font-weight: 900;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.1);
}

.impact-item p {
  font-size: 1.2rem;
  color: #333;
  margin-top: 8px;
}

.underline {
  height: 4px;
  width: 80px;
  background-color: #fbc02d;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Responsive: turn into rows on desktop */
@media (min-width: 768px) {
  .impact-grid {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }
}
.impact-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.impact-item.show {
  opacity: 1;
  transform: translateY(0);
}
.counter {
  font-size: 3.8rem;
  color: #76c9d6;
  font-weight: 900;
  transition: all 0.4s ease-in-out;
}
.services-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 60px 40px;
}

.services-showcase .service-card {
  background: linear-gradient(to bottom right, #f5fcff, #e1f3f9);
  padding: 25px;
  border-left: 5px solid var(--primary-color);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-showcase .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}
.why-us-modern {
  background: linear-gradient(to right, #f8fbfc, #e8f6ff);
  padding: 80px 40px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.why-us-modern h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: var(--text-color);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.why-card {
  background-color: var(--white);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.why-card .emoji {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #007a94;
}

.why-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .why-us-modern h2 {
    font-size: 2rem;
  }

  .why-card {
    padding: 25px 20px;
  }
}
.service-hero.hero-bg {
  background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.4)),
              url('project-hero.jpg') center/cover no-repeat;
              color: var(--white);
  padding: 120px 40px;
  text-align: center;
}

.service-hero.hero-bg .overlay {
  max-width: 900px;
  margin: auto;
}

.service-hero.hero-bg h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.service-hero.hero-bg p {
  font-size: 1.2rem;
  font-weight: 400;
}

.service-content,
.service-pillars {
  max-width: 900px;
  margin: auto;
  padding: 60px 40px;
}

.service-pillars ul {
  list-style: none;
  padding-left: 0;
}

.service-pillars li {
  margin: 15px 0;
  font-size: 1.05rem;
  padding-left: 20px;
  position: relative;
}

.service-pillars li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}
.service-hero.hero-bg-payment {
  background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.4)),
              url('payment-hero.jpg') center/cover no-repeat;
              color: var(--white);
  padding: 120px 40px;
  text-align: center;
}

.service-hero.hero-bg-payment .overlay {
  max-width: 900px;
  margin: auto;
}

.service-hero.hero-bg-payment h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.service-hero.hero-bg-payment p {
  font-size: 1.2rem;
  font-weight: 400;
}
.service-hero.hero-bg-leadership {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
              url('leadership-collab.jpg') center/cover no-repeat;
              color: var(--white);
  padding: 120px 40px;
  text-align: center;
}

.service-hero.hero-bg-leadership .overlay {
  max-width: 900px;
  margin: auto;
}

.service-hero.hero-bg-leadership h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.service-hero.hero-bg-leadership p {
  font-size: 1.2rem;
  font-weight: 400;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.service-hero.hero-bg-training {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
              url('training-hero.jpg') center/cover no-repeat;
              color: var(--white);
  padding: 120px 40px;
  text-align: center;
}

.service-hero.hero-bg-training .overlay {
  max-width: 900px;
  margin: auto;
}

.service-hero.hero-bg-training h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.service-hero.hero-bg-training p {
  font-size: 1.2rem;
  font-weight: 400;
}
.footer-contact a i {
  margin-right: 8px;
  color: #0077b5; /* LinkedIn blue */
}

.footer-contact a[href*="wa.me"] i {
  color: #25D366; /* WhatsApp green */
}

/* ===== Utilities ===== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--text-color);
  color: var(--white);
  padding: 15px 20px;
  font-size: 0.9rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner p {
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-banner button {
  background-color: var(--accent-color);
  color: #000;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 5px;
}


.impact-section {
  display: block;
  padding: 80px 20px;
  background: #f8f9fb;
  text-align: center;
}

.impact-item {
  display: inline-block;
  width: 200px;
  margin: 20px;
}
.impact-section .counter {
  font-size: 2.5rem;
  font-weight: bold;
  transition: all 0.5s ease-in-out;
}

.impact-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.impact-item.show {
  opacity: 1;
  transform: translateY(0);
}

.trust-carousel {
  padding: 60px 20px;
  text-align: center;
  background: #ffffff;
}

.trust-carousel h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #222;
}

.trust-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-mask {
  overflow: hidden;
  width: 100%;
}

.trust-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.trust-slide {
  min-width: 180px;
  max-width: 180px;
  height: 100px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.trust-slide img:hover {
  filter: grayscale(0%);
}

.trust-left {
  left: -20px;
}

.trust-right {
  right: -20px;
}


@media (max-width: 768px) {
  .carousel-slide {
    width: 100px;
  }
}
.achievements-carousel {
  padding: 60px 20px;
  text-align: center;
  background: #f7f7f7;
}

.achievements-carousel h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: red;
}

.achievements-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.achievements-mask {
  overflow: hidden;
  width: 100%;
}

.achievements-track {
  display: flex;
  transition: transform 0.5s ease;
}

.achievement-slide {
  min-width: 300px;
  max-width: 300px;
  background: white;
  border-radius: 10px;
  margin: 0 10px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  flex-shrink: 0;
}

.achievement-slide h3 {
  color: #222;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}

.achievement-slide p {
  font-size: 14px;
  color: #444;
}

.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: white;
  color: #333;
  font-size: 24px;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 10;
}

.achievements-left {
  left: -20px;
}

.achievements-right {
  right: -20px;
}

/* Reset basics */
* { box-sizing: border-box; margin: 0; padding: 0; }
@media (min-width: 769px) {
  .mobile-nav {
    display: flex !important;
    position: static !important;
  }

.has-dropdown:hover .dropdown {
  display: flex;
}

}
.why-home {
  background: linear-gradient(to right, #f7fcfd, #ecf7fa);
  padding: 80px 40px;
  text-align: center;
  animation: fadeIn 1s ease-out;
}

.why-home h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: var(--text-color);
}

.why-home .why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.why-home .why-card {
  background-color: white;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-home .why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.why-home .emoji {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.why-home .why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #007a94;
}

.why-home .why-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}
/* === Project Management Page === */
.project-intro {
  background: linear-gradient(to right, #e8f9fb, #d1f3f7);
  padding: 80px 40px;
  text-align: center;
}

.project-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #0e4b5d;
}

.project-intro p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #444;
}

.project-compare {
  background: #fff7f7;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 40px;
  text-align: left;
}

.project-compare .column {
  flex: 1 1 300px;
}

.project-compare h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.red-list li::before {
  content: "❌ ";
  color: red;
}

.green-list li::before {
  content: "✔️ ";
  color: green;
}

.red-list li,
.green-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #333;
}

.project-offer {
  background: linear-gradient(to right, #fff7e6, #fdf3cc);
  padding: 80px 40px;
  text-align: center;
}

.project-offer h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #0e4b5d;
}

.offer-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: auto;
  font-size: 1.05rem;
}

.offer-list li {
  margin-bottom: 15px;
}

/* === Section Divider for Gantt sections === */
.section-divider.gantt-divider {
  height: 30px;
  background-image: url('gantt_style_divider.png');
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
  clip-path: none;
}
.comic-bubbles-section {
  background: linear-gradient(to right, #fffce1, #fdf8c3);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.comic-bubbles-section .bubbles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0;
  position: relative;
}

.comic-bubbles-section .bubble {
  background: #ffffff;
  border: 3px solid var(--primary-color);
  border-radius: 30px;
  padding: 20px 25px;
  font-size: 1rem;
  color: #222;
  font-weight: bold;
  max-width: 300px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s;
}

.comic-bubbles-section .bubble:hover {
  transform: translateY(-6px);
}

/* Responsive layout */
@media (max-width: 768px) {
  .comic-bubbles-section .bubble {
    max-width: 100%;
  }
}
/* Floating effect */
@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes floatLeftRight {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

/* Assign different float animations randomly */
.comic-bubbles-section .bubble:nth-child(odd) {
  animation: floatUpDown 6s ease-in-out infinite;
}

.comic-bubbles-section .bubble:nth-child(even) {
  animation: floatLeftRight 7s ease-in-out infinite;
}
.comic-bubbles-section .bubble {
  will-change: transform;
}
.we-excel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.excel-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: #0e4b5d;
}

.excel-point i {
  font-size: 1.3rem;
  color: var(--accent-color);
  min-width: 24px;
}
/* === Leadership Experience Section === */
.leadership-experience {
  background: linear-gradient(to right, #e8f8ff, #fdfdfd);
  padding: 80px 40px;
  text-align: center;
}
.leadership-experience h2 {
  font-size: 2.5rem;
  color: #0a4052;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.leadership-experience .tagline {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 30px;
  color: #555;
}
.leadership-experience .playful-line {
  margin-top: 30px;
  font-weight: 600;
  font-size: 1.2rem;
  color: #0e98aa;
}

/* === Divider (Only for Leadership Page) === */
.custom-divider {
  width: 100%;
  height: 4px;
  background-image: repeating-linear-gradient(
    to right,
    #000,
    #000 10px,
    transparent 10px,
    transparent 20px
  );
  margin: 40px 0;
}

/* === Coaching & Speak-Up Offers Section === */
.leadership-offers .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
.leadership-offers .coaching,
.leadership-offers .speakup {
  background-color: #fdfaf5;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
.leadership-offers .offer-image {
  flex: 1 1 300px;
  max-width: 350px;
}
.leadership-offers .offer-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}
.leadership-offers .offer-text {
  flex: 2 1 400px;
  min-width: 280px;
}
.leadership-offers h3 {
  font-size: 1.8rem;
  color: #0e4b5d;
}
.leadership-offers p {
  font-size: 1.1rem;
  color: #444;
}

.strategy-banner {
  background-color: #0e4b5d;
  color: white;
  padding: 15px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  overflow-x: auto;
  white-space: nowrap;
}

.banner-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.banner-container span {
  padding: 0 10px;
  display: inline-block;
}

.strategy-banner .banner-divider {
  width: 3px;
  height: 20px;
  background-color: #fff;
  display: inline-block;
}
@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .strategy-banner .banner-divider {
    width: 100%;
    height: 2px;
    margin: 8px 0;
  }
}

/* Section 1 */
.payment-intro {
  padding: 80px 40px;
  background: linear-gradient(to right, #e8f6f9, #fef9e7);
  text-align: center;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.payment-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  width: 220px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  border: 2px solid #ccc;
  border-radius: 16px;
  background-image: linear-gradient(to right bottom, #76c9d6, #fbdc00);
  color: #fff;
  transition: transform 0.3s ease;
}
.payment-card:hover {
  transform: translateY(-8px);
}

.payment-message {
  font-size: 1.2rem;
  margin-top: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Divider – Payment Card Style */
.payment-divider-top,
.payment-divider-mid,
.payment-divider-bottom {
  height: 6px;
  background-image: repeating-linear-gradient(
    to right,
    #ccc,
    #ccc 20px,
    transparent 20px,
    transparent 40px
  );
  width: 100%;
  margin-bottom: 60px;
}

/* Section 2 – Terminal UI */
.terminal-section {
  padding: 100px 30px;
  background: #323131;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.terminal-container {
  background: #000;
  border-radius: 30px;
  width: 360px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.terminal-screen {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  color: #222;
  font-size: 1rem;
}

.terminal-screen h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0e98aa;
}

.terminal-screen ul {
  padding-left: 20px;
}
.terminal-screen li {
  margin-bottom: 12px;
}

/* Section 3 – Explosions */
.core-offer {
  background: linear-gradient(to bottom, #fffbe6, #e7f7fa);
  padding: 80px 40px;
  text-align: center;
}

.core-offer h2 {
  margin-bottom: 50px;
  font-size: 2rem;
}

.explosions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.explosion {
  background: radial-gradient(circle, #fbdc00, #f7b500);
  color: #000;
  padding: 30px 20px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50% 50% 45% 55% / 60% 60% 40% 40%;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.3s ease;
}
.explosion:hover {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .card-grid,
  .explosions {
    flex-direction: column;
    gap: 30px;
  }
}
.training-section {
  padding: 80px 20px;
  color: #333;
}

.section-approach {
  background: #f1f9f9;
}

.section-process {
  background: #fff8f0;
}

.section-courses {
  background: #f0f4ff;
}

.text-divider {
  text-align: center;
  font-size: 2rem;
  margin: 0;
  padding: 10px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.course-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.course-card {
  background: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #222;
  font-weight: bold;
  flex: 1 1 250px;
  transition: transform 0.3s ease;
  text-align: center;
}

.course-card:hover {
  transform: translateY(-5px);
  background: #e6f7ff;
}

.process-steps {
  list-style: decimal inside;
  padding-left: 20px;
  font-size: 1.1rem;
}

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

.approach-points li {
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.section-learning {
  background: linear-gradient(to bottom, #fffaf0, #f9f9f9);
  padding: 100px 20px;
  position: relative;
}

.bubble-title {
  text-align: center;
  font-family: 'Comic Sans MS', 'Fredoka', cursive;
  font-size: 2.5rem;
  color: #003e57;
  margin-bottom: 20px;
}

.section-learning .section-intro {
  text-align: center;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #444;
}

.section-learning .bubbles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.training-bubble {
  background: radial-gradient(circle at top left, #fdfdfd, #e6f7ff);
  border: 3px dashed #007b8f;
  padding: 25px 20px;
  width: 260px;
  border-radius: 30% 70% 50% 50% / 50% 30% 70% 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
  font-family: 'Fredoka', 'Segoe UI', sans-serif;
}

.training-bubble h3 {
  font-size: 1.3rem;
  color: #007b8f;
  margin-bottom: 10px;
}

.training-bubble p {
  font-size: 0.95rem;
  color: #333;
}

.training-bubble:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.section-approach {
  background: linear-gradient(to bottom, #e3f2fd, #f1fcff);
  padding: 80px 20px;
}

.section-approach h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #005f7a;
}

.section-approach .section-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.15rem;
  text-align: center;
  color: #444;
}

.approach-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

.approach-points .point {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.07);
  transition: 0.3s ease;
}

.approach-points .point h3 {
  font-size: 1.2rem;
  color: #007b8f;
  margin-bottom: 10px;
}

.approach-points .point p {
  font-size: 0.98rem;
  color: #333;
}

.approach-points .point:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.training-methods-grid .method-box {
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 2px solid transparent;
  text-align: left;
  font-family: 'Segoe UI', sans-serif;
}

/* Unique background per card */
.training-methods-grid .method-box:nth-child(1) {
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
  border-color: #00bcd4;
}

.training-methods-grid .method-box:nth-child(2) {
  background: linear-gradient(135deg, #fbe9e7, #ffccbc);
  border-color: #ff7043;
}

.training-methods-grid .method-box:nth-child(3) {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-color: #66bb6a;
}

.training-methods-grid .method-box:nth-child(4) {
  background: linear-gradient(135deg, #f3e5f5, #e1bee7);
  border-color: #ab47bc;
}

.training-methods-grid .method-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #003e57;
}

.training-methods-grid .method-box p {
  font-size: 0.95rem;
  color: #333;
}

.training-methods-grid .method-box:hover {
  transform: translateY(-5px);
}
/* Base style */
.arrow-process {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-top: 30px;
}

.arrow-step {
  position: relative;
  border-left: 6px solid;
  padding: 20px 30px 20px 20px;
  border-radius: 10px;
  min-width: 220px;
  max-width: 280px;
  flex: 1 1 200px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.arrow-step h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.arrow-step p {
  font-size: 0.95rem;
  margin: 0;
}

/* Arrow pointer */
.arrow-step::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
}

.arrow-step:last-child::after {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .arrow-process {
    flex-direction: column;
  }

  .arrow-step::after {
    top: auto;
    bottom: -20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(90deg);
    border: 10px solid transparent;
  }
}

/* Individual colored steps */
.step1 {
  background: #80d1fdd3;
  border-left-color: #7ec8e3;
}
.step1::after {
  border-left-color: #7ec8e3;
}

.step2 {
  background: #c2d6f7;
  border-left-color: #58b2dc;
}
.step2::after {
  border-left-color: #58b2dc;
}

.step3 {
  background: #96b9ea;
  border-left-color: #3399cc;
}
.step3::after {
  border-left-color: #3399cc;
}

.step4 {
  background: #5a8cdd;
  border-left-color: #007acc;
}
.step4::after {
  border-left-color: #007acc;
}
.hero-intro {
  background: linear-gradient(135deg, #f0fbff, #e0f7ff);
  padding: 90px 20px;
  position: relative;
  z-index: 1;
}

.intro-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.intro-text {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.3;
  color: #001f2e;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero-title strong {
  color: #007b8f;
}

.hero-sub {
  display: block;
  font-size: 1.5rem;
  color: #333;
  margin-top: 10px;
}

.hero-punchline {
  font-size: 1.1rem;
  margin: 20px 0;
  color: #333;
  line-height: 1.6;
}

.hero-punchline strong {
  color: #007b8f;
  font-weight: 600;
}

.hero-invite {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 25px;
  color: #001f2e;
}

.hero-invite .underline {
  border-bottom: 3px solid #007b8f;
}

.cta-btn {
  display: inline-block;
  background-color: #007b8f;
  color: white;
  padding: 12px 26px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #005e73;
}

.intro-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-grid {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1.3rem;
  }

  .hero-invite {
    font-size: 1.1rem;
  }

  .intro-image {
    order: -1;
  }
}
.expertise-section-bubbles {
  background-color: #fff8e1;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.expertise-section-bubbles h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 50px;
}

.expertise-bubbles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.expertise-section-bubbles .bubble {
  background: #ffe600;
  border: 3px solid #222;
  color: #222;
  padding: 30px 20px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 6px 6px 0 #000;
  transition: transform 0.3s ease;
  text-align: center;
  position: relative;
  z-index: 1;
}

.expertise-section-bubbles .bubble:hover {
  transform: scale(1.1);
}
.carousel-title {
  color: #d92626; /* Bright red title */
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
/* === Contact Page === */
.contact-hero {
  text-align: center;
  padding: 60px 20px 30px;
  background: linear-gradient(to right, #76c9d6, #d4f1f9);
  color: #003340;
}

.contact-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.contact-hero p {
  font-size: 1.2rem;
}

.offices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background: #f7f9fb;
}
.office-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.06);
  padding: 20px;
  width: 280px;
  transition: transform 0.3s;
}
.office-card:hover {
  transform: translateY(-5px);
}
.office-card h3 {
  color: #007b8f;
  margin-bottom: 10px;
}

.contact-form-section {
  padding: 50px 20px;
  background: #eaf7f9;
  text-align: center;
}
.contact-form-section h2 {
  margin-bottom: 30px;
}
.contact-form-section form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.contact-form-section input,
.contact-form-section textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}
.contact-form-section button {
  background-color: #007b8f;
  color: white;
  border: none;
  padding: 15px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.contact-form-section button:hover {
  background-color: #005f6a;
}

/* Divider (optional) */
.divider {
  height: 4px;
  background-image: linear-gradient(to right, #007b8f 33%, transparent 0%);
  background-size: 20px 4px;
  background-repeat: repeat-x;
  margin: 40px auto;
  width: 60%;
}

@media (max-width: 768px) {
  .offices {
    flex-direction: column;
    align-items: center;
  }
}
.why-work-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--duck-blue, #0d4087);
  padding: 30px 0;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}

.why-work-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.why-work-content span {
  white-space: nowrap;
  font-size: 1rem;
}

.divider-line {
  height: 20px;
  width: 3px;
  background-color: white;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .why-work-content {
    flex-direction: column;
    gap: 10px;
  }

  .divider-line {
    width: 60%;
    height: 2px;
  }

  .why-work-content span {
    white-space: normal;
    font-size: 0.95rem;
  }
}
.services-clouds {
  text-align: center;
  padding: 80px 20px;
  background: var(--light-bg, #f7fcfc);
}

.services-clouds h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.cloud-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cloud-box {
  background: #ffffff;
  color: var(--text-color, #222);
  padding: 30px;
  width: 300px;
  text-align: left;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  clip-path: ellipse(100% 70% at 50% 50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cloud-box h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--accent-color, #007b8f);
}

.cloud-box p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.cloud-box:hover {
  background: #e8f9ff;
  box-shadow: 0 10px 25px rgba(0, 123, 143, 0.25);
  transform: translateY(-5px);
}
