/*
 * COBALT SOFTWARE - PURE CUSTOM CSS
 * Responsive Layout & Grid, Variables, Custom Visual Effects
 * No frameworks used.
 */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..700;1,400..700&display=swap');

@font-face {
    font-family: 'Adobe Clean';
    src: url('fonts/AdobeClean-Light.eot');
    src: url('fonts/AdobeClean-Light.eot?#iefix') format('embedded-opentype'),
        url('fonts/AdobeClean-Light.woff2') format('woff2'),
        url('fonts/AdobeClean-Light.woff') format('woff'),
        url('fonts/AdobeClean-Light.ttf') format('truetype'),
        url('fonts/AdobeClean-Light.svg#AdobeClean-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Adobe Clean';
    src: url('fonts/AdobeClean-Regular.eot');
    src: url('fonts/AdobeClean-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/AdobeClean-Regular.woff2') format('woff2'),
        url('fonts/AdobeClean-Regular.woff') format('woff'),
        url('fonts/AdobeClean-Regular.ttf') format('truetype'),
        url('fonts/AdobeClean-Regular.svg#AdobeClean-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Adobe Clean';
    src: url('fonts/AdobeClean-Bold.eot');
    src: url('fonts/AdobeClean-Bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/AdobeClean-Bold.woff2') format('woff2'),
        url('fonts/AdobeClean-Bold.woff') format('woff'),
        url('fonts/AdobeClean-Bold.ttf') format('truetype'),
        url('fonts/AdobeClean-Bold.svg#AdobeClean-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zacorsea';
    src: url('fonts/Zacorsea-Regular.eot');
    src: url('fonts/Zacorsea-Regular.eot?#iefix') format('embedded-opentype'),
        url('fonts/Zacorsea-Regular.woff2') format('woff2'),
        url('fonts/Zacorsea-Regular.woff') format('woff'),
        url('fonts/Zacorsea-Regular.ttf') format('truetype'),
        url('fonts/Zacorsea-Regular.svg#Zacorsea-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* Reset and Core Variables */
:root {

  /* Colors */
  --color-cobalt-dark: #002244;
  --color-cobalt-primary: #1363df;
  --color-cobalt-light: #e6f0fa;
  --color-cobalt-accent: #2BBCE2;
  --color-text-dark: #1e293b;
  --color-text-medium: #777779;
   --color-text-acc: #444445;
  --color-text-light: #94a3b8;
  --color-bg-light: #f8fafc;
  --color-bg-white: #ffffff;
  
  /* Rings / Infographic Colors */
  --color-ring-core: #0D3D61;
  --color-ring-gather: #1175A8;
  --color-ring-engage: #2AB5E1;

  /* Fonts */
  --font-sans: 'Adobe Clean';
  --font-serif: 'Zacorsea';

  /* Spacing */
  --container-sec-max-width: 1300px;
  --section-padding: 80px 24px;
  --section-padding-mobile: 60px 16px;
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
  --border-radius-sm: 6px;

  /* Shadows */
  --shadow-subtle: 0 4px 20px rgba(0, 34, 68, 0.05);
  --shadow-medium: 0 10px 30px rgba(0, 34, 68, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 34, 68, 0.15);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
   --ease: cubic-bezier(0.65,0,0.35,1);
}

/* Global resets */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text-dark);
  background-color: var(--color-bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography Utility */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  color: var(--color-cobalt-dark);
}

p {
  color: var(--color-text-medium);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-cobalt-accent);
  margin-bottom: 12px;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: var(--container-sec-max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--color-bg-white);
}

/* Section styling */
section {
  padding: var(--section-padding);
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: var(--section-padding-mobile);
  }
}

/* Base custom interactive Grid classes with native flex/grid wrap */
.grid-container {
  display: grid;
  gap: 32px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* 1. Header & Navigation */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition-normal);
}

/* Sticky Header Modifier */
.header.sticky {
  position: fixed;
  padding: 14px 0;
  animation: slideDown 0.35s ease-out;
 
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 24px;
    max-width: var(--container-sec-max-width);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    background: rgb(255 255 255 / 77%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-cobalt-accent), var(--color-cobalt-primary));
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}

.logo-text {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--color-bg-white);
  display: flex;
  align-items: center;
}

.logo-subtext {
  font-size: 0.6rem;
  display: block;
  font-weight: 400;
  letter-spacing: 0.2em;
  opacity: 0.8;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-sans);
  color: #444445;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: var(--transition-fast);
  padding: 8px 0;
}

.nav-link:hover {
  color: #0d4f89;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #0d4f89;
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.cta-button {
    background-color: #0D4F89;
    color: var(--color-bg-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: var(--transition-fast);
    border: 1px solid #0D4F89;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(19, 99, 223, 0.2);
}

.cta-button:hover {
  background-color: #0779c6;
  border-color: #0779c6;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(19, 99, 223, 0.35);
}

/* Header Text Color Adaptation in sticky mode helper */
.header:not(.sticky) .logo-text {
  color: var(--color-bg-white);
}

/* Hamburger for Mobile screen */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0b64af;
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* Hamburguer animations */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Sidebar Drawer overlay override */
.nav-mobile-drawer {
  position: fixed;
  top: 62px;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 20, 40, 0.97);
  backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  gap: 36px;
  transition: transform var(--transition-slow);
  transform: translateX(100%);
}

.nav-mobile-drawer.open {
  transform: translateX(0);
}

.nav-mobile-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 12px;
    text-align: left;
    padding: 0 15px;
	overflow-y: scroll;
}

.nav-mobile-link {
  font-size: 1.5rem;
  color: var(--color-bg-white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-mobile-link:hover {
  color: var(--color-cobalt-accent);
}

@media (max-width: 900px) {
  .nav-menu, .header-cta-wrapper {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  
  .nav-mobile-link {
    font-size: 1rem;
  }
}

/* 2. Hero Section */
.hero {
    height: 90vh;
    min-height: 710px;
    display: flex;
    align-items: center;
    padding-top: calc(120px + 64px);
    background: #001122;
    color: var(--color-bg-white);
    overflow: hidden;
    position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 16 32 / 57%) 0%, rgb(1 30 60 / 63%) 100%);
    z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-content {
  max-width: 780px;
  margin-top: 40px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-heading {
  font-size: 4rem;
  font-weight: 500;
  color: var(--color-bg-white);
  margin-bottom: 24px;
  letter-spacing: -0.012em;
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2.8rem;
  }
}

.hero-paragraph {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 48px;
  line-height: 1.6;
  font-weight: 300;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
  align-self: stretch;
  animation: fadeInUpStagger 1.2s ease-out;
}

.glass-card-content{
    width: calc(100% - 54px);
}

@keyframes fadeInUpStagger {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glassmorphism card rules */
.glass-card {
    background: rgb(33 33 33 / 50%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgb(55 55 55 / 34%);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    transition: var(--transition-normal);
    color: var(--color-bg-white);
    box-shadow: var(--shadow-glass);
    display: flex;
    gap: 30px;
    align-items: center;
}

.glass-card:hover {
      background: rgb(43 43 43 / 26%);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-6px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.card-icon-box {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}



.card-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-bg-white);
}

.card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .hero {
    height: auto;
    min-height: auto;
    padding-bottom: 60px;
  }
}


.features {
    position: relative;
}

  .features__heading {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    color: var(--color-heading);
    text-align: center;
    margin: 0 0 20px;
  }

 .features__subheading {
    font-size: 18px;
    line-height: 1.65;
    color: #777779;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 48px;
}

  .features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

 .feature-card {
    background: #eaf2fc;
    border-radius: 14px;
    padding: 28px 28px 32px;
}

  .feature-card__icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
  }

 .feature-card__icon svg {
    width: 22px;
    height: 22px;
    stroke: #0d4f89;
}

.feature-card__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 20px;
    color: #444445;
    margin: 0 0 12px;
}

  .feature-card__body {
    font-size: 16px;
    line-height: 1.4;
    color: #777779;
    margin: 0;
}

  @media (max-width: 900px) {
    .features__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 620px) {
    
    .features__grid {
      grid-template-columns: 1fr;
    }
    .features__subheading {
      text-align: left;
    }
    .features__heading {
      text-align: left;
    }
  }

/* 3. Club Operators Section & Infographic wheel */
.operators-section {
    background-color: #f1f8fd;
    overflow: hidden;
    background-image: url(../images/infograpic-bg.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
	position: relative;
}


.operators-section:before {
    content: "";
    width: 100%;
    height: 30%;
    position: absolute;
    top: 0;
    background: linear-gradient(to bottom, rgb(255 255 255 / 82%), rgb(255 255 255 / 57%), rgb(255 255 255 / 17%), rgb(255 255 255 / 10%), rgb(255 255 255 / 0%));
    left: 0;
}


.section-header {
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
  color: #444445;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-medium);
  font-weight: 400;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.1rem;
  }
}

/* CSS-Built Circular Infographic Wheel */
.infographic-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 40px auto;
  max-width: 880px;
  width: 100%;
}

/* Beautiful SVG infographic containing nested layers */
.wheel-svg-container {
  width: 100%;
  max-width: 800px;
  height: auto;
  filter: drop-shadow(0px 10px 40px rgba(0, 34, 68, 0.08));
}

.wheel-layer-interactive {
  cursor: pointer;
  transform-origin: 300px 300px;
  transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
              filter 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.wheel-layer-interactive:hover {
  filter: brightness(1.08) saturate(1.06) drop-shadow(0px 4px 12px rgba(13, 61, 97, 0.16));
  transform: scale(1.042) !important;
}

.wheel-inner-active {
  stroke-width: 2.5px;
}

.active-wheel-tab-details {
  border: 1px solid var(--color-cobalt-light);
  background-color: var(--color-bg-light);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  margin-top: 45px;
  display: flex;
  grid-template-columns: 1fr;
  flex-direction: column;
  transition: var(--transition-normal);
  text-align: left;
}

.active-tab-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.tab-badge {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  color: white;
}

.tab-badge.badge-core { background-color: var(--color-ring-core); }
.tab-badge.badge-gather { background-color: var(--color-ring-gather); }
.tab-badge.badge-engage { background-color: var(--color-ring-engage); }

.tab-title {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-cobalt-dark);
}

.tab-desc {
  font-size: 1.05rem;
  color: var(--color-text-medium);
}

/* 4. Three Feature Blocks (Equal height cards, hover effects) */
.feature-blocks-section {
    padding-top: 0;
    margin-top: -20px;
    background: #ECF6FD;
    background: linear-gradient(180deg,rgba(236, 246, 253, 0.98) 0%, rgba(255, 255, 255, 1) 42%);
}

.feature-grid-card {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-grid-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
}

.card-core-accent::before { background-color: #2ab5e1; }
.card-gather-accent::before { background-color: #1175a8; }
.card-engage-accent::before { background-color: #0d3c5f; }

.feature-grid-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-card-brand-logo {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  margin-bottom: 6px;
}

.feature-card-head {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.text-core-color { color: var(--color-ring-core); }
.text-gather-color { color: var(--color-ring-gather); }
.text-engage-color { color: var(--color-ring-engage); }

.feature-card-tagline {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #444445;
    margin-bottom: 16px;
	margin-top: 20px;
}

.feature-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-medium);
  margin-bottom: 24px;
}

.feature-card-list {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  padding-top: 24px;
}

.feature-card-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: var(--color-text-medium);
  margin-bottom: 12px;
}

.feature-card-bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 12px;
}

.card-core-accent .feature-card-bullet-dot { background-color: var(--color-ring-core); }
.card-gather-accent .feature-card-bullet-dot { background-color: var(--color-ring-gather); }
.card-engage-accent .feature-card-bullet-dot { background-color: var(--color-ring-engage); }

.club-wrap-secttion {
    background-color: #E8F3FD;
    position: relative;
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    margin-top: 42px;
}

.club-wrap-secttion p {
	color: #444445;
	font-size: 16px;
}


/* 5. Software Upgrade Section */
.upgrades-section {
  background-color: var(--color-bg-white);
  padding-bottom: 70px;
}

.stats-grid {
  margin-bottom: 48px;
}

.stat-card {
    color: var(--color-bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    transition: var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #2696C7;
    background: linear-gradient(180deg,rgba(38, 150, 199, 0.98) 0%, rgba(43, 186, 225, 1) 100%);
}

.stat-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(19, 99, 223, 0.3);
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
      color: var(--color-bg-white);
}

.stat-sublabel {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.quote-block {
  max-width: 800px;
  margin: 60px auto 0 auto;
}

.quote-icon-box {
    color: #000;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    text-align: center;
}

.upgrade-quote-text {
    font-size: 24px;
    line-height: 1.45;
    color: #257CAF;
    font-weight: 500;
}

@media (max-width: 768px) {
  .upgrade-quote-text {
    font-size: 1.4rem;
  }
}

/* 6. Community Section (light background box container) */
.community-section {
  background-color: var(--color-bg-white);
  padding-top: 22px;
  padding-bottom: 28px;
}

.community-box {
    background-color: #E8F3FD;
    border-radius: var(--border-radius-lg);
    padding: 60px 48px;
    margin: 0 auto;
    border: 1px solid #e3effa;
}

.community-box h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.community-box p {
  font-size: 1.05rem;
  margin: 0 auto;
  line-height: 1.8;
  color: var(--color-text-medium);
}

@media (max-width: 768px) {
  .community-box {
    padding: 36px 20px;
  }
  .community-box h2 {
    font-size: 1.8rem;
  }
}

/* 7. Testimonials Section (Mathew Linderman + Carousel) */
.testimonials-section {
  background-color: var(--color-bg-white);
}

.lead-testimonial-card {
  background-color: #F8F9FA;
  border-radius: var(--border-radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 60px;
}

.testimonial-media {
    flex-shrink: 0;
    position: relative;
}

.testimonial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-play-btn {
    position: absolute;
    top: 78%;
    left: 10%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #1E90FF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.media-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: var(--color-cobalt-primary);
}

.testimonial-content {
  flex-grow: 1;
}

.lead-quote {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--color-text-medium);
  margin-bottom: 24px;
  font-style: italic;
}

.lead-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.author-info h4 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-cobalt-dark);
}

.author-info p {
  font-size: 0.95rem;
  color: var(--color-text-medium);
  margin-bottom: 4px;
}

.since-badge {
  font-size: 0.75rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.testimonial-club-logo {
  height: 48px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .lead-testimonial-card {
    flex-direction: column;
    padding: 32px 24px;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
  .lead-meta {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* Sub Testimonials Grid */

.sub-testimonials-grid-1{
	margin-left: -45%;
}
.sub-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sub-testimonial-card {
    background-color: #f8f9fa;
    border-radius: var(--border-radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.sub-testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(19, 99, 223, 0.1);
  box-shadow: var(--shadow-medium);
}

.sub-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin-bottom: 28px;
    flex-grow: 1;
    min-height: 284px;
}

.sub-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
}

.footer-logo-wrap {
   width: 80px;
   height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  /* Carousel-like scroll behavior on mobile and tablets */
  .sub-testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for clean carousel look */
  }
  .sub-testimonials-grid::-webkit-scrollbar {
    display: none;
  }
  .sub-testimonial-card {
    min-width: 290px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* 8. Client Logos Section (Grayscale grid) */
.logos-section {
  background-color: var(--color-bg-white);
 padding: 30px 0px;
}

.logos-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logos-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.logos-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-shrink: 0;
}

.client-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.logo-vector-svg {
    width: 120px;
    height: auto;
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.logos-slider:hover .logos-track {
    animation-play-state: paused;
}

/*.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
  justify-items: center;
}*/

.client-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 150px;
  height: 80px;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.client-logo-card:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

.logo-vector-svg {
  width: 100%;
  max-height: 50px;
}

@media (max-width: 768px) {
  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* 9. Blue CTA Banner */
.cta-banner-section {
  background-color: var(--color-bg-white);
  padding: 20px 24px;
}

.cta-banner-card {
    border-radius: var(--border-radius-lg);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
}

#cta-banner-heading {
    color: #fff;
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 24px;
}

@keyframes bgGradientMovement {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.cta-banner-inner {
  position: relative;
  z-index: 5;
 
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-bg-white);
  margin-bottom: 20px;
}

.cta-subtext {
    font-size: 20px;
    color: #777779;
    margin-bottom: 36px;
    font-weight: 300;
}

.button-white {
    background-color: #0D4F89;
    color: #fff;
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    border: 1px solid var(--color-bg-white);
    cursor: pointer;
}

.button-white:hover {
  background: #1A679B;
  background: linear-gradient(180deg,rgba(26, 103, 155, 0.98) 0%, rgba(36, 123, 174, 1) 100%);
  color: var(--color-bg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.22);
}

@media (max-width: 768px) {
  .cta-banner-card {
    padding: 50px 20px;
  }
  .cta-banner h2 {
    font-size: 2rem;
  }
}

/* 10. Footer Layout */


.footer {
  background-color: #fff;
  
}

.footer-inner {
    background-color: #F8F9FA;
    padding: 80px 24px 40px 24px;
    border-radius: 14px;
    margin-bottom: 34px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h5 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-cobalt-dark);
  margin-bottom: 24px;
}

.footer-desc {
  font-size: 1rem;
  color: #444445;
  margin-top: 16px;
  max-width: 412px;
  line-height: 1.5;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-link {
  font-size: 1rem;
  color: #444445;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: #2bbce2;
  padding-left: 4px;
}

.footer-contact-item {
    font-size: 1rem;
    color: #444445;
    margin-bottom: 5px;
    line-height: 1.5;
}

.footer-contact-item a{
    color: #444445;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #e8f3fd;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-medium);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
    background-color: #0d4f89;
    border-color: #0d4f89;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #e2e8f0;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-text {
  font-size: 0.85rem;
  color: #444445;
}

.legal-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.legal-link {
  font-size: 0.85rem;
  color: #444445;
  text-decoration: none;
  transition: var(--transition-fast);
}

.legal-link:hover {
  color: #2bbce2;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}

/*  Webinor page css */

.webinor-hero-section{
    padding-top: 80px;
    position:relative; 
    background:rgb(255,255,255);
}

.nm-text{
    font-size: 18px;
    line-height: 1.65;
    color: #777779;
}
.webinor-cols{
    position:relative; display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(400px,100%),1fr)); 
    gap:clamp(32px, 4vw, 64px); 
    align-items:start;
}
.webinor-col-left{
    display:flex; 
    flex-direction:column; 
    gap:32px;
}

.webinor-sub-head{
    font-size:18px; font-weight:700; 
    line-height:28px; 
    letter-spacing:0.5px; 
    color:rgb(24,115,204)
}

.webinor-btn-wrap{
    display:flex; 
    flex-direction:row; 
    gap:12px; 
    flex-wrap:wrap;
}

.webinor-btn-wrap-item{
    border-radius:100px; border:1px solid rgb(233,236,239); padding:6px 16px; font-size:16px; line-height:24px; color:rgb(119,119,121)
}

.webinor-time-block{
    border-radius:16px; 
    background:linear-gradient(128.902deg, rgb(232,243,253) 0%, rgb(255,255,255) 101.33%); 
    box-shadow:inset 0 0 0 1px rgb(233,236,239); 
    padding:clamp(20px, 3vw, 32px); 
    display:flex; flex-direction:row; gap:clamp(20px, 3vw, 40px); 
    align-items:center; flex-wrap:wrap; 
    max-width:740px
}

.webinor-time-block-inner{display:flex; flex-direction:column; gap:4px; flex-shrink:0;}
.webinor-time-subhead{
    font-size:16px; font-weight:700; line-height:24px; letter-spacing:0.5px; color:rgb(24,115,204);
}

.webinor-time-heading{
    font-family:Zacorsea,'Bodoni Moda','Playfair Display',Georgia,serif; font-size:clamp(24px, 2.8vw, 32px); line-height:1.3; color:rgb(68,68,69)
}

.webinor-timer-block{
    display:flex; flex-direction:row; gap:24px; flex-wrap:wrap;
}

.webinor-timer-item{
    display:flex; flex-direction:column; gap:2px; align-items:center; min-width:56px;
}

.webinor-timer-item-head{
    font-family:Zacorsea,'Bodoni Moda','Playfair Display',Georgia,serif; font-size:clamp(30px, 3.4vw, 40px); line-height:1.2; color:rgb(13,79,137)
}


.webinor-timer-item-sub{
    font-size:14px; line-height:20px; letter-spacing:0.5px; color:rgb(119,119,121)
}

.webinor-form-block{
    border-radius:24px; 
    background:rgb(248,249,250); 
    border:1px solid rgb(233,236,239); 
    padding:clamp(24px, 4vw, 40px); display:flex; flex-direction:column; gap:24px;
}

.webinor-form-head{
    display:flex; flex-direction:column; gap:4px;
}

.webinor-form-heading{
    font-size:24px; font-weight:700; line-height:32px; color:rgb(68,68,69);
}

.webinor-form-sub-text{
    font-size:16px; line-height:24px; color:rgb(119,119,121);
}

.webinor-form-inner-block{
    display:flex; flex-wrap:wrap; gap:16px;
}

.webinor-form-label{
    flex:1 1 100%; min-width:0; display:flex; flex-direction:column; gap:8px;
}

.webinor-form-label-text{
    font-size:16px; font-weight:700; line-height:24px; color:rgb(68,68,69);
}
.webinor-form-input{
    min-width:0; width:100%; height:48px; border-radius:8px; border:1px solid rgb(233,236,239); background:rgb(255,255,255); padding:0 16px; font-size:16px; line-height:24px; outline:none;
}

.webinor-register-btn{
    height:48px; border:none; border-radius:8px; background:rgb(13,79,137); padding:8px 24px; font-size:16px; font-weight:700; line-height:24px; color:rgb(255,255,255); cursor:pointer;
}
.webinor-form-bottom-text{
    font-size:14px; line-height:20px; color:rgb(119,119,121);
}

.webinor-upcomming {
    background: rgb(248,249,250);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.upcomming-section{
    padding-top: 20px;
}

.upcomming-inner-block{
    display:flex; flex-direction:row; gap:24px; justify-content:space-between; align-items:flex-end; flex-wrap:wrap;
}

.upcomming-head{
    display:flex; flex-direction:column; gap:12px; max-width:740px;
}

.upcomming-sub-head{
    font-size:18px; font-weight:700; line-height:28px; letter-spacing:0.5px; color:rgb(24,115,204)
}

.upcomming-heading{
    margin:0; font-family:Zacorsea,'Bodoni Moda','Playfair Display',Georgia,serif; font-weight:400; font-size:clamp(26px, 3.6vw, 40px); line-height:1.35; letter-spacing:-0.5px; color:rgb(68,68,69); text-wrap:pretty;
}

.add-calander-link{
    font-size:16px; font-weight:700; line-height:24px; flex-shrink:0
}

.add-calander-link:hover{
    text-decoration: none;
}

.upcomming-items{
    display:grid; grid-template-columns:repeat(auto-fit,minmax(min(280px,100%),1fr)); gap:24px;
}

.webinor-upcomming-item{
    border-radius:16px; background:linear-gradient(128.902deg, rgb(232,243,253) 0%, rgb(255,255,255) 101.33%); padding:32px; display:flex; flex-direction:column; gap:24px;
}

.webinor-upcomming-item-head{
    display:flex; flex-direction:column; gap:2px;
}

.webinor-upcomming-item-date{
    font-family:Zacorsea,'Bodoni Moda','Playfair Display',Georgia,serif; font-size:clamp(30px, 3.4vw, 40px); line-height:1.15; color:rgb(13,79,137);
}

.webinor-upcomming-item-month{
    font-size:16px; font-weight:700; line-height:24px; letter-spacing:0.5px; color:rgb(119,119,121);
}
.webinor-upcomming-item-info-block{
    display:flex; flex-direction:column; gap:8px;
}

.webinor-upcomming-item-title{font-size:20px; font-weight:700; line-height:32px; color:rgb(68,68,69);}

.webinor-upcomming-item-text{
    font-size:18px; line-height:28px; color:rgb(119,119,121);
}

.webinor-upcomming-item-link{
    font-size:16px; 
    font-weight:700; 
    line-height:24px;
}

.webinor-upcomming-item-link:hover{
    text-decoration: none;
}

.webinor-testimonial {
    background: rgb(255,255,255);
    padding: 0px;
}

.webinor-testimonial-section{
    padding-top: 30px;
}

.webinor-testimonial-grid{
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(300px,100%),1fr)); 
    gap:clamp(32px, 4vw, 64px); 
    align-items:center;
}

.webinor-testimonial-thumb{
     height: auto;
    width:100%; 
    background:repeating-linear-gradient(135deg, rgb(240,246,252) 0 10px, rgb(232,243,253) 10px 20px); 
    display:flex; align-items:center; 
    justify-content:center; 
   border-radius:16px;
}

.webinor-testimonial-left{
    display:flex; 
    flex-direction:column; gap:24px;
}

.webinor-textimonail-text{
    margin:0; font-family:Zacorsea,'Bodoni Moda','Playfair Display',Georgia,serif; 
    font-weight:400; 
    font-size:clamp(22px, 2.8vw, 32px); 
    line-height:1.45; letter-spacing:-0.5px; 
    color:rgb(68,68,69); text-wrap:pretty
}

.webinor-textimonail-bottom {
    display:flex; 
    flex-direction:column; gap:2px
}

.webinor-textimonail-name {
    font-size:18px; 
    font-weight:700; 
    line-height:28px; 
    color:rgb(68,68,69);
}

.webinor-textimonail-designation{
    font-size:16px; 
    line-height:24px; 
    color:rgb(119,119,121);
}

.on-demand-section{
        padding-top: 30px;
        position: relative;
}

.on-demand-inner{
    background:rgb(255,255,255); 
    display:flex; 
    flex-direction:column; gap:40px;
}

.on-demand-head{
    display:flex; 
    flex-direction:column; 
    gap:12px; 
    max-width:740px
}

.on-demand-sub-head{
    font-size:18px; 
    font-weight:700; 
    line-height:28px; 
    letter-spacing:0.5px; 
    color:rgb(24,115,204)
}

.on-demand-heading{
    margin:0; font-family:Zacorsea,'Bodoni Moda','Playfair Display',Georgia,serif; 
    font-weight:400; 
    font-size:clamp(26px, 3.6vw, 40px); 
    line-height:1.35; 
    letter-spacing:-0.5px; 
    color:rgb(68,68,69); 
    
}

.webinor-video-grid-section{
    display:grid; 
    grid-template-columns: repeat(auto-fit, minmax(min(308px, 100%), 1fr));
    gap: 24px;
}

.webinor-video-card{
    border-radius:16px; 
    border:1px solid rgb(233,236,239); background:rgb(255,255,255); 
    overflow:hidden; 
    display:flex; 
    flex-direction:column;
}

.webinor-video-card-thumbnail{
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-color: rgb(232, 243, 253);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.webinor-video-card-info{
   padding:24px 24px 28px;
   display:flex; 
   flex-direction:column; 
   gap:12px
}

.webinor-video-card-head{
    display:flex; 
    flex-direction:row; 
    gap:8px; 
    align-items:center;
}

.webinor-video-meta-baze{
border-radius:100px; background:rgb(232,243,253); 
padding:4px 12px; 
font-size:14px; 
font-weight:700; 
line-height:20px; 
color:rgb(13,79,137);
    
}

.webinor-video-time{
    font-size:14px; line-height:20px; color:rgb(119,119,121)
}

.webinor-video-title{
    font-size:20px; 
    font-weight:700; 
    line-height:32px; 
    color:rgb(68,68,69);
}
.webinor-video-text{
    font-size:16px; 
    line-height:24px; 
    color:rgb(119,119,121);
}

.webinor-video-replay{
    font-size:16px; font-weight:700; line-height:24px
}

.webinor-video-replay:hover{
    text-decoration: none;
}

.book-demo-section{
    padding-top: 20px;
}

.book-demo-inner {
    background: rgb(255,255,255);
}

.book-demo-blue-bg{
    position: relative;
    border-radius: 24px;
    background: rgb(13, 79, 137);
    padding: clamp(28px, 5vw, 64px);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.book-demo-blue-bg-overlay{
    position:absolute; inset:0; opacity:0.10; background-image:radial-gradient(rgb(255,255,255) 1.5px, transparent 1.6px); background-size:24px 24px; mix-blend-mode:overlay;
}

.book-demo--inner-content{
    position:relative; display:flex; flex-direction:column; gap:12px; max-width:700px
}

.book-demo--inner-content-title{
    margin:0; font-family:Zacorsea,'Bodoni Moda','Playfair Display',Georgia,serif; font-weight:400; font-size:clamp(26px, 3.6vw, 40px); line-height:1.35; letter-spacing:-0.5px; color:rgb(255,255,255);
}

.book-demo--inner-text{
    margin:0; font-size:18px; line-height:28px; color:rgba(255,255,255,0.82);
}

.book-demo--btn{
    position:relative; 
    flex-shrink:0; 
    height:48px; 
    border-radius:8px; 
    background:rgb(255,255,255); 
    padding:8px 24px; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    font-size:16px; 
    font-weight:700; 
    line-height:24px; 
    color:rgb(13,79,137); 
    text-decoration:none;
}

#bookdemo .book-demo--btn:hover{
   background-color: #073e6e !important;
    color: #fff
}

/* End Webinor page css */

/* team page css */
.team-leadership-section {
    padding-top: 160px;
}

.team-leadership-head{
    display:flex; 
    flex-direction:column; 
    gap:12px; 
    max-width:740px;
    margin-bottom: 30px;
}

.team-leadership-sub-head{
    font-size:18px; 
    font-weight:700; 
    line-height:28px; 
    letter-spacing:0.5px; 
    color:rgb(24,115,204);
}

.team-leadership-title{
    margin:0; 
    font-family:Zacorsea,'Bodoni Moda','Playfair Display',Georgia,serif; 
    font-weight:400; 
    font-size:clamp(26px, 3.6vw, 40px); 
    line-height:1.35; 
    letter-spacing:-0.5px; 
    color:rgb(68,68,69); 
}

.team-leadership-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(308px, 100%), 1fr));
    gap: 24px;
}
.team-leadership-card{
    border-radius:16px; 
    border:1px solid rgb(233,236,239); 
    background:rgb(255,255,255); 
    overflow:hidden; 
    display:flex; 
    flex-direction:column;
}

.team-leadership-card:hover{
        box-shadow: 0 12px 24px rgba(3, 6, 13, 0.08);
}

.leadership-thumb{
    height: 320px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(236, 242, 248); 
}

.leadership-card-info{
    padding:28px 32px 32px; 
    display:flex; 
    flex-direction:column; 
    gap:12px;
}

.leadership-card-info-head{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.leadership-card-info-title{
    font-size:20px; 
    font-weight:700; 
    line-height:32px; 
    color:rgb(68,68,69);
}
.leadership-designation{
    font-size:16px; 
    font-weight:700; 
    line-height:24px; 
    letter-spacing:0.5px; 
    color:rgb(24,115,204);
}

.leadership-text{
    font-size:18px; 
    line-height:28px; 
    color:rgb(119,119,121);
}
.leadership-card-foot{
    display:flex; 
    flex-direction:row; 
    gap:12px
}

.leadership-card-social-link{
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: rgb(232, 243, 253);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.all-team-memeber-section {
    padding-top: 15px;
}

.all-team-memeber-inner{
    background: rgb(248, 249, 250);
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.all-team-memeber-sub-head{
      display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.team-memeber-sub-head-inner{
    display:flex; flex-direction:column; gap:12px; max-width:740px
}

.team-memeber-sub-head-text{
    font-size:18px; font-weight:700; line-height:28px; letter-spacing:0.5px; color:rgb(24,115,204)
}

.all-team-member-title{
    margin:0; 
    font-family:Zacorsea,'Bodoni Moda','Playfair Display',Georgia,serif; 
    font-weight:400; 
    font-size:clamp(26px, 3.6vw, 40px); 
    line-height:1.35; letter-spacing:-0.5px; 
    color:rgb(68,68,69); 
    
}

.all-member-total-text{
    font-size:16px; line-height:24px; color:rgb(119,119,121); flex-shrink:0
}
.all-team-member-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: 24px;
}

.all-team-member-item {
    border-radius: 16px;
    background: rgb(255, 255, 255);
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.all-team-member-pic{
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(236, 242, 248);
}

.all-team-member-info{
    display:flex; 
    flex-direction:column; 
    gap:2px; 
    min-width:0;
}

.all-team-member-name{
    font-size:18px; 
    font-weight:700; 
    line-height:28px; 
    color:rgb(68,68,69);
}

.all-team-post-designation{
    font-size:16px; line-height:24px; color:rgb(119,119,121)
}

.our-team-career-section {
    padding-top: 0;
}

.career-opening-roles{
    background:rgb(255,255,255); 
    padding: 20px 0px;
    display:flex; 
    flex-direction:column; 
    gap:40px;
}

.career-sub-head{
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: rgb(24, 115, 204);
}

.career-head-title{
    margin: 0;
    font-family: Zacorsea, 'Bodoni Moda', 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(26px, 3.6vw, 40px);
    line-height: 1.35;
    letter-spacing: -0.5px;
    color: rgb(68, 68, 69);
    text-wrap: pretty;
}

.career-role-list{
    display:flex; 
    flex-direction:column; 
    gap:12px
}

.career-role-item{
    border-radius: 16px;
    border: 1px solid rgb(233, 236, 239);
    background: rgb(248, 249, 250);
    padding: 24px 32px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.career-role-item:hover{
    background: rgb(232, 243, 253);
}

.career-role-item-inner{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.career-role-title{
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    color: rgb(68, 68, 69);
}
.career-role-sub-title{
    font-size:16px; line-height:24px; color:rgb(119,119,121)
}

.career-role-view-btn{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: rgb(13, 79, 137);
    flex-shrink: 0;
}


/* End team page css */

/* contact us page css */

.contact-header-section{
    padding-top: 150px;
}
.contact-header-inner {
    background: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-sub-title{
    font-size:18px; 
    font-weight:700; 
    line-height:28px; 
    letter-spacing:0.5px; 
    color:rgb(24,115,204);
}

.contact-header-title{
    margin: 0;
    max-width: 900px;
    font-family: Zacorsea, 'Bodoni Moda', 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.25;
    letter-spacing: -0.5px;
    color: rgb(68, 68, 69);
    text-wrap: pretty;
}

.contact-header-para{
    margin:0; max-width:740px; font-size:18px; line-height:28px; color:rgb(119,119,121); text-wrap:pretty;
}

.contact-form-detail-section{
    padding-top: 0px;
}

.contact-form-detail-inner{
    background:rgb(255,255,255); 
}

.contact-form-detail-grid{
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(340px,100%),1fr)); 
    gap:clamp(24px, 3vw, 48px); 
    width:100%; 
    align-items:start;
}

.contact-form-left{
    border-radius: 24px;
    background: rgb(248, 249, 250);
    padding: clamp(24px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-form-head{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-heading{
    margin: 0;
    font-family: Zacorsea, 'Bodoni Moda', 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(26px, 3.6vw, 40px);
    line-height: 1.35;
    letter-spacing: -0.5px;
    color: rgb(68, 68, 69);
}

.contact-form-sub-text{
    margin:0; 
    font-size:18px; 
    line-height:28px; 
    color:rgb(119,119,121);
}

.contact-form-blocks{
    display:flex; 
    flex-wrap:wrap; 
    gap:24px;
}

.contact-form-label{
    flex: 1 1 250px;
    min-width:0; 
    display:flex; 
    flex-direction:column; 
    gap:8px;
}

.contact-form-label-text{
    font-size:16px; 
    font-weight:700; 
    line-height:24px; 
    color:rgb(68,68,69);
}

.contact-input-field{
    min-width:0; 
    width:100%; 
    height:48px; 
    border-radius:8px; 
    border:1px solid rgb(233,236,239); 
    background:rgb(255,255,255); 
    padding:0 16px; 
    font-size:16px; 
    line-height:24px; 
    color:rgb(68,68,69); 
    outline:none;
}

.contact-form-label-full{
    flex:1 1 100%; 
    min-width:0; 
    display:flex; 
    flex-direction:column; 
    gap:8px;
}

.contact-textarea{
    min-width:0; 
    width:100%; 
    border-radius:8px; 
    border:1px solid rgb(233,236,239); background:rgb(255,255,255); 
    padding:12px 16px; 
    font-size:16px; 
    line-height:24px; 
    color:rgb(68,68,69); 
    resize:vertical; 
    outline:none;
}
.contact-privacy-check-box{
    display:flex; 
    flex-direction:row; 
    gap:12px; 
    align-items:flex-start;
}
.input-privacy-check-box{
    min-width:0; 
    width:20px; 
    height:20px; 
    margin-top:2px; 
    accent-color:rgb(13,79,137);
}

.privacy-check-text-line{
    font-size:16px; 
    line-height:24px; 
    color:rgb(119,119,121);
    width: calc(100% - 28px);
}
.contact-send-block{
    display:flex; 
    flex-direction:row; 
    gap:16px; 
    align-items:center;
}
.contact-send-btn{
    height:48px; 
    border:none; 
    border-radius:8px; 
    background:rgb(13,79,137); 
    padding:8px 24px; 
    font-size:16px; 
    font-weight:700; 
    line-height:24px; 
    color:rgb(255,255,255); 
    cursor:pointer;
}

.book-demo-mins{
    font-size:16px; 
    line-height:24px; 
    color:rgb(119,119,121);
}

.contact-right-info-block{
    display:flex; 
    flex-direction:
    column; gap:16px;
}
.contact-right-inner{
    border-radius: 16px;
    background: linear-gradient(128.902deg, rgb(232, 243, 253) 0%, rgb(255, 255, 255) 101.33%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.contact-right-heading{
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.5px;
    color: rgb(24, 115, 204);
}
.contact-right-divider{
    height:1px; background:rgb(233,236,239)
}

.contact-right-item{
    display:flex; 
    flex-direction:column; 
    gap:4px;
}

.contact-right-item-sub-head{
    font-size:16px; 
    font-weight:700; 
    line-height:24px; 
    color:rgb(68,68,69)
}

.contact-right-item-sub-link{
    font-size:18px; 
    line-height:28px
}

.contact-right-item-num{
    font-size:16px; 
    line-height:24px; 
    color:rgb(119,119,121);
}

.conatct-right-headquater{
    border-radius:16px; 
    border:1px solid rgb(233,236,239); 
    background:rgb(255,255,255); 
    padding:32px; 
    display:flex; 
    flex-direction:column; 
    gap:12px;
}


.headquater-address-sub-title{
    font-size:20px; 
    font-weight:700; 
    line-height:32px; 
    color:rgb(68,68,69);
}

.headquater-address{
    font-size:18px; 
    line-height:28px; 
    color:rgb(119,119,121)
}

.all-office-link{
    font-size:16px; 
    font-weight:700; 
    line-height:24px
}

.newsletter-section{
    padding-top: 30px;
}

.newsletter-inner {
    background: rgb(248,249,250);
    border-radius: 26px;
}

.newsletter-grid {
    border-radius: 24px;
    background: linear-gradient(128.902deg, rgb(232, 243, 253) 0%, rgb(255, 255, 255) 101.33%);
    box-shadow: inset 0 0 0 1px rgb(233, 236, 239);
    padding: clamp(28px, 4vw, 48px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: clamp(24px, 3vw, 48px);
    align-items: center;
}

.newsletter-left{
    display:flex; 
    flex-direction:column; 
    gap:12px
}

.newsletter-sub-head{
    font-size:18px; 
    font-weight:700; 
    line-height:28px; 
    letter-spacing:0.5px; 
    color:rgb(24,115,204)
}

.newsletter-heading{
    margin:0; 
    font-family:Zacorsea,'Bodoni Moda','Playfair Display',Georgia,serif; 
    font-weight:400; 
    font-size:clamp(26px, 3.6vw, 40px); 
    line-height:1.35; 
    letter-spacing:-0.5px; 
    color:rgb(68,68,69); 
    text-wrap:pretty;
}

.newsletter-text{
    margin:0; 
    max-width:520px; 
    font-size:18px; 
    line-height:28px; 
    color:rgb(119,119,121); 
    text-wrap:pretty;
}

.news-letter-form{
    display:flex; 
    flex-direction:column; 
    gap:12px;
}

.news-letter-form-inner{
    display:flex; 
    flex-wrap:wrap; 
    gap:12px;
}
.news-letter-form-input{
    flex:1 1 220px; 
    min-width:0; 
    height:48px; 
    border-radius:8px; 
    border:1px solid rgb(233,236,239); 
    background:rgb(255,255,255); 
    padding:0 16px; 
    font-size:16px; 
    line-height:24px; 
    outline:none;
}

.news-letter-subscribe-btn{
    flex:0 0 auto; 
    height:48px; 
    border:none; 
    border-radius:8px; 
    background:rgb(13,79,137); 
    padding:8px 24px; 
    font-size:16px; 
    font-weight:700; 
    line-height:24px; 
    color:rgb(255,255,255); 
    cursor:pointer;
}

.newsletter-check-box-block{
    display:flex; 
    flex-direction:row; 
    gap:12px; 
    align-items:flex-start;
}

.newsletter-check-box{
    width:20px; 
    height:20px; 
    margin-top:2px; 
    accent-color:rgb(13,79,137);
}

.newsletter-check-text{
    font-size:16px; 
    line-height:24px; 
    color:rgb(119,119,121);
}



/* End contact us css */

/* Cobalt core page css */
.cobalt-core-section{
    padding-top: 150px;
}

.cobalt-core-inner{
    padding:0px;
}

.cobalt-core-subhead{
    display:flex; 
    flex-direction:row; 
    gap:12px; 
    align-items:center;
}

.cobalt-core-subhead-text{
    font-size:18px; 
    font-weight:700; 
    line-height:28px; 
    letter-spacing:1px; 
    color:rgb(13,79,137)
}
.cobalt-core-subhead-vertical-dash{
    width:4px; 
    height:28px; 
    background:rgb(13,79,137); 
    border-radius:2px
}

.cobalt-core-hero-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
    gap: clamp(32px, 4vw, 72px);
    align-items: center;
}

.cobalt-core-hero-left{
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.cobalt-core-hero-btns{
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
}

.cobalt-core-hero-btn-1{
    height: 52px;
    border-radius: 8px;
    background: rgb(13, 79, 137);
    padding: 8px 28px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.cobalt-core-hero-btn-2{
    height:52px; 
    border-radius:8px; 
    background:rgb(255,255,255); 
    box-shadow: inset 0 0 0 1px rgb(233, 236, 239) !important;
    padding:8px 28px; 
    display:flex; 
    align-items:center; 
    font-size:16px; 
    font-weight:700; 
    color:rgb(13,79,137); 
    text-decoration:none;
}
.cobalt-core-hero-right-block{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-content: center;
    width: 100%;
    max-width: 420px;
}

.cobalt-core-hero-right-item{
    aspect-ratio: 1 / 1;
    min-width: 0;
    border-radius: 16px;
    background: rgb(232, 243, 253);
    border-top: 3px solid rgb(13, 79, 137);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    text-decoration: none;
}

.cobalt-core-inner .section-title{
    margin-bottom: 0px;
}

.cobalt-core-right-icon{
    width:28px; 
    height:28px; 
    object-fit:cover
}
.cobalt-core-right-item-text{
    font-size:16px; 
    font-weight:700; 
    line-height:22px; 
    color:rgb(13,79,137)
}

.core-suite-section{
    padding-top: 30px;
}

.core-suite{
    background:rgb(248,249,250); 
    padding: 44px 60px;
    display:flex; 
    flex-direction:column; 
    gap:20px;
}

.core-suite-title{
    font-size:14px; 
    font-weight:700; 
    line-height:20px; 
    letter-spacing:1px; 
    color:rgb(119,119,121);
}

.core-suite-btn-list{
    display:flex; 
    flex-direction:row; 
    gap:12px; 
    flex-wrap:wrap;
}
.core-suite-btn{
    border-radius: 100px;
    background: rgb(255, 255, 255);
    box-shadow: inset 0 0 0 1px rgb(233, 236, 239);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 700;
    color: rgb(13, 79, 137);
    text-decoration: none;
}

.core-suite-btn:hover{
    background: rgb(232,243,253) !important;
}

.accounting-sec{
    padding-top: 30px;
}

.accounting-inner{
    padding:0px;
}

.accounting-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
}

.club-accounting-left{
    display:flex; 
    flex-direction:column; 
    gap:20px
}

.club-accounting-subhead{
    font-size:14px; 
    font-weight:700; 
    line-height:20px; 
    letter-spacing:1px; 
    color:rgb(24,115,204)
}

.club-accounting-list-block{
    display:flex; 
    flex-direction:column; 
    gap:14px
}

.club-accounting-more-btn{
    font-size:16px; font-weight:700; line-height:24px
}

.club-accounting-thumbnail{
    border-radius:16px; 
    height:clamp(280px, 32vw, 400px); 
    background:repeating-linear-gradient(135deg, rgb(240,246,252) 0 10px, rgb(232,243,253) 10px 20px); 
    display:flex; 
    align-items:center; 
    justify-content:center; 
}

.club-accounting-list-item{
    display:flex; 
    flex-direction:row; 
    gap:14px; 
    align-items:flex-start;
}

.club-accounting-dot{
    width:6px; 
    height:6px; 
    margin-top:11px; 
    border-radius:100px; 
    background:rgb(13,79,137); 
    flex-shrink:0;
}
.club-accounting-list-text{
    font-size:17px; 
    line-height:28px; 
    color:rgb(68,68,69)
}

.one-ledger-section{
    padding-top: 30px;
}

.one-ledger-inner{
    background:rgb(13,79,137); 
     padding: 56px 40px;
    display:flex; 
    flex-direction:column; 
    gap:48px;
}

.one-ledger-head{
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 680px;
}

.one-ledger-subhead{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    color: rgb(139, 198, 238);
}

.one-ledger-heading{
    margin: 0;
    font-family: Zacorsea, 'Bodoni Moda', 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: rgb(255, 255, 255);
    text-wrap: pretty;
}

.one-ledger-head-subtext{
    margin: 0;
    font-size: 18px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.78);
    text-wrap: pretty;
}

.one-ledger-list-block{
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(220px,100%),1fr)); 
    gap:20px
}

.one-ledger-list-block-item{
    border-radius:16px;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,0.18); 
    padding:28px; display:flex; 
    flex-direction:column; 
    gap:12px
}

.one-ledger-list-num{
    font-family:Zacorsea,'Bodoni Moda','Playfair Display',Georgia,serif; 
    font-size:32px; 
    line-height:1.1;
}

.one-ledger-list-sub-title{
    font-size:18px; 
    font-weight:700; 
    line-height:26px;
}

.one-ledger-list-sub-text{
    font-size:16px; 
    line-height:26px;
}

.club-membership-mmg-section{
    padding-top: 30px;
}

.club-membership-mmg-inner{
    padding: 0px;
}

.food-beverage-pos-sec {
    padding-top: 30px;
    padding-bottom: 0px;
}

.food-beverage-pos-inner {
    background: rgb(248, 249, 250);
    padding: 40px;
}

.food-beverage-pos-grid{
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(380px,100%),1fr)); 
    gap:clamp(32px, 4vw, 64px); 
    align-items:center
}

.food-beverage-pos-left{
    display:flex; 
    flex-direction:column; 
    gap:20px
}

.food-beverage-l-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.food-beverage-list-text{
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.5px;
    color: rgb(13, 79, 137);
}
.food-beverage-list-text-nm{
    font-size:17px; 
    line-height:28px; 
    color:rgb(68,68,69)
}

.table-mmg-section{
    padding-top: 30px;
}

.club-analytics-section{
    padding-top: 30px;
}

.club-analytics-inner{
    background:rgb(232,243,253); 
    padding:40px;
}

.club-analytics-grid{
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(380px,100%),1fr)); 
    gap:clamp(32px, 4vw, 64px); 
    align-items:center;
}

.club-analytics-left{
    display:flex; 
    flex-direction:column; 
    gap:20px;
}

.club-analytics-right{
    border-radius: 16px;
    background: rgb(255, 255, 255);
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.backoffice-section{
    padding-top: 30px;
}

.backoffice-inner{
    display:flex; 
    flex-direction:column; 
    gap:40px
}

.back-office-grid{
    display:flex; 
    flex-direction:column; 
    gap:14px; 
    max-width:680px
}

.back-office-items-list-grid{
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(300px,100%),1fr)); 
    gap:24px
}

.back-office-item-block{
    border-radius: 16px;
    background: rgb(255, 255, 255);
    box-shadow: inset 0 0 0 1px rgb(233, 236, 239);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.back-office-item-dash{
    width:40px; 
    height:4px; 
    border-radius:2px; 
    background:rgb(13,79,137)
}

.back-office-title{
    font-size:20px; 
    font-weight:700; 
    line-height:30px; 
    color:rgb(68,68,69);
}

.backoffice-block-info{
    display:flex; 
    flex-direction:column; 
    gap:10px
    
}

.video-block-section {
    padding-top: 10px;
    padding-bottom: 40px;
}
.video-block-inner{
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    min-height: 320px;
    overflow: hidden;
    background: linear-gradient(160deg, rgb(13, 79, 137) 0%, rgb(9, 44, 78) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-iframe{
    position:absolute; 
    top:50%; left:50%; 
    width:100%; 
    height:100%; 
    transform:translate(-50%,-50%) scale(1.34); 
    border:0; pointer-events:none
}

.video-iframe-text{
    position:absolute; 
    left:clamp(20px, 7vw, 160px); 
    bottom:24px; 
    font-size:14px; 
    font-weight:700; 
    line-height:22px; 
    letter-spacing:1px; 
    color:rgba(255,255,255,0.82)
}

.video-iframe-bottom{
    padding:clamp(28px, 4vw, 40px) clamp(20px, 7vw, 160px); 
    display:flex; 
    flex-direction:row; 
    gap:clamp(20px, 4vw, 48px); 
    justify-content:space-between; 
    align-items:flex-end; 
    flex-wrap:wrap;
}

.video-iframe-bottom-left{
    flex:1 1 420px; 
    min-width:0; 
    display:flex; 
    flex-direction:column; 
    gap:12px;
}

.video-iframe-bottom-subhead{
    font-size:14px; 
    font-weight:700; 
    line-height:20px; 
    letter-spacing:1px; 
    color:rgb(24,115,204);
}

.video-iframe-title{
    margin:0; 
    max-width:620px; 
    font-family:Zacorsea,'Bodoni Moda','Playfair Display',Georgia,serif; 
    font-weight:400; 
    font-size:clamp(24px, 3vw, 34px); 
    line-height:1.3; 
    letter-spacing:-0.5px; 
    color:rgb(68,68,69); 
    text-wrap:pretty;
}

.video-iframe-right-btn{
    flex-shrink:0; 
    font-size:16px; 
    font-weight:700; 
    line-height:24px
}

/* End Cobalt core page css */

/*  Cobalt gather page css */

.cobalt-gather-hero-section{
    padding-top: 150px;
}

.cobalt-gather-grid{
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(420px,100%),1fr)); 
    gap:clamp(32px, 4vw, 72px); 
    align-items:center
}

.cobalt-gather-left{
    display:flex; 
    flex-direction:column; 
    gap:28px;
}

.cobalt-gather-head{
    display:flex; 
    flex-direction:row; 
    gap:12px; 
    align-items:center;
}

.cobalt-gather-hero-btns{
    display:flex; 
    flex-direction:row; 
    gap:12px; 
    flex-wrap:wrap
}
.cobalt-gather-hero-blue-btn{
    height:52px; 
    border-radius:8px; 
    background:rgb(13,79,137); 
    padding:8px 28px; 
    display:flex; 
    align-items:center; 
    font-size:16px; 
    font-weight:700; 
    color:rgb(255,255,255); 
    text-decoration:none;
}
.cobalt-gather-hero-white-btn{
    height:52px; 
    border-radius:8px; 
    background:rgb(255,255,255); 
    box-shadow: inset 0 0 0 1px rgb(233, 236, 239) !important;
    padding:8px 28px; 
    display:flex; 
    align-items:center; 
    font-size:16px; 
    font-weight:700; 
    color:rgb(13,79,137); 
    text-decoration:none
}
.cobalt-gather-hero-right{
    display:grid; 
    grid-template-columns:repeat(3,minmax(0,1fr)); 
    gap:16px; 
    align-content:center;
    width:100%; 
    max-width:560px
}

.cobalt-gather-right-btn{
    grid-column:1 / -1; 
    border-radius:16px; 
    background:rgb(255,255,255); 
    box-shadow:inset 0 0 0 1px rgb(233,236,239) !important; 
    padding:16px 20px; 
    display:flex; flex-direction:row; 
    justify-content:space-between; 
    align-items:center; gap:16px; 
    text-decoration:none;
}

.cobalt-gather-right-btn-text{
    font-size:16px; 
    font-weight:700; 
    line-height:24px; 
    color:rgb(13,79,137);
}

.cobalt-gather-right-btn-icon{
    font-size:18px; 
    font-weight:700; 
    line-height:24px; 
    color:rgb(13,79,137);
}
.cobalt-gather-right-tiles{
    aspect-ratio:1 / 1; 
    min-width:0; 
    border-radius:16px; 
    background:rgb(232,243,253); 
    border-top:3px solid rgb(13,79,137); 
    padding:20px; 
    display:flex; 
    flex-direction:column; 
    justify-content:space-between; 
    gap:16px; 
    text-decoration:none;
}

.cobalt-gather-right-tiles-icon{
    width:28px; 
    height:28px; 
    object-fit:cover;
}

.cobalt-gather-right-tiles-text{
    font-size:16px; 
    font-weight:700; 
    line-height:22px; 
    color:rgb(13,79,137)
}

.coablt-gather-timelines-section{
    padding-top: 30px;
}

.coablt-gather-timeline-inner {
    padding: 0px;
    display:flex; 
    flex-direction:column; 
    gap:40px;
}

.coablt-gather-timeline-head{
    display:flex; 
    flex-direction:row; 
    gap:24px; 
    justify-content:space-between; 
    align-items:flex-end; 
    flex-wrap:wrap;
}
.coablt-gather-timeline-head-left{
    display:flex; 
    flex-direction:column; 
    gap:14px; 
    max-width:680px
}

.coablt-gather-timeline-sub-head{
    font-size:14px; 
    font-weight:700; 
    line-height:20px; 
    letter-spacing:1px; 
    color:rgb(24,115,204);
}
.coablt-gather-timeline-right-text{
    font-size:16px; 
    line-height:26px; 
    color:rgb(119,119,121); 
    max-width:340px
}
.coablt-gather-timeline-item{
    display:flex; 
    flex-direction:column; 
    gap:0;
}
.coablt-gather-timeline-item-devider{
    height:1px; 
    background:rgb(233,236,239);
}
.coablt-gather-timeline-item-inner{
    display:grid; 
    grid-template-columns:110px 1fr; 
    gap:clamp(16px, 3vw, 40px); 
    align-items:stretch; 
    border-top:1px solid rgb(233,236,239);
}

.coablt-gather-timeline-item-inner-left{
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.coablt-gather-timeline-time{
    font-family: Zacorsea, 'Bodoni Moda', 'Playfair Display', Georgia, serif;
    font-size: 26px;
    line-height: 1.2;
    color: rgb(13, 79, 137);
}
.coablt-gather-timeline-time-am{
    font-size:13px; 
    font-weight:700; 
    line-height:20px; 
    letter-spacing:1px; 
    color:rgb(24,115,204)
}

.coablt-gather-timeline-content{
    padding: 24px 0;
    display: flex;
    flex-direction: row;
    gap: clamp(16px, 3vw, 32px);
    align-items: flex-start;
    flex-wrap: wrap;
}
.coablt-gather-timeline--in-text{
  flex: 1 1 300px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.coablt-gather-timeline--in-title{
    font-size:20px; 
    font-weight:700; 
    line-height:30px; 
    color:rgb(68,68,69)
}

.coablt-gather-timeline--in-sm-text{
    font-size:16px; 
    line-height:26px; 
    color:rgb(119,119,121);
}

.coablt-gather-timeline-right-baze{
    flex-shrink: 0;
    border-radius: 100px;
    background: rgb(232, 243, 253);
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0.5px;
    color: rgb(24, 115, 204);
}

.cobalt-gather-dining{
    padding-top: 30px;
}

.cobalt-gather-dining-inner{
    background: rgb(248, 249, 250);
    padding: 40px;
}
.cobalt-gather-dining-inner-grid{
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(380px,100%),1fr)); 
    gap:clamp(32px, 4vw, 64px); 
    align-items:center;
}
.cobalt-gather-dining-inner-left{
    display:flex; 
    flex-direction:column; 
    gap:20px
}

.cobalt-gather-subhead-text{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    color: rgb(24, 115, 204);
}

.cobalt-gather-dining-inner-list{
    display:flex; 
    flex-direction:column; 
    gap:14px;
}
.dnining-more-btn{
    font-size:16px; 
    font-weight:700; 
    line-height:24px
    color: #0d4f89;
}

.cobalt-gather-block-thumb {
    border-radius: 16px;
    height: clamp(280px, 32vw, 400px);
    background: repeating-linear-gradient(135deg, rgb(240, 246, 252) 0 10px, rgb(232, 243, 253) 10px 20px);
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.cobalt-gather-block-list{
    display:flex; 
    flex-direction:row; 
    gap:14px; 
    align-items:flex-start;
}

.cobalt-gather--list-dot{
    width:6px; 
    height:6px; 
    margin-top:11px; 
    border-radius:100px; 
    background:rgb(13,79,137); 
    flex-shrink:0;
}

.cobalt-gather--list-text{
    font-size:17px; 
    line-height:28px; 
    color:rgb(68,68,69);
}

.cobalt-gather-golf {
    padding-top: 30px;
}
.cobalt-gather-golf-inner {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 64px);
}
.cobalt-gather-golf-right{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cobalt-gather-golf-inner-grid{
   display:grid; 
   grid-template-columns:repeat(auto-fit,minmax(min(380px,100%),1fr)); 
   gap:clamp(32px, 4vw, 64px); 
   align-items:center;
}

.cobalt-gather-unique-membership{
    border-radius: 24px;
    background: rgb(232, 243, 253);
    padding: clamp(24px, 4vw, 48px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.cobalt-gather-unique-membership-left{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cobalt-gather-unique-membership-title{
    margin: 0;
    font-family: Zacorsea, 'Bodoni Moda', 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.3;
    color: rgb(68, 68, 69);
    text-wrap: pretty;
}

.cobalt-gather-unique-membership-text{
    margin: 0;
    font-size: 17px;
    line-height: 28px;
    color: rgb(68, 68, 69);
    text-wrap: pretty;
}

.cobalt-gather-unique-membership-thunb-block{
    border-radius: 16px;
    height: clamp(200px, 22vw, 260px);
    background: repeating-linear-gradient(135deg, rgb(248, 251, 254) 0 10px, rgb(240, 246, 252) 10px 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: rgb(119, 119, 121);
}

.cobalt-gather-courts-section{
    padding-top: 30px;
}

.cobalt-gather-spa-fitness{
    padding-top: 30px;
}

.cobalt-gather-spa-inner{
    padding: 0px;
}

.cobalt-gather-lessons-events-section{
    padding-top: 30px;
}

.member-ship-signup{
    background: rgb(248, 249, 250);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.member-ship-signup-head{
    display:flex; 
    flex-direction:column; 
    gap:14px; 
    max-width:680px
}

.member-ship-sub-head{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    color: rgb(24, 115, 204);
}
.member-ship-signup-items{
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(300px,100%),1fr)); 
    gap:24px
}

.member-ship-signup-item{
    border-radius:16px; 
    background:rgb(255,255,255); 
    box-shadow:inset 0 0 0 1px rgb(233,236,239); 
    padding:32px; 
    display:flex; 
    flex-direction:column; 
    gap:16px
}

.member-ship-block-dash{
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgb(13, 79, 137);
}

.member-ship-block-heading{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: rgb(68, 68, 69);
}

.member-ship-block-content{
    display:flex; 
    flex-direction:column; 
    gap:10px;
}

.member-ship-block-content-text{
    font-size:16px; 
    line-height:26px; 
    color:rgb(119,119,121);
}

.member-ship-block-link{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #0d4f89;
}

.cobalt-gather-video-section{
    padding-top: 30px;
}

.cobalt-gather-video-inner{
    padding:0px;
}

.cobalt-gather-video-section-grid{
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(360px,100%),1fr)); 
    gap:clamp(32px, 4vw, 64px); 
    align-items:center;
}

.cobalt-gather-video-block{   
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(160deg, rgb(13, 79, 137) 0%, rgb(9, 44, 78) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cobalt-gather-video-right{
    display:flex; 
    flex-direction:column; 
    gap:20px;
}
.cobalt-gather-video-right-subhead{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    color: rgb(24, 115, 204);
}

.cobalt-gather-video-timing-item{
    display:flex; 
    flex-direction:column; 
    gap:0;
}

.gather-video-timing-list{
    display:flex; 
    flex-direction:row; 
    gap:16px; 
    align-items:baseline; 
    padding:12px 0; 
    border-top:1px solid rgb(233,236,239);
}

.gather-video-timing{
    width:44px; 
    flex-shrink:0; 
    font-family:ui-monospace,SFMono-Regular,Menlo,monospace; 
    font-size:14px; 
    color:rgb(24,115,204)
}

.gather-video-timing-text{
    font-size:17px; 
    line-height:26px; 
    color:rgb(68,68,69);
}

/* End Cobalt gather page css */

/*  Cobalt engage page css */
.cobalt-engage-three-surfaces{
    padding-top: 20px;
}
.engage-three-surfaces-inner{
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.engage-three-surfaces-head{
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 700px;
}

.engage-three-surfaces-head-text{
    font-size:14px; 
    font-weight:700; 
    line-height:20px; 
    letter-spacing:1px; 
    color:rgb(24,115,204)
}

.engage-app-tabs{
    display:flex; 
    flex-direction:row; 
    gap:8px; 
    flex-wrap:wrap; 
    align-items:flex-start;
}

.engage-app-tab-btn{
    order:1; height:48px; 
    border:none; 
    border-radius:100px; 
    padding:8px 24px; 
    font-size:16px; 
    font-weight:700; 
    cursor:pointer;
}

.engage-app-tab-conetnt{
    order:2; flex-basis:100%; 
    display:none; 
    grid-template-columns:repeat(auto-fit,minmax(min(360px,100%),1fr)); 
    gap:clamp(32px, 4vw, 64px); 
    align-items:center; 
    margin-top:24px
}
.engage-app-tab-conetnt-inner{
    display:flex; 
    flex-direction:column; 
    gap:20px;
}

.engage-app-tab-title{
    margin:0; 
    font-size:24px; 
    font-weight:700; 
    line-height:34px; 
    color:rgb(68,68,69);
}

.engage-app--btn{
    font-size:16px; 
    font-weight:700; 
    line-height:24px;
    color: #0d4f89;
}

.engage-app-tab-conetnt-inner p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-medium);
    margin-bottom: 12px;
}

.engage-app-tab-conetnt-inner ul {
        padding-left: 14px;
}

.engage-app-tab-conetnt-inner ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 8px;
}

.engage-app-block{
    display: flex;
    justify-content: center;
}

.engage-app-block-inner{
    width: 300px;
    max-width: 100%;
    border-radius: 40px;
    background: rgb(255, 255, 255);
    box-shadow: inset 0 0 0 10px rgb(232, 243, 253), 0 20px 40px rgba(3, 6, 13, 0.10);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.engage-app-top{
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.engage-app-top-inner{
    width:70px; 
    height:6px; 
    border-radius:100px; 
    background:rgb(232,244,255);
}

.engage-app-main-block{
    border-radius:20px; 
    height:440px; 
    background:repeating-linear-gradient(135deg, rgb(240,246,252) 0 10px, rgb(232,243,253) 10px 20px); 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    font-family:ui-monospace,SFMono-Regular,Menlo,monospace; 
    font-size:13px; 
    letter-spacing:0.5px; 
    color:rgb(119,119,121); 
    text-align:center; 
    padding:0 20px;
}

.marketing-communication-section{
    padding-top: 20px;
}

.marketing-communication-inner{
   background: rgb(232, 243, 253);
    padding: 50px;
}

.marketing-communication-grid{
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(380px,100%),1fr)); 
    gap:clamp(32px, 4vw, 64px); 
    align-items:center;
}

.marketing-communication-left{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marketing-communication-sub-head{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    color: rgb(24, 115, 204);
}

.marketing-communication-title{
    margin: 0;
    font-family: Zacorsea, 'Bodoni Moda', 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: rgb(68, 68, 69);
    text-wrap: pretty; 
}

.marketing-communication-sm-text{
    margin: 0;
    max-width: 520px;
    font-size: 17px;
    line-height: 29px;
    color: rgb(68, 68, 69);
    text-wrap: pretty;
}

.marketing-communication-more-btn{
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #0d4f89;
}

.marketing-companin-performance{
    border-radius: 16px;
    background: rgb(255, 255, 255);
    padding: clamp(24px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marketing-companin-sub-heading{
    font-size:14px; 
    font-weight:700; 
    line-height:20px; 
    letter-spacing:1px; 
    color:rgb(119,119,121);
}

.engage-online-payment-section{
    padding-top:20px;
}

.engage-online-payment-inner{
    padding:0px;
}

.engage-online-payment-grid{
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(380px,100%),1fr)); 
    gap:clamp(32px, 4vw, 64px); 
    align-items:center;
}

.engage-online-payment-thumb{
    border-radius: 16px;
    height: clamp(280px, 32vw, 400px);
    background: repeating-linear-gradient(135deg, rgb(240, 246, 252) 0 10px, rgb(232, 243, 253) 10px 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: rgb(119, 119, 121);
}

.engage-online-payment-right{
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.engage-online-payment-right-subhead{
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 1px;
    color: rgb(24, 115, 204);
}

.engage-online-payment-right-sm-text{
    margin: 0;
    max-width: 520px;
    font-size: 17px;
    line-height: 29px;
    color: rgb(119, 119, 121);
    text-wrap: pretty;
}

.engage-on-poperty-section{
    padding-top: 20px;
}

.engage-on-poperty-inner{
    background: rgb(248, 249, 250);
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.engage-on-poperty-left{
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 700px;
}
.engage-on-poperty-left-subhead{
    font-size:14px; 
    font-weight:700; 
    line-height:20px; 
    letter-spacing:1px; 
    color:rgb(24,115,204);
}

.engage-on-poperty-grid{
    display:grid; 
    grid-template-columns:repeat(auto-fit,minmax(min(280px,100%),1fr)); 
    gap:24px;
}
.engage-on-poperty-bottom{
    font-size:14px; 
    line-height:22px; 
    color:rgb(119,119,121)
}
.engage-on-poperty-item{
    border-radius: 16px;
    background: rgb(255, 255, 255);
    box-shadow: inset 0 0 0 1px rgb(233, 236, 239);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.engage-on-poperty-item-bar{
    width:40px; 
    height:4px; 
    border-radius:2px; 
    background:rgb(13,79,137);
}

.engage-on-poperty-subtitle{
    font-size:18px; 
    font-weight:700; 
    line-height:28px; 
    color:rgb(68,68,69);
}

.engage-on-poperty--text{
    font-size:16px; 
    line-height:26px; 
    color:rgb(119,119,121);
}

.ai-concierge-section{
    padding-top: 20px;
}

.ai-concierge-inner{
    padding:0px;
}

.ai-concierge-inner-grid{
    border-radius: 24px;
    background: rgb(13, 79, 137);
    padding: clamp(28px, 5vw, 56px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
}

.ai-concierge-inner-left{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ai-concierge-subhead{
    font-size:14px; 
    font-weight:700; 
    line-height:20px; 
    letter-spacing:1px; 
    color:rgb(139,198,238);
}

.ai-concierge-heading{
    margin: 0;
    font-family: Zacorsea, 'Bodoni Moda', 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: rgb(255, 255, 255);
    text-wrap: pretty;
}
.ai-concierge-para{
    margin:0; 
    max-width:520px; 
    font-size:17px; 
    line-height:29px; 
    color:rgba(255,255,255,0.80); 
    text-wrap:pretty;
}

.ai-concierge-btn{
    width: fit-content;
    height: 48px;
    border-radius: 8px;
    background: rgb(255, 255, 255);
    padding: 8px 24px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: rgb(13, 79, 137);
    text-decoration: none;
}

.ai-concierge-right{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cobalt-engage-video-block{
    padding-top: 20px;
}

.cobalt-engage-video-inner {
    background: rgb(248, 249, 250);
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cobalt-engage-video-header{
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}

.cobalt-engage-video-head-left{
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 640px;
}

.cobalt-video-engage-subhead{
    font-size:14px; 
    font-weight:700; 
    line-height:20px; 
    letter-spacing:1px; 
    color:rgb(24,115,204);
}

.cobalt-engage-video-title{
    margin: 0;
    font-family: Zacorsea, 'Bodoni Moda', 'Playfair Display', Georgia, serif;
    font-weight: 400;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: rgb(68, 68, 69);
    text-wrap: pretty;
}

.cobalt-engage-video-right-btn{
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    color: #0d4f89;
}

.cobalt-engage--video-block{
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: rgb(13, 79, 137);
}

.cobalt-engage-video-frame{
    position:absolute; 
    inset:0; 
    width:100%; 
    height:100%; 
    border:0; 
    pointer-events:none;
}

/* End Cobalt engage page css */

/* Modal window for Demo Video */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 16, 32, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-content {
  background-color: #0b1f35;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 800px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2100;
}

.modal-close-btn:hover {
  background: var(--color-cobalt-accent);
  color: var(--color-cobalt-dark);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background-color: black;
}

.mock-video-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 24px;
}

.mock-video-player-overlay {
  position: absolute;
  top: 0;
  align-self: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 22, 44, 0.85);
  z-index: 1;
}

.video-info-box {
  position: relative;
  z-index: 2;
  max-width: 500px;
}


.email-analytics-section .ca-eyebrow{
	text-align: center;
}

.email-analytics-section .ca-h2{
	text-align: center;
}

.email-analytics-section  .ca-lead{
	max-width: unset;
    text-align: center;
}

.email-analytics-section .ca-cards-4 .ca-card {
    background: #E8F3FD;
}

.email-analytics-section .ca-cards-4 .ca-card .ca-card-icon img{
	width: 44px;
	height: 44px;
}

.push-notification-section .ca-eyebrow{
	text-align: center;
}

.push-notification-section .ca-h2{
	text-align: center;
}

.push-notification-section .ca-lead{
	text-align: center;
	max-width: unset;
}

.push-notification-section .ca-cards-4 .ca-card {
    background: #F8F9FA;
}

.push-notification-section .ca-cards-4 .ca-card .ca-card-icon img{
	width: 44px;
	height: 44px;
}

/* Core - Gather - Engage Infographic Wheel custom interaction CSS */
.interactive-infographic-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .interactive-infographic-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.hidden {
  display: none !important;
}

@media (max-width: 767px) {
	
	.header {
		     padding: 0px 0;
	}
	
	.header.sticky{
		padding: 0px 0;
	}
.hero-heading {
    font-size: 2.4rem;
}	
	
.section-title {
    font-size: 1.5rem;
}

.feature-card-tagline{
	    font-size: 16px;
}

.upgrade-quote-text {
    font-size: 1.2rem;
}

.community-box h2 {
    font-size: 1.6rem;
}

.stat-number{
	    font-size: 2.2rem;
}

.cta-banner-section {
    padding: 24px 12px;
}

.sub-testimonials-grid-1 {
    margin-left: 0;
}

.push-notification-section{
	    padding-bottom: 50px;
}	


}

@media only screen and (min-width: 768px) and (max-width: 1000px)  {
.hero {
    height: 90vh;
	padding-top: 115px;
}
}

@media only screen and (min-width: 1001px) and (max-width: 1199px)  {
.hero {
    height: 70vh;
}

}

@media only screen and (min-width: 768px) and (max-width: 1199px)  {
.cta-banner-card {
    padding: 24px 40px;
}

.testimonials-section {
    padding-top: 46px;
    padding-bottom: 46px;
}

.features {
	 padding-top: 46px;
    padding-bottom: 46px;
}

.section-title {
    font-size: 2.2rem;
}

.sub-testimonials-grid-1 {
    margin-left: 0;
}

.operators-section{
	padding-top: 36px;
    padding-bottom: 50px;
}




}

@media only screen and (min-width: 1200px) and (max-width: 1280px)  {
.sub-testimonials-grid-1 {
    margin-left: -69%;
}
}

@media only screen and (min-width: 1281px) and (max-width: 1366px)  {
.sub-testimonials-grid-1 {
    margin-left: -69%;
}
}

@media only screen and (min-width: 1367px) and (max-width: 1499px)  {
.sub-testimonials-grid-1 {
            margin-left: -64%;
}
}

@media only screen and (min-width: 1500px) and (max-width: 1680px)  {
.sub-testimonials-grid-1 {
   margin-left: -54%;
}
}


@media only screen and (min-width: 1681px) and (max-width: 1750px)  {
.sub-testimonials-grid-1 {
    margin-left: -51%;
}
}



/* ============================================================
 * CLUB ACCOUNTING SOFTWARE PAGE  (club-accounting-software.html)
 * Built from Figma node 594:11299. Scoped with .ca- prefix.
 * ============================================================ */
:root {
  --color-cobalt-deep: #0d4f89;       /* brand primary (Figma) */
  --color-charcoal-mid: #777779;
  --color-monogram-600: #1a679b;
  --color-monogram-200: #2bbce2;
  --color-monogram-100: #e8f3fd;
}

/* Generic section heading block (left aligned) */
.ca-eyebrow {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-monogram-600);
  display: block;
}
.ca-h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;          /* 40px */
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--color-text-acc);
  font-weight: 500;
}
.ca-lead {
  font-size: 1.125rem;        /* 18px */
  line-height: 1.55;
  color: var(--color-charcoal-mid);
  max-width: 720px;
}

/* ---------- HERO ---------- */
.ca-hero {
  background-color: var(--color-cobalt-deep);
  background-image:
    radial-gradient(rgba(255,255,255,0.06) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  padding: 180px 24px 0px;
  text-align: center;
  overflow: hidden;
  background-image: url(../images/accounting/accounting-hero-bg.svg);
  background-size: cover;
}
.ca-hero-inner { max-width: 760px; margin: 0 auto; }
.ca-hero .ca-eyebrow { color: var(--color-monogram-200); margin-bottom: 12px; }
.ca-hero h1 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 3rem;            /* 48px */
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.ca-hero p {
  color: #f1f5f9;
  font-size: 1.125rem;
  line-height: 1.55;
  margin: 0 auto 32px;
  max-width: 640px;
}
.ca-hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ca-btn-secondary {
  background: #fff;
  color: var(--color-cobalt-deep);
  border: 1px solid var(--color-cobalt-deep);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
}
.ca-btn-secondary:hover { background: #f0f6fcf5; }
.ca-btn-link {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 12px 18px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  font-weight: 300;
}

.ca-btn-link:hover{
	background: #1A679B;
    background: linear-gradient(180deg, rgba(26, 103, 155, 0.98) 0%, rgba(36, 123, 174, 1) 100%);
}
.ca-hero-media {
  margin: 98px auto 0;
  max-width: 980px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 18px 6px 40px rgba(26,103,155,0.55),
             -18px -12px 48px rgba(26,103,155,0.45);
}
.ca-hero-media img { display: block; width: 100%; height: auto; }

/* ---------- INTRO PARAGRAPH ---------- */
.ca-intro { background: #fff; padding: 80px 24px; }
.ca-intro-inner {
    max-width: 1124px;
    margin: 0 auto;
    padding: 30px;
    background-color: #F8F9FA;
    border-radius: 10px;
}
.ca-intro p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #444445;
}

/* ---------- SHARED: section container ---------- */
.ca-section { background: #fff; padding: 80px 24px; overflow: hidden; }
.ca-wrap { max-width: var(--container-sec-max-width); margin: 0 auto; }
.ca-head-block { margin-bottom: 40px; }
.ca-head-block .ca-eyebrow { margin-bottom: 12px; }
.ca-head-block .ca-h2 { margin-bottom: 12px; }

/* ---------- ACCOUNTS PAYABLE: 4 gray cards ---------- */
.ca-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ca-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ca-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--color-monogram-100);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px rgba(13,79,137,0.06);
}
.ca-card-icon img { width: 26px; height: 26px; }
.ca-card h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-acc);
  line-height: 1.4;
}
.ca-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-charcoal-mid);
}

.kitchen_operations .ca-card {
    background: #E8F3FD;
    gap: 3px;
}

/* ---------- ACCOUNTS RECEIVABLE / GENERAL LEDGER: split ---------- */


.ca-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ca-split-text .ca-head-block { margin-bottom: 28px; }
.ca-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ca-mini {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
}
.ca-mini .subx-title {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-medium);
  margin: 8px 0;
}
.ca-mini p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-charcoal-mid);
}
.ca-media-card {
  border: 0px solid var(--color-monogram-100);
  border-radius: 16px;
  overflow: hidden;
  margin-right: -188%;
}
.ca-media-card img { display: block; width: 100%; height: auto; }

/* Bullet list (General Ledger) */
.ca-bullets { display: flex; flex-direction: column; gap: 16px; }
.ca-bullet { display: flex; gap: 16px; align-items: flex-start; }
.ca-bullet::before {
  content: '';
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 2px;
  transform: rotate(45deg);
  background: linear-gradient(to bottom, #26a7d3, #257caf);
}
.ca-bullet p { font-size: 1.125rem; line-height: 1.55; color: var(--color-text-medium); }
.ca-bullet strong { font-weight: 700; color: var(--color-text-acc);}
.ca-gl-chart { display: flex; justify-content: center; }
.ca-gl-chart img {
  width: 100%;
  max-width: 620px;
  border-radius: 16px;
}

/* ---------- WHY COBALT (deep blue) ---------- */
.ca-why {
  background: var(--color-cobalt-deep);
  padding: 80px 24px;
}

.ca-why .ca-head-block {
    margin-bottom: 6px;
}
.ca-why .ca-wrap { display: flex; flex-direction: column; gap: 40px; }
.ca-why .ca-eyebrow { color: var(--color-monogram-200); margin-bottom: 12px; }
.ca-why h2 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: -0.5px;
  font-weight: 500;
}
.ca-why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ca-why-card {
  background-image: linear-gradient(130deg, #e8f3fd 0%, #ffffff 101%);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ca-why-card:hover{
      background-image: linear-gradient(130deg, #e8f3fd 0%, #e6f1fb 101%);
}

.ca-why-card img { width: 40px; height: 40px; }
.ca-why-card .subtitle {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-acc);
  margin-top: 10px;
}
.ca-why-card p {
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--color-charcoal-mid);
}

/* ---------- FAQ ---------- */
.ca-faq { background: #fff; padding: 80px 24px; }
.ca-faq .ca-wrap { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.ca-faq .ca-heading {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    letter-spacing: -0.5px;
    color: var(--color-text-acc);
    text-align: center;
    font-weight: 500;
}
.ca-acc-list { width: 100%; display: flex; flex-direction: column; gap: 24px; }
.ca-acc {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
}
.ca-acc-btn {
  width: 100%;
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-acc);
  line-height: 1.4;
}
.ca-acc-btn .ca-chev {
  flex: none;
  width: 24px;
  height: 24px;
  transition: transform var(--transition-fast);
  color: var(--color-cobalt-deep);
}
.ca-acc.open .ca-acc-btn .ca-chev { transform: rotate(180deg); }
.ca-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.ca-acc-body p {
  padding: 0 80px 24px 24px;
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--color-charcoal-mid);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .ca-cards-4 { grid-template-columns: repeat(2, 1fr); }
  .ca-why-cards { grid-template-columns: 1fr; }
  .ca-split { grid-template-columns: 1fr; gap: 40px; }
  .ca-split-media-first .ca-split-text { order: 2; }
}
@media (max-width: 768px) {
  .ca-hero { padding: 140px 16px 0px; }
  .ca-hero h1 { font-size: 2.1rem; }
  .ca-h2, .ca-why h2, .ca-faq h2 { font-size: 1.9rem; }
  .ca-cards-4 { grid-template-columns: 1fr; }
  .ca-mini-grid { grid-template-columns: 1fr; }
  .ca-acc-btn { gap: 16px; padding: 20px; font-size: 1.05rem; }
  .ca-acc-body p { padding: 0 20px 20px; }
}

@media (max-width: 767px) {

.ca-hero-media {
    margin: 60px auto 0;
}	
	
.ca-intro {
    background: #fff;
    padding: 58px 18px;
}

.ca-intro-inner {
	    padding: 18px;
}

.ca-intro p {
    font-size: 1rem;
}

.ca-section {
	padding: 22px 20px;
}

.ca-h2 {
	line-height: 1.2;
}

.ca-faq {
    background: #fff;
    padding: 54px 20px;
}

.ca-why {
	padding: 54px 20px;
}

.ca-bullet p {
    font-size: 1rem;
}

.ca-lead {
    font-size: 1rem;
}

.footer-inner {
	padding: 44px 24px 40px 24px;
}

.ca-why-card img {
    width: 30px;
    height: 30px;
}

.ca-why-card p {
    font-size: 1rem;
}

.ca-h2, .ca-why h2, .ca-faq h2 {
    font-size: 1.6rem;
}
.ca-faq .ca-heading{
	font-size: 1.6rem;
}

.ca-acc-btn {
  font-size: 0.9rem;	
}

.ca-acc-btn .ca-chev{
	 width: 20px;
    height: 20px;
}

.ca-acc-body p {
	    font-size: 1rem;
}

}

@media only screen and (min-width: 768px) and (max-width: 1199px)  {
.ca-intro {
    padding: 80px 24px 0px;
}

.ca-hero h1 {
	 font-size: 2.5rem;
}

.ca-section {
    padding: 80px 24px 10px;
}

.ca-media-card{
	    margin-right: -108%;
}

.ca-h2 {
  font-size: 2.2rem;
}

.ca-why h2 {
	    font-size: 2.2rem;
}

.ca-split {
	padding-bottom: 20px;
}
.ca-faq .ca-heading {
	    font-size: 2.2rem;
}
}

/* ============================================================
 * FIGMA ASSET REFRESH — optimized header logo + crisp card logos
 * ============================================================ */
/* Optimized full Cobalt logo (replaces 2.8MB LOGO1.svg) */
.header .logo-container img { height: 42px; width: auto; display: block; }
/* Crisp CORE / GATHER / ENGAGE marks (4x source, sized to original 40px) */
.feature-card-brand-logo img { height: 40px; width: auto; display: block; }


/* =====================================================================
   Ported from my-cobalt-new-web: "Solutions" mega dropdown + mobile sub
   ===================================================================== */
/* =====================================================================
   "Solutions" mega dropdown — matched to the menu-bar glass design
   ===================================================================== */
.nav-item-dropdown { position: relative; }

.nav-link-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-chevron {
  transition: transform 0.25s ease;
  margin-top: 1px;
}
.nav-item-dropdown:hover .nav-link-dropdown .nav-chevron,
.nav-item-dropdown:focus-within .nav-link-dropdown .nav-chevron {
  transform: rotate(180deg);
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 18px;            /* transparent hover-bridge to the bar */
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 1200;
}
.nav-item-dropdown:hover .mega-dropdown,
.nav-item-dropdown:focus-within .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown-inner {
  display: flex;
  gap: 40px;
  padding: 28px 32px;
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 16, 32, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.mega-col { min-width: 180px; }

.mega-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 2px;
}
.mega-col-title {
  display: block;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.mega-title-core   { color: #0D3D61; }
.mega-title-gather { color: #1175A8; }
.mega-title-engage { color: #2AB5E1; }

.mega-list { list-style: none; margin: 0; padding: 0; }
.mega-list li { margin: 0; }
.mega-link {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: #444445;
  text-decoration: none;
  padding: 7px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mega-link:hover {
  color: #0d4f89;
  padding-left: 4px;
}

/* Mobile drawer sub-menu for Solutions */
.nav-mobile-sub-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.nav-mobile-has-sub .nav-chevron { transition: transform 0.3s ease; }
.nav-mobile-has-sub.open .nav-chevron { transform: rotate(180deg); }
.nav-mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 10px;
}
.nav-mobile-has-sub.open .nav-mobile-sub { max-height: 1400px; }
.nav-mobile-sub-title {
  display: block;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin: 16px 0 4px;
}
.nav-mobile-sublink {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #475569;
  text-decoration: none;
  padding: 8px 0;
}
.nav-mobile-sublink:hover { color: var(--color-cobalt-accent); }


/* ============================================================
 * KITCHEN DISPLAY SYSTEM PAGE (club-kitchen-display-system-software.html)
 * Reuses .ca-* system; a few KDS-specific helpers below.
 * ============================================================ */
.kds-tinted { background: #E8F3FD; }

.fback-house {
    padding: 30px;
    border-radius: 10px;
}

.fback-house .ca-eyebrow {
    text-align: center;
}

.fback-house .ca-h2{
	text-align: center;
}

.fback-house .ca-h2{
	text-align: center;
}

.fback-house .ca-lead {
    text-align: center;
    max-width: max-content;
}


.ca-cards-4 .ca-card {
    background: #fff;
}

.ca-media-card.kitehen-dashboard img{
	    border-radius: 16px;
}

.ca-media-card.kitehen-dashboard {
    padding-left: 26%;
}

.kds-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.kds-grid2 .ca-mini h4{
	    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-acc);
}

.integrated-stack {
    background: #E8F3FD;
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

/* "Why it matters" stacked items */
.kds-why-list { display: flex; flex-direction: column; gap: 28px; }
.kds-why-item .stack-sub-title{
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-acc);
  margin-bottom: 8px;
}
.kds-why-item p {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--color-charcoal-mid);
}

/* Closing CTA */
.kds-cta {
    background: #fff;
    text-align: center;
    padding: 24px 24px 80px;
}
.kds-cta h2 {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    letter-spacing: -0.5px;
    color: var(--color-text-acc);
    margin-bottom: 12px;
    font-weight: 500;
}
.kds-cta p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: var(--color-charcoal-mid);
  font-size: 1.0625rem;
  line-height: 1.55;
}
.kds-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.kds-cta .cta-button { text-decoration: none; display: inline-block; }

@media (max-width: 768px) {
  .kds-grid2 { grid-template-columns: 1fr; }
}


/* ============================================================
 * FOOD & BEVERAGE MANAGEMENT PAGE
 * (club-food-and-beverage-management-software.html). Reuses .ca-*.
 * ============================================================ */
.fnb-cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.fnb-cards-2-3 { 
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
 }
 
 .full-width {
  grid-column: 1 / -1;
 }
 
 .fnb-cards-2-3 .ca-card {
    background: #E8F3FD;
 }
 
 .ca-split-golf-activites {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: center;
}

.golf-oncourse {
    position: relative;
    height: 76vh; 
	margin-top: 50px;
}

.margin-top-space{
	margin-top: 30px;
}

.ca-wrap.is-pinned {
    position: fixed;
    top: 0;
    height: 100vh;
}

.ca-split-text {
    flex: 1;
}

.golf-feature-cards {
    flex: 1;
    position: relative;
    height: 420px;
    overflow: hidden;
}

.card-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity;
}

.golf-feature-card {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}


.fnb-devices { display: flex; justify-content: center; margin: 4px 0 40px; }
.fnb-devices img { width: 100%; max-width: 580px; height: auto; }
.fnb-ipad { display: flex; justify-content: center; align-items: center; }
.fnb-ipad img {     
    width: 100%;
    height: auto;
    max-width: 345px;
    margin: 0px auto; 
	}
.fnb-grid-img img { width: 100%; height: auto; border-radius: 16px; display: block; }
@media (max-width: 992px) { .fnb-cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .fnb-cards-3 { grid-template-columns: 1fr; } }


/* ============================================================
 * COURT BOOKING PAGE (club-court-booking-management-software.html)
 * Reuses .ca-* system; helpers below.
 * ============================================================ */
.court-hero {
  background-size: 26px 26px;
  padding: 134px 24px 80px;
  overflow: hidden;
}

.court-hero-inner {
    background-image: url(../images/court/court-hero-bg.png);
    background-size: cover;
    border-radius: 36px;
    max-width: 76%;
    margin: 0px auto;
    padding: 46px 0px;
}


.clicnic-bulid-section .ca-card{
    background: #fff;
}


.court-hero-wrap {
  max-width: var(--container-sec-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.court-hero-text .ca-eyebrow { color: var(--color-monogram-200); margin-bottom: 12px; }
.court-hero-text h1 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: 3rem;
  line-height: 1.18;
  letter-spacing: -1px;
  margin-bottom: 16px;
  font-weight: 500;
}

.court-media.mackbook {
    justify-content: end;
}

.clicnic-bulid-section .ca-lead {
	max-width: unset;
    text-align: center;
}

.clicnic-bulid-section  .ca-head-block .ca-h2 {
  text-align: center;
}

.clicnic-bulid-section .ca-head-block .ca-eyebrow {
    text-align: center;
}


.court-hero-text p { color: #f1f5f9; font-size: 1.125rem; line-height: 1.55; margin-bottom: 32px; }
.court-hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.court-hero-media img { width: 100%; height: auto; display: block; border-radius: 16px; }

/* Device images (frames with own styling — no bordered card) */
.court-media { display: flex; justify-content: center; align-items: center; }
.court-media img { width: 100%; max-width: 430px; height: auto; }

/* Built for everyone — chips + panel */
.court-chips { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }



.court-chip {
  padding: 6px 18px;
  border-radius: 48px;
  border: 1px solid rgba(119,119,121,0.2);
  background: #fff;
  color: var(--color-text-medium);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  cursor: pointer;
}
.court-chip.active { background: var(--color-monogram-100); border-color: var(--color-cobalt-deep); color: var(--color-cobalt-deep); font-weight: normal; }
.court-audience-panel {
  background: var(--color-monogram-100);
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 520px;
  align-items: center;
  gap: 40px;
  padding-left: 48px;
  overflow: hidden;
   display: none;
}

.court-audience-panel.active {
  display: flex; 
}

.court-audience-panel .ca-text {
    max-width: 700px;
    width: 90%;
}

.sports-item p{
	color: #444445;
	font-size: 18px;
	font-weight: 700;
}

.court-audience-panel .ca-text h3 { font-family: var(--font-sans); font-size: 1.5rem; font-weight: 700; color: var(--color-text-medium); margin-bottom: 12px; }
.court-audience-panel .ca-text p { color: var(--color-charcoal-mid); font-size: 1.125rem; line-height: 1.55; }
.court-audience-panel .ca-media { padding: 32px 24px; display: flex; justify-content: center; }
.court-audience-panel .ca-media img { width: 100%; max-width: 520px; height: auto; }

/* All court sports row */
.court-sports-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; }
.court-sports-row img { height: 150px; width: auto; }

/* FAQ accordion body list support */
.ca-acc-body ul { margin: 0; padding: 0 80px 24px 44px; }
.ca-acc-body li { font-size: 1.125rem; line-height: 1.5; color: var(--color-charcoal-mid); margin-bottom: 8px; }

@media (max-width: 992px) {
  .court-hero-wrap { grid-template-columns: 1fr; gap: 32px; }
  .court-audience-panel { grid-template-columns: 1fr; padding: 40px 24px 0; }
}
@media (max-width: 768px) {
  .court-hero { padding: 140px 16px 60px; }
  .court-hero-text h1 { font-size: 2.1rem; }
  .court-sports-row { gap: 24px; }
  .court-sports-row img { height: 110px; }
  .ca-acc-body ul { padding: 0 20px 20px 36px; }
}


/* Client marquee logos — constrain real club logos to a uniform size */
.client-logo-card img {
  max-height: 80px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}


/* ============================================================
 * GOLF MANAGEMENT PAGE (club-golf-management-software.html)
 * Reuses .ca-*, .court-hero, .fnb-cards-3, .fnb-grid-img.
 * ============================================================ */
 
 .point-sale-card{
	 position: relative;
 }
 
.point-sale-card .ca-card {
    background: #E8F3FD;
    min-height: 234px;
}
 
.pointSaleSwiper {
    padding-left: 15% !important;
}

.every-member-block {
    padding: 40px;
    background-color: #F8F9FA;
    position: relative;
    border-radius: 10px;
}

.every-member-block .ca-h2 {
	text-align: center;
}

.every-member-block .ca-lead {
    text-align: center;
    max-width: none;
}

.every-member-block .ca-card {
    background: #ffffff;
}

.expand-cards-list{
    display:flex;
    gap: 20px;
    align-items:stretch;
    width:100%;
  }

  .expand-card{
    position:relative;
    flex:1 1 0;
    min-width:0;
    height:420px;
    border-radius: 16px;
    background:#1a5f8a;
    cursor:pointer;
    overflow:hidden;
    padding:26px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:
      flex-grow 0.55s var(--ease),
      background-color 0.45s var(--ease),
      box-shadow 0.45s var(--ease);
    border:none;
    text-align:left;
    appearance:none;
    -webkit-appearance:none;
  }

  .expand-card:hover{
    background: #1e6a99;
  }

  .expand-card.active{
    flex-grow:2.4;
    background: #e8f2fb;
    box-shadow:0 20px 40px -18px rgba(13,58,92,0.35);
  }

 

  .expand-cards-list .icon{
    width:44px;
    height:44px;
    background: #fff;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
  }

  .expand-cards-list .icon svg{
    width:20px;
    height:20px;
  }

  .expand-cards-list .icon svg path, .icon svg circle{
    fill: #2e8fd9;
  }

  .expand-card-body{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    min-height:0;
  }

 .expand-cards-list .desc {
    font-size: 16px;
    line-height: 1.6;
    color: #777779;
    margin: 0 0 22px;
    max-width: 462px;
    opacity: 0;
    transform: translateY(6px);
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.35s var(--ease) 0s,
      transform 0.35s var(--ease) 0s,
      max-height 0.45s var(--ease) 0s;
}

  .expand-card.active .desc{
    opacity:1;
    transform:translateY(0);
    max-height:260px;
    transition:
      opacity 0.4s var(--ease) 0.15s,
      transform 0.4s var(--ease) 0.15s,
      max-height 0.5s var(--ease) 0s;
  }

  .expand-cards-list .title{
    font-size:18px;
    font-weight:600;
    line-height:1.3;
    margin:0;
    color: #fff;
    transition:color 0.4s var(--ease);
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
	font-family: var(--font-sans);
  }

  .expand-card.active .title{
    color: var(--color-text-acc);
    white-space:normal;
    overflow:visible;
  }

  /* Responsive */
  @media (max-width:900px){
    .expand-cards-list{
      flex-direction:column;
    }
    .expand-card{
      height:auto;
      min-height:96px;
      flex-grow:0 !important;
    }
    .expand-card.active{
      min-height:320px;
    }
     .expand-cards-list .title{
      white-space:normal;
    }
    .expand-cards-list .desc{
      max-width:none;
    }
  }

 .ca-intro.cobalt-golfintro{
	     padding: 80px 24px 40px;
 }
.golf-oncourse { background: var(--color-cobalt-deep); }
.golf-oncourse .ca-eyebrow { color: var(--color-monogram-200); }
.golf-oncourse .ca-h2 { color: #fff; }
.golf-oncourse .ca-lead { color: #f1f5f9; }
.golf-feature-cards { display: flex; flex-direction: column; gap: 24px; }
.golf-feature-card {
  background-image: linear-gradient(125deg, #e8f3fd 2%, #ffffff 69%);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.golf-feature-card img { width: 44px; height: 44px; }
.golf-feature-card h3 { font-family: var(--font-sans); font-size: 1.25rem; font-weight: 700; color: var(--color-text-medium); }
.golf-feature-card p { color: var(--color-charcoal-mid); font-size: 1.0625rem; line-height: 1.55; }


/* ============================================================
 * RETAIL POS & INVENTORY PAGE (club-retail-pos-and-inventory-software.html)
 * Reuses .ca-*, .court-hero, .ca-cards-4, .kds-grid2, .fnb-cards-3.
 * ============================================================ */
.retail-quote { background: #fff; }
.retail-quote-inner {
    margin: 0 auto;
    text-align: center;
}
.retail-quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--color-monogram-200);
  margin-bottom: 16px;
}
.retail-quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.256rem;
  line-height: 1.5;
  letter-spacing: -0.3px;
  color: var(--color-cobalt-dark);
  margin: 0 0 32px;
}
.retail-quote .who .name { font-family: var(--font-sans); font-weight: 700; font-size: 1.325rem;  color: #1B2124; }
.retail-quote .who .role { font-family: var(--font-sans); color: var(--color-charcoal-mid); font-size: 1rem; margin-top: 2px; }

.tee-time-reservation .ca-head-block .ca-eyebrow {
   text-align: center;
}

.tee-time-reservation .ca-h2{
	 text-align: center;
}

.tee-time-reservation .ca-lead {
    max-width: unset;
    text-align: center;
}


.merchandise .ca-head-block .ca-eyebrow {
    text-align: center;
}

.merchandise .ca-head-block .ca-h2 {
   text-align: center;
}

.merchandise .ca-lead {
	max-width: unset;
    text-align: center;
}

.ca-section.analytics .ca-head-block .ca-eyebrow{
	text-align: center;
}

.ca-section.analytics .ca-head-block .ca-h2{
	text-align: center;
}

.ca-section.analytics .ca-lead {
    max-width: unset;
    text-align: center;
}

.analytics .ca-mini  .analytics-sub-title {
    color: #444445;
    margin-bottom: 15px;
}

.cobalt-retail .ca-eyebrow{
	text-align: center;
}

.cobalt-retail .ca-head-block .ca-h2 {
    text-align: center;
}

.cobalt-retail .ca-card {
    background: #E8F3FD;
}


.member-database .ca-cards-4{
	grid-template-columns: repeat(2, 1fr);
}

.member-database .ca-cards-4 .ca-card {
    background: #F8F9FA;
}

.cobalt-membership-software {
    background-color: #0D4F89;
}

.cobalt-membership-software .ca-head-block .ca-h2{
	color: #fff;
}

.cobalt-membership-software .ca-head-block .ca-eyebrow {
   color: #2BBCE2;
}

.statement-analitics {
    font-family: var(--font-sans);
    color: #444445;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.cobalt-membership-software .ca-split {
   grid-template-columns: 0.5fr 1fr;
}

.ca-wrap-full{
	padding-left: 15%;
}

.ca-split-text-custom-w{
	width: 35%;
	float: left;
	padding-right: 30px;
}

.golf-feature-grid-1{
	width: 65%;
	float: right;
}

.cobalt-membership-software .swiper-pagination {
    width: 100%;
    max-width: 652px;
    bottom: 88px !important;
}

.cobalt-membership-software .swiper-pagination .swiper-pagination-bullet{
	background-color: #fff;
    opacity: 1;
}

.cobalt-membership-software .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background-color: #2bbce2;
}

.cobalt-membership-software .golf-feature-card{
	min-height: 250px;
}

.cobalt-membership-software .golf-feature-card h3 {
    color: var(--color-text-acc);
    margin-top: 16px;
}

.membership-connect-section .membership-sub-connect {
    font-family: var(--font-sans);
    font-size: 1.135rem;
    font-weight: 700;
    color: var(--color-text-acc);
    margin-top: 10px;
}

.lession-intro {
    padding-top: 40px;
    padding-bottom: 40px;
}

.lesson-activity .tags span {
    width: 3px;
    height: 3px;
    background-color: #838383;
    display: inline-block;
    border-radius: 50%;
    margin: 0 4px;
}

.session-booking .ca-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.session-booking  .ca-bullet {
    display: block;
}

.session-booking-sub-title {
	font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-acc);
    line-height: 1.4;
	margin: 10px 0;
}

.session-booking .ca-split{
	grid-template-columns: 0.8fr 1fr;
}

.stafff-management .ca-head-block{
	text-align: center;
}

.stafff-management .ca-cards-4 .ca-card {
    background: #E8F3FD;
}

.waitlist-management .golf-feature-cards{
	height: auto;
}

.waitlist-management .golf-feature-cards .golf-feature-card {
    background-color: #E8F3FD;
    box-shadow: none;
    background-image: unset;
	flex-direction: row;
	padding: 22px;
}

.waitlist-management .waitlist-subtitle {
    color: var(--color-text-acc);
    margin: 6px 0;
}

.platform-parts {
	background-color: #0D4F89;
}

.platform-parts .ca-why-card{
	position: relative;
	transition: transform 0.3s ease;
}



.platform-parts .ca-why-card:hover{
	 transform: translateY(-10px);
}

.platform-parts .ca-why-card:before {
    content: "";
    width: 140px;
    height: 144px;
    background-image: url(../images/lesson/white-dots.svg);
    position: absolute;
    right: 0;
    top: 0;
    background-size: cover;
    opacity: 0;
}

.platform-parts .ca-why-card:hover:before{
	 opacity: 1;
}

.platform-subtitle{
	font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
	color: var(--color-text-acc);
	margin-top: 10px;
}

.platform-parts .ca-eyebrow{
	color: var(--color-monogram-200);
}

.platform-parts .ca-head-block .ca-h2 {
	color: #fff;
}

.platform-parts .ca-lead{
    color: #fff;
    max-width: unset;
}

.dining-intro-management {
    padding: 42px 24px;
}

.table-management .ca-cards-4 .ca-card {
    background: #F8F9FA;
}

.ca-section.table-management .ca-eyebrow {
     text-align: center;
}

.table-management .ca-h2 {
    text-align: center;
}

.table-management .ca-lead {
	max-width: unset;
    text-align: center;
}


.ca-intro.event-intro {
    padding-top: 40px;
}


.event-resigistration .ca-eyebrow {
	text-align: center;
}

.event-resigistration .ca-h2{
	text-align: center;
}

.event-resigistration .ca-lead{
	    max-width: unset;
    text-align: center;
}

.event-resigistration .ca-cards-4 .ca-card {
    background: #F8F9FA;
}

.event-resigistration .ca-cards-4 .ca-card .ca-card-icon img{
	width: 44px;
	height: 44px;
}

.billing-analictics .ca-eyebrow{
	text-align: center;
}


.billing-analictics .ca-h2{
	text-align: center;
}

.billing-analictics .ca-lead {
	text-align: center;
	max-width: unset;
}

.billing-analictics .ca-cards-4 .ca-card {
    background: #E8F3FD;
}

.billing-analictics .ca-card-icon img{
	width: 44px;
	height: 44px;
}

.event-why-choose .ca-lead {
	max-width: unset;
}


.event-planing-section {
	position: relative;
}

.event-planing-section .ca-eyebrow{
	text-align: center;
}

.event-planing-section .ca-h2{
	text-align: center;
}

.event-planing-section .ca-lead {
    text-align: center;
    margin: 0px auto;
}

.event-planing-section .ca-card {
    background: #E8F3FD;
}

.event-planing-section .ca-card .ca-card-icon img{
	width: 44px;
	height: 44px;
}

.billing-analytics .ca-eyebrow{
	text-align: center;
}

.billing-analytics .ca-h2{
	text-align: center;
}

.billing-analytics .ca-lead{
	text-align: center;
	margin: 0px auto;
}

.billing-analytics .ca-cards-4 .ca-card {
    background: #E8F3FD;
}

.billing-analytics .ca-card-icon img{
	width: 44px;
	height: 44px;
}

.documents-calander .ca-cards-4 {
	grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.documents-calander .ca-split {
    grid-template-columns: 0.6fr 1fr;
}

.documents-ipad-img {
	text-align: right;
}

.documents-ipad-img img {
    width: 100%;
    max-width: 428px;
}


@media (max-width: 768px) { .retail-quote blockquote { font-size: 1.25rem; } }


/* Membership page — 2x2 feature-card grid inside the deep-blue "More" section */
.golf-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .golf-feature-grid { grid-template-columns: 1fr; } }


/* ============================================================
 * LESSON BOOKING PAGE (club-lesson-booking-management-software.html)
 * Reuses .ca-*, .court-hero, .ca-cards-4, .golf-oncourse, .golf-feature-cards, .ca-why-cards.
 * ============================================================ */
.lesson-activities { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 8px; }
.lesson-activity { width: 300px; padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.lesson-activity-icon { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; }
.lesson-activity-icon img { width: 72px; height: 72px; object-fit: contain; }
.lesson-activity h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; color: var(--color-text-acc); }
.lesson-activity .tags { font-family: var(--font-sans); font-size: 0.875rem; color: var(--color-charcoal-mid); line-height: 1.5; }


/* ============================================================
 * DINING RESERVATIONS & TABLE MANAGEMENT PAGE
 * (club-dining-reservations-and-table-management-software.html)
 * Reuses .ca-*, .court-hero, .ca-cards-4, .fnb-grid-img, .golf-oncourse, .ca-why-cards.
 * ============================================================ */
.dining-stack { display: flex; flex-direction: column; gap: 16px; }
.dining-stack .ca-card { background: var(--color-monogram-100); flex-direction: row;}


.waitlist-management .ca-card-icon img {
    width: 44px;
    height: 44px;
}

.dining-exprience-cta {
    padding-top: 80px;
}

.whatitcovers .ca-head-block .ca-eyebrow {
    text-align: center;
}

.whatitcovers .ca-head-block .ca-h2 {
    text-align: center;
}

.whatitcovers .ca-lead {
	max-width: unset;
    text-align: center;
}

.whatitcovers .fnb-cards-3 .ca-card {
    background: #E8F3FD;
}

.booking-scheduling .ca-head-block .ca-eyebrow { 
    text-align: center;
	
 }
 
.booking-scheduling .ca-h2{
	text-align: center;
}

.booking-scheduling .ca-lead {
    text-align: center;
    max-width: unset;
}

.booking-scheduling .ca-card {
	    gap: 7px;
}

.member-experience-sec {
	position: relative;
}

.commissions-billing .ca-head-block .ca-eyebrow {
	text-align: center;
}

.commissions-billing .ca-head-block .ca-h2{
	text-align: center;
}

.commissions-billing .ca-lead {
	text-align: center;
	max-width: unset;
}

.commissions-billing .ca-card {
    background: #F8F9FA;
}

.commissions-billing .ca-card .ca-card-icon img {
    width: 44px;
    height: 44px;
}

.member-experience-sec .ca-cards-4 {
    grid-template-columns: repeat(2, 1fr);
}

.member-experience-sec .ca-split{
	    grid-template-columns: 1.3fr 0.7fr;
}


.member-left-right img {
    position: absolute;
    max-width: 1358px;
    top: 17%;
    right: calc(-32% - 150px);
    border-radius: 10px;
}

.built-in-section .ca-eyebrow{
	text-align: left;
}

.built-in-section .ca-h2{
	text-align: left;
}

.built-in-section .ca-lead{
	text-align: left;
}

.house-keeping .ca-eyebrow {
	text-align: center;
}

.house-keeping .ca-h2 {
	text-align: center;
}
	
.house-keeping .ca-lead {
    text-align: center;
    max-width: unset;
}	

.house-keeping .ca-cards-4 .ca-card {
    background: #F8F9FA;
}

.house-keeping .ca-cards-4 .ca-card .ca-card-icon img{
	width: 44px;
	height: 44px;
}

.overnight-cta{
	padding-top: 80px;
}

.payment-how-it-works .ca-eyebrow{
	text-align: center;
}

.payment-how-it-works .ca-h2{
	text-align: center;
}

.payment-how-it-works .ca-lead{
	text-align: center;
	max-width : unset;
}

.payment-how-it-works .ca-cards-4 .ca-card {
    background: #F8F9FA;
}

.payment-how-it-works .ca-cards-4 .ca-card .ca-card-icon img{
	width: 44px;
	height: 44px;
}

.club-member-icon .ca-card-icon img{
	width: 44px;
	height: 44px;
}

.cobalt-stats-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
	margin-top: 30px;
	padding-top: 20px;
}

.cobalt-stat-num {
	color: #0D4F89;
	font-size: 48px;
	text-align: center;
	font-weight: 600;
}

.cobalt-stats-item p {
    text-align: center;
    line-height: 1.6;
    margin-top: 8px;
}


.app-reservation .ca-eyebrow{
	text-align: center;
}


.app-reservation .ca-h2{
	text-align: center;
}	

.app-reservation .ca-lead {
	text-align: center;
	max-width: unset;
}

.app-reservation .ca-card {
    background: #ffffff;
}

.app-reservation .ca-card .ca-card-icon {
	margin: 0px auto;
}

.app-reservation .ca-card .app-reservsub-title {
	text-align: center;
}

.app-reservation .ca-card p{
	text-align: center;
}

.app-reservation .ca-card-icon img{
	width: 44px;
	height: 44px;
}

.member-experience .ca-head-block .ca-eyebrow {
    text-align: center;
}

.member-experience .ca-head-block .ca-h2 {
    text-align: center;
}	

.member-experience .ca-head-block .ca-lead {
    text-align: center;
	max-width: unset;
}

.member-experience .fnb-cards-3 {
	    grid-template-columns: repeat(4, 1fr);
}

.member-experience .ca-card {
    background: #E8F3FD;
}

.member-experience .ca-card-icon img{
	width: 44px;
	height: 44px;
}

.member-portal .ca-split {
	 grid-template-columns: 0.6fr 1fr;
}

.member-exprience .ca-eyebrow{
	 text-align: center;
}

.member-exprience .ca-h2{
	text-align: center;
}

.member-exprience .ca-lead {
	text-align: center;
	max-width: unset;
}

.member-exprience .ca-card {
    background: #E8F3FD;
}

.member-exprience .ca-card .ca-card-icon img{
	width: 44px;
	height: 44px;
}

.club-benefits .ca-cards-4{
	    grid-template-columns: repeat(2, 1fr);
}

.club-benefits .ca-cards-4 .ca-card {
    background: #F8F9FA;
}

.club-benefits .ca-cards-4 .ca-card .ca-card-icon img{
	width: 44px;
	height: 44px;
}


@media (max-width: 767px) {
.ca-media-card.kitehen-dashboard {
    padding-left: 0%;
}

.integrated-stack{
	padding: 22px;
}


.kds-cta h2{
	font-size: 1.6rem;
}

.kds-cta p {
	font-size: 1rem;
}

.cta-button {
	padding: 12px 41px;
}

.pointSaleSwiper {
    padding-left: 0% !important;
}

.every-member-block {
    padding: 24px 10px;
}

.expand-cards-list .title {
    white-space: normal;
    overflow: visible;
    padding-left: 60px;
    font-size: 16px;
	position: relative;
    top: -10px;
}

.expand-card.active .title{
	padding-left: 0px;
	top: unset;
}

.court-hero-inner {
	max-width: 96%;
	padding: 26px 20px;
}

.court-hero {
    padding: 112px 16px 24px;
}

.court-hero-text p {
	font-size: 1rem;
}

.ca-btn-secondary {
	    padding: 10px 14px;
}

.ca-btn-link {
	 padding: 10px 14px;
}

.court-audience-panel {
    padding: 26px 14px 0;
    flex-direction: column;
}

.ca-acc-body li {
    font-size: 1rem;
}

.court-audience-panel .ca-text h3 {
	font-size: 1.2rem;
}

.court-audience-panel .ca-text p{
	    font-size: 1rem;
}

.court-audience-panel .ca-media {
    padding: 8px 16px;
}

.fnb-ipad img {
	    max-width: 260px;
}

.clicnic-bulid-section .ca-card {
    background: #fff;
    padding: 10px 0px;
}

.sports-item p {
	    font-size: 15px;
}

.kds-cta-actions.rev-btns a {
    width: 174px;
}

.ca-split-golf-activites {
	    grid-template-columns: 1fr;
}

.fnb-cards-2-3 {
	grid-template-columns: 1fr;
}

.golf-oncourse {
    position: relative;
    height: 104vh;
}




.actionbtns a {
	width: 200px;
}

.retail-quote blockquote {
    font-size: 1.1rem;
}

.member-database .ca-cards-4 {
    grid-template-columns: 1fr;
}

.ca-wrap-full {
    padding-left: 0;
}

.golf-feature-grid-1 {
    width: 100%;
    float: left;
}

.cobalt-membership-software .swiper-pagination{
	    bottom: 16px !important;
}

.cobalt-membership-software {
    padding: 40px 20px 60px;
}

.golf-feature-card p{
	    font-size: 1rem;
}

.ca-split-text-custom-w {
    width: 100%;
    float: left;
    padding-right: 0px;
}

.lesson-activity {
    width: 158px;
    padding: 8px;
}

.session-booking .ca-split {
    grid-template-columns: 1fr;
}

.session-booking .ca-bullets{
	    grid-template-columns: 1fr;
}

.platform-parts {
    padding: 46px 20px;
}

.member-Journey-sec .expand-card.active {
    min-height: 410px;
}

.member-experience-sec .ca-split {
    display: block;
}

.member-left-right img {
    position: relative;
    max-width: 800px;
    top: 0;
    right: calc(11% - 40px);
    border-radius: 10px;
}

.member-experience-sec .ca-cards-4 {
    grid-template-columns: 1fr;
}

.member-left-right{
	padding-bottom: 30px;
    padding-top: 14px;
}

.documents-calander .ca-split {
    grid-template-columns: 1fr;
}

.documents-calander .ca-cards-4 {
    grid-template-columns: 1fr;
    gap: 16px;
}

.club-member-icon {
	padding-bottom: 50px;
}

.club-member-icon .ca-split-golf-activites{
	    gap: 8px;
}

.cobalt-stat-num{
	    font-size: 26px;
}

.cobalt-stats-block {
	    grid-template-columns: 1fr;
}

.member-experience .fnb-cards-3 {
    grid-template-columns: 1fr;
}

.member-experience {
	padding-bottom: 50px;
}

.member-portal {
	padding-top: 50px;
	padding-bottom: 50px;
}
.member-portal .ca-split {
    grid-template-columns: 1fr;
}

.member-portal .kds-grid2 {
	    gap: 10px;
}

.club-benefits {
	padding-top: 50px;
	padding-bottom: 50px;
}

.club-benefits .ca-cards-4 {
    grid-template-columns: 1fr;
}

.webinor-upcomming{
        padding: 50px 20px;
}

.webinor-upcomming-item{
        padding: 20px;
}

.team-leadership-section {
    padding-top: 110px;
}

.all-team-memeber-inner{
    padding: 42px 18px;
}

.career-role-item{
    padding: 24px 20px;
}

.career-role-title {
    font-size: 20px;
    line-height: 24px;
}

.contact-header-section {
    padding-top: 120px;
}

.contact-send-block{
    flex-direction: column;
}

.food-beverage-pos-inner{
    padding: 20px;
}

.core-suite {
    padding: 32px 22px;
}

.cobalt-core-section {
    padding-top: 118px;
}

.video-block-inner{
        min-height: 252px;
}

.cobalt-gather-hero-section {
    padding-top: 118px;
}

.cobalt-gather-right-tiles{
    padding: 10px;
}

.core-suite-btn{
    padding: 10px 10px;
    font-size: 13px;
}

.cobalt-gather-right-tiles-text {
    font-size: 15px;
    line-height: normal;
}

.cobalt-gather-dining-inner {
     padding: 20px;
}

.member-ship-signup{
        padding: 20px;
}

.engage-app-tab-title{
        font-size: 20px;
}

.marketing-communication-inner{
    padding: 22px;
}

.engage-on-poperty-inner{
    padding: 22px;
}

.cobalt-engage-video-inner{
    padding: 22px;
}

}

@media only screen and (min-width: 768px) and (max-width: 1000px)  {
.ca-media-card.kitehen-dashboard {
    padding-left: 0% !important;
}
.expand-cards-list .title {
    white-space: normal;
    overflow: visible;
    padding-left: 60px;
    position: relative;
        top: -10px;
}

.expand-card.active .title{
	padding-left: 0px;
	top: unset;
}

.golf-oncourse {
	    height: 64vh;
}

.ca-wrap-full {
    padding-left: 1%;
}

.cobalt-membership-software .swiper-pagination{
	max-width: 154px;
}

.member-experience-sec .ca-split {
    display: block;
}

.member-left-right img {
    position: relative;
    max-width: 1194px;
    top: 0;
    right: calc(19% - 150px);
    border-radius: 10px;
}

.member-left-right{
	position: relative;
    padding-top: 26px;
    padding-bottom: 26px;
}

.design-integration  .golf-feature-card{
    min-height: 410px;
}

.contact-send-block{
    flex-direction: column;
}

.cobalt-core-hero-right-block {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
}

}

@media only screen and (min-width: 1001px) and (max-width: 1199px)  {

.golf-oncourse {
    height: 50vh;
}

.ca-wrap-full {
    padding-left: 4%;
}

.cobalt-membership-software .swiper-pagination{
	    max-width: 232px;
}

.member-left-right img {
    position: absolute;
    max-width: 672px;
    top: 36%;
    right: calc(-18% - 150px);
    border-radius: 10px;
}

.design-integration  .golf-feature-card{
    min-height: 380px;
}

}


@media only screen and (min-width: 768px) and (max-width: 1199px)  {

:root {
--section-padding-mobile: 50px 16px;
}    
    
.ca-media-card.kitehen-dashboard {
    padding-left: 14%;
}

.fnb-grid-img {
	padding-bottom: 30px;
}

.court-hero-inner{
	max-width: 96%;
    padding: 28px 34px;
}

.court-hero {
    padding: 128px 16px 30px;
}

.clicnic-bulid-section .ca-card {
    background: #fff;
    padding: 14px;
}

.court-audience-panel {
	 padding: 40px 24px 30px;
}

.sports-item p {
    font-size: 16px;
}



.cobalt-membership-software {
    padding: 80px 24px 72px;
}

.lesson-activity {
    width: 228px;
    padding: 12px;
}

.platform-parts {
   padding: 80px 24px 80px;
}

.every-activity-section {
    padding-top: 54px;
}

.commissions-billing .ca-card {
    background: #F8F9FA;
    padding: 16px;
}

.club-member-icon {
	padding-bottom: 60px;
}

.documents-calander .ca-card {
	padding: 14px;
}

.push-notification-section{
	    padding-bottom: 60px;
}

.member-experience .fnb-cards-3 {
    grid-template-columns: repeat(2, 1fr);
}

.cobalt-stat-num {
	    font-size: 30px;
}

.member-experience{
	padding-bottom: 50px;
}



}

@media only screen and (min-width: 1200px) and (max-width: 1280px)  {
.pointSaleSwiper {
    padding-left: 4% !important;
}
	
.ca-wrap-full {
    padding-left: 6%;
}

.cobalt-membership-software .swiper-pagination{
	    max-width: 276px;
}
}

@media only screen and (min-width: 1281px) and (max-width: 1366px)  {
	.pointSaleSwiper {
    padding-left: 7% !important;
    }
	
	.golf-oncourse {
		    height: 80vh;
	}
	
	.ca-wrap-full {
    padding-left: 7%;
    }
	
	 .cobalt-membership-software .swiper-pagination{
	   max-width: 322px;
   }
   
 .contact-form-left{
         padding: clamp(24px, 4vw, 34px);
 }
   
   
}

@media only screen and (min-width: 1200px) and (max-width: 1366px)  {
	:root {
	
/* Spacing */
  --container-sec-max-width: 1100px;	
   --section-padding: 70px 24px;
	}
	
	.hero {
		    padding-top: calc(90px + 64px);
	}
	
	
	
	.point-sale-card .ca-card {
      min-height: 266px;
    }
	
	.ca-intro p {
    font-size: 1.1rem;
	}
	
	.ca-lead {
    font-size: 1.1rem;
	}
	
	.section-title {
    font-size: 2.4rem;
	}
	
	.community-box h2 {
    font-size: 2.3rem;
	}
	
	.hero-heading {
    font-size: 3rem;
	}
	
	.ca-section {
		    padding: 50px 24px;
	}
	
	.ca-intro {
		padding: 80px 24px 50px;
	}
	
	.ca-section {
		padding: 50px 24px 30px;
	}
	
	.ca-media-card {
		margin-right: -130%;
	}
	
	.ca-bullet p {
    font-size: 1.1rem;
	}
	
	.ca-why-card p {
    font-size: 1.1rem;
	}
	
   .ca-acc-body p {
	   font-size: 1.1rem;
   }
   
   .court-hero-inner {
	  max-width: 90%;
	  padding: 32px 28px;
   }
   
   .court-hero-inner .court-hero-text h1 {
	   font-size: 2.5rem;
   }
   
   .court-hero {
	       padding: 134px 24px 15px;
   }
   
   .ca-h2 {
	       font-size: 2.2rem;
   }
   
   .ca-section.merchandise{
	       padding-bottom: 30px;
   }
   
   .ca-section.cobalt-retail{
	   padding-top: 38px;
	   padding-bottom: 38px;
   }
   
  .cobalt-membership-software{
	      padding: 70px 24px 70px;
  }
  
  .lesson-activity {
    width: 254px;
    padding: 15px;
  }
  
  .dining.platform-parts {
    margin-top: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.dining-intro-management {
    padding: 58px 24px 42px!important;
}

.member-left-right img {
    position: absolute;
    max-width: 1043px;
    top: 26%;
    right: calc(-34% - 150px);
    border-radius: 10px;
}

.built-in-section {
	padding-bottom: 60px;
}

.club-member-icon{
	 padding-bottom: 60px;  
}

.push-notification-section{
	   padding-bottom: 60px;
}   

.cobalt-stat-num {
	    font-size: 38px;
}

.member-experience {
	padding-bottom: 60px;
}

.design-integration .golf-feature-card {
    min-height: 324px;
}
	
}

@media only screen and (min-width: 1367px) and (max-width: 1440px)  {
	:root {

   --section-padding: 80px 24px;
	}
	.hero {
		    padding-top: calc(86px + 64px);
	}
	
	
	
	.hero-heading {
    font-size: 3.5rem;
	}
	
	.hero-paragraph {
		margin-bottom: 24px;
	}
	
	.ca-section {
		padding: 60px 24px;
	}
	
	.ca-why {
		padding: 64px 24px;
	}
	
	.ca-media-card {
		margin-right: -124%;
	}
	
	.ca-media-card.kitehen-dashboard {
		padding-left: 18%;
	}
	
	.pointSaleSwiper {
    padding-left: 3% !important;
}

.court-hero-inner {
	max-width: 96%;
	padding: 32px 34px;
}

.court-hero {
	padding: 134px 24px 8px;
}

 .ca-section.merchandise{
	   padding-bottom: 30px;
}
   
.ca-section.cobalt-retail{
   padding-top: 38px;
   padding-bottom: 38px;
}

.ca-wrap-full {
    padding-left: 3%;
}

.cobalt-membership-software .swiper-pagination{
	max-width: 216px;
}

.dining-intro-management {
    padding: 50px 24px;
}

.member-left-right img {
    position: absolute;
    max-width: 1060px;
    top: 26%;
    right: calc(-29% - 150px);
    border-radius: 10px;
}

.design-integration .golf-feature-card {
    min-height: 300px;
}

.cobalt-stat-num{
	    font-size: 38px;
}

}

@media only screen and (min-width: 1441px) and (max-width: 1599px)  {
.ca-media-card{
		margin-right: -134%;
	}
.pointSaleSwiper {
    padding-left: 6% !important;
}	

.court-hero-inner {
	max-width: 96%;
	padding: 32px 34px;
}

.court-hero {
	padding: 134px 24px 8px;
}

.ca-wrap-full {
    padding-left: 7%;
}

.cobalt-membership-software .swiper-pagination{
	    max-width: 350px;
}

.member-left-right img {
    position: absolute;
    max-width: 1060px;
    top: 26%;
    right: calc(-29% - 150px);
    border-radius: 10px;
}

.design-integration .golf-feature-card {
    min-height: 300px;
}

}


@media only screen and (min-width: 1600px) and (max-width: 1680px)  {
.court-hero-inner {
	max-width: 88%;
    padding: 32px 22px;
}

.court-hero {
	padding: 134px 24px 40px;
}

.ca-wrap-full {
    padding-left: 11%;
}

.cobalt-membership-software .swiper-pagination{
	    max-width: 480px;
}

.member-left-right img {
    position: absolute;
    max-width: 1146px;
    top: 24%;
    right: calc(-27% - 150px);
    border-radius: 10px;
}

.design-integration .golf-feature-card {
    min-height: 300px;
}


}

@media only screen and (min-width: 1600px) and (max-width: 1800px)  {
	
.ca-media-card {
	    margin-right: -150%;
}

.pointSaleSwiper {
    padding-left: 9% !important;
}	

.court-hero-inner {
	max-width: 84%;
    padding: 32px 20px;
}
	
}

/*============= Blog Main Page ==================*/

.blog-main-wrap a {
  color: rgb(24, 115, 204);
  text-decoration: none;
}
.blog-main-wrap a:hover {
  color: rgb(13, 79, 137);
  text-decoration: none;
}
.blogs-list-main-section a:hover {
  text-decoration: none;
}
 {
}
.serif {
  font-family: Zacorsea, "Bodoni Moda", "Playfair Display", Georgia, serif;
  font-weight: 400;
}

/* Sections & type */

.blog-main-wrap .section-tight {
  padding-top: 20px;
}
.blog-main-wrap .blog-hero {
  padding-top: 80px;
  position: relative;
}
.blog-main-wrap .kicker {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1px;
  color: rgb(24, 115, 204);
}
.blog-main-wrap .display {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: rgb(20, 26, 34);
  text-wrap: pretty;
}
.blog-main-wrap lede {
  margin: 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 30px;
  color: rgb(119, 119, 121);
  text-wrap: pretty;
}
.blog-main-wrap .h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: rgb(20, 26, 34);
}
.blog-main-wrap .stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}
.blog-main-wrap .placeholder {
  background: repeating-linear-gradient(
    135deg,
    rgb(240, 246, 252) 0 10px,
    rgb(232, 243, 253) 10px 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-main-wrap .placeholder span,
.placeholder-dark span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgb(119, 119, 121);
}
.blog-main-wrap .placeholder-dark {
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0 10px,
    rgba(255, 255, 255, 0.14) 10px 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-main-wrap .placeholder-dark span {
  color: rgba(255, 255, 255, 0.75);
}

/* Featured card */
.blog-main-wrap .feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  border-radius: 24px;
  overflow: hidden;
  background: rgb(13, 79, 137);
  color: inherit;
}
.blog-main-wrap .feature:hover {
  text-decoration: none;
}
.blog-main-wrap .feature-media {
  min-height: 320px;
}
.blog-main-wrap .feature-media img {
  min-height: 320px;
  width: 100%;
  height: 410px;
  object-fit: cover;
}
.blog-main-wrap .feature-body {
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.blog-main-wrap .feature-tags {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.blog-main-wrap .tag {
  padding: 8px 12px 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgb(139, 198, 238);
  line-height: normal;
}
.blog-main-wrap .tag-light {
  padding: 4px 12px;
  border-radius: 14px;
  background: rgb(232, 243, 253);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgb(13, 79, 137);
}
.blog-main-wrap .feature-meta {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.65);
}
.blog-main-wrap .feature-title {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: #fff;
  text-wrap: pretty;
}
.blog-main-wrap .feature-desc {
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.78);
  text-wrap: pretty;
}
.blog-main-wrap .feature-author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.blog-main-wrap .feature-link {
  font-size: 16px;
  font-weight: 700;
  color: rgb(139, 198, 238);
}
.blog-main-wrap .avatar {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.blog-main-wrap .avatar-gray {
  border-radius: 50%;
  background: rgb(226, 229, 233);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Chips */

.blog-main-wrap .blogs-list-main-section {
  padding-top: 20px;
}

.blog-main-wrap .blog-list-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blog-main-wrap .chips {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.blog-main-wrap .chip {
  height: 36px;
  padding: 6px 16px;
  border-radius: 18px;
  display: inline-flex;
  font-size: 15px;
  border: 1px solid rgb(214, 219, 225);
  color: rgb(68, 68, 69);
}
.blog-main-wrap .chip:hover {
  text-decoration: none;
  background: rgb(232, 243, 253);
  color: rgb(13, 79, 137);
}
.blog-main-wrap .chip.active {
  font-weight: 700;
  background: rgb(13, 79, 137);
  color: #fff;
  border-color: rgb(13, 79, 137);
}

/* Post grid */
.blog-main-wrap .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 28px;
}
.blog-main-wrap .blogpost-item {
  display: block;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  color: inherit;
}

.blog-main-wrap .blogpost-item:hover {
  text-decoration: none;
  color: inherit;
}
.blog-main-wrap .blogpost-item:hover .post-title {
  color: rgb(13, 79, 137);
}
.blog-main-wrap .post-media {
  border-radius: 16px;
  aspect-ratio: 3/2;
}
.blog-main-wrap .post-media img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-radius: 16px;
}
.blog-main-wrap .post-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 4px;
}
.blog-main-wrap .post-topic {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgb(24, 115, 204);
}
.blog-main-wrap .post-title {
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.3px;
  color: rgb(20, 26, 34);
  text-wrap: pretty;
}
.blog-main-wrap .post-excerpt {
  font-size: 15px;
  line-height: 24px;
  color: rgb(119, 119, 121);
  text-wrap: pretty;
}
.blog-main-wrap .post-byline {
  font-size: 14px;
  line-height: 20px;
  color: rgb(140, 146, 155);
}
.blog-main-wrap .center-row {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

/* CTA panel */

.blog-main-wrap .blog-subscibe-section {
  padding-top: 20px;
}
.blog-main-wrap .cta-panel {
  border-radius: 24px;
  background: rgb(232, 243, 253);
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.blog-main-wrap .cta-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
}
.blog-main-wrap .cta-title {
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: rgb(20, 26, 34);
}
.blog-main-wrap .cta-sub {
  font-size: 16px;
  line-height: 26px;
  color: rgb(107, 114, 124);
}
.blog-main-wrap .cta-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-main-wrap .fake-input {
  height: 48px;
  min-width: 260px;
  border: 1px solid rgb(191, 207, 222);
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 16px;
  color: rgb(140, 146, 155);
}
.blog-main-wrap .btn {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}
.blog-main-wrap .btn:hover {
  text-decoration: none;
}
.blog-main-wrap .blog-btn-solid {
  height: 48px;
  padding: 8px 24px;
  background: rgb(13, 79, 137);
  color: #fff !important;
}
.blog-main-wrap .btn-solid:hover {
  background: rgb(11, 66, 115);
  color: #fff;
}
.blog-main-wrap .btn-outline {
  height: 48px;
  padding: 8px 24px;
  border: 1px solid rgb(214, 219, 225);
  color: rgb(13, 79, 137);
}
.blog-main-wrap .btn-outline:hover {
  background: rgb(232, 243, 253);
  color: rgb(13, 79, 137);
}

.blog-main-wrap .load-more-btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .blog-main-wrap .feature-media img {
    height: 332px;
  }
  .blog-main-wrap .post-title {
    font-size: 20px;
  }
}

/*===================NEWS====================*/
.news-main-wrap a {
  color: rgb(24, 115, 204);
  text-decoration: none;
}
.news-main-wrap a:hover {
  color: rgb(13, 79, 137);
  text-decoration: underline;
}
.news-main-wrap {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.news-main-wrap .serif {
  font-family: Zacorsea, "Bodoni Moda", "Playfair Display", Georgia, serif;
  font-weight: 400;
}

/* Buttons */
.news-main-wrap .btn {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}
.news-main-wrap .btn:hover {
  text-decoration: none;
}
.news-main-wrap .news-btn-solid {
  height: 48px;
  padding: 8px 24px;
  background: rgb(13, 79, 137);
  color: #fff;
}
.news-main-wrap .news-btn-solid:hover {
  background: rgb(11, 66, 115);
  color: #fff;
}
.news-main-wrap .news-btn-outline {
  height: 48px;
  padding: 8px 24px;
  border: 1px solid rgb(214, 219, 225);
  color: rgb(13, 79, 137);
}
.news-main-wrap .news-btn-outline:hover {
  background: rgb(232, 243, 253);
  color: rgb(13, 79, 137);
}

/* Sections & type */
.news-main-wrap .feature-section-tight {
  padding-top: 20px;
}
.news-main-wrap .news-hero {
  position: relative;
  padding-top: 164px;
}
.news-main-wrap .kicker {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1px;
  color: rgb(24, 115, 204);
}
.news-main-wrap .display {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: rgb(20, 26, 34);
  text-wrap: pretty;
}
.news-main-wrap .lede {
  margin: 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 30px;
  color: rgb(119, 119, 121);
  text-wrap: pretty;
}
.news-main-wrap .h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: rgb(20, 26, 34);
}
.news-main-wrap .stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}
.news-main-wrap .placeholder {
  background: repeating-linear-gradient(
    135deg,
    rgb(240, 246, 252) 0 10px,
    rgb(232, 243, 253) 10px 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-main-wrap .placeholder span,
.placeholder-dark span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgb(119, 119, 121);
}
.news-main-wrap .placeholder-dark {
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0 10px,
    rgba(255, 255, 255, 0.14) 10px 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-main-wrap .placeholder-dark span {
  color: rgba(255, 255, 255, 0.75);
}

/* Featured card */
.news-main-wrap .feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  border-radius: 24px;
  overflow: hidden;
  background: rgb(13, 79, 137);
  color: inherit;
}
.news-main-wrap .feature:hover {
  text-decoration: none;
}
.news-main-wrap .news-feature-media {
  min-height: 320px;
}

.news-main-wrap .news-feature-media img {
  min-height: 320px;
  height: 402px;
  width: 100%;
  object-fit: cover;
}

.news-main-wrap .view-older-news-btn {
  margin-top: 30px;
}
.news-main-wrap .news-feature-body {
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.news-main-wrap .news-feature-tags {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.news-main-wrap .fnews-tag {
  padding: 6px 12px 4px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgb(139, 198, 238);
  line-height: normal;
}
.news-main-wrap .tag-light {
  padding: 4px 12px;
  border-radius: 14px;
  background: rgb(232, 243, 253);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgb(13, 79, 137);
}
.news-main-wrap .feature-meta {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.65);
}
.news-main-wrap .feature-title {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: #fff;
  text-wrap: pretty;
}
.news-main-wrap .feature-desc {
  font-size: 17px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.78);
  text-wrap: pretty;
}
.news-main-wrap .feature-author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.news-main-wrap .feature-link {
  font-size: 16px;
  font-weight: 700;
  color: rgb(139, 198, 238);
}
.news-main-wrap .avatar {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.avatar-gray {
  border-radius: 50%;
  background: rgb(226, 229, 233);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Chips */
.news-main-wrap .news-chips {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.news-chip {
  height: 36px;
  padding: 8px 16px 6px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  border: 1px solid rgb(214, 219, 225);
  color: rgb(68, 68, 69);
  line-height: normal;
}
.news-main-wrap .news-chip:hover {
  text-decoration: none;
  background: rgb(232, 243, 253);
  color: rgb(13, 79, 137);
}
.news-main-wrap .news-chip.active {
  font-weight: 700;
  background: rgb(13, 79, 137);
  color: #fff;
  border-color: rgb(13, 79, 137);
}

.center-row {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

/* CTA panel */
.news-main-wrap .new-cta-section {
  padding-top: 20px;
}
.news-cta-panel {
  border-radius: 24px;
  background: rgb(232, 243, 253);
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
}
.news-cta-title {
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: rgb(20, 26, 34);
}
.news-cta-sub {
  font-size: 16px;
  line-height: 26px;
  color: rgb(107, 114, 124);
}
.news-cta-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.fake-input {
  height: 48px;
  min-width: 260px;
  border: 1px solid rgb(191, 207, 222);
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 16px;
  color: rgb(140, 146, 155);
}

/* News list */

.news-main-wrap .list-view-news-section {
  padding-top: 20px;
}

.news-main-wrap .list-view-news {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.news-main-wrap .news-list {
  display: flex;
  flex-direction: column;
}
.news-main-wrap .news-row {
  display: block;
  grid-template-columns: minmax(110px, 150px) 1fr auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: baseline;
  padding: 22px 8px;
  border-bottom: 1px solid rgb(233, 236, 239);
  color: inherit;
}
.news-main-wrap .news-row:hover {
  text-decoration: none;
  background: rgb(248, 251, 254);
  color: inherit;
}
.news-main-wrap .news-date {
  font-size: 14px;
  line-height: 22px;
  color: rgb(140, 146, 155);
  white-space: nowrap;
}
.news-main-wrap .news-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.news-main-wrap .news-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgb(24, 115, 204);
}
.news-main-wrap .news-title {
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.3px;
  color: rgb(20, 26, 34);
  text-wrap: pretty;
}
.news-main-wrap .news-read {
  font-size: 16px;
  font-weight: 700;
  color: rgb(13, 79, 137);
  white-space: nowrap;
}

/* Press cards */
.news-main-wrap .press-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-main-wrap .press-section {
  padding-top: 0px;
}
.news-main-wrap .press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(348px, 100%), 1fr));
  gap: 20px;
}
.news-main-wrap .press-card {
  border: 1px solid rgb(233, 236, 239);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: inherit;
}
.news-main-wrap .press-card:hover {
  text-decoration: none;
  border-color: rgb(191, 207, 222);
  background: rgb(248, 251, 254);
  color: inherit;
}
.news-main-wrap .press-outlet {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgb(140, 146, 155);
}
.news-main-wrap .press-title {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.3px;
  color: rgb(20, 26, 34);
  text-wrap: pretty;
}
.news-main-wrap .press-link {
  font-size: 15px;
  font-weight: 700;
  color: rgb(24, 115, 204);
}
@media (max-width: 767px) {
  .news-main-wrap .news-hero {
    position: relative;
    padding-top: 120px;
  }

  .news-main-wrap .news-feature-media img {
    height: 330px;
  }

  .news-main-wrap .news-row {
    grid-template-columns: minmax(66px, 86px) 1fr auto;
  }

  .news-main-wrap .news-btn-outline {
    width: 192px;
  }
}

/*====================== Single NEWS Page ================*/
.cbnews-main-wrap {
  position: relative;
  overflow: hidden;
  background: #fff;
  color: rgb(68, 68, 69);
}
.cbnews-main-wrap a {
  color: rgb(24, 115, 204);
  text-decoration: none;
}
.cbnews-main-wrap a:hover {
  color: rgb(13, 79, 137);
  text-decoration: none;
}
.cbnews-main-wrap .cbnews-serif {
  font-family: Zacorsea, "Bodoni Moda", "Playfair Display", Georgia, serif;
  font-weight: 400;
}

/* Sections & type */
.cbnews-main-wrap .cbnews-section {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cbnews-main-wrap .cbnews-section a:hover {
  text-decoration: none;
}
.cbnews-main-wrap .cbnews-section-tight {
  padding-bottom: clamp(40px, 5vw, 64px);
}
.cbnews-main-wrap .cbnews-hero {
  padding: clamp(24px, 4vw, 48px) clamp(20px, 7vw, 160px) clamp(32px, 4vw, 56px);
}
.cbnews-main-wrap .cbnews-kicker {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1px;
  color: rgb(24, 115, 204);
}
.cbnews-main-wrap .cbnews-display {
  margin: 0;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: rgb(20, 26, 34);
  text-wrap: pretty;
}
.cbnews-main-wrap .cbnews-lede {
  margin: 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 30px;
  color: rgb(119, 119, 121);
  text-wrap: pretty;
}
.cbnews-main-wrap .cbnews-h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.4px;
  color: rgb(20, 26, 34);
}
.cbnews-main-wrap .cbnews-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}
.cbnews-main-wrap .cbnews-placeholder {
  background: repeating-linear-gradient(
    135deg,
    rgb(240, 246, 252) 0 10px,
    rgb(232, 243, 253) 10px 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.cbnews-placeholder span,
.cbnews-placeholder-dark span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: rgb(119, 119, 121);
}
.cbnews-main-wrap .cbnews-placeholder-dark {
  background: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0 10px,
    rgba(255, 255, 255, 0.14) 10px 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.cbnews-main-wrap .cbnews-placeholder-dark span {
  color: rgba(255, 255, 255, 0.75);
}

.cbnews-main-wrap .cbnews-tag-light {
  padding: 4px 12px;
  border-radius: 14px;
  background: rgb(232, 243, 253);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgb(13, 79, 137);
}

.cbnews-main-wrap .cbnews-center-row {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

/* CTA panel */
.cbnews-main-wrap .cbnews-cta-panel {
  border-radius: 24px;
  background: rgb(232, 243, 253);
  padding: clamp(28px, 4vw, 56px);
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cbnews-main-wrap .cbnews-cta-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
}
.cbnews-main-wrap .cbnews-cta-title {
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: rgb(20, 26, 34);
}
.cbnews-main-wrap .cbnews-cta-sub {
  font-size: 16px;
  line-height: 26px;
  color: rgb(107, 114, 124);
}
.cbnews-main-wrap .cbnews-cta-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cbnews-main-wrap .cbnews-fake-input {
  height: 48px;
  min-width: 260px;
  border: 1px solid rgb(191, 207, 222);
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 16px;
  color: rgb(140, 146, 155);
}

/* Article */
.cbnews-main-wrap .cbnews-article-head {
  padding-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cbnews-main-wrap .cbnews-article-head-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cbnews-main-wrap .cbnews-crumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: rgb(140, 146, 155);
  flex-wrap: wrap;
}
.cbnews-main-wrap .cbnews-article-title {
  margin: 0;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: rgb(20, 26, 34);
  text-wrap: pretty;
}
.cbnews-main-wrap .cbnews-article-lede {
  margin: 0;
  font-size: 19px;
  line-height: 30px;
  color: rgb(119, 119, 121);
  text-wrap: pretty;
}
.cbnews-main-wrap .cbnews-byline-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cbnews-main-wrap .cbnews-icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgb(214, 219, 225);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cbnews-main-wrap .cbnews-icon-btn:hover {
  background: rgb(232, 243, 253);
  text-decoration: none;
}
.cbnews-main-wrap .cbnews-pill-btn {
  height: 38px;
  padding: 0 16px;
  padding-top: 3px;
  border: 1px solid rgb(214, 219, 225);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: rgb(13, 79, 137);
}
.cbnews-main-wrap .cbnews-pill-btn:hover {
  background: rgb(232, 243, 253);
  text-decoration: none;
}
.cbnews-main-wrap .cbnews-hero-media-row {
  padding-top: 0px;
  display: flex;
  justify-content: center;
}
.cbnews-main-wrap .cbnews-hero-media {
  width: 100%;
  border-radius: 24px;
}
.cbnews-main-wrap .cbnews-hero-media img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 21/7;
  object-fit: cover;
}
.cbnews-main-wrap .cbnews-article-body-row {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cbnews-main-wrap .cbnews-article-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  font-size: 18px;
  line-height: 31px;
  color: rgb(68, 68, 69);
}
.cbnews-main-wrap .cbnews-article-body p {
  margin: 0;
  text-wrap: pretty;
}
.cbnews-main-wrap .cbnews-article-body h2 {
  margin: 12px 0 0;
  font-weight: 400;
}
.cbnews-main-wrap .cbnews-pullquote {
  border-radius: 16px;
  background: rgb(232, 243, 253);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cbnews-main-wrap .cbnews-pullquote .cbnews-q {
  font-size: 22px;
  line-height: 1.4;
  color: rgb(13, 79, 137);
  text-wrap: pretty;
}
.cbnews-main-wrap .cbnews-pullquote .cbnews-attr {
  font-size: 15px;
  color: rgb(107, 114, 124);
}
.cbnews-main-wrap .cbnews-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cbnews-main-wrap .cbnews-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cbnews-main-wrap .cbnews-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgb(232, 243, 253);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: rgb(13, 79, 137);
  margin-top: 2px;
}
.cbnews-main-wrap .cbnews-fig {
  border-radius: 16px;
  aspect-ratio: 16/9;
}
.cbnews-main-wrap .cbnews-hr {
  height: 1px;
  background: rgb(233, 236, 239);
}
.cbnews-main-wrap .cbnews-author-box {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cbnews-main-wrap .cbnews-contact-box {
  border-radius: 16px;
  border: 1px solid rgb(233, 236, 239);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* News list */

.cbnews-main-wrap .cb-more-news-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.cbnews-main-wrap .cbnews-news-list {
  display: flex;
  flex-direction: column;
}
.cbnews-main-wrap .cbnews-news-row {
  display: grid;
  grid-template-columns: minmax(110px, 150px) 1fr auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: baseline;
  padding: 22px 8px;
  border-bottom: 1px solid rgb(233, 236, 239);
  color: inherit;
}
.cbnews-main-wrap .cbnews-news-row:hover {
  text-decoration: none;
  background: rgb(248, 251, 254);
  color: inherit;
}
.cbnews-main-wrap .cbnews-news-date {
  font-size: 14px;
  line-height: 22px;
  color: rgb(140, 146, 155);
  white-space: nowrap;
}
.cbnews-main-wrap .cbnews-news-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.cbnews-main-wrap .cbnews-news-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgb(24, 115, 204);
}
.cbnews-main-wrap .cbnews-news-title {
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.35;
  letter-spacing: -0.3px;
  color: rgb(20, 26, 34);
  text-wrap: pretty;
}
.cbnews-main-wrap .cbnews-news-read {
  font-size: 16px;
  font-weight: 700;
  color: rgb(13, 79, 137);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .cbnews-main-wrap .cbnews-article-head {
    padding-top: 110px;
  }

  .cbnews-main-wrap .cbnews-hero-media-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cbnews-main-wrap .cbnews-hero-media img {
    aspect-ratio: 21 / 12;
  }

  .cbnews-main-wrap .cbnews-news-row {
    grid-template-columns: minmax(66px, 80px) 1fr auto;
  }

  .cbnews-main-wrap .cbnews-pullquote .cbnews-q {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .cbnews-main-wrap .cbnews-hero-media-row {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cbnews-main-wrap .cbnews-hero-media img {
    aspect-ratio: 21 / 9;
  }
}

/*==============Blog Single====================*/
        .blog-detail-wrap {
            position: relative;
            overflow: hidden;
            background: #fff;
        }

        .blog-detail-wrap a {
            color: rgb(24, 115, 204);
            text-decoration: none;
        }

        .blog-detail-wrap a:hover {
            color: rgb(13, 79, 137);
            text-decoration: underline;
        }

        .blog-detail-wrap .serif {
            font-family: Zacorsea, 'Bodoni Moda', 'Playfair Display', Georgia, serif;
            font-weight: 400;
        }

        .blog-detail-wrap .btn {
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            line-height: 24px;
            white-space: nowrap;
        }

        .blog-detail-wrap .btn:hover {
            text-decoration: none;
        }

        .blog-detail-wrap .btn-solid {
            height: 48px;
            padding: 8px 24px;
            background: rgb(13, 79, 137);
            color: #fff;
        }

        .blog-detail-wrap .btn-solid:hover {
            background: rgb(11, 66, 115);
            color: #fff;
        }


        .blog-detail-wrap .h2 {
            margin: 0;
            font-size: clamp(24px, 3vw, 32px);
            line-height: 1.3;
            letter-spacing: -0.4px;
            color: rgb(20, 26, 34);
        }


        /* Post grid */
        .blog-detail-wrap .keep-reading-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(348px, 100%), 1fr));
            gap: 28px;
        }

        .blog-detail-wrap .keep-reading-post {
            display: flex;
            flex-direction: column;
            gap: 16px;
            border-radius: 16px;
            color: inherit;
        }

        .blog-detail-wrap .keep-reading-post:hover {
            text-decoration: none;
            color: inherit;
        }

        .blog-detail-wrap .keep-reading-post:hover .post-title {
            color: rgb(13, 79, 137);
        }

        .blog-detail-wrap .post-media img {
            border-radius: 16px;
            aspect-ratio: 3/2;
            width: 100%;
            object-fit: cover;
        }

        .blog-detail-wrap .post-body {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 0 4px;
        }

        .blog-detail-wrap .post-topic {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: rgb(24, 115, 204);
        }

        .blog-detail-wrap .post-title {
            font-size: 21px;
            line-height: 1.35;
            letter-spacing: -0.3px;
            color: rgb(20, 26, 34);
            text-wrap: pretty;
        }

        .blog-detail-wrap .post-excerpt {
            font-size: 15px;
            line-height: 24px;
            color: rgb(119, 119, 121);
            text-wrap: pretty;
        }

        .blog-detail-wrap .post-byline {
            font-size: 14px;
            line-height: 20px;
            color: rgb(140, 146, 155);
        }

        .blog-detail-wrap .center-row {
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }

        .blog-detail-wrap .avatar-gray {
            border-radius: 50%;
            background: rgb(226, 229, 233);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Article */
        .blog-detail-wrap .article-head {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 160px;
        }

        .blog-detail-wrap .article-head-inner {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .blog-detail-wrap .crumbs {
            display: flex;
            gap: 8px;
            align-items: center;
            font-size: 14px;
            color: rgb(140, 146, 155);
            flex-wrap: wrap;
        }

        .blog-detail-wrap .article-title {
            margin: 0;
            font-size: clamp(30px, 4vw, 48px);
            line-height: 1.25;
            letter-spacing: -0.5px;
            color: rgb(20, 26, 34);
            text-wrap: pretty;
        }

        .blog-detail-wrap .article-lede {
            margin: 0;
            font-size: 19px;
            line-height: 30px;
            color: rgb(119, 119, 121);
            text-wrap: pretty;
        }

        .blog-detail-wrap .byline-row {
            display: flex;
            gap: 14px;
            align-items: center;
            flex-wrap: wrap;
        }

        .blog-detail-wrap .icon-btn {
            width: 38px;
            height: 38px;
            border: 1px solid rgb(214, 219, 225);
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .blog-detail-wrap .icon-btn:hover {
            background: rgb(232, 243, 253);
            text-decoration: none;
        }

        .blog-detail-wrap .pill-btn {
            height: 38px;
            padding: 0 16px;
            border: 1px solid rgb(214, 219, 225);
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            font-size: 14px;
            font-weight: 700;
            color: rgb(13, 79, 137);
        }

        .blog-detail-wrap .pill-btn:hover {
            background: rgb(232, 243, 253);
            text-decoration: none;
        }

        .blog-detail-wrap .hero-media-row {
            padding: 20px 20px 0px;
            display: flex;
            justify-content: center;
        }

        .blog-detail-wrap .hero-media {
            width: 100%;
            border-radius: 24px;
        }

        .blog-detail-wrap .hero-media img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 24px;
        }

        .blog-detail-wrap .article-body-row {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 80px;
        }

        .blog-detail-wrap .article-body {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 26px;
            font-size: 18px;
            line-height: 31px;
            color: rgb(68, 68, 69);
        }

        .blog-detail-wrap .article-body p {
            margin: 0;
            text-wrap: pretty;
        }

        .blog-detail-wrap .article-body h2 {
            margin: 12px 0 0;
            font-weight: 400;
        }

        .pullquote {
            border-radius: 16px;
            background: rgb(232, 243, 253);
            padding: 24px 28px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .blog-detail-wrap .pullquote .q {
            font-size: 22px;
            line-height: 1.4;
            color: rgb(13, 79, 137);
            text-wrap: pretty;
        }

        .blog-detail-wrap .pullquote .attr {
            font-size: 15px;
            color: rgb(107, 114, 124);
        }

        .blog-detail-wrap .steps {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .blog-detail-wrap .step {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .step-num {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgb(232, 243, 253);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            color: rgb(13, 79, 137);
            margin-top: 2px;
        }

        .blog-detail-wrap .fig {
            border-radius: 16px;
        }

        .blog-detail-wrap .fig img {
            aspect-ratio: 16/6;
            width: 100%;
            object-fit: cover;
            border-radius: 24px;
        }

        .blog-detail-wrap .hr {
            height: 1px;
            background: rgb(233, 236, 239);
        }

        .blog-detail-wrap .author-box {
            display: flex;
            gap: 14px;
            align-items: center;
            flex-wrap: wrap;
        }

        .contact-box {
            border-radius: 16px;
            border: 1px solid rgb(233, 236, 239);
            padding: 24px 28px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .blog-detail-wrap .keep-reading-section {
            padding-top: 20px;
        }

        .blog-detail-wrap .keep-reading-inner {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        /* CTA panel */
        .blog-detail-wrap .blog-detail-subscribe-section {
            padding-top: 20px;
        }

        .blog-detail-wrap .cta-panel {
            border-radius: 24px;
            background: rgb(232, 243, 253);
            padding: clamp(28px, 4vw, 56px);
            display: flex;
            gap: 32px;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .blog-detail-wrap .cta-copy {
            display: flex;
            flex-direction: column;
            gap: 8px;
            max-width: 520px;
        }

        .blog-detail-wrap .cta-title {
            font-size: clamp(24px, 2.8vw, 32px);
            line-height: 1.3;
            letter-spacing: -0.5px;
            color: rgb(20, 26, 34);
        }

        .blog-detail-wrap .cta-sub {
            font-size: 16px;
            line-height: 26px;
            color: rgb(107, 114, 124);
        }

        .blog-detail-wrap .cta-form {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .blog-detail-wrap .fake-input {
            height: 48px;
            min-width: 260px;
            border: 1px solid rgb(191, 207, 222);
            border-radius: 8px;
            background: #fff;
            display: flex;
            align-items: center;
            padding: 0 16px;
            font-size: 16px;
            color: rgb(140, 146, 155);
        }

        @media (max-width: 767px) {
            .blog-detail-wrap .article-head {
                padding-top: 115px;
            }

            .blog-detail-wrap .article-body-row {
                padding-top: 50px;
            }

            .blog-detail-wrap .hero-media img {
                height: 350px;
            }

            .blog-detail-wrap .fig img {
                aspect-ratio: 16 / 10;
            }
        }

        @media only screen and (min-width: 768px) and (max-width: 1199px) {
            .blog-detail-wrap .article-head {
                padding-top: 140px;
                padding-bottom: 60px;
            }
        }