body {
  font-family: 'Inter', Arial, sans-serif;
  background: #fff;
  color: #111827;
  margin: 0;
  padding: 0;
}
/* Custom Navbar Styles for Webbea.in */
/* Enhanced Navbar with glassmorphism, shadow, and hover effects */
.custom-navbar-wrapper {
  width: 100%;
  max-width: 98vw;
  display: flex;
  justify-content: center;
  /* background: linear-gradient(90deg, #e3f0ff 0%, #f7f7f7 100%); */
  padding-top: 8px;
  padding-bottom: 8px;
}
.custom-navbar {
  background: rgba(247,247,247,0.92);
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(26, 115, 232, 0.10), 0 2px 8px rgba(225, 48, 108, 0.06);
  max-width: 96vw;
  width: 98%;
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 10;
  transition: box-shadow 0.22s;
}
.custom-navbar:hover {
  box-shadow: 0 8px 40px rgba(26, 115, 232, 0.18), 0 4px 16px rgba(225, 48, 108, 0.10);
}
.custom-navbar-logo {
  height: 44px;
  width: 44px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.10);
  background: linear-gradient(135deg, #e3f0ff 60%, #fff 100%);
  margin-right: 12px;
  transition: transform 0.18s;
}
.custom-navbar-logo:hover {
  transform: scale(1.08) rotate(-2deg);
}
.custom-navbar-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #0a1736;
  background: linear-gradient(90deg, #e1306c 0%, #1a73e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 8px rgba(26, 115, 232, 0.10);
}
.custom-navbar-tagline {
  font-size: 0.75rem;
  color: #444;
  letter-spacing: 0.14em;
  margin-top: -2px;
  font-weight: 500;
}
.custom-navbar-nav {
  list-style: none;
  gap: 2.5rem;
  margin: 0 2.5rem 0 2.5rem;
  padding: 0;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
}
.custom-navbar-link {
  color: #0a1736;
  font-size: 1.12rem;
  font-weight: 600;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2.5px solid transparent;
  border-radius: 2px;
  transition: color 0.22s, border-color 0.22s, background 0.18s;
  position: relative;
}
.custom-navbar-link.active, .custom-navbar-link:hover {
  color: #e1306c;
  border-bottom: 2.5px solid #e1306c;
  background: linear-gradient(90deg, #e1306c11 0%, #1a73e811 100%);
  text-decoration: none;
}
.custom-navbar-cta {
  background: linear-gradient(90deg, #e1306c 0%, #1a73e8 100%);
  color: #fff;
  border-radius: 2.5rem;
  padding: 0.8rem 2.5rem;
  font-weight: 700;
  font-size: 1.12rem;
  text-decoration: none;
  transition: background 0.22s, box-shadow 0.22s, transform 0.18s;
  box-shadow: 0 2px 12px rgba(225, 48, 108, 0.10);
  display: inline-block;
  letter-spacing: 0.02em;
  margin-left: 1rem;
}
.custom-navbar-cta:hover {
  background: linear-gradient(90deg, #1a73e8 0%, #e1306c 100%);
  color: #fff;
  box-shadow: 0 4px 24px #e1306c33;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 991px) {
  .custom-navbar {
    flex-direction: column;
    align-items: stretch;
    padding: 1.2rem 0.7rem;
    min-height: 0;
  }
  .custom-navbar-nav {
    gap: 1.5rem;
    margin: 1.2rem 0;
  }
  .custom-navbar-cta {
    width: 100%;
    margin-top: 12px;
    text-align: center;
    margin-left: 0;
  }
  .custom-navbar-wrapper {
    padding: 0 2px;
  }
}
@media (max-width: 600px) {
  .custom-navbar {
    min-width: 0;
    width: 100%;
    max-width: 100vw;
    padding: 0.7rem 0.2rem;
    border-radius: 12px;
  }
  .custom-navbar-nav {
    gap: 0.8rem;
    margin: 0.7rem 0;
  }
  .custom-navbar-title {
    font-size: 1.08rem;
  }
  .custom-navbar-tagline {
    font-size: 0.62rem;
  }
  .custom-navbar-cta {
    font-size: 1rem;
    padding: 0.6rem 1.3rem;
  }
} 

/* Container Style Set */
.container {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-left: 6px;
    padding-right: 6px;
  }
}

.custom-navbar-wrapper {
  width: 120%;
  max-width: 98vw;
  display: flex;
  justify-content: center;
}

.custom-navbar {
  background: #f7f7f7;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(10,23,54,0.06);
  max-width: 96vw;
  width: 98%;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
}

.custom-navbar-title {
  font-weight: bold;
  font-size: 1.5rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.custom-navbar-logo {
  max-width: 100%;
  height: 32px;
  margin-right: 10px;
  display: block;
  border-radius: 8px;
}

.custom-navbar-nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.custom-navbar-link {
  color: #0a1736;
  font-weight: 500;
  margin: 0 10px;
  text-decoration: none;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  font-size: 1.08rem;
}

.custom-navbar-link.active,
.custom-navbar-link:hover {
  background: #e3f0ff;
  color: #0a1736;
  text-decoration: none;
}

.custom-navbar-cta {
  background: #0a1736;
  color: #fff;
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(10,23,54,0.08);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: inline-block;
}

.custom-navbar-cta:hover,
.custom-navbar-cta:focus {
  background: #1a2a4f;
  color: #fff;
  text-decoration: none;
  outline: none;
}

@media (max-width: 991px) {
  .custom-navbar {
    padding: 0 0.5rem;
    min-height: 56px;
  }
  .custom-navbar-nav {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(10,23,54,0.06);
    margin-top: 8px;
    padding: 8px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .custom-navbar-link {
    margin: 0 2px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 1.08rem;
  }
  .custom-navbar-cta {
    width: 100%;
    margin-top: 10px;
    font-size: 0.98rem;
    padding: 0.5rem 1.2rem;
    border-radius: 16px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .custom-navbar-wrapper {
    max-width: 100vw;
    padding: 0 2px;
  }
  .custom-navbar {
    padding: 0.5rem 0.2rem;
    border-radius: 10px;
    min-height: 44px;
  }
  .custom-navbar-title {
    font-size: 1.1rem;
  }
  .custom-navbar-logo {
    height: 24px;
    margin-right: 6px;
  }
  body {
    font-size: 0.98rem;
  }
}




.hero {
  padding: 80px 0 50px 0;
  text-align: center;
  background: linear-gradient(120deg, #e3f0ff 0%, #f5f7fa 100%);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.08);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #1a73e8 0%, #e3f0ff 80%);
  opacity: 0.18;
  z-index: 0;
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #e1306c 0%, #f5f7fa 80%);
  opacity: 0.13;
  z-index: 0;
  border-radius: 50%;
}
.hero h1 {
  font-size: 5.4rem;
  font-weight: 800;
  color: #0a1736;
  line-height: 1.08;
  background: linear-gradient(90deg, #1a73e8 20%, #e1306c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 12px rgba(26, 115, 232, 0.08);
}
.hero .highlight {
  color: #e1306c;
  background: linear-gradient(90deg, #1a73e8 0%, #e1306c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 1.15em;
  text-shadow: 0 2px 8px rgba(225, 48, 108, 0.10);
}
.hero p {
  font-size: 1.35rem;
  color: #222;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.7);
  border-radius: 1.2rem;
  padding: 0.7rem 1.2rem;
  box-shadow: 0 2px 12px rgba(10,23,54,0.04);
}

/* Mobile Friendly Styles for Hero */
@media (max-width: 767px) {
  .hero {
    padding: 32px 0 16px 0;
    text-align: center;
    border-radius: 0 0 18px 18px;
  }
  .hero h1 {
    font-size: 2.3rem;
    line-height: 1.15;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
    text-shadow: 0 1px 4px rgba(26, 115, 232, 0.10);
  }
  .hero .highlight {
    letter-spacing: 1.5px;
    font-size: 1.08em;
    text-shadow: 0 1px 4px rgba(225, 48, 108, 0.08);
  }
  .hero p {
    font-size: 1rem;
    margin-top: 0.7rem;
    padding: 0.5rem 0.7rem;
    border-radius: 0.7rem;
  }
}





.featured-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a73e8;
  text-align: left;
  margin-top: -28px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  /* background: linear-gradient(90deg, #e3f0ff 0%, #fff 100%); */
  padding: 0.7rem 1.2rem 0.7rem 0.7rem;
  border-radius: 1.2rem 0 1.2rem 0;
  /* box-shadow: 0 4px 24px rgba(26, 115, 232, 0.08); */
  display: inline-block;
  position: relative;
  z-index: 2;
}
.featured-title i {
  margin-left: 10px;
  color: #e1306c;
  font-size: 1.2em;
  vertical-align: middle;
  filter: drop-shadow(0 2px 8px rgba(225, 48, 108, 0.12));
  transition: color 0.2s, transform 0.2s;
}
.featured-title:hover i {
  color: #ff9800;
  transform: scale(1.2) rotate(-10deg);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 32px;
  padding: 8px 0;
  background: linear-gradient(120deg, #e3f0ff 0%, #f7f7f7 100%);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.06);
  position: relative;
  z-index: 1;
}
.featured-item {
  background: linear-gradient(135deg, #fff 60%, #e3f0ff 100%);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26, 115, 232, 0.10);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  transition: box-shadow 0.25s, transform 0.22s;
  position: relative;
  min-height: 320px;
}
.featured-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, #e1306c 0%, #1a73e8 100%);
  opacity: 0.12;
  z-index: 2;
}
.featured-item:hover {
  box-shadow: 0 12px 40px rgba(225, 48, 108, 0.13), 0 2px 8px rgba(26, 115, 232, 0.10);
  transform: translateY(-6px) scale(1.03);
}
.featured-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 2px 12px rgba(26, 115, 232, 0.08);
  transition: filter 0.2s, transform 0.2s;
  filter: grayscale(0.08) contrast(1.08);
}
.featured-item:hover img {
  filter: grayscale(0) contrast(1.15) brightness(1.04) drop-shadow(0 4px 16px rgba(225, 48, 108, 0.10));
  transform: scale(1.04);
}
.featured-item .caption {
  padding: 20px 24px 18px 24px;
  font-size: 1.08rem;
  color: #0a1736;
  text-align: left;
  font-weight: 500;
  background: rgba(255,255,255,0.92);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.04);
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: 70px;
  position: relative;
  z-index: 3;
}

/* Mobile Friendly Styles for Featured Section */
@media (max-width: 767px) {
  .featured-title {
    font-size: 1.08rem;
    margin-top: -8px;
    margin-bottom: 0.6rem;
    text-align: left;
    padding: 0.5rem 0.7rem 0.5rem 0.5rem;
    border-radius: 0.8rem 0 0.8rem 0;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.06);
  }
  .featured-title i {
    margin-left: 5px;
    font-size: 1em;
  }
  .featured-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 8px;
    padding: 2px 0;
    border-radius: 1.2rem;
  }
  .featured-item {
    border-radius: 12px;
    min-height: 140px;
  }
  .featured-item img {
    height: 90px;
    border-radius: 12px 12px 0 0;
  }
  .featured-item .caption {
    padding: 10px 10px 8px 10px;
    font-size: 0.97rem;
    border-radius: 0 0 10px 10px;
    min-height: 36px;
  }
}



/* Floating Social Buttons */
.social-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: none;
}

.social-float a {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 60%, #128c7e 100%);
  color: #fff;
  font-size: 2rem;
  box-shadow: 0 6px 24px rgba(26, 115, 232, 0.10), 0 2px 8px rgba(0,0,0,0.10);
  transition: 
    background 0.25s cubic-bezier(0.4,0,0.2,1),
    box-shadow 0.25s cubic-bezier(0.4,0,0.2,1),
    transform 0.18s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
}

.social-float a.instagram {
  background: linear-gradient(135deg, #e1306c 60%, #fdc468 100%);
  box-shadow: 0 6px 24px rgba(225, 48, 108, 0.13), 0 2px 8px rgba(0,0,0,0.10);
}

.social-float a::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.social-float a:hover,
.social-float a:focus {
  background: linear-gradient(135deg, #1a73e8 60%, #25d366 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(26, 115, 232, 0.18), 0 2px 8px rgba(0,0,0,0.12);
  transform: translateY(-3px) scale(1.07);
}
.social-float a.instagram:hover,
.social-float a.instagram:focus {
  background: linear-gradient(135deg, #fdc468 0%, #e1306c 100%);
  box-shadow: 0 12px 32px rgba(225, 48, 108, 0.18), 0 2px 8px rgba(0,0,0,0.12);
}
.social-float a:active {
  transform: scale(0.96);
}
.social-float a:focus-visible {
  outline: 2px solid #1a73e8;
  outline-offset: 2px;
}
.social-float a i {
  z-index: 2;
  position: relative;
}

@media (max-width: 991px) {
  .social-float {
    bottom: 18px;
    right: 16px;
    gap: 12px;
  }
  .social-float a {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .social-float {
    bottom: 12px;
    right: 8px;
    gap: 10px;
  }
  .social-float a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
} 

.fade-in {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.4,0,0.2,1), transform 1s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.fade-in-stagger {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1s cubic-bezier(0.4,0,0.2,1), transform 1s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.fade-in-stagger.visible {
  opacity: 1;
  transform: none;
} 

/* Smooth hover for cards and buttons */
.featured-item,
.btn-cta {
  transition: box-shadow 0.3s, transform 0.3s, background 0.2s;
}
.featured-item:hover {
  box-shadow: 0 8px 24px rgba(10,23,54,0.10);
  transform: translateY(-6px) scale(1.03);
}
.btn-cta:active {
  transform: scale(0.97);
}
#location-span {
  display: inline-block;
  transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1);
}
#location-span.fading {
  opacity: 0;
} 

/* Featured Work Section Redesign */
.featured-work-section {
  /* background: #fff; */
  /* border-radius: 32px; */
  /* box-shadow: 0 2px 16px rgba(0,0,0,0.06); */
  overflow: hidden;
  margin: 32px 0 0 0;
  min-height: 520px;
  margin-top: 64px;
}
.featured-work-section .row.g-0.align-items-stretch {
  min-height: 420px;
  height: 100%;
}
.featured-main-img,
.featured-main-img .main-img-fit {
  height: 100%;
  min-height: 420px;
  max-height: 600px;
  object-fit: cover;
} 

.col-lg-7.col-md-6.p-0 > .d-flex.flex-column {
  height: 100%;
  min-height: 420px;
}
.col-lg-7.col-md-6.p-0 .row.g-0 {
  flex: 1 1 0;
  height: 160px;
  min-height: 160px;
  max-height: 160px;
}
.grid-img {
  object-fit: cover;
  width: 100%;
  height: 160px;
  min-height: 160px;
  max-height: 160px;
  border-radius: 0;
  display: block;
}
.col-lg-7 .row.g-0 .col-6:first-child img {
  border-radius: 0 24px 0 0;
}
.col-lg-7 .row.g-0 .col-6:last-child img {
  border-radius: 0 0 24px 0;
}
@media (max-width: 991px) {
  .featured-main-img, .main-img-fit {
    min-height: 220px;
    max-height: 320px;
    border-radius: 24px 0 0 24px;
  }
  .featured-work-section {
    border-radius: 24px;
  }
}
@media (max-width: 767px) {
  .featured-work-section {
    border-radius: 16px;
    margin: 16px 4px 0 4px;
  }
  .featured-main-img, .main-img-fit {
    min-height: 160px;
    max-height: 220px;
    border-radius: 16px 16px 0 0;
  }
  .main-img-overlay .main-overlay-title {
    font-size: 1.1rem;
  }
  .main-img-overlay .main-overlay-sub {
    font-size: 0.9rem;
  }
  .grid-img {
    min-height: 80px;
    max-height: 120px;
  }
} 







.problem-solvers-section {
  margin: 48px 0 0 0;
  padding: 0;
  background: none;
  border-radius: 0;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
.problem-solvers-section .container {
  background: linear-gradient(120deg, #e3f0ff 0%, #f5f7fa 100%);
  border-radius: 28px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.10), 0 2px 8px rgba(225, 48, 108, 0.06);
  border: 1.5px solid #e3f0ff;
}
.problem-solvers-section .container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/white-wave.png') repeat, 
              radial-gradient(circle at 80% 20%, #e1306c22 0%, transparent 70%),
              radial-gradient(circle at 10% 80%, #1a73e822 0%, transparent 70%);
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}
.problem-solvers-section .container::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #e1306c 0%, #f5f7fa 80%);
  opacity: 0.10;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}
.problem-solvers-text {
  font-size: 3.1rem;
  font-weight: 700;
  color: #0a1736;
  position: relative;
  z-index: 1;
  letter-spacing: 1.2px;
  text-shadow: 0 4px 24px rgba(26, 115, 232, 0.10), 0 2px 8px rgba(225, 48, 108, 0.08);
  background: linear-gradient(90deg, #1a73e8 10%, #e1306c 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.problem-solvers-text .highlight {
  color: #e1306c;
  background: linear-gradient(90deg, #e1306c 0%, #1a73e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(225, 48, 108, 0.10);
}
@media (max-width: 991px) {
  .problem-solvers-section .container {
    min-height: 220px;
    padding: 28px 8px;
    border-radius: 16px;
  }
  .problem-solvers-text {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .problem-solvers-section .container {
    min-height: 140px;
    padding: 14px 2px;
    border-radius: 8px;
  }
  .problem-solvers-text {
    font-size: 1.2rem;
    text-shadow: 0 1px 4px rgba(26, 115, 232, 0.08);
  }
}





.stats-section {
  margin-top: 72px;
  margin-bottom: 72px;
  border-radius: 2.5rem;
  /* box-shadow: 0 8px 32px rgba(26, 115, 232, 0.10); */
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  /* background: radial-gradient(circle, #1a73e8 0%, #e3f0ff 80%); */
  opacity: 0.13;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}
.stats-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  /* background: radial-gradient(circle, #e1306c 0%, #f5f7fa 80%); */
  opacity: 0.10;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}
.stats-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #1a73e8;
  letter-spacing: 1.5px;
  text-align: none;
  margin-bottom: 0.7rem;
  background: linear-gradient(90deg, #1a73e8 10%, #e1306c 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 24px rgba(26, 115, 232, 0.10), 0 2px 8px rgba(225, 48, 108, 0.08);
  position: relative;
  z-index: 1;
}
.stats-lead {
  font-size: 1.18rem;
  color: #333;
  margin-bottom: 0.7rem;
  text-align: none;
  font-weight: 500;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1;
}
.stats-sub {
  font-size: 1.08rem;
  color: #666;
  text-align: none;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.stats-card {
  border: 2px solid #e3f0ff;
  border-radius: 28px;
  background: none;
  padding: 44px 32px 36px 32px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 0 4px 32px rgba(26, 115, 232, 0.10), 0 2px 8px rgba(225, 48, 108, 0.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.18s, background 0.3s, border-color 0.22s;
  backdrop-filter: blur(0.5px);
}
.stats-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, #e1306c 0%, #1a73e8 100%);
  opacity: 0.16;
  z-index: 2;
  border-radius: 28px 28px 0 0;
  pointer-events: none;
}
.stats-card:hover {
  box-shadow: 0 12px 40px rgba(26, 115, 232, 0.16), 0 2px 8px rgba(225, 48, 108, 0.10);
  border-color: #1a73e8;
  background: none;
  transform: translateY(-6px) scale(1.03);
}
.stats-card:hover .stats-number,
.stats-card:hover .stats-desc {
  color: #1a73e8;
  text-shadow: 0 2px 8px rgba(26, 115, 232, 0.18);
}
.stats-card:hover .stats-number {
  background: linear-gradient(90deg, #e1306c 0%, #1a73e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cursor-pointer {
  cursor: pointer;
}
.stats-number {
  font-size: 3.1rem;
  font-weight: 800;
  color: #1a73e8;
  margin-bottom: 18px;
  letter-spacing: 1.2px;
  background: linear-gradient(90deg, #1a73e8 10%, #e1306c 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: color 0.2s, background 0.2s;
  text-shadow: 0 2px 8px rgba(26, 115, 232, 0.10);
}
.stats-desc {
  font-size: 1.13rem;
  color: #222;
  font-weight: 500;
  letter-spacing: 0.1px;
  transition: color 0.2s;
}
@media (max-width: 991px) {
  .stats-section {
    margin-top: 36px;
    margin-bottom: 36px;
    border-radius: 1.5rem;
    padding: 18px 0;
  }
  .stats-title {
    font-size: 2.1rem;
  }
  .stats-card {
    min-height: 180px;
    padding: 24px 12px 18px 12px;
    border-radius: 18px;
  }
  .stats-number {
    font-size: 2.1rem;
  }
}
@media (max-width: 767px) {
  .stats-section {
    margin-top: 18px;
    margin-bottom: 18px;
    border-radius: 0.7rem;
    padding: 8px 0;
  }
  .stats-title {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }
  .stats-card {
    min-height: 110px;
    padding: 10px 4px 8px 4px;
    border-radius: 10px;
  }
  .stats-number {
    font-size: 1.1rem;
  }
  .stats-lead, .stats-sub, .stats-desc {
    font-size: 0.98rem;
  }
}
html, body {
  scroll-behavior: smooth;
} 






.services-section {
  margin-top: 64px;
  /* background: linear-gradient(120deg, #e3f0ff 0%, #f7f7f7 100%); */
  border-radius: 2.5rem;
  /* box-shadow: 0 12px 40px rgba(26, 115, 232, 0.10), 0 2px 8px rgba(225, 48, 108, 0.04); */
  padding: 48px 0 64px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
/* .services-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #e1306c33 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
} */
.services-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  /* background: radial-gradient(circle, #1a73e833 0%, transparent 80%); */
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
}
.services-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #0a1736;
  letter-spacing: 2px;
  text-align: none;
  margin-bottom: 0.7rem;
  background: linear-gradient(90deg, #e1306c 0%, #1a73e8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 24px rgba(26, 115, 232, 0.10);
  position: relative;
  z-index: 2;
}
.services-lead {
  font-size: 1.22rem;
  color: #222;
  margin-bottom: 1rem;
  text-align: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 8px rgba(225, 48, 108, 0.06);
  z-index: 2;
  position: relative;
}
.services-sub {
  font-size: 1.12rem;
  color: #444;
  text-align: none;
  margin-bottom: 2rem;
  z-index: 2;
  position: relative;
}
.services-cards-row {
  gap: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}
.service-card {
  background: linear-gradient(135deg, #fff 60%, #e3f0ff 100%);
  border-radius: 32px;
  /* box-shadow: 0 8px 32px rgba(26, 115, 232, 0.13), 0 2px 8px rgba(225, 48, 108, 0.06); */
  min-width: 340px;
  max-width: 340px;
  flex: 0 0 340px;
  padding: 0 0 32px 0;
  margin: 0 14px 40px 14px;
  transition: box-shadow 0.28s, transform 0.22s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  border: 2px solid #e3f0ff;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 8px;
  background: linear-gradient(90deg, #e1306c 0%, #1a73e8 100%);
  opacity: 0.22;
  z-index: 2;
  border-radius: 32px 32px 0 0;
}
.service-card:hover, .service-card:focus {
  /* box-shadow: 0 16px 48px rgba(26, 115, 232, 0.22), 0 4px 16px rgba(225, 48, 108, 0.10); */
  transform: translateY(-10px) scale(1.06) rotate(-1deg);
  border-color: #e1306c;
}
.service-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 32px 32px 0 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e3f0ff 60%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.10);
  position: relative;
  z-index: 1;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px 32px 0 0;
  transition: transform 0.22s cubic-bezier(0.4,0,0.2,1), filter 0.22s;
  filter: grayscale(10%) brightness(0.98);
}
.service-card:hover .service-img-wrap img,
.service-card:focus .service-img-wrap img {
  transform: scale(1.09) rotate(-2deg);
  filter: grayscale(0%) brightness(1.04) drop-shadow(0 2px 12px #e1306c33);
}
.service-label {
  font-size: 1.22rem;
  font-weight: 700;
  color: #0a1736;
  margin-top: 22px;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 2px 8px rgba(26, 115, 232, 0.08);
  transition: color 0.18s, text-shadow 0.18s;
  z-index: 2;
  position: relative;
}
.service-card:hover .service-label,
.service-card:focus .service-label {
  color: #e1306c;
  text-shadow: 0 4px 16px #e1306c33;
}
@media (max-width: 991px) {
  .services-title {
    font-size: 2.1rem;
  }
  .service-card {
    min-width: 220px;
    max-width: 220px;
    flex: 0 0 220px;
    border-radius: 18px;
    margin: 0 6px 24px 6px;
    padding-bottom: 18px;
  }
  .service-img-wrap {
    border-radius: 18px 18px 0 0;
  }
  .service-img-wrap img {
    border-radius: 18px 18px 0 0;
  }
  .service-label {
    font-size: 1.08rem;
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .services-section {
    margin-top: 24px;
    border-radius: 1.2rem;
    padding: 12px 0 18px 0;
  }
  .services-title {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
  }
  .services-lead, .services-sub {
    font-size: 0.98rem;
    margin-bottom: 0.3rem;
  }
  .services-cards-row {
    gap: 0.7rem;
    margin-top: 1.2rem;
  }
  .service-card {
    min-width: 140px;
    max-width: 140px;
    flex: 0 0 140px;
    border-radius: 12px;
    margin: 0 2px 10px 2px;
    padding-bottom: 8px;
  }
  .service-img-wrap {
    border-radius: 12px 12px 0 0;
  }
  .service-img-wrap img {
    border-radius: 12px 12px 0 0;
  }
  .service-label {
    font-size: 0.98rem;
    margin-top: 6px;
  }
}




.large-cards-section {
  margin-top: 72px;
  border-radius: 2.5rem;
  /* box-shadow: 0 12px 48px 0 rgba(26, 115, 232, 0.13), 0 2px 8px rgba(225, 48, 108, 0.08); */
  padding: 48px 0 64px 0;
  position: relative;
  overflow: visible;
  /* background: linear-gradient(120deg, #f7faff 0%, #fbeffb 100%); */
}

.large-cards-section::before,
.large-cards-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.large-cards-section::before {
  top: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, #1a73e8 0%, #e3f0ff 80%);
  opacity: 0.10;
}
.large-cards-section::after {
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #e1306c 0%, #f5f7fa 80%);
  opacity: 0.09;
}

.large-cards-title {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: 2px;
  text-align: center;
  background: linear-gradient(90deg, #e1306c 10%, #1a73e8 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 6px 32px rgba(26, 115, 232, 0.13), 0 2px 8px rgba(225, 48, 108, 0.10);
  position: relative;
  z-index: 2;
}

.large-card {
  background: linear-gradient(120deg, #fff 60%, #e3f0ff 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.10), 0 2px 8px rgba(225, 48, 108, 0.06);
  padding: 48px 36px 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 340px;
  transition: box-shadow 0.28s, transform 0.22s, background 0.3s;
  position: relative;
  overflow: hidden;
}

.large-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 8px;
  background: linear-gradient(90deg, #e1306c 0%, #1a73e8 100%);
  opacity: 0.18;
  z-index: 1;
  border-radius: 32px 32px 0 0;
  pointer-events: none;
}

.large-card:hover, .large-card:focus-within {
  box-shadow: 0 16px 48px rgba(26, 115, 232, 0.18), 0 2px 8px rgba(225, 48, 108, 0.13);
  background: linear-gradient(120deg, #e3f0ff 0%, #fff 100%);
  transform: translateY(-8px) scale(1.035);
}

.large-card-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0a1736;
  margin-bottom: 18px;
  z-index: 2;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(26, 115, 232, 0.08);
}

.large-card-desc {
  font-size: 1.18rem;
  color: #333;
  z-index: 2;
  margin-bottom: 18px;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(225, 48, 108, 0.06);
}

.large-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  position: relative;
  z-index: 3;
}

.large-card-link:hover .large-card,
.large-card-link:focus .large-card {
  box-shadow: 0 20px 56px rgba(26, 115, 232, 0.22), 0 2px 8px rgba(225, 48, 108, 0.16);
  background: linear-gradient(120deg, #fff 60%, #e3f0ff 100%);
  transform: translateY(-10px) scale(1.04);
}

.large-card-footer {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 40px;
  margin-top: auto;
}

.arrow-icon {
  display: inline-block;
  font-size: 1.7rem;
  color: #fff;
  background: linear-gradient(135deg, #1a73e8 60%, #e1306c 100%);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.13);
  transition: background 0.22s, color 0.22s, transform 0.22s, box-shadow 0.22s;
  position: relative;
  z-index: 3;
}

.large-card-link:hover .arrow-icon,
.large-card-link:focus .arrow-icon {
  background: linear-gradient(135deg, #e1306c 60%, #1a73e8 100%);
  color: #fff;
  transform: translateX(8px) scale(1.13) rotate(-8deg);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.18);
}

@media (max-width: 991px) {
  .large-cards-title {
    font-size: 2rem;
  }
  .large-card {
    padding: 28px 14px 20px 14px;
    border-radius: 18px;
    min-height: 180px;
  }
  .large-card-title {
    font-size: 1.2rem;
  }
  .arrow-icon {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    line-height: 32px;
  }
}

@media (max-width: 767px) {
  .large-cards-section {
    margin-top: 20px;
    border-radius: 1.2rem;
    padding: 18px 0 24px 0;
  }
  .large-card {
    padding: 10px 4px 8px 4px;
    border-radius: 10px;
    min-height: 100px;
  }
  .large-card-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .large-card-desc {
    font-size: 0.98rem;
    margin-bottom: 8px;
  }
  .arrow-icon {
    width: 26px;
    height: 26px;
    font-size: 1rem;
    line-height: 26px;
  }
}

/* Enhanced Visual Styles for Cards and Navigation */

/* Vibrant, multi-layered backgrounds for cards */
.bg1 { 
  background: linear-gradient(135deg, #e3f0ff 0%, #a1c4fd 60%, #6dd5fa 100%) !important; 
  box-shadow: 0 8px 32px 0 rgba(26, 115, 232, 0.13), 0 2px 8px rgba(225, 48, 108, 0.06);
}
.bg2 { 
  background: linear-gradient(135deg, #fff3e3 0%, #ffd6a5 60%, #ffb347 100%) !important; 
  box-shadow: 0 8px 32px 0 rgba(255, 193, 7, 0.13), 0 2px 8px rgba(225, 48, 108, 0.06);
}
.bg3 { 
  background: linear-gradient(135deg, #e3fff3 0%, #b2f7ef 60%, #43e97b 100%) !important; 
  box-shadow: 0 8px 32px 0 rgba(40, 167, 69, 0.13), 0 2px 8px rgba(26, 115, 232, 0.06);
}
.bg4 { 
  background: linear-gradient(135deg, #f3e3ff 0%, #d1c4e9 60%, #a18cd1 100%) !important; 
  box-shadow: 0 8px 32px 0 rgba(111, 66, 193, 0.13), 0 2px 8px rgba(225, 48, 108, 0.06);
}

/* Card overlay with animated shimmer for depth */
.card-overlay {
  z-index: 2;
  border-radius: 32px;
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: lighten;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.05) 100%);
  animation: shimmer 2.5s infinite linear;
}
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.overlay1 { background: rgba(0, 123, 255, 0.18); }
.overlay2 { background: rgba(255, 193, 7, 0.18); }
.overlay3 { background: rgba(40, 167, 69, 0.18); }
.overlay4 { background: rgba(111, 66, 193, 0.18); }

/* Footer with glassmorphism and subtle gradient */
.site-footer {
  background: linear-gradient(90deg, #f6f6f6 80%, #e3f0ff 100%);
  border-top: 1.5px solid #e5e7eb;
  color: #222;
  font-size: 1.08rem;
  box-shadow: 0 -4px 24px rgba(26, 115, 232, 0.06);
  backdrop-filter: blur(4px);
}
.footer-logo img {
  height: 36px;
  filter: drop-shadow(0 2px 8px #1a73e833);
  transition: transform 0.2s;
}
.footer-logo img:hover {
  transform: scale(1.08) rotate(-2deg);
}
.footer-nav a {
  color: #0a1736;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.22s, text-shadow 0.22s;
  text-shadow: 0 2px 8px rgba(26, 115, 232, 0.04);
}
.footer-nav a:hover {
  color: #e1306c;
  text-decoration: underline;
  text-shadow: 0 4px 16px #e1306c33;
}
.footer-social {
  color: #0a1736;
  font-size: 1.7rem;
  margin: 0 8px;
  transition: color 0.22s, text-shadow 0.22s;
  text-shadow: 0 2px 8px rgba(26, 115, 232, 0.08);
}
.footer-social:hover {
  color: #25d366;
  text-shadow: 0 4px 16px #25d36633;
}
@media (max-width: 767px) {
  .site-footer {
    font-size: 1rem;
    padding-top: 22px;
    padding-bottom: 14px;
    border-radius: 1.2rem 1.2rem 0 0;
  }
  .footer-logo span {
    font-size: 1.18rem;
  }
  .footer-social {
    font-size: 1.3rem;
  }
}






.modern-footer {
  background: none;
  border: none;
  color: #222;
  font-size: 1.05rem;
}
.footer-card {
  background: #f7f7f7;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(10,23,54,0.06);
  max-width: 96vw;
  width: 98%;
  margin: 0 auto;
}
.footer-tagline {
  font-size: 0.7rem;
  color: #222;
  letter-spacing: 0.12em;
  margin-top: -2px;
}
.footer-nav a {
  color: #0a1736;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #1a2a4f;
  text-decoration: underline;
}
.footer-social {
  color: #0a1736;
  font-size: 1.5rem;
  margin: 0 6px;
  transition: color 0.2s;
}
.footer-social:hover {
  color: #25d366;
}
@media (max-width: 767px) {
  .footer-card {
    font-size: 0.98rem;
    padding-top: 18px;
    padding-bottom: 10px;
    border-radius: 12px;
  }
  .footer-logo span {
    font-size: 1.1rem;
  }
  .footer-social {
    font-size: 1.2rem;
  }
} 





.card-bgimg {
  z-index: 0;
  opacity: 0.2;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  pointer-events: none;
}
.bgimg1 {
  background-image: url('https://images.unsplash.com/photo-1519125323398-675f0ddb6308?auto=format&fit=crop&w=600&q=80');
}
.bgimg2 {
  background-image: url('https://images.unsplash.com/photo-1515378791036-46273834b3fb?auto=format&fit=crop&w=600&q=80');
}
.bgimg3 {
  background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=600&q=80');
}
.bgimg4 {
  background-image: url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=600&q=80');
}
.btn-view-more {
  background: linear-gradient(90deg, #0a1736 0%, #1a73e8 100%);
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 0.6rem 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.10);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-view-more:hover, .btn-view-more:focus {
  background: linear-gradient(90deg, #1a73e8 0%, #0a1736 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(26, 115, 232, 0.18);
  text-decoration: none;
}
.btn-view-more:active {
  transform: scale(0.97);
} 







/* Team Section */
.team-section {
  margin-top: 64px;
  margin-bottom: 64px;
}
.team-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0a1736;
  margin-bottom: 12px;
}
.team-sub {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 32px;
}
.team-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(10,23,54,0.06);
  padding: 32px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover {
  box-shadow: 0 8px 32px rgba(10,23,54,0.12);
  transform: translateY(-4px) scale(1.03);
}
.team-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #e3f0ff;
  margin-bottom: 16px;
  box-shadow: 0 4px 24px rgba(10,23,54,0.10);
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.team-card-grid:hover .team-img {
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.18);
  border-color: #1a73e8;
}
.team-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a1736;
  margin-bottom: 4px;
}
.team-role {
  font-size: 1rem;
  color: #1a73e8;
  font-weight: 500;
}
@media (max-width: 991px) {
  .team-title {
    font-size: 1.5rem;
  }
  .team-card {
    padding: 18px 8px 14px 8px;
    border-radius: 14px;
  }
  .team-img {
    width: 90px;
    height: 90px;
    border-width: 4px;
  }
}
@media (max-width: 767px) {
  .team-section {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .team-title {
    font-size: 1.1rem;
  }
  .team-card {
    padding: 10px 4px 8px 4px;
    border-radius: 10px;
  }
  .team-img {
    width: 60px;
    height: 60px;
    border-width: 3px;
  }
} 






/* Team Hero Section */
.team-hero-section {
  margin-top: 72px;
  margin-bottom: 72px;
  background: linear-gradient(120deg, #e3f0ff 0%, #f7f7f7 100%);
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  overflow: visible;
}
.team-hero-section::before,
.team-hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.team-hero-section::before {
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #1a73e8 0%, #e3f0ff 80%);
  opacity: 0.13;
}
.team-hero-section::after {
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #e1306c 0%, #f5f7fa 80%);
  opacity: 0.10;
}
.team-hero-section .container {
  background: rgba(245,247,250,0.98);
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(26, 115, 232, 0.10), 0 2px 16px rgba(225, 48, 108, 0.06);
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.team-hero-title {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(90deg, #e1306c 10%, #1a73e8 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #0a1736;
  line-height: 1.13;
  margin-top: 0;
  margin-bottom: 28px; 
  margin-left: 48px;
  letter-spacing: 1.5px;
  text-shadow: 0 6px 32px rgba(26, 115, 232, 0.13), 0 2px 8px rgba(225, 48, 108, 0.10);
  position: relative;
  z-index: 2;
}
.team-hero-btns {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap; 
  margin-left: 48px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.team-hero-btn {
  background: linear-gradient(90deg, #1a73e8 0%, #e1306c 100%);
  color: #fff;
  border-radius: 2.5rem;
  padding: 1rem 2.6rem;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  margin-bottom: 0.5rem;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.18s;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 4px 16px #1a73e833;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.team-hero-btn-linkedin {
  background: linear-gradient(90deg, #13294b 60%, #1a73e8 100%);
}
.team-hero-btn:hover, .team-hero-btn:focus {
  background: linear-gradient(90deg, #e1306c 0%, #1a73e8 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 32px #e1306c33;
  transform: translateY(-2px) scale(1.04);
}
.team-hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
}
.team-hero-img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 50% 50% 0 0 / 60% 60% 40% 40%;
  box-shadow: 0 8px 40px rgba(26, 115, 232, 0.13), 0 2px 8px rgba(225, 48, 108, 0.10);
  background: #fff;
  border: 6px solid #e3f0ff;
  transition: box-shadow 0.22s, transform 0.18s;
}
.team-hero-img:hover, .team-hero-img:focus {
  box-shadow: 0 16px 56px rgba(26, 115, 232, 0.18), 0 4px 16px rgba(225, 48, 108, 0.13);
  transform: scale(1.04) rotate(-2deg);
}
@media (max-width: 991px) {
  .team-hero-title {
    font-size: 2rem;
    margin-left: 18px;
    margin-bottom: 18px;
  }
  .team-hero-btns {
    margin-left: 18px;
    gap: 0.7rem;
  }
  .team-hero-img {
    width: 220px;
    height: 220px;
    border-width: 4px;
  }
  .team-hero-section .container {
    border-radius: 18px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .team-hero-section {
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 0.7rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .team-hero-section .container {
    border-radius: 10px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .team-hero-title {
    font-size: 1.1rem;
    margin-left: 6px;
    margin-bottom: 10px;
  }
  .team-hero-btns {
    margin-left: 6px;
    gap: 0.4rem;
  }
  .team-hero-img {
    width: 100px;
    height: 100px;
    border-width: 2px;
  }
  .team-hero-btn {
    font-size: 0.95rem;
    padding: 0.5rem 1.1rem;
    border-radius: 1.2rem;
  }
}  






/* Team Grid Section - Enhanced Visuals */
.team-grid-section {
  margin-top: 72px;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}
.team-grid-section::before,
.team-grid-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.team-grid-section::before {
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, #1a73e8 0%, #e3f0ff 80%);
  opacity: 0.13;
}
.team-grid-section::after {
  bottom: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #e1306c 0%, #f5f7fa 80%);
  opacity: 0.10;
}
.team-grid-section .container {
  background: rgba(245,247,250,0.98);
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(26, 115, 232, 0.10), 0 2px 16px rgba(225, 48, 108, 0.06);
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.team-title {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(90deg, #e1306c 10%, #1a73e8 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #0a1736;
  line-height: 1.13;
  margin-top: 0;
  margin-bottom: 28px; 
  margin-left: 48px;
  letter-spacing: 1.5px;
  text-shadow: 0 6px 32px rgba(26, 115, 232, 0.13), 0 2px 8px rgba(225, 48, 108, 0.10);
  position: relative;
  z-index: 2;
}
.team-sub {
  font-size: 1.18rem;
  color: #444;
  margin-bottom: 36px;
  margin-left: 50px;
  letter-spacing: 0.2px;
  font-weight: 500;
  opacity: 0.92;
}
.team-card-grid {
  position: relative;
  width: 100%;
  min-height: 480px;
  height: 100%;
  background: linear-gradient(120deg, #e3f0ff 0%, #fff 100%);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.10), 0 2px 8px rgba(225, 48, 108, 0.06);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.28s, transform 0.22s, background 0.3s;
  border: 2px solid #e3f0ff;
}
.team-card-grid::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 10px;
  background: linear-gradient(90deg, #e1306c 0%, #1a73e8 100%);
  opacity: 0.18;
  z-index: 1;
  border-radius: 28px 28px 0 0;
  pointer-events: none;
}
.team-card-grid:hover, .team-card-grid:focus-within {
  box-shadow: 0 16px 48px rgba(26, 115, 232, 0.18), 0 2px 8px rgba(225, 48, 108, 0.13);
  background: linear-gradient(120deg, #fff 60%, #e3f0ff 100%);
  transform: translateY(-8px) scale(1.035);
}
.team-card-grid .team-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 28px;
  z-index: 1;
  border: none;
  margin: 0;
  box-shadow: 0 2px 16px rgba(26, 115, 232, 0.08);
  background: #fff;
  transition: filter 0.3s, box-shadow 0.22s;
}
.team-card-grid:hover .team-img,
.team-card-grid:focus .team-img {
  filter: brightness(0.5) blur(1.5px);
  box-shadow: 0 8px 32px rgba(225, 48, 108, 0.13);
}
.team-card-overlay {
  position: absolute;
  bottom: 0; left: 0; height: 100%; width: 100%;
  background: linear-gradient(0deg, rgba(10,23,54,0.92) 70%, rgba(26,115,232,0.18) 100%);
  color: #fff;
  padding: 48px 24px 36px 24px;
  border-radius: 0 0 28px 28px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: opacity 0.32s cubic-bezier(.4,2,.6,1), background 0.3s;
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.10);
  backdrop-filter: blur(2px);
}
.team-card-grid:hover .team-card-overlay,
.team-card-grid:focus .team-card-overlay {
  opacity: 1;
  pointer-events: auto;
}
.team-card-overlay .team-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(26, 115, 232, 0.13);
}
.team-card-overlay .team-role {
  font-size: 1.15rem;
  color: #a1c4fd;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
  text-shadow: 0 1px 4px rgba(225, 48, 108, 0.10);
}
.team-card-overlay .team-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 8px;
}
.team-card-overlay .team-social-icon {
  color: #fff;
  font-size: 1.7rem;
  transition: color 0.22s, transform 0.18s;
  filter: drop-shadow(0 2px 8px #1a73e833);
}
.team-card-overlay .team-social-icon:hover {
  color: #e1306c;
  transform: scale(1.18) rotate(-8deg);
  filter: drop-shadow(0 4px 16px #e1306c33);
}

/* Responsive Enhancements */
@media (max-width: 991px) {
  .team-grid-section {
    margin-top: 36px;
    margin-bottom: 36px;
  }
  .team-grid-section .container {
    border-radius: 18px;
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .team-title {
    font-size: 1.5rem;
    margin-left: 18px;
    margin-bottom: 18px;
  }
  .team-sub {
    font-size: 1rem;
    margin-left: 18px;
    margin-bottom: 18px;
  }
  .team-card-grid {
    min-height: 220px;
    border-radius: 14px;
  }
  .team-card-grid .team-img {
    border-radius: 14px;
  }
  .team-card-overlay {
    border-radius: 0 0 14px 14px;
    padding: 18px 8px 14px 8px;
  }
  .team-card-overlay .team-name {
    font-size: 1.15rem;
  }
  .team-card-overlay .team-role {
    font-size: 1rem;
  }
  .team-card-overlay .team-social-icon {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .team-grid-section {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .team-grid-section .container {
    border-radius: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .team-title {
    font-size: 1.1rem;
    margin-left: 6px;
    margin-bottom: 10px;
  }
  .team-sub {
    font-size: 0.92rem;
    margin-left: 6px;
    margin-bottom: 10px;
  }
  .team-card-grid {
    min-height: 120px;
    border-radius: 8px;
  }
  .team-card-grid .team-img {
    border-radius: 8px;
  }
  .team-card-overlay {
    border-radius: 0 0 8px 8px;
    padding: 8px 2px 6px 2px;
  }
  .team-card-overlay .team-name {
    font-size: 1rem;
  }
  .team-card-overlay .team-role {
    font-size: 0.85rem;
  }
  .team-card-overlay .team-social-icon {
    font-size: 1rem;
  }
} 





/* Team Swiper Section - Enhanced Visuals */
.team-swiper-section {
  margin-top: 72px;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}
.team-swiper-section::before,
.team-swiper-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.team-swiper-section::before {
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #1a73e8 0%, #e3f0ff 80%);
  opacity: 0.10;
}
.team-swiper-section::after {
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #e1306c 0%, #f5f7fa 80%);
  opacity: 0.08;
}
.team-swiper-section .container {
  background: rgba(245,247,250,0.98);
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(26, 115, 232, 0.10), 0 2px 16px rgba(225, 48, 108, 0.06);
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 1;
  overflow: visible;
}
@media (max-width: 767px) {
  .team-swiper-section {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .team-swiper-section .container {
    border-radius: 12px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
} 






/* Instagram Promo Section */
.instagram-promo-section {
  margin-top: 96px;
  margin-bottom: 96px;
  /* background: linear-gradient(120deg, #e3f0ff 0%, #f7f7f7 100%); */
  position: relative;
  z-index: 1;
  overflow: visible;
}
.instagram-promo-section::before,
.instagram-promo-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.instagram-promo-section::before {
  top: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, #1a73e8 0%, #e3f0ff 80%);
  opacity: 0.18;
  filter: blur(2px);
}
.instagram-promo-section::after {
  bottom: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #e1306c 0%, #f5f7fa 80%);
  opacity: 0.13;
  filter: blur(1.5px);
}
.instagram-promo-section .container {
  background: rgba(255,255,255,0.98);
  border-radius: 40px;
  box-shadow: 0 12px 48px 0 rgba(26, 115, 232, 0.13), 0 4px 24px 0 rgba(225, 48, 108, 0.10);
  padding: 72px 64px;
  display: flex;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
  overflow: visible;
  flex-wrap: wrap;
  backdrop-filter: blur(2px);
  border: 1.5px solid #e3f0ff;
}
.instagram-promo-content {
  flex: 1 1 340px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.instagram-promo-title {
  font-size: 3.1rem;
  font-weight: 900;
  background: linear-gradient(90deg, #e1306c 10%, #1a73e8 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #0a1736;
  margin-bottom: 22px;
  letter-spacing: 2px;
  text-shadow: 0 8px 32px rgba(26, 115, 232, 0.18), 0 2px 8px rgba(225, 48, 108, 0.13);
  line-height: 1.13;
}
.instagram-promo-desc {
  font-size: 1.22rem;
  color: #444;
  margin-bottom: 38px;
  letter-spacing: 0.3px;
  font-weight: 500;
  opacity: 0.96;
  max-width: 520px;
  line-height: 1.6;
  background: linear-gradient(90deg, #e3f0ff 0%, #fff 100%);
  padding: 0.7em 1.1em;
  border-radius: 1.2em;
  box-shadow: 0 2px 12px rgba(26, 115, 232, 0.06);
}
.instagram-promo-btn {
  background: linear-gradient(90deg, #e1306c 0%, #1a73e8 100%);
  color: #fff;
  border-radius: 2.7rem;
  padding: 1.2rem 3.2rem;
  font-size: 1.45rem;
  font-weight: 800;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s, transform 0.18s, letter-spacing 0.18s;
  box-shadow: 0 8px 32px #e1306c33, 0 2px 8px #1a73e822;
  cursor: pointer;
  text-shadow: 0 2px 8px rgba(26, 115, 232, 0.10);
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
.instagram-promo-btn::after {
  content: "";
  position: absolute;
  left: -40%;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.01) 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left 0.3s;
}
.instagram-promo-btn:hover::after {
  left: 110%;
}
.instagram-promo-btn:hover, .instagram-promo-btn:focus {
  background: linear-gradient(90deg, #1a73e8 0%, #e1306c 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 48px #1a73e833, 0 4px 16px #e1306c22;
  transform: translateY(-2px) scale(1.06);
  letter-spacing: 0.09em;
}
.instagram-promo-btn i {
  font-size: 1.9rem;
  filter: drop-shadow(0 2px 8px #e1306c22);
  transition: transform 0.18s;
}
.instagram-promo-btn:hover i {
  transform: scale(1.12) rotate(-8deg);
}
.instagram-promo-img-wrap {
  flex: 1 1 320px;
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.instagram-promo-img {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 2.8rem;
  box-shadow: 0 16px 64px rgba(26, 115, 232, 0.18), 0 4px 24px rgba(225, 48, 108, 0.13);
  margin: 0 auto;
  display: block;
  border: 5px solid #e3f0ff;
  background: linear-gradient(135deg, #fff 60%, #e3f0ff 100%);
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
  z-index: 2;
}
.instagram-promo-img:hover {
  box-shadow: 0 24px 80px #e1306c22, 0 8px 32px #1a73e822;
  transform: scale(1.04) rotate(-2deg);
  border-color: #e1306c;
}
.instagram-promo-img-glow {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120%;
  height: 120%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #e1306c33 0%, #fff0 80%);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.7;
  display: none;
}
.instagram-promo-img:hover + .instagram-promo-img-glow {
  display: block;
}
@media (max-width: 1400px) {
  .instagram-promo-section .container {
    padding: 48px 24px;
    gap: 36px;
  }
  .instagram-promo-img {
    max-width: 320px;
  }
}
@media (max-width: 991px) {
  .instagram-promo-title {
    font-size: 1.7rem;
  }
  .instagram-promo-section .container {
    padding: 28px 8px;
    border-radius: 22px;
    gap: 24px;
  }
  .instagram-promo-img {
    max-width: 180px;
    border-radius: 1.2rem;
  }
  .instagram-promo-btn {
    font-size: 1.08rem;
    padding: 0.7rem 1.6rem;
    border-radius: 1.5rem;
  }
  .instagram-promo-desc {
    font-size: 1rem;
    padding: 0.5em 0.7em;
  }
}
@media (max-width: 767px) {
  .instagram-promo-section {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .instagram-promo-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .instagram-promo-section .container {
    padding: 10px 2px;
    border-radius: 10px;
    gap: 10px;
    flex-direction: column;
  }
  .instagram-promo-img {
    max-width: 90px;
    border-radius: 0.7rem;
  }
  .instagram-promo-btn {
    font-size: 0.95rem;
    padding: 0.6rem 1.1rem;
    border-radius: 1.2rem;
  }
  .instagram-promo-desc {
    font-size: 0.85rem;
    margin-bottom: 12px;
    padding: 0.3em 0.5em;
  }
}






.clients-section {
  background: none;
  padding: 36px 0 36px 0;
  margin-top: 0;
  margin-bottom: 0;
}
.clients-section .container {
  background: #f7f7f7;
  box-shadow: none;
  border-radius: 24px;
  padding: 36px 16px;
  max-width: 1320px;
  margin: 0 auto;
}
.clients-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0a1736;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.clients-logos-row {
  gap: 2.5rem;
  min-height: 90px;
  overflow: hidden;
}
.client-logo-item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 60px;
  padding: 12px 8px;
}
.client-logo-img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  /* Show client image in real color: remove grayscale filter */
  filter: none;
  opacity: 0.95;
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
}
.client-logo-img:hover {
  /* No grayscale on hover, just enhance contrast and add drop-shadow */
  filter: contrast(1.2) drop-shadow(0 2px 8px rgba(10,23,54,0.10));
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 991px) {
  .clients-logos-row {
    gap: 1.2rem;
  }
  .client-logo-img {
    max-width: 90px;
    max-height: 40px;
  }
}
@media (max-width: 767px) {
  .clients-section {
    padding: 12px 0 12px 0;
  }
  .clients-title {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .clients-logos-row {
    gap: 0.3rem;
    min-height: 30px;
    flex-wrap: wrap;
  }
  .client-logo-item {
    min-width: 40px;
    min-height: 20px;
    padding: 2px 1px;
  }
  .client-logo-img {
    max-width: 30px;
    max-height: 12px;
  }
} 






.testimonials-section {
  /* background: #ff0000; */
  padding: 36px 0 36px 0;
  display: flex;
  justify-content: center;
  align-items: center; 
}
.testimonials-section .container {
  background: #f7f7f7;
  box-shadow: none;
  border-radius: 24px;
  padding: 36px 16px;
  max-width: 1320px;
  margin: 0 auto;
}
.testimonials-lead {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.5rem; 
  margin-left: 20px;
}

/* --- Model Title Style Set Now --- */
.testimonials-title {
  font-size: 3.1rem;
  font-weight: 900;
  background: linear-gradient(90deg, #e1306c 10%, #1a73e8 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #0a1736;
  margin-bottom: 22px;
  letter-spacing: 2px;
  text-shadow: 0 8px 32px rgba(26, 115, 232, 0.18), 0 2px 8px rgba(225, 48, 108, 0.13);
  line-height: 1.13;
  margin-left: 20px;
}
/* --- End Model Title Style Set --- */

.testimonials-sub {
  font-size: 1.1rem;
  color: #444;
  text-align: right; 
  margin-bottom: 3.6rem; 
}
.testimonials-swiper {
  margin-top: 32px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(10,23,54,0.06);
  padding: 12px 8px 8px 8px;
  min-height: 100px; 
  min-width: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(10,23,54,0.12);
  transform: translateY(-4px) scale(1.03);
}
.testimonial-header {
  min-height: 28px;
}
.testimonial-avatar, .testimonial-avatar-initial {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e3f0ff;
  background: #fff;
}
.testimonial-avatar-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0a1736;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-name {
  font-size: 0.98rem;
  font-weight: 600;
  color: #0a1736;
  margin-bottom: 0;
}
.testimonial-date {
  font-size: 0.85rem;
  color: #888;
}
.testimonial-google {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}
.testimonial-stars {
  color: #ffc107;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.testimonial-verified {
  color: #1a73e8;
  font-size: 0.95rem;
  vertical-align: middle;
}
.testimonial-text {
  font-size: 0.95rem;
  color: #222;
  margin: 12px 0 0 0;
  min-height: 32px;
}
.testimonial-readmore {
  font-size: 0.85rem;
  color: #1a73e8;
  margin-top: 4px;
  cursor: pointer;
  text-decoration: underline;
  display: inline-block;
}
.swiper-button-next.testimonials-swiper-next,
.swiper-button-prev.testimonials-swiper-prev {
  color: #0a1736;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(10,23,54,0.08);
  width: 36px;
  height: 36px;
  top: 50%;
  transform: translateY(-50%);
}
.swiper-button-next.testimonials-swiper-next:after,
.swiper-button-prev.testimonials-swiper-prev:after {
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  .testimonials-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 18px;
  }
  .testimonial-card {
    padding: 8px 4px 6px 4px;
    border-radius: 8px;
    min-height: 60px;
  }
  .testimonial-avatar, .testimonial-avatar-initial {
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
  }
  .testimonial-google {
    width: 12px;
    height: 12px;
  }
  .testimonial-name {
    font-size: 0.85rem;
  }
  .testimonial-date {
    font-size: 0.7rem;
  }
  .testimonial-stars, .testimonial-verified {
    font-size: 0.8rem;
  }
  .testimonial-text {
    font-size: 0.8rem;
    min-height: 18px;
  }
  .testimonial-readmore {
    font-size: 0.7rem;
  }
  .testimonials-section {
    padding: 32px 0 24px 0;
  }
}
@media (max-width: 767px) {
  .testimonials-section {
    padding: 18px 0 12px 0;
  }
  .testimonials-title {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }
  .testimonial-card {
    padding: 8px 4px 6px 4px;
    border-radius: 8px;
    min-height: 60px;
  }
  .testimonial-avatar, .testimonial-avatar-initial {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
  .testimonial-google {
    width: 16px;
    height: 16px;
  }
} 






.why-choose-section {
  background: #fff;
  padding: 64px 0 48px 0;
}
.why-choose-section .container {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0 16px;
}
.why-choose-lead {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 0.5rem;
}
.why-choose-title {
  font-size: 2.8rem;
  font-weight: 900;
  background: linear-gradient(90deg, #e1306c 10%, #1a73e8 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #0a1736;
  margin-bottom: 22px;
  letter-spacing: 2px;
  text-shadow: 0 8px 32px rgba(26, 115, 232, 0.18), 0 2px 8px rgba(225, 48, 108, 0.13);
  line-height: 1.13;
}
.why-choose-sub {
  font-size: 1.1rem;
  color: #444;
  text-align: right;
}
.why-choose-items-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 36px;
  margin-bottom: 36px;
  justify-content: center;
}
.why-choose-item {
  background: #f7f7f7;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(10,23,54,0.06);
  padding: 32px 28px 28px 28px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #e3f0ff;
}
.why-choose-item:hover {
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.10);
  transform: translateY(-4px) scale(1.03);
}
.why-choose-item-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #1a73e8;
  background: linear-gradient(90deg, #e1306c 10%, #1a73e8 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.why-choose-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a1736;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.why-choose-item-desc {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.5;
  margin-bottom: 0;
}
.why-choose-table-wrap {
  margin-top: 32px;
  overflow-x: auto;
}
.why-choose-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #f7f7f7;
  border-radius: 16px;
  overflow: hidden;
  font-size: 1.13rem;
  box-shadow: 0 2px 16px rgba(10,23,54,0.06);
  margin-top: 24px;
}
.why-choose-table th, .why-choose-table td {
  padding: 24px 20px;
  text-align: left;
  font-weight: 500;
  color: #0a1736;
}
.why-choose-table th {
  background: #ededed;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-bottom: 2.5px solid #e3f0ff;
}
.why-choose-table td {
  background: #f7f7f7;
  font-size: 1.08rem;
  font-weight: 400;
  color: #222;
  border-bottom: 1.5px solid #ededed;
}
.why-choose-table tr:last-child td {
  border-bottom: none;
}
.why-choose-table tr:not(:last-child) th {
  border-bottom: 2.5px solid #e3f0ff;
}
.why-choose-x {
  color: #e2557b;
  font-size: 1.3em;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 4px;
}
.why-choose-check {
  color: #3ecf8e;
  font-size: 1.3em;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 4px;
}
.why-choose-table-highlight {
  background: linear-gradient(90deg, #e3f0ff 0%, #a1c4fd 100%);
  font-weight: 700;
  color: #1a73e8;
}
@media (max-width: 1200px) {
  .why-choose-items-row {
    gap: 18px;
  }
  .why-choose-item {
    min-width: 180px;
    max-width: 100%;
    padding: 24px 14px 20px 14px;
  }
}
@media (max-width: 991px) {
  .why-choose-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }
  .why-choose-items-row {
    gap: 12px;
  }
  .why-choose-item {
    padding: 18px 8px 14px 8px;
    min-width: 140px;
  }
  .why-choose-table th, .why-choose-table td {
    padding: 12px 8px;
    font-size: 0.98rem;
  }
}
@media (max-width: 767px) {
  .why-choose-section {
    padding: 32px 0 24px 0;
  }
  .why-choose-title {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }
  .why-choose-items-row {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 18px;
  }
  .why-choose-item {
    min-width: 0;
    width: 100%;
    padding: 12px 4px 10px 4px;
    border-radius: 10px;
  }
  .why-choose-table th, .why-choose-table td {
    padding: 8px 4px;
    font-size: 0.92rem;
  }
  .why-choose-table {
    border-radius: 8px;
    margin-top: 12px;
  }
} 








.contact-section {
  /* background: linear-gradient(135deg, #e3f0ff 0%, #a1c4fd 100%); */
  padding: 80px 0 64px 0;
}
.contact-section .container {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(10,23,54,0.10);
  padding: 48px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-lead {
  font-size: 1.2rem;
  color: #1a73e8;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

/* --- Contact Title Style Set (Same as instagram-promo-title) --- */
.contact-title {
  font-size: 3.1rem;
  font-weight: 900;
  background: linear-gradient(90deg, #e1306c 10%, #1a73e8 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #0a1736;
  margin-bottom: 22px;
  letter-spacing: 2px;
  text-shadow: 0 8px 32px rgba(26, 115, 232, 0.18), 0 2px 8px rgba(225, 48, 108, 0.13);
  line-height: 1.13;
}
/* --- End Contact Title Style Set --- */

.contact-sub {
  font-size: 1.1rem;
  color: #444;
  text-align: right;
  font-style: italic;
}
.contact-form {
  background: #f7f7f7;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(10,23,54,0.08);
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid #e3f0ff;
}
.contact-form .form-label {
  font-weight: 600;
  color: #0a1736;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form .form-control {
  border-radius: 10px;
  border: 1.5px solid #e3f0ff;
  font-size: 1.1rem;
  padding: 12px 14px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form .form-control:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 2px #e3f0ff;
}
.contact-btn {
  background: linear-gradient(90deg, #1a73e8 0%, #0a1736 100%);
  color: #fff;
  border-radius: 2.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  margin-top: 12px;
  box-shadow: 0 2px 12px rgba(26,115,232,0.10);
  letter-spacing: 0.03em;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
}
.contact-btn:hover, .contact-btn:focus {
  background: linear-gradient(90deg, #0a1736 0%, #1a73e8 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(26,115,232,0.18);
}
.contact-info-col {
  background: #f7f7f7;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(10,23,54,0.08);
  padding: 36px 28px 28px 28px;
  min-height: 100%;
  border: 1.5px solid #e3f0ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info-block {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f0f6ff;
  border-left: 4px solid #1a73e8;
  box-shadow: 0 2px 12px rgba(26,115,232,0.06);
  padding: 16px 20px;
  border-radius: 14px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.contact-info-block:hover {
  box-shadow: 0 6px 24px rgba(26,115,232,0.13);
  border-left-color: #0a1736;
}
.contact-info-label {
  font-size: 1.18rem;
  color: #0a1736;
  font-weight: 800;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info-label::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #e3f0ff;
  border-radius: 50%;
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 6px;
  box-shadow: 0 1px 4px rgba(26,115,232,0.08);
}
.contact-info-label[for='email']::before {
  background-image: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/icons/envelope.svg');
}
.contact-info-label[for='phone']::before {
  background-image: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/icons/telephone.svg');
}
.contact-info-label[for='address']::before {
  background-image: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.0/icons/geo-alt.svg');
}
.contact-info-link {
  font-size: 1.13rem;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s, text-decoration 0.2s;
}
.contact-info-link:hover {
  color: #0a1736;
  text-decoration: underline wavy #1a73e8 2px;
}
.contact-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 12px;
  justify-content: flex-start;
}
.contact-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e3f0ff;
  color: #1a73e8;
  font-size: 2rem;
  box-shadow: 0 2px 12px rgba(26,115,232,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  border: none;
  text-decoration: none;
}
.contact-social-icon[title="WhatsApp"] {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
}
.contact-social-icon[title="Instagram"] {
  background: linear-gradient(135deg, #fd5d63 0%, #fcae3e 50%, #5851db 100%);
  color: #fff;
}
.contact-social-icon[title="Email"] {
  background: linear-gradient(135deg, #1a73e8 0%, #0a1736 100%);
  color: #fff;
}
.contact-social-icon:hover, .contact-social-icon:focus {
  transform: scale(1.13) rotate(-8deg);
  box-shadow: 0 6px 24px rgba(26,115,232,0.18);
  filter: brightness(1.08);
  color: #fff;
}
@media (max-width: 991px) {
  .contact-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .contact-section .container {
    padding: 18px 8px;
    border-radius: 18px;
  }
  .contact-form, .contact-info-col {
    padding: 14px 8px 10px 8px;
    border-radius: 12px;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding: 32px 0 24px 0;
  }
  .contact-title {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }
  .contact-section .container {
    padding: 8px 2px;
    border-radius: 10px;
  }
  .contact-form, .contact-info-col {
    padding: 8px 2px 6px 2px;
    border-radius: 8px;
  }
  .contact-social {
    gap: 0.7rem;
  }
  .contact-social-icon {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  .contact-info-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 10px;
  }
  .contact-info-label {
    font-size: 1rem;
  }
  .contact-info-label::before {
    width: 28px;
    height: 28px;
    margin-right: 4px;
  }
}