@charset "UTF-8";
:root {
  --primary-color: #00a6b7;
  --primary-text-color: #007a8a;
  --secondary-color: #0a2c48;
  --white-color: #ffffff;
  --black-color: #000000;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --font-family: "Quicksand", sans-serif;
  --heading-family: "Playwrite DE Grund", cursive;
  --font-size: 14px;
  --font-weight: 400;
  --line-height: 1.5;
  --font-10: 10px;
  --font-12: 12px;
  --font-13: 13px;
  --font-14: 14px;
  --font-15: 15px;
  --font-16: 16px;
  --font-18: 18px;
  --font-20: 20px;
  --font-22: 22px;
  --font-24: 24px;
  --font-26: 26px;
  --font-28: 28px;
  --font-30: 30px;
  --font-32: 32px;
  --font-34: 34px;
  --font-36: 36px;
  --font-38: 38px;
  --font-40: 40px;
  --font-42: 42px;
  --font-44: 44px;
  --font-46: 46px;
  --weight-300: 300;
  --weight-400: 400;
  --weight-500: 500;
  --weight-600: 600;
  --weight-700: 700;
  --weight-800: 800;
  --weight-900: 900;
  --border-radius: 0.25rem;
  --border-radius-5: 5px;
  --border-radius-10: 10px;
  --border-radius-15: 15px;
  --border-radius-20: 20px;
  --border-radius-25: 25px;
  --border-radius-30: 30px;
  --border-radius-35: 35px;
  --border-radius-40: 40px;
  --border-radius-50: 50px;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --box-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.10);
  --box-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --transition-speed: 0.3s;
  --transition-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1280px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
  border-radius: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
  color: var(--secondary-color);
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: var(--container-max);
}

.header_icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px 6px 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  border: 1px solid rgba(0, 166, 183, 0.25);
  box-shadow: 0 2px 8px rgba(0, 166, 183, 0.1);
  color: var(--primary-color);
  font-size: var(--font-14);
  font-weight: var(--weight-700);
  letter-spacing: 0.3px;
  margin-bottom: 18px;
  width: -moz-fit-content;
  width: fit-content;
}
.header_icon .material-symbols-outlined {
  font-size: 18px;
}

.hero-title {
  font-family: var(--heading-family);
  font-size: var(--font-46);
  font-weight: var(--weight-700);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}
.hero-title span {
  color: var(--primary-color);
  position: relative;
}
.hero-title span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--heading-family);
  font-size: var(--font-38);
  font-weight: var(--weight-700);
  line-height: 1.25;
  margin: 8px 0 14px;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}
.section-title span {
  color: var(--primary-color);
  position: relative;
}
.section-title span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  border-radius: 2px;
}

.section-subtitle {
  font-size: var(--font-15);
  font-weight: var(--weight-500);
  color: #4a6880;
  line-height: 1.8;
  margin-bottom: 0;
}

.hero-description {
  font-size: var(--font-16);
  color: #4a6880;
  line-height: 1.8;
}

.hero_btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: none;
  border-radius: var(--border-radius-50);
  font-family: var(--font-family);
  font-size: var(--font-16);
  font-weight: var(--weight-600);
  letter-spacing: 0.3px;
  cursor: pointer;
  text-transform: capitalize;
  box-shadow: 0 4px 15px rgba(10, 44, 72, 0.25);
  transition: all var(--transition-speed) var(--transition-ease);
}
.hero_btn .material-symbols-outlined {
  font-size: 20px;
  transition: transform var(--transition-speed) ease;
}
.hero_btn:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 6px 20px rgba(0, 166, 183, 0.4);
  transform: translateY(-2px);
}
.hero_btn:hover .material-symbols-outlined {
  transform: translateX(4px);
}
.hero_btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 166, 183, 0.3);
}
.hero_btn.secBtn {
  background-color: rgba(255, 255, 255, 0.18);
  color: var(--white-color);
  box-shadow: none;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(4px);
}
.hero_btn.secBtn:hover {
  background-color: var(--white-color);
  color: var(--secondary-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.hero_btn.primaryBtn {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white-color);
  box-shadow: none;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}
.hero_btn.primaryBtn:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.hero_btn.outline {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid rgba(10, 44, 72, 0.35);
  box-shadow: none;
}
.hero_btn.outline:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(10, 44, 72, 0.25);
}
.hero_btn.ghost {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid rgba(0, 166, 183, 0.35);
  box-shadow: none;
}
.hero_btn.ghost:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(0, 166, 183, 0.35);
  transform: translateY(-2px);
}
.hero_btn.sm {
  padding: 7px 16px;
  font-size: var(--font-13);
  box-shadow: none;
}
.hero_btn.sm .material-symbols-outlined {
  font-size: 15px;
}

.header {
  background-color: var(--white-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all var(--transition-speed) ease;
  padding: 10px 0;
}
.header.scrolled {
  padding: 5px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar {
  padding: 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: var(--weight-700);
  color: var(--primary-color);
  display: flex;
  align-items: center;
}
.navbar-brand img {
  display: block;
  width: 140px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: var(--font-family);
  font-size: var(--font-15);
  font-weight: var(--weight-600);
  color: var(--secondary-color);
  padding: 8px 16px !important;
  border-radius: var(--border-radius-10);
  transition: all var(--transition-speed) ease;
  z-index: 1;
  position: relative;
}
.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 166, 183, 0.08);
  border-radius: var(--border-radius-10);
  transform: scale(0.85) translateY(4px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
  z-index: -1;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 5px;
  height: 5px;
  background-color: var(--primary-color);
  border-radius: 50%;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-link:hover {
  color: var(--primary-color) !important;
}
.nav-link:hover::before {
  transform: scale(1) translateY(0);
  opacity: 0.5;
}
.nav-link.active {
  color: var(--primary-color) !important;
}
.nav-link.active::before {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.nav-link.active::after {
  transform: translateX(-50%) scale(1);
}

.navbar-toggler {
  border: 1.5px solid rgba(0, 166, 183, 0.2);
  padding: 8px 12px;
  border-radius: var(--border-radius-10);
  transition: all var(--transition-speed) ease;
  background: transparent;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  box-shadow: none;
  background: rgba(0, 166, 183, 0.05);
  border-color: rgba(0, 166, 183, 0.4);
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 166, 183, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media screen and (max-width: 991px) {
  .header {
    padding: 10px 0;
  }
  .navbar-collapse {
    background: var(--white-color);
    border-radius: var(--border-radius-15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 15px;
    border: 1px solid rgba(0, 166, 183, 0.1);
  }
  .navbar-collapse .hero_btn {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }
  .navbar-nav {
    gap: 5px;
  }
  .nav-link {
    padding: 12px 16px !important;
  }
}
#site-footer {
  background: var(--secondary-color);
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  margin-top: 60px;
}
#site-footer::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("../image/wave-footer.svg") no-repeat bottom;
  background-size: cover;
  z-index: 10;
  pointer-events: none;
}
#site-footer .footer-top {
  padding: 64px 0 48px;
}
#site-footer .footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
#site-footer .footer-logo img {
  height: 46px;
}
#site-footer .footer-about {
  font-size: var(--font-14);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
#site-footer .social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
}
#site-footer .social-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 166, 183, 0.35);
}
#site-footer .footer-heading {
  font-size: var(--font-14);
  font-weight: var(--weight-700);
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
#site-footer .footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}
#site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#site-footer .footer-links li a {
  font-size: var(--font-14);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
#site-footer .footer-links li a::before {
  content: "›";
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1;
  margin-right: 2px;
}
#site-footer .footer-links li a:hover {
  color: var(--white-color);
  padding-left: 4px;
}
#site-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#site-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--font-14);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
#site-footer .footer-contact li .material-symbols-outlined {
  font-size: 18px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 1px;
}
#site-footer .footer-contact li a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s ease;
}
#site-footer .footer-contact li a:hover {
  color: var(--white-color);
}
#site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}
#site-footer .footer-bottom p {
  font-size: var(--font-13);
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}
#site-footer .footer-bottom .footer-legal a {
  font-size: var(--font-13);
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease;
}
#site-footer .footer-bottom .footer-legal a:hover {
  color: var(--white-color);
}

#hero_section {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(135deg, #d4eeff 0%, #c8d8f8 40%, #ccc0f0 100%);
  overflow: hidden;
}
#hero_section::before, #hero_section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
#hero_section::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(0, 166, 183, 0.12) 0%, transparent 70%);
}
#hero_section::after {
  width: 500px;
  height: 500px;
  bottom: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(163, 138, 224, 0.15) 0%, transparent 70%);
}
#hero_section .container {
  position: relative;
  z-index: 1;
}
#hero_section .hero-img-grid img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
#hero_section .hero-img-grid img:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}
#hero_section .hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
#hero_section .hero-stats .stat-item h4 {
  font-size: var(--font-28);
  font-weight: var(--weight-700);
  color: var(--secondary-color);
  margin: 0;
}
#hero_section .hero-stats .stat-item p {
  font-size: var(--font-13);
  color: #6a8099;
  margin: 0;
}

#about_section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  #about_section {
    padding: 3.5rem 0;
  }
}
#about_section {
  background: linear-gradient(180deg, #fafeff 0%, #f5fbff 100%);
  position: relative;
  overflow: hidden;
}
#about_section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -15%;
  right: -8%;
  bottom: auto;
  left: auto;
  background: radial-gradient(circle, rgba(0, 166, 183, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
#about_section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: auto;
  right: auto;
  bottom: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(163, 138, 224, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
#about_section .container {
  position: relative;
  z-index: 1;
}
#about_section .about-image-wrapper {
  position: relative;
  padding: 24px 24px 24px 0;
}
#about_section .about-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  width: 80%;
  height: 85%;
  border: 3px solid var(--primary-color);
  border-radius: var(--border-radius-20);
  opacity: 0.2;
  z-index: 0;
  transition: all 0.4s ease;
}
#about_section .about-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, rgba(0, 166, 183, 0.3) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  border-radius: var(--border-radius-15);
  z-index: 0;
}
#about_section .about-image-wrapper:hover::before {
  opacity: 0.45;
  transform: translate(-6px, -6px);
}
#about_section .about-image-wrapper .main-img {
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(10, 44, 72, 0.15);
  transition: transform 0.4s var(--transition-ease), box-shadow 0.4s ease;
  border-radius: var(--border-radius-20) !important;
}
#about_section .about-image-wrapper .main-img:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 70px rgba(10, 44, 72, 0.2);
}
#about_section .experience-badge {
  position: absolute;
  bottom: 50px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #007a8a 100%);
  color: var(--white-color);
  padding: 22px 24px;
  border-radius: var(--border-radius-20);
  box-shadow: 0 10px 30px rgba(0, 166, 183, 0.4), 0 0 0 4px rgba(0, 166, 183, 0.1);
  text-align: center;
  min-width: 155px;
  z-index: 2;
  animation: float 3.5s ease-in-out infinite;
}
#about_section .experience-badge h3 {
  font-size: var(--font-36);
  font-weight: var(--weight-900);
  margin: 0;
  line-height: 1;
  letter-spacing: -1px;
}
#about_section .experience-badge p {
  font-size: var(--font-12);
  margin: 4px 0 0;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: var(--weight-600);
}
#about_section .feature-item {
  background: var(--white-color);
  padding: 16px 18px;
  border-radius: var(--border-radius-15);
  border: 1px solid rgba(0, 166, 183, 0.1);
  height: 100%;
  transition: all var(--transition-speed) var(--transition-ease);
}
#about_section .feature-item:hover {
  box-shadow: 0 8px 24px rgba(0, 166, 183, 0.12);
  transform: translateX(8px);
  border-color: rgba(0, 166, 183, 0.3);
}
#about_section .feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-color), #007a8a);
  color: var(--white-color);
  box-shadow: 0 4px 12px rgba(0, 166, 183, 0.35);
}
#about_section .feature-item .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-15);
  background: linear-gradient(135deg, #e8f8fb, #d0f0f5);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-speed) ease;
}
#about_section .feature-item .feature-icon .material-symbols-outlined {
  font-size: 22px;
}
#about_section .feature-item .feature-text h5 {
  font-size: var(--font-16);
  font-weight: var(--weight-700);
  margin-bottom: 10px;
  color: var(--secondary-color);
}
#about_section .feature-item .feature-text p {
  font-size: var(--font-13);
  margin: 0;
  color: #6a8099;
  line-height: 1.5;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#what_we_do_section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  #what_we_do_section {
    padding: 3.5rem 0;
  }
}
#what_we_do_section {
  background: linear-gradient(160deg, #f5fbff 0%, #eef6ff 50%, #f0f8fb 100%);
  position: relative;
  overflow: hidden;
}
#what_we_do_section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  top: -5%;
  right: auto;
  bottom: auto;
  left: -5%;
  background: radial-gradient(circle, rgba(0, 166, 183, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#what_we_do_section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: auto;
  right: -5%;
  bottom: -5%;
  left: auto;
  background: radial-gradient(circle, rgba(163, 138, 224, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#what_we_do_section .wwd-card {
  background: var(--white-color);
  border-radius: var(--border-radius-20);
  padding: 32px 24px;
  height: 100%;
  border: 1px solid rgba(0, 166, 183, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--transition-ease);
}
#what_we_do_section .wwd-card .wwd-card-number {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 64px;
  font-weight: var(--weight-900);
  color: rgba(0, 166, 183, 0.07);
  line-height: 1;
  font-family: var(--heading-family);
  pointer-events: none;
  transition: color 0.35s ease;
}
#what_we_do_section .wwd-card .wwd-card-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--border-radius-15);
  background: linear-gradient(135deg, #e8f8fb, #d0f0f5);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-speed) ease;
  margin-bottom: 20px;
}
#what_we_do_section .wwd-card .wwd-card-icon .material-symbols-outlined {
  font-size: 26px;
}
#what_we_do_section .wwd-card h4 {
  font-size: var(--font-18);
  font-weight: var(--weight-700);
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.3;
}
#what_we_do_section .wwd-card p {
  font-size: var(--font-14);
  color: #5a7a90;
  line-height: 1.7;
  margin-bottom: 20px;
}
#what_we_do_section .wwd-card .wwd-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--font-14);
  font-weight: var(--weight-700);
  color: var(--primary-text-color);
  transition: gap 0.25s ease;
}
#what_we_do_section .wwd-card .wwd-card-link .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.25s ease;
}
#what_we_do_section .wwd-card .wwd-card-link:hover {
  gap: 10px;
}
#what_we_do_section .wwd-card .wwd-card-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}
#what_we_do_section .wwd-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 166, 183, 0.14);
  border-color: rgba(0, 166, 183, 0.28);
}
#what_we_do_section .wwd-card:hover .wwd-card-number {
  color: rgba(0, 166, 183, 0.13);
}
#what_we_do_section .wwd-card:hover .wwd-card-icon {
  background: linear-gradient(135deg, var(--primary-color), #007a8a);
  color: var(--white-color);
  box-shadow: 0 6px 18px rgba(0, 166, 183, 0.35);
}
#what_we_do_section .wwd-card.wwd-card--accent {
  background: linear-gradient(145deg, var(--secondary-color) 0%, #0d3a5e 100%);
  border-color: transparent;
  color: var(--white-color);
}
#what_we_do_section .wwd-card.wwd-card--accent .wwd-card-number {
  color: rgba(255, 255, 255, 0.07);
}
#what_we_do_section .wwd-card.wwd-card--accent .wwd-card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white-color);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
#what_we_do_section .wwd-card.wwd-card--accent h4 {
  color: var(--white-color);
}
#what_we_do_section .wwd-card.wwd-card--accent p {
  color: rgba(255, 255, 255, 0.72);
}
#what_we_do_section .wwd-card.wwd-card--accent .wwd-card-link {
  color: rgba(255, 255, 255, 0.9);
}
#what_we_do_section .wwd-card.wwd-card--accent .wwd-card-link:hover {
  color: var(--white-color);
}
#what_we_do_section .wwd-card.wwd-card--accent:hover {
  box-shadow: 0 20px 50px rgba(10, 44, 72, 0.3);
  border-color: transparent;
}
#what_we_do_section .wwd-card.wwd-card--accent:hover .wwd-card-icon {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1);
}
#what_we_do_section .wwd-cta-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0d3a5e 55%, #003d50 100%);
  border-radius: var(--border-radius-20);
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}
#what_we_do_section .wwd-cta-banner::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -50%;
  right: -5%;
  bottom: auto;
  left: auto;
  background: radial-gradient(circle, rgba(0, 166, 183, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#what_we_do_section .wwd-cta-banner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  top: auto;
  right: auto;
  bottom: -40%;
  left: 5%;
  background: radial-gradient(circle, rgba(163, 138, 224, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#what_we_do_section .wwd-cta-banner h3 {
  font-family: var(--heading-family);
  font-size: var(--font-28);
  font-weight: var(--weight-700);
  color: var(--white-color);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
#what_we_do_section .wwd-cta-banner p {
  font-size: var(--font-15);
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  position: relative;
  z-index: 1;
}
#what_we_do_section .wwd-cta-banner .hero_btn {
  position: relative;
  z-index: 1;
  background: var(--white-color);
  color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
#what_we_do_section .wwd-cta-banner .hero_btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 6px 20px rgba(0, 166, 183, 0.4);
}
#what_we_do_section .wwd-cta-banner .hero_btn.secBtn {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white-color);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}
#what_we_do_section .wwd-cta-banner .hero_btn.secBtn:hover {
  background: var(--white-color);
  color: var(--secondary-color);
}

#success_stories_section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  #success_stories_section {
    padding: 3.5rem 0;
  }
}
#success_stories_section {
  background: var(--white-color);
  position: relative;
  overflow: hidden;
}
#success_stories_section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -10%;
  right: -5%;
  bottom: auto;
  left: auto;
  background: radial-gradient(circle, rgba(0, 166, 183, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#success_stories_section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  top: auto;
  right: auto;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(163, 138, 224, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#success_stories_section .ss-card {
  background: var(--white-color);
  border-radius: var(--border-radius-20);
  padding: 32px 28px;
  border: 1px solid rgba(0, 166, 183, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--transition-ease);
}
#success_stories_section .ss-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(0, 166, 183, 0.12);
  border-color: rgba(0, 166, 183, 0.25);
}
#success_stories_section .ss-card--featured {
  padding: 44px 38px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0d3a5e 100%);
  color: var(--white-color);
  border-color: transparent;
}
#success_stories_section .ss-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(10, 44, 72, 0.3);
  border-color: rgba(0, 166, 183, 0.25);
}
#success_stories_section .ss-card--featured .ss-quote-icon {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
}
#success_stories_section .ss-card--featured .ss-quote {
  font-size: var(--font-16);
}
#success_stories_section .ss-card--featured .ss-author h5 {
  color: var(--white-color);
}
#success_stories_section .ss-card--featured .ss-author span {
  color: rgba(255, 255, 255, 0.6);
}
#success_stories_section .ss-card--featured .ss-avatar img {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
#success_stories_section .ss-card--featured .ss-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
}
#success_stories_section .ss-quote-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-10);
  background: linear-gradient(135deg, #e8f8fb, #d0f0f5);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-speed) ease;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 166, 183, 0.15);
}
#success_stories_section .ss-quote-icon .material-symbols-outlined {
  font-size: 26px;
}
#success_stories_section .ss-quote-icon.sm {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
}
#success_stories_section .ss-quote-icon.sm .material-symbols-outlined {
  font-size: 20px;
}
#success_stories_section .ss-quote {
  font-size: var(--font-15);
  line-height: 1.8;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 0;
}
#success_stories_section .ss-author {
  margin-top: auto;
}
#success_stories_section .ss-author h5 {
  font-size: var(--font-15);
  font-weight: var(--weight-700);
  color: var(--secondary-color);
  margin: 0 0 2px;
}
#success_stories_section .ss-author span {
  font-size: var(--font-12);
  color: #7a96aa;
  font-weight: var(--weight-500);
}
#success_stories_section .ss-avatar img {
  width: 56px;
  height: 56px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 0 0 3px rgba(0, 166, 183, 0.2);
}
#success_stories_section .ss-avatar.sm img {
  width: 44px;
  height: 44px;
}
#success_stories_section .ss-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--border-radius-50);
  background: rgba(0, 166, 183, 0.07);
  color: var(--primary-color);
  font-size: var(--font-12);
  font-weight: var(--weight-700);
  border: 1px solid rgba(0, 166, 183, 0.15);
  width: -moz-fit-content;
  width: fit-content;
}
#success_stories_section .ss-tag .material-symbols-outlined {
  font-size: 15px;
}
#success_stories_section .ss-impact-strip {
  background: linear-gradient(135deg, #f5fbff 0%, #eef6ff 100%);
  border-radius: var(--border-radius-20);
  border: 1px solid rgba(0, 166, 183, 0.12);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
#success_stories_section .ss-impact-strip .ss-impact-item {
  flex: 1;
  text-align: center;
}
#success_stories_section .ss-impact-strip .ss-impact-item h3 {
  font-family: var(--heading-family);
  font-size: var(--font-28);
  font-weight: var(--weight-900);
  color: var(--secondary-color);
  margin: 0 0 4px;
  letter-spacing: -0.5px;
}
#success_stories_section .ss-impact-strip .ss-impact-item p {
  font-size: var(--font-12);
  color: #7a96aa;
  margin: 0;
  font-weight: var(--weight-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#success_stories_section .ss-impact-strip .ss-impact-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 166, 183, 0.2);
  flex-shrink: 0;
}

#events_section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  #events_section {
    padding: 3.5rem 0;
  }
}
#events_section {
  background: linear-gradient(160deg, #f5fbff 0%, #eef6ff 50%, #f0f8fb 100%);
  position: relative;
  overflow: hidden;
}
#events_section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  top: -8%;
  right: -5%;
  bottom: auto;
  left: auto;
  background: radial-gradient(circle, rgba(0, 166, 183, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#events_section .ev-category {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: var(--border-radius-50);
  background: rgba(0, 166, 183, 0.08);
  color: var(--primary-text-color);
  font-size: var(--font-12);
  font-weight: var(--weight-700);
  margin-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
#events_section .ev-category .material-symbols-outlined {
  font-size: 14px;
}
#events_section .ev-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: var(--font-13);
  color: #6a8099;
}
#events_section .ev-meta-item .material-symbols-outlined {
  font-size: 16px;
  color: var(--primary-text-color);
  flex-shrink: 0;
  margin-top: 1px;
}
#events_section .ev-card {
  background: var(--white-color);
  border-radius: var(--border-radius-20);
  border: 1px solid rgba(0, 166, 183, 0.1);
  overflow: hidden;
  transition: all 0.35s var(--transition-ease);
}
#events_section .ev-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 166, 183, 0.14);
  border-color: rgba(0, 166, 183, 0.25);
}
#events_section .ev-card .ev-featured-img {
  position: relative;
  overflow: hidden;
}
#events_section .ev-card .ev-featured-img img {
  display: block;
  transition: transform 0.5s ease;
  -o-object-fit: cover;
     object-fit: cover;
  height: 220px;
  width: 100%;
}
#events_section .ev-card .ev-featured-img:hover img {
  transform: scale(1.04);
}
#events_section .ev-card .ev-featured-img .ev-date-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white-color);
  border-radius: var(--border-radius-10);
  padding: 8px 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  line-height: 1;
}
#events_section .ev-card .ev-featured-img .ev-date-badge .day {
  display: block;
  font-size: var(--font-26);
  font-weight: var(--weight-900);
  color: var(--secondary-color);
  line-height: 1;
}
#events_section .ev-card .ev-featured-img .ev-date-badge .month {
  display: block;
  font-size: var(--font-12);
  font-weight: var(--weight-700);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
#events_section .ev-card .ev-featured-img .ev-live-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--primary-color), #007a8a);
  color: var(--white-color);
  font-size: var(--font-12);
  font-weight: var(--weight-700);
  padding: 5px 12px;
  border-radius: var(--border-radius-50);
  display: flex;
  align-items: center;
  gap: 4px;
  animation: pulse 2s ease-in-out infinite;
}
#events_section .ev-card .ev-featured-img .ev-live-tag .material-symbols-outlined {
  font-size: 14px;
}
#events_section .ev-card .ev-card-body {
  padding: 24px;
}
#events_section .ev-card .ev-card-body h3 {
  font-size: var(--font-20);
  font-weight: var(--weight-700);
  color: var(--secondary-color);
  margin-bottom: 10px;
  line-height: 1.35;
}
#events_section .ev-card .ev-card-body > p {
  font-size: var(--font-14);
  color: #5a7a90;
  line-height: 1.7;
  margin-bottom: 16px;
}
#events_section .ev-list-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white-color);
  border-radius: var(--border-radius-15);
  padding: 18px 20px;
  border: 1px solid rgba(0, 166, 183, 0.1);
  transition: all var(--transition-speed) var(--transition-ease);
}
#events_section .ev-list-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 166, 183, 0.12);
  border-color: rgba(0, 166, 183, 0.28);
}
#events_section .ev-list-card .ev-list-date {
  background: linear-gradient(135deg, #e8f8fb, #d0f0f5);
  border-radius: var(--border-radius-10);
  padding: 10px 14px;
  text-align: center;
  flex-shrink: 0;
  min-width: 54px;
}
#events_section .ev-list-card .ev-list-date .day {
  display: block;
  font-size: var(--font-22);
  font-weight: var(--weight-900);
  color: var(--secondary-color);
  line-height: 1;
}
#events_section .ev-list-card .ev-list-date .month {
  display: block;
  font-size: 10px;
  font-weight: var(--weight-700);
  color: var(--primary-text-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
#events_section .ev-list-card .ev-list-body {
  flex: 1;
  min-width: 0;
}
#events_section .ev-list-card .ev-list-body h5 {
  font-size: var(--font-15);
  font-weight: var(--weight-700);
  color: var(--secondary-color);
  margin-bottom: 6px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#events_section .ev-newsletter {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0d3a5e 100%);
  border-radius: var(--border-radius-20);
  padding: 24px 28px;
  color: var(--white-color);
}
#events_section .ev-newsletter strong {
  font-size: var(--font-16);
  font-weight: var(--weight-700);
}
#events_section .ev-newsletter .material-symbols-outlined {
  font-size: 20px;
  color: var(--primary-color);
}
#events_section .ev-newsletter p {
  font-size: var(--font-13);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 14px;
}
#events_section .ev-newsletter .ev-newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
#events_section .ev-newsletter .ev-newsletter-input {
  flex: 1;
  min-width: 160px;
  padding: 10px 14px;
  border-radius: var(--border-radius-50);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  font-size: var(--font-14);
  font-family: var(--font-family);
  outline: none;
  transition: border-color var(--transition-speed) ease;
}
#events_section .ev-newsletter .ev-newsletter-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
#events_section .ev-newsletter .ev-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
#events_section .ev-newsletter .ev-newsletter-input:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
}
#events_section .ev-newsletter .hero_btn {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 4px 14px rgba(0, 166, 183, 0.35);
  white-space: nowrap;
}
#events_section .ev-newsletter .hero_btn:hover {
  background: #007a8a;
  box-shadow: 0 6px 20px rgba(0, 166, 183, 0.5);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 166, 183, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 166, 183, 0);
  }
}
#blogs_section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  #blogs_section {
    padding: 3.5rem 0;
  }
}
#blogs_section {
  background: var(--white-color);
  position: relative;
  overflow: hidden;
}
#blogs_section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: auto;
  right: -5%;
  bottom: -8%;
  left: auto;
  background: radial-gradient(circle, rgba(0, 166, 183, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
#blogs_section .blog-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 166, 183, 0.3);
  background: transparent;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  flex-shrink: 0;
}
#blogs_section .blog-nav-btn .material-symbols-outlined {
  font-size: 20px;
}
#blogs_section .blog-nav-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
  box-shadow: 0 4px 14px rgba(0, 166, 183, 0.3);
}
#blogs_section .blog-nav-btn.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
#blogs_section .blog-swiper {
  padding-bottom: 48px;
  overflow: visible;
}
#blogs_section .blog-swiper-pagination {
  bottom: 0;
}
#blogs_section .blog-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0, 166, 183, 0.3);
  opacity: 1;
  transition: all var(--transition-speed) ease;
}
#blogs_section .blog-swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary-color);
}
#blogs_section .blog-card {
  background: var(--white-color);
  border-radius: var(--border-radius-20);
  border: 1px solid rgba(0, 166, 183, 0.1);
  overflow: hidden;
  transition: all 0.35s var(--transition-ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
#blogs_section .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 166, 183, 0.13);
  border-color: rgba(0, 166, 183, 0.25);
}
#blogs_section .blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}
#blogs_section .blog-card .blog-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
#blogs_section .blog-card .blog-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
#blogs_section .blog-card .blog-card-img .blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: var(--font-12);
  font-weight: var(--weight-700);
  padding: 4px 12px;
  border-radius: var(--border-radius-50);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#blogs_section .blog-card .blog-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
#blogs_section .blog-card .blog-card-body .blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
#blogs_section .blog-card .blog-card-body .blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--font-12);
  color: #7a96aa;
  font-weight: var(--weight-600);
}
#blogs_section .blog-card .blog-card-body .blog-meta span .material-symbols-outlined {
  font-size: 14px;
  color: var(--primary-color);
}
#blogs_section .blog-card .blog-card-body h4 {
  font-size: var(--font-16);
  font-weight: var(--weight-700);
  color: var(--secondary-color);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#blogs_section .blog-card .blog-card-body p {
  font-size: var(--font-14);
  color: #5a7a90;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#blogs_section .blog-card .blog-card-body .blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--font-14);
  font-weight: var(--weight-700);
  color: var(--primary-text-color);
  margin-top: auto;
  transition: gap 0.25s ease;
}
#blogs_section .blog-card .blog-card-body .blog-card-link .material-symbols-outlined {
  font-size: 17px;
  transition: transform 0.25s ease;
}
#blogs_section .blog-card .blog-card-body .blog-card-link:hover {
  gap: 10px;
}
#blogs_section .blog-card .blog-card-body .blog-card-link:hover .material-symbols-outlined {
  font-size: 14px;
  color: var(--primary-text-color);
  transform: translateX(4px);
}

#cta_section {
  padding: 6rem 0;
}
#cta_section .cta-inner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0d3a5e 55%, #003d50 100%);
  border-radius: 28px;
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
#cta_section .cta-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
#cta_section .cta-glow--tl {
  top: -20%;
  left: -5%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 166, 183, 0.2) 0%, transparent 70%);
}
#cta_section .cta-glow--br {
  bottom: -25%;
  right: -5%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(163, 138, 224, 0.15) 0%, transparent 70%);
}
#cta_section .cta-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}
#cta_section .cta-badge .material-symbols-outlined {
  color: var(--primary-color);
}
#cta_section .cta-title {
  font-family: var(--heading-family);
  font-size: var(--font-40);
  font-weight: var(--weight-700);
  color: var(--white-color);
  line-height: 1.25;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}
#cta_section .cta-title span {
  color: var(--primary-color);
}
#cta_section .cta-subtitle {
  font-size: var(--font-15);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 520px;
  position: relative;
  z-index: 1;
}
#cta_section .cta-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
#cta_section .cta-stat {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--border-radius-20);
  padding: 22px 20px;
  text-align: center;
  transition: all var(--transition-speed) ease;
}
#cta_section .cta-stat:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
#cta_section .cta-stat .material-symbols-outlined {
  font-size: 26px;
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
}
#cta_section .cta-stat h3 {
  font-family: var(--heading-family);
  font-size: var(--font-26);
  font-weight: var(--weight-700);
  color: var(--white-color);
  margin: 0 0 4px;
  line-height: 1;
}
#cta_section .cta-stat p {
  font-size: var(--font-12);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: var(--weight-600);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
#cta_section .hero_btn:not(.secBtn) {
  position: relative;
  z-index: 1;
  background: var(--white-color);
  color: var(--secondary-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
#cta_section .hero_btn:not(.secBtn):hover {
  background: var(--primary-color);
  color: var(--white-color);
  box-shadow: 0 6px 20px rgba(0, 166, 183, 0.4);
}

@media screen and (max-width: 768px) {
  .header {
    padding: 0 12px;
  }
  #hero_section .hero-img-grid {
    margin-top: 2rem;
  }
  #hero_section .hero-img-grid img {
    border-radius: 12px !important;
  }
  #hero_section .hero-img-grid .row:first-child > div:last-child {
    display: none;
  }
  #hero_section .hero-stats {
    gap: 1.25rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
  #hero_section .hero-stats .stat-item h4 {
    font-size: var(--font-22);
  }
  #hero_section .hero-title {
    font-size: var(--font-36);
  }
  #hero_section .hero_btn {
    font-size: var(--font-14);
    padding: 10px 20px;
  }
  #about_section .about-image-wrapper {
    margin-bottom: 2rem;
    padding: 16px 16px 16px 0;
  }
  #about_section .about-image-wrapper::before, #about_section .about-image-wrapper::after {
    display: none;
  }
  #about_section .experience-badge {
    bottom: 12px;
    right: 8px;
    padding: 14px 16px;
    min-width: 110px;
  }
  #about_section .experience-badge h3 {
    font-size: var(--font-26);
  }
  #about_section .experience-badge p {
    font-size: 10px;
  }
  #about_section .feature-item:hover {
    transform: none;
  }
  #what_we_do_section .wwd-card:hover {
    transform: none;
  }
  #what_we_do_section .wwd-cta-banner {
    padding: 28px 20px;
    text-align: center;
  }
  #what_we_do_section .wwd-cta-banner h3 {
    font-size: var(--font-20);
    margin-bottom: 6px;
  }
  #what_we_do_section .wwd-cta-banner p {
    font-size: var(--font-13);
    margin-bottom: 16px;
  }
  #what_we_do_section .wwd-cta-banner .col-md-4 {
    justify-content: center !important;
  }
  #success_stories_section .ss-card:hover {
    transform: none;
  }
  #success_stories_section .ss-impact-strip {
    padding: 20px 16px;
    gap: 0;
    flex-wrap: wrap;
  }
  #success_stories_section .ss-impact-strip .ss-impact-divider {
    display: none;
  }
  #success_stories_section .ss-impact-strip .ss-impact-item {
    flex: 1 0 45%;
    padding: 10px 0;
  }
  #success_stories_section .ss-impact-strip .ss-impact-item h3 {
    font-size: var(--font-22);
  }
  #success_stories_section .text-center .hero_btn {
    width: auto;
  }
  #events_section .ev-subtitle {
    max-width: 100%;
  }
  #events_section .ev-card:hover {
    transform: none;
  }
  #events_section .ev-list-card {
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    flex-wrap: nowrap;
  }
  #events_section .ev-list-card:hover {
    transform: none;
  }
  #events_section .ev-list-card .ev-list-date {
    flex-shrink: 0;
  }
  #events_section .ev-list-card .ev-list-body {
    flex: 1;
    min-width: 0;
  }
  #events_section .ev-list-card .ev-list-body .ev-category,
  #events_section .ev-list-card .ev-list-body h5,
  #events_section .ev-list-card .ev-list-body .ev-meta-item {
    white-space: normal;
    word-break: break-word;
  }
  #events_section .ev-list-card > .hero_btn {
    flex-shrink: 0;
    align-self: center;
    padding: 6px 12px;
    font-size: var(--font-12);
  }
  #events_section .ev-newsletter {
    padding: 20px 18px;
  }
  #events_section .ev-newsletter .ev-newsletter-form {
    flex-direction: column;
  }
  #events_section .ev-newsletter .ev-newsletter-input,
  #events_section .ev-newsletter .hero_btn {
    width: 100%;
    justify-content: center;
  }
  #blogs_section .blog-swiper {
    overflow: hidden;
  }
  #blogs_section .blog-card:hover {
    transform: none;
  }
  #blogs_section .blog-nav-btn {
    display: none;
  }
  #cta_section .cta-inner {
    padding: 36px 24px;
  }
  #cta_section .cta-stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  #cta_section .cta-stat {
    padding: 16px 12px;
  }
  #cta_section .cta-stat:hover {
    transform: none;
  }
  #cta_section .cta-subtitle {
    max-width: 100%;
  }
  #site-footer .footer-top {
    padding: 40px 0 28px;
  }
  #site-footer .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  #site-footer .footer-logo {
    display: block;
    margin-bottom: 12px;
  }
  #site-footer .footer-about {
    font-size: var(--font-13);
    max-width: 320px;
    margin: 0 auto;
  }
  .section-title {
    font-size: var(--font-28) !important;
  }
  .section-subtitle {
    font-size: var(--font-14) !important;
  }
  .header_icon {
    font-size: var(--font-13);
    padding: 5px 12px 5px 8px;
  }
}
@media screen and (max-width: 576px) {
  #hero_section .hero-title {
    font-size: var(--font-28);
  }
  #hero_section .hero-stats {
    gap: 1rem;
  }
  #hero_section .stat-item h4 {
    font-size: var(--font-20);
  }
  #what_we_do_section .col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #success_stories_section .col-md-5,
  #success_stories_section .col-md-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #success_stories_section .ss-card--featured {
    margin-bottom: 1rem;
  }
  #events_section .col-md-5,
  #events_section .col-md-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #events_section .ev-card {
    margin-bottom: 1.5rem;
  }
  #cta_section .cta-stat h3 {
    font-size: var(--font-20);
  }
  #cta_section .cta-inner {
    border-radius: 18px;
  }
  #cta_section .hero_btn {
    width: 100%;
    justify-content: center;
  }
  #site-footer .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #site-footer .footer-social {
    justify-content: center;
  }
  #site-footer .footer-heading {
    text-align: center;
  }
  #site-footer .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  #site-footer .footer-links,
  #site-footer .footer-contact {
    align-items: center;
    text-align: center;
  }
  .section-title {
    font-size: var(--font-24) !important;
  }
  .hero-title {
    font-size: var(--font-26) !important;
  }
}
@media screen and (max-width: 480px) {
  #hero_section .hero-title {
    font-size: var(--font-24);
  }
  #hero_section .d-flex.gap-sm-4 {
    gap: 0.75rem !important;
  }
  #cta_section .cta-title {
    font-size: var(--font-24);
  }
  .hero_btn {
    padding: 10px 18px;
    font-size: var(--font-13);
  }
  .section-title {
    font-size: var(--font-22) !important;
  }
}/*# sourceMappingURL=style.css.map */