/**
 * Custom styles for GetBettr theme
 * 
 * This stylesheet contains custom styles for various components and sections
 * used throughout the GetBettr website.
 */

/* ============================
   GLOBAL STYLES
   ============================ */

   html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* ============================
   TYPOGRAPHY
   ============================ */

h1, h2, h3, h4, h5, h6 {
    /* Base header styles */
    font-family: "DM Sans", sans-serif !important;
}


/* ============================
   DASHBOARD PREVIEW SECTION 
   ============================ */

/* Dashboard Buttons */
.dashboard-button {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 20px 15px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
    text-align: center;
}

.dashboard-button.active {
    background-color: #34B8C4;
}

.dashboard-button.active .dashboard-button-text {
    color: white;
}

.dashboard-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.dashboard-button.active .dashboard-button-icon {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.dashboard-button-text {
    font-weight: 500;
    color: #003238;
    transition: color 0.3s ease;
    letter-spacing: -0.33px !important;
}

/* ============================
   HERO SECTIONS
   ============================ */

.hero-section {
    padding: 5% 0 0 0;
    text-align: center;
    position: relative;
    overflow: visible;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 30% 0 0 0;
    }
}

.hero-content {
    padding: 0 2%;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 18px !important;
    margin-bottom: 20px;
    letter-spacing: -0.5px !important;
}

.hero-content h2 {
    margin-bottom: 20px;
    color: #003238;
}

.hero-content h3 {
    font-size: 25px !important;
    line-height: 130% !important;
    margin-bottom: 30px;
    color: #003238;
    font-weight: normal;
    letter-spacing: -0.75px !important;
}

.demo-button {
    display: inline-flex;
    padding: 15px 30px;
    background-color: #003238;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.demo-button:hover {
    background-color: #34B8C4;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-image-container {
    width: 100vw;
    /* margin-top: 20px; */
    position: relative;

    text-align: center;
    overflow: hidden;
    max-width: none; /* Prevent max-width constraints */
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1224px) {
    .hero-section{
        padding: 15% 10% 10% 10%;
    }
}

/* Tablet responsiveness */
@media (max-width: 1024px) {
    .hero-section{
        padding: 15% 0 0 0 ;
    }
    .hero-content {
      padding-left: 30px;
      padding-right: 30px;
    }
  }
  
  /* Mobile responsiveness */
  @media (max-width: 767px) {
    .hero-section{
        padding: 25% 0 0 0 ;
    }
    .hero-content {
      padding-left: 20px;
      padding-right: 20px;
    }

    .hero-content h1{
        font-size: 16px !important;
        margin-bottom: 10px;
        letter-spacing: -0.5px !important;
    }

    .hero-content h2 {
        margin-bottom: 10px;
        color: #003238;
    }

    .hero-content h3 {
        font-size: 18px !important;
        line-height: 1.5;
        margin-bottom: 20px;
        color: #003238;
        font-weight: normal;
        letter-spacing: -0.75px !important;
    }
    
  }

/* ============================
   FEATURE SECTIONS
   ============================ */

.feature-section {
    padding: 60px 0;
}

.feature-container {
    display: flex;
    flex-direction: column;
    gap: 40px;

    padding: 5% 20px;
}

.feature-heading {
    font-size: 32px !important;
    color: #003238;
    margin-bottom: 30px;
    letter-spacing: -1.66px !important;
}


.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 5px;
}

.feature-item span {
    letter-spacing: -0.25px !important;
        color: #003238;

}

.feature-icon {
    color: #34B8C4;
    min-width: 24px;
    /* transform: translateY(3px); */
}

.feature-visual {
    min-height: 300px;
    background-color: #eee;
    border-radius: 8px;
}

/* Media queries for larger screens */
@media (min-width: 768px) {
    .feature-container {
        flex-direction: row;
    }
    
    .feature-text {
        width: 50%;
    }
    
    .feature-visual {
        width: 50%;
    }
}

/* ============================
   CUSTOMER CALL SECTION
   ============================ */

.customer-call-section {
    padding: 80px 0;
    background-color: var(--white);
}

.customer-call-subheading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: var(--font-size-regular);
    line-height: 1.6;
    color: var(--accent-blue-dark);
    letter-spacing: -0.5px !important;
}

.customer-call-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    position: relative;
}

.customer-call-circles-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
}

.customer-call-circle-large {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.customer-call-circle-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-call-circle-small {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    right: 20%;
    border: 5px solid white;
    box-shadow: var(--shadow-md);
}

.customer-call-circle-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-call-summary-area {
    width: 100%;
    max-width: 800px;
}

@media (min-width: 992px) {
    .customer-call-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .customer-call-circles-wrapper {
        flex: 0 0 40%;
        margin-bottom: 0;
    }
    
    .customer-call-summary-area {
        flex: 0 0 60%;
    }
}

/* ============================
   BUSINESS SOFTWARE PAGE
   ============================ */

.business-feature-section {
    padding: 60px 0;
}

.bg-light-gray {
}

.business-feature-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.business-feature-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.business-visual-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.business-visual-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.business-visual-left, 
.business-visual-right {
    flex: 1;
    min-width: 280px;
}

.business-search-bar {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.business-search-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    color: var(--accent-blue-dark);
}

.business-search-text {
    color: var(--grey-300);
}

.business-visual-placeholder-1,
.business-visual-placeholder-2,
.business-visual-main,
.business-insights-placeholder-1,
.business-insights-placeholder-2 {
    border-radius: 8px;
    margin-bottom: 20px;
}


@media (max-width: 630px) {
    .business-visual-right {
        display: none;
    } 
}

.business-insights-label {
    font-weight: 600;
    color: var(--accent-blue-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px !important;
}

.business-content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 40px 0;
}

.business-circles-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-bottom: 40px;
}

.business-circle-large {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--grey-200);
    margin: 0 auto;
}

.business-circle-small {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--primary-blue);
    position: absolute;
    bottom: 0;
    right: 20%;
    border: 5px solid white;
}

.business-content-area {
    width: 100%;
    background-color: var(--grey-100);
    border-radius: 8px;
    height: 300px;
}


/* Media queries for business sections */
@media (min-width: 768px) {

    .business-feature-layout {
        flex-direction: row-reverse;
        gap: 5%;
    }
    
    .business-feature-content {
        width: 40%;
    }
    
    .business-visual-container {
        width: 60%;
    }
}


@media (max-width:1105px) {
    .business-feature-layout {
        flex-direction: column;
        gap: 10%;
    }

    .business-feature-content {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .business-visual-container {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .business-feature-section{
        padding: 0px 0;
    }

}

/* ============================
   UTILITY CLASSES
   ============================ */

/**
 * GetBettr.ai Brand Styles
 * A comprehensive CSS framework for consistent brand application
 */

 :root {
    /* Brand Colors */
    --primary-black: #031A1C;
    --primary-yellow: #F2C443;
    --primary-blue: #34B8C4;
    
    /* Accent Colors */
    --accent-blue-light: #A8DFE4;
    --accent-blue-dark: #0B363A;
    
    /* Greyscale */
    --white: #FDFCF9;
    --off-white: #F5F3EE;
    --grey-100: #F1F0ED;
    --grey-200: #E8E8E8;
    --grey-300: #CFCFCF;
    --grey-700: #3A3A3A;
    
    /* UI & Backgrounds */
    --dashboard-bg: #333E53;
    
    /* Typography */
    --font-primary: "DM Sans", sans-serif;
    --font-secondary: "DM Sans", sans-serif;
    
    /* Font Sizes */
    --font-size-xxxl: 4rem;    /* 64px */
    --font-size-xxl: 3rem;       /* 48px */
    --font-size-xl: 2.5rem;      /* 40px */
    --font-size-large: 2rem;     /* 32px */
    --font-size-medium: 1.5rem;  /* 24px */
    --font-size-regular: 1.25rem; /* 20px */
    --font-size-base: 1rem;      /* 16px */
    --font-size-small: 0.875rem; /* 14px */
    --font-size-xs: 0.75rem;     /* 12px */
    
    /* Spacing */
    --space-xs: 0.25rem;         /* 4px */
    --space-sm: 0.5rem;          /* 8px */
    --space-md: 1rem;            /* 16px */
    --space-lg: 1.5rem;          /* 24px */
    --space-xl: 2rem;            /* 32px */
    --space-xxl: 3rem;           /* 48px */
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-round: 50%;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}


.brand-dark-text{
    color: #003238 !important;
}


/* Typography Classes */
.text-xxxl {
    font-size: var(--font-size-xxxl)!important;
    letter-spacing: -2.33px !important;
    line-height: 100% !important;

}

.text-xxl {
    font-size: var(--font-size-xxl)!important;
    letter-spacing: -2.33px !important;
    line-height: 100% !important;

}

.text-xl {
    font-size: var(--font-size-xl) !important;
    letter-spacing: -2.33px !important;
    line-height: 100% !important;

}

.text-large {
    font-size: var(--font-size-large) !important;
    letter-spacing: -1px !important;
    line-height: 100% !important;

}

.text-medium {
    font-size: var(--font-size-medium) !important;
    letter-spacing: -0.5px !important;
    line-height: 120% !important;
}

.text-regular {
    font-size: var(--font-size-regular) !important;
}

.text-base {
    font-size: var(--font-size-base);
}

.text-small {
    font-size: var(--font-size-small);
}

.text-xs {
    font-size: var(--font-size-xs);
}

/* Responsive Typography */
@media screen and (max-width: 1024px) {
    .text-xxxl {
        font-size: calc(var(--font-size-xxxl) * 0.9);
    }
    
    .text-xxl {
        font-size: calc(var(--font-size-xxl) * 0.9);
    }
    
    .text-xl {
        font-size: calc(var(--font-size-xl) * 0.9);
    }
    
    .text-large {
        font-size: calc(var(--font-size-large) * 0.9);
    }
}

@media screen and (max-width: 767px) {
    .text-xxxl {
        font-size: calc(var(--font-size-xxxl) * 0.55) !important;
    }
    
    .text-xxl {
        font-size: calc(var(--font-size-xxl) * 0.7) !important;
    }
    
    .text-xl {
        font-size: calc(var(--font-size-xl) * 0.8) !important;
        letter-spacing: -1px !important;
    }
    
    .text-large {
        font-size: calc(var(--font-size-large) * 0.8);
    }
    
    .text-medium {
        font-size: calc(var(--font-size-medium) * 0.9) !important;
    }
}

.gb-chip-outline{
  border: 1px solid #CACACA;
  padding: 5px 15px;
  border-radius: 50px;
}


/* Color utility classes */
.gb-bg-primary-black {
    background-color: var(--primary-black);
    color: var(--white);
}

.gb-bg-primary-yellow {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.gb-bg-primary-blue {
    background-color: var(--primary-blue);
    color: var(--white);
}

.gb-bg-accent-blue-light {
    background-color: var(--accent-blue-light);
    color: var(--primary-black);
}

.gb-bg-accent-blue-dark {
    background-color: var(--accent-blue-dark);
    color: var(--white);
}

.gb-bg-white {
    background-color: var(--white);
    color: var(--primary-black);
}

.gb-bg-off-white {
    background-color: var(--off-white);
    color: var(--primary-black);
}

.gb-bg-grey-100 {
    background-color: var(--grey-100);
    color: var(--primary-black);
}

.gb-bg-grey-700 {
    background-color: var(--grey-700);
    color: var(--white);
}

.gb-bg-dashboard {
    background-color: var(--dashboard-bg);
    color: var(--white);
}

/* Text color utilities */
.gb-text-primary-black {
    color: var(--primary-black);
}

.gb-text-primary-yellow {
    color: var(--primary-yellow);
}

.gb-text-primary-blue {
    color: var(--primary-blue);
}

.gb-text-accent-blue-light {
    color: var(--accent-blue-light);
}

.gb-text-accent-blue-dark {
    color: var(--accent-blue-dark);
}

.gb-text-white {
    color: var(--white);
}

.gb-text-off-white {
    color: var(--off-white);
}

.gb-text-grey-100 {
    color: var(--grey-100);
}

.gb-text-grey-200 {
    color: var(--grey-200);
}

.gb-text-grey-300 {
    color: var(--grey-300);
}

.gb-text-grey-700 {
    color: var(--grey-700);
}

/* Button styles - with unique class names */
.gb-btn {
    display: inline-block;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 39px 39px 39px 39px;
    padding: 10px 30px 10px 30px;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: var(--font-primary);
}

/* Primary Button */
.gb-btn-primary {
    background-color: var(--accent-blue-dark);
    color: var(--white) !important;
    border: 2px solid var(--accent-blue-dark);
}

.gb-btn-primary:hover,
.gb-btn-primary:focus {
    background-color: var(--off-white);
    color: var(--accent-blue-dark) !important;
    border-color: var(--accent-blue-dark);
}

/* Secondary Button (Outline) */
.gb-btn-secondary {
    background-color: transparent !important;
    color: var(--accent-blue-dark) !important;
    border: 2px solid var(--accent-blue-dark) !important;
}

.gb-btn-secondary:hover,
.gb-btn-secondary:focus {
    background-color: var(--accent-blue-dark) !important;
    color: var(--off-white) !important;
}

/* Tertiary Button (Text with underline) */
.gb-btn-tertiary {
    background-color: transparent;
    color: var(--accent-blue-dark);
    border: none;
    padding: 0.5rem 0;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.gb-btn-tertiary:hover,
.gb-btn-tertiary:focus {
    color: var(--primary-blue);
    text-decoration-thickness: 2px;
}

/* Color Variants for Primary Button */
.gb-btn-primary-white {
  background-color: var(--off-white);
  color: var(--primary-black);
  border: 1px solid var(--off-white);
}

.gb-btn-primary-white:hover,
.gb-btn-primary-white:focus {
  background-color: transparent;
  color: var(--off-white);
  border: 1px solid var(--off-white);
}

/* Color Variants for Primary Button */
.gb-btn-primary-yellow {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border-color: var(--primary-yellow);
}

.gb-btn-primary-yellow:hover,
.gb-btn-primary-yellow:focus {
    background-color: var(--off-white);
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.gb-btn-primary-blue {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.gb-btn-primary-blue:hover,
.gb-btn-primary-blue:focus {
    background-color: var(--off-white);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Color Variants for Secondary Button */
.gb-btn-secondary-yellow {
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.gb-btn-secondary-yellow:hover,
.gb-btn-secondary-yellow:focus {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.gb-btn-secondary-blue {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.gb-btn-secondary-blue:hover,
.gb-btn-secondary-blue:focus {
    background-color: var(--primary-blue);
    color: var(--white);
}
.gb-btn-secondary-white {
    color: white !important;
    border:1px solid white;
}

.gb-btn-secondary-white:hover,
.gb-btn-secondary-white:focus {
    background-color: white;
    color: var(--primary-black) !important;
}

/* Button sizes */
.gb-btn-sm {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-xs);
}

.gb-btn-lg {
    padding: 1rem 2rem;
    font-size: var(--font-size-regular);
}

/* Card styles */
.gb-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: var(--space-lg);
}

.gb-card-header {
    border-bottom: 1px solid var(--grey-200);
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
}

/* Form styles */
.gb-input,
.gb-select,
.gb-textarea {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    padding: 0.75rem;
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-sm);
    width: 100%;
    background-color: var(--white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.gb-input:focus,
.gb-select:focus,
.gb-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(52, 184, 196, 0.2);
}

.gb-label {
    display: block;
    font-size: var(--font-size-small);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--grey-700);
}

/* Utility classes for font weights */
.gb-font-light {
    font-weight: 300;
}

.gb-font-regular {
    font-weight: 400;
}

.gb-font-medium {
    font-weight: 500;
}

.gb-font-semibold {
    font-weight: 600 !important;
}

.gb-font-bold {
    font-weight: 700 !important;
}

/* Line height utilities */
.gb-leading-tight {
    line-height: 1.2;
}

.gb-leading-normal {
    line-height: 1.5;
}

.gb-leading-loose {
    line-height: 1.8;
}

/* Text alignment */
.gb-text-left {
    text-align: left;
}

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

.gb-text-right {
    text-align: right;
}

/* Text wrap utilities */
.gb-text-nowrap {
    white-space: nowrap;
}

.gb-text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Display utilities */
.gb-block {
    display: block;
}

.gb-inline-block {
    display: inline-block;
}

.gb-flex {
    display: flex;
}

.gb-inline-flex {
    display: inline-flex;
}

.gb-grid {
    display: grid;
}

/* Flex utilities */
.gb-flex-row {
    flex-direction: row;
}

.gb-flex-col {
    flex-direction: column;
}

.gb-flex-wrap {
    flex-wrap: wrap;
}

.gb-items-center {
    align-items: center;
}

.gb-items-start {
    align-items: flex-start;
}

.gb-items-end {
    align-items: flex-end;
}

.gb-justify-center {
    justify-content: center;
}

.gb-justify-between {
    justify-content: space-between;
}

.gb-justify-around {
    justify-content: space-around;
}

.gb-justify-start {
    justify-content: flex-start;
}

.gb-justify-end {
    justify-content: flex-end;
}

/* Gap utilities */
.gb-gap-xs {
    gap: var(--space-xs);
}

.gb-gap-sm {
    gap: var(--space-sm);
}

.gb-gap-md {
    gap: var(--space-md);
}

.gb-gap-lg {
    gap: var(--space-lg);
}

.gb-gap-xl {
    gap: var(--space-xl);
}

/* Margin utilities */
.gb-m-0 {
    margin: 0;
}

.gb-m-xs {
    margin: var(--space-xs);
}

.gb-m-sm {
    margin: var(--space-sm);
}

.gb-m-md {
    margin: var(--space-md);
}

.gb-m-lg {
    margin: var(--space-lg);
}

.gb-m-xl {
    margin: var(--space-xl);
}

.gb-mt-0 {
    margin-top: 0;
}

.gb-mt-xs {
    margin-top: var(--space-xs);
}

.gb-mt-sm {
    margin-top: var(--space-sm);
}

.gb-mt-md {
    margin-top: var(--space-md);
}

.gb-mt-lg {
    margin-top: var(--space-lg);
}

.gb-mt-xl {
    margin-top: var(--space-xl);
}

.gb-mb-0 {
    margin-bottom: 0;
}

.gb-mb-xs {
    margin-bottom: var(--space-xs);
}

.gb-mb-sm {
    margin-bottom: var(--space-sm);
}

.gb-mb-md {
    margin-bottom: var(--space-md);
}

.gb-mb-lg {
    margin-bottom: var(--space-lg);
}

.gb-mb-xl {
    margin-bottom: var(--space-xl);
}

/* Padding utilities */
.gb-p-0 {
    padding: 0;
}

.gb-p-xs {
    padding: var(--space-xs);
}

.gb-p-sm {
    padding: var(--space-sm);
}

.gb-p-md {
    padding: var(--space-md);
}

.gb-p-lg {
    padding: var(--space-lg);
}

.gb-p-xl {
    padding: var(--space-xl);
}

.gb-pt-0 {
    padding-top: 0;
}

.gb-pt-xs {
    padding-top: var(--space-xs);
}

.gb-pt-sm {
    padding-top: var(--space-sm);
}

.gb-pt-md {
    padding-top: var(--space-md);
}

.gb-pt-lg {
    padding-top: var(--space-lg);
}

.gb-pt-xl {
    padding-top: var(--space-xl);
}

.gb-pb-0 {
    padding-bottom: 0;
}

.gb-pb-xs {
    padding-bottom: var(--space-xs);
}

.gb-pb-sm {
    padding-bottom: var(--space-sm);
}

.gb-pb-md {
    padding-bottom: var(--space-md);
}

.gb-pb-lg {
    padding-bottom: var(--space-lg);
}

.gb-pb-xl {
    padding-bottom: var(--space-xl);
}

/* Border utilities */
.gb-border {
    border: 1px solid var(--grey-300);
}

.gb-border-t {
    border-top: 1px solid var(--grey-300);
}

.gb-border-r {
    border-right: 1px solid var(--grey-300);
}

.gb-border-b {
    border-bottom: 1px solid var(--grey-300);
}

.gb-border-l {
    border-left: 1px solid var(--grey-300);
}

/* Border radius utilities */
.gb-rounded-none {
    border-radius: 0;
}

.gb-rounded-sm {
    border-radius: var(--radius-sm);
}

.gb-rounded-md {
    border-radius: var(--radius-md);
}

.gb-rounded-lg {
    border-radius: var(--radius-lg);
}

.gb-rounded-full {
    border-radius: var(--radius-round);
}

/* Shadow utilities */
.gb-shadow-none {
    box-shadow: none;
}

.gb-shadow-sm {
    box-shadow: var(--shadow-sm);
}

.gb-shadow-md {
    box-shadow: var(--shadow-md);
}

.gb-shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* Opacity utilities */
.gb-opacity-0 {
    opacity: 0;
}

.gb-opacity-25 {
    opacity: 0.25;
}

.gb-opacity-50 {
    opacity: 0.5;
}

.gb-opacity-75 {
    opacity: 0.75;
}

.gb-opacity-100 {
    opacity: 1;
}

/* Feature List Component */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    list-style: none;
    padding: 10px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-md);
    list-style-type: none;
}

.feature-icon {
    margin-right: var(--space-sm);
    flex-shrink: 0;
}

.feature-heading {
    font-size: var(--font-size-large);
    margin-bottom: var(--space-lg);
    color: var(--primary-black);
}

/* Feature section styles */
.feature-section {
    padding: var(--space-xxl) 0;
}

.feature-container {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.feature-text {
    flex: 1;
}

.feature-visual {
    flex: 1;
}

@media screen and (max-width: 1024px) {
    .feature-container {
        gap: var(--space-lg);
    }
}

@media screen and (max-width: 767px) {
    .feature-container {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .feature-section {
        padding: var(--space-xl) 0;
    }
    
    .feature-visual {
        width: 100%;
        order: -1;
    }
}

/* Usage examples:
   <button class="gb-btn gb-btn-primary">Primary Button</button>
   <button class="gb-btn gb-btn-secondary">Secondary Button</button>
   <button class="gb-btn gb-btn-tertiary">Tertiary Button</button>
   
   <button class="gb-btn gb-btn-primary gb-btn-lg">Large Primary Button</button>
   <button class="gb-btn gb-btn-primary-blue">Blue Primary Button</button>
   
   <div class="gb-bg-primary-blue gb-p-lg">
     <h2 class="text-xl gb-text-white gb-mb-md">Section Title</h2>
     <p class="gb-text-off-white">Content goes here</p>
   </div>
*/

/* ============================
   BOTTOM CTA SECTION
   ============================ */
/* Bottom CTA Section Styles */
.bottom-cta {
    position: relative;
    padding: 80px 0 0 0;
    overflow: hidden;
    /* background-color: white; */
}

.bottom-cta-gradient-band {

    width: 100%;
    height: 50px;
    background: linear-gradient(75deg, #F2C443 2.74%, #7BD5DD 59.45%, #34B8C4 97.57%);
    z-index: 0;
    margin-top: 2rem;
}

.bottom-cta-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-cta-text {
    flex: 0 1 60%;
}



.bottom-cta-button {
    flex: 0 1 auto;
}

.cta-button {
    background-color: #003533;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #002522;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media (max-width: 1024px) {
    .bottom-cta-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .bottom-cta {
        padding: 60px 0 0 0;
    }
    
    .bottom-cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .bottom-cta-text {
        flex: 0 1 100%;
        margin-bottom: 30px;
    }
    
    .bottom-cta-heading {
        font-size: 2rem;
    }
    
    .bottom-cta-button {
        flex: 0 1 100%;
    }
}

/* Trusted Logos Section Styles */
.trusted-logos-section {
    padding: 5% 0;
}

.trusted-logos-section h3 {
    text-align: center;
    color: #666;
    font-weight: normal;
    margin-bottom: 20px;
    font-size: 18px;
}

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

.logo-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 10px;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
    transition: all 0.3s ease;
    /* opacity:0.95; */
}


/* Responsive styles */
@media (max-width: 1024px) {
    .logo-item {
        min-width: 100px;
    }
    
    .logo-item img {
        max-height: 50px;
    }
}

@media (max-width: 767px) {
    .trusted-logos-section {
        padding: 10% 0 0 0;
    }
    .logo-container {
        justify-content: center;
    }
    
    .logo-item {
        min-width: 80px;
        flex-basis: 33%;
    }
    
    .logo-item img {
        max-height: 40px;
    }
}

/**
 * Call Summary Component Styles
 * With smaller text sizes (13-14px)
 */

 .call-summary-section {
    padding: 30px 0;
    font-size: 14px;
}

.call-summary-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.call-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
}

.call-title {
    color: #0d3e4d;
    font-size: 22px !important;
    font-weight: 600;
    margin: 0;
}

.call-details {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 13px;
}

.call-tag {
    background-color: #f2f2f2;
    color: #333;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.call-metrics {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    gap: 20px;
}

.metric-card {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 3px solid #6fdbd0;
}

.metric-icon {
    background-color: #6fdbd0;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 13px;
    color: #555;
}

.metric-value {
    font-size: 20px;
    font-weight: 600;
    color: #0d3e4d;
}

.call-section {
    padding: 25px 30px;
    border-top: 1px solid #f0f0f0;
}

.section-title {
    color: #0d3e4d;
    font-size: 18px !important;
    letter-spacing: 1px !important;
    margin-bottom: 20px;
    font-weight: 600;
}

.summary-list {
}

.summary-list li {
    margin-bottom: 15px;
    color: #333;
    line-height: 1.5;
    font-size: 14px;
}

.transcript-item {
    margin-bottom: 25px;
}

.speaker {
    color: #0d3e4d;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.dialogue {
    background-color: #f5f9fa;
    padding: 14px;
    border-radius: 8px;
    color: #333;
    line-height: 1.5;
    font-size: 13px;
}

/* Responsive styles */
@media screen and (max-width: 1024px) {
    .call-metrics {
        flex-wrap: wrap;
    }
    
    .metric-card {
        min-width: calc(33.33% - 20px);
    }
}

@media screen and (max-width: 767px) {
    .call-details{
        flex-direction: column;
        align-items: flex-start;
    }
    .call-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .call-metrics {
        flex-direction: column;
    }
    
    .metric-card {
        width: 100%;
    }
    
    .call-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 17px;
    }
}

/* Conversation Component Styles */
.conversation-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    max-width: 600px;
    margin: 0 auto 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.conversation-header {
    margin-bottom: 14px;
}

.conversation-title {
    color: #333;
    font-size: 22px !important;
    letter-spacing: -1px !important;
    font-weight: 600 !important;
    margin-bottom: 6px;
}

.conversation-datetime {
    color: #555;
    font-size: 14px;
    margin-bottom: 6px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.conversation-tag {
    display: inline-block;
    background-color: #3498db;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 10px;
}

.conversation-divider {
    height: 1px;
    background-color: #eee;
    margin: 16px 0;
}

.transcript-title {
    color: #333;
    font-size: 16px !important;
    letter-spacing: -1px !important;
    font-weight: 600 !important;
    margin-bottom: 16px;
}

.conversation-message {
    margin-bottom: 20px;
}

.message-sender {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.message-content {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    background-color: #E4F7FE;
    padding: 12px;
    border-radius: 8px;
}

.highlight {
    background-color: #FFD700;
    padding: 0 4px;
    border-radius: 3px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .conversation-card {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .conversation-card {
        padding: 16px;
    }
    
    .conversation-title {
        font-size: 18px;
    }
    
    .conversation-datetime {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .conversation-tag {
        margin-left: 0;
        margin-top: 5px;
    }
}

.insights-dashboard-section {
    padding: 40px 0;
}

.insights-dashboard-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.insights-dashboard-card {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 30px;
    width: 100%;
    max-width: 500px;
}

.insights-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.insights-dashboard-title {
    font-size: 20px !important;
    letter-spacing: -1px !important;
    font-weight: bold;
    color: #1A1A1A;
}

.insights-dashboard-subtitle {
    font-size: 14px;
    color: #333;
    margin-top: 0px;
}

.insights-dashboard-badge {
    border: 1px solid #CFCFCF;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    width: 60%;
}

.insights-dashboard-badge::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #FFD700;
    border-radius: 3px;
    margin-right: 8px;
}

.insights-dashboard-chart {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.chart-image {
    width: 100%;
    display: block;
}

@media (max-width: 1024px) {
    .insights-dashboard-card {
        max-width: 450px;
    }
}

@media (max-width: 767px) {
    .insights-dashboard-card {
        max-width: 100%;
    }
    
    .insights-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .insights-dashboard-badge {
        margin-top: 15px;
    }
}

.search-section {
    width: 100%;
    padding: 0 0 40px 0;
}

.search-container {
    position: relative;
    width: 100%;
}

.search-bar {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    border-radius: 26px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 8px 12px;
    overflow: hidden;
}

.search-icon {
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.highlighted-text {
    padding: 2px 6px;
    border-radius: 1px;
    color: #000;
    display: inline-block;
    font-weight: normal;
    font-size: 16px;
}

.type-cursor {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 70%;
    background-color: #333;
    animation: blink 1s infinite;
    display: none;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Responsive styles */
@media (max-width: 1024px) {
    .search-bar {
        padding: 7px 10px;
    }
    
    .highlighted-text {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .search-section {
        padding: 20px 0;
    }
    
    .search-bar {
        padding: 6px 8px;
    }
    
    .highlighted-text {
        font-size: 14px;
    }
    
    .search-icon svg {
        width: 18px;
        height: 18px;
    }
}


/* testiomnials css */
    .testimonial-section {

        position: relative;
        padding: 20px 20px 60px 20px;
        box-sizing: border-box;
    }
    
    .carousel {
        position: relative;
    }
    
    .carousel-inner {
        padding: 1em;
        overflow: hidden;
        width: 90%;
        margin-inline: auto;
    }
    
    .carousel-inner-track {
        display: flex;
        transition: transform 0.8s ease;
    }
    
    .carousel-item {
        flex: 0 0 100%;
        box-sizing: border-box;
        padding: 0 0.5em;
    }
    
    .carousel img {
        width: 70px;
        max-height: 70px;
        border-radius: 50%;
        margin-right: 1rem;
        overflow: hidden;
        object-fit: cover;
    }
    
    .carousel img.logo {
        width: 180px;
        height: 50px;
        border-radius: 0;
        margin-bottom: 20px;
        object-fit: contain;
        display: block;
    }
    
    .carousel .card {
        margin: 0 0.5em;
        border: 0;
        background-color: white;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        height: 100%;
    }
    
    .carousel .card.featured {
        background-color: #0a3640;
        color: white;
    }
    .carousel .card.featured img {
        filter: brightness(0) invert(1);


    }
    
    .carousel .featured .text-secondary {
        color: #ccc !important;
    }
    
    .carousel .card-body {
        padding: 3rem 1.5rem 1.5rem 1.5rem;
    }
    
    .carousel .card-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .carousel .card-title {
        font-weight: bold;
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .carousel .text-secondary {
        color: #666;
        font-size: 14px;
        line-height: 130% !important;

    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 3rem;
        height: 3rem;
        background-color: grey;
        border-radius: 50%;
        position: absolute;
        /* top: -100%; */
        transform: translateY(-15%);
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: none;
        color: white;
    }

    @media screen and (max-width: 1000px) {
        .carousel-inner{
            width: 100%;
            margin-inline: 0;
        }

    }
    

@media screen and (max-width: 767px) {
        .carousel-control-prev,
        .carousel-control-next {
            transform: translateY(35%);
        }

        .nav-progress{
            transform: translateY(20px);

        }
    }
    
    .carousel-control-prev {
        left: 0;
    }
    
    .carousel-control-next {
        right: 0;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 1.5rem;
        height: 1.5rem;
        display: inline-block;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .carousel-control-prev-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    }
    
    .carousel-control-next-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    
    .carousel-control-prev.disabled,
    .carousel-control-next.disabled {
        opacity: 0.5;
        cursor: default;
    }
    
    .nav-progress {
        height: 2px;
        background-color: #ddd;
        width: 60%;
        position: relative;
        max-width: 500px;
        margin: 20px auto 0;
    }
    
    .nav-progress-indicator {
        position: absolute;
        height: 100%;
        background-color: #0a3640;
        transition: all 0.5s ease;
        width: 75%; /* Initial width */
    }
    
    .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    
    @media screen and (min-width: 1025px) {
        .carousel-item {
            flex: 0 0 calc(100% / 3);
        }
    }
    
    @media screen and (min-width: 768px) and (max-width: 1024px) {
        .carousel-item {
            flex: 0 0 calc(100% / 2);
        }
    }
    
    @media screen and (max-width: 767px) {
        .carousel-item {
            flex: 0 0 100%;
            padding: 0;
        }
        
        .carousel-inner {
            width: 100%;
            padding: 0;
        }
    }


/* Carousel Button Hover Styles */
.carousel-control-prev,
.carousel-control-next {
    background-color: grey !important;
    color: white !important;
    transition: background-color 0.2s ease;
}

/* Only show teal on hover, not when focused */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #34B8C4 !important;
    color: white !important;
}

/* Override any focus styles to keep the button grey */
.carousel-control-prev:focus:not(:hover),
.carousel-control-next:focus:not(:hover) {
    background-color: grey !important;
    outline: none !important;
}

/* Remove any browser-added focus indicators */
.carousel-control-prev:focus,
.carousel-control-next:focus {
    outline: none !important;
}

/* Ensure icon color remains white */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(1) !important;
}

/* No hover effect for disabled buttons */
.carousel-control-prev.disabled:hover,
.carousel-control-next.disabled:hover {
    background-color: grey !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

    /**
 * Dashboard Preview Section Styles
 */

/* Base section styling */
.dashboard-preview {
    padding: 0 0 60px 0;
    width: 100%;
}

@media (max-width: 767px) {
    .dashboard-preview {
        padding: 0 0 0 0;
    }
}

/* Main container layout */
.dashboard-preview-container {
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Image Preview Area --- */
.dashboard-preview-image {
    width: 100%;
    height: 500px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

/* Base styling for all dashboard images */
.dashboard-preview-image img.dashboard-view {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: none;
    object-fit: contain; /* Maintains aspect ratio while fitting container */
    background: none !important;
}

/* Active image styling */
.dashboard-preview-image img.dashboard-view.active {
    opacity: 1;
    display: block;
    z-index: 10;
}

/* --- Button Area --- */
.dashboard-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 300px;
    flex-shrink: 0;
    gap: 10px;
}

/* Button styling */
.dashboard-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid #bbbbbb;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    background-color: #f5f3ee;
    color: #003238;
}

.dashboard-button.active {
    background-color: #34B8C4;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Button content areas */
.dashboard-button-content {
    flex: 1;
}

.dashboard-button-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* background-color: #f0f0f0; */
    border: 1px solid #bbbbbb;
}

.dashboard-button.active .dashboard-button-icon {
    border: 1px solid #fff;

}

.dashboard-button.active .dashboard-button-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.dashboard-button-icon svg {
    width: 24px;
    height: 24px;
    stroke: #003238;
}

.dashboard-button.active svg {
    stroke: #FFFFFF;
}

.dashboard-button-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.dashboard-button.active .dashboard-button-text {
    color: #FFFFFF;
}

/* --- Responsive Layouts --- */
/* Tablet Breakpoint */
@media (max-width: 1024px) {
    .dashboard-preview-image {
        height: 450px;
    }
    
    .dashboard-button {
        padding: 15px 20px;
    }
    
    .dashboard-button-text {
        font-size: 16px;
    }
}

/* Mobile Breakpoint */
@media (max-width: 1000px) {
    .dashboard-preview-container {
        flex-direction: column;
    }
    
    .dashboard-buttons {
        width: 100%;
    }
    
    .dashboard-preview-image {
        height: 400px;
    }
    
    .dashboard-button-icon {
        width: 36px;
        height: 36px;
    }
}

/* Larger screens adjustments */
@media (min-width: 768px) {
    .dashboard-button-content {
        flex: 1;
    }
}

@media (min-width: 660px) and (max-width: 767px) {
    .dashboard-preview-image {
      height: 350px;
    }
  }

  
@media (max-width: 660px) {
    .dashboard-preview-image {
      height: 250px;
    }
  }
  
  @media (max-width: 560px) {
    .dashboard-preview-image {
      height: 200px;
    }
  }
  

  @media screen and (min-width: 768px) {
    .mobile-hero {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .desktop-hero {
        display: none;
    }
}



/* === Blog Archive Layout === */
.blog-archive {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
    font-family: system-ui, sans-serif;
    color: #333;
    margin-top: 7%;
  }
  
  .blog-archive h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .blog-link{
    text-decoration: underline;
    color: royalblue !important;
  }
  
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .blog-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  
  .blog-card a {
    text-decoration: none;
    color: inherit;
  }
  
  .blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
  }
  
  .blog-card p {
    margin: 0.5rem 0;
    color: #555;
    line-height: 1.5;
  }
  
  .blog-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
  }
  
  .pagination {
    margin-top: 3rem;
    text-align: center;
  }
  
  .pagination .page-numbers {
    display: inline-block;
    margin: 0 6px;
    padding: 0.5rem 0.75rem;
    background: #f3f3f3;
    color: #333;
    border-radius: 4px;
    text-decoration: none;
  }
  
  .pagination .current {
    background: #2e65f3;
    color: #fff;
    font-weight: bold;
  }
  

/* === Base Typography === */
:root {
    --primary-color: #2e65f3;
    --secondary-color: #555;
    --text-color: #333;
    --light-gray: #eee;
    --medium-gray: #666;
    --light-bg: #f8f9fa;
    --border-radius: 5px;
    --shadow: 0 3px 10px rgba(0,0,0,0.1);
    --transition: all 0.2s ease;
  }
  
 
  .content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 6rem;
  }

  @media screen and (max-width: 767px) {
    .content-wrapper {
      gap: 1rem;
    }
    
  }
  
  /* === Main Content Area === */
  .blog-main {
    /* margin-bottom: 3rem; */
  }

  @media screen and (max-width: 767px) {
    .blog-main {
      margin-bottom: 0rem;
    }
    
  }
  
  .blog-post {
    margin: 0 auto;
    padding: 2rem 0 0 0;
    font-family: system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
  }
  
  /* === Post Banner === */
  .post-banner {
    margin: 0 0 2rem 0;
    overflow: hidden;
    height: 40vh;
  }
  
  .post-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  /* === Post Header === */
  .post-header {
    margin-bottom: 2rem;
  }
  
  .post-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
  }
  
  .post-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 400;
  }
  


  .post-meta i {
    margin-right: 0.3rem;
  }
  
  /* === Featured Image === */
  .featured-image {
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .featured-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* === Key Message === */
  .key-message {
    font-size: 1.6rem !important;
    line-height: 120% !important;
    color: var(--text-color);
    margin-bottom: 2rem !important;
    letter-spacing: -0.5px !important;

  }

  @media screen and (max-width: 767px) {
    .key-message {
      font-size: 1.3rem !important;
      line-height: 120% !important;
      margin-bottom: 1rem !important;
    }
    
  }
  
  /* === Blog Content === */
  .blog-content {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
  }
  
  .content-paragraph {
    margin-bottom: 2rem;
  }
  
  .content-paragraph p:last-child {
    margin-bottom: 0;
  }
  
  .blog-content h2,
  .blog-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  .blog-content ul,
  .blog-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .blog-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: var(--border-radius);
  }
  
  /* === Pull Quotes === */
  .content-pull-quote {
    font-size: 1.4rem;
    line-height: 1.6;
    padding: 4rem 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--secondary-color);
    border-left: 4px solid #F2C443;
    position: relative;
    background-color: #FDFCF9;
    border-radius: var(--border-radius);
  }
  
  .content-pull-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    left: 1rem;
    top: 0.2rem;
    color: #ddd;
    font-family: Georgia, serif;
  }
  
  .blockquote-footer {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--medium-gray);
    font-style: normal;
  }

  .blockquote-footer cite {
    font-weight: 600;
    color: black;
  }

  .quote-title {
    display: block;
    margin-top: 0.25rem;
    font-style: italic;
    color: #777;
  }
  
  /* === Images === */
  .content-image {
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .content-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  /* === Social Sharing === */
  .social-sharing {
    padding: 1.5rem 0;

  }
  
  .social-sharing h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
  
  .share-buttons {
    display: flex;
    gap: 0.75rem;
    padding: 0;
    list-style: none;
    margin: 0;
  }
  
  .share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
  }
  
  .share-buttons a i {
    font-size: 1.2rem;
    color: #fff !important;
  }
  
  .share-buttons a.facebook {
    background-color: #3b5998;
  }
  
  .share-buttons a.twitter {
    background-color: #1da1f2;
  }
  
  .share-buttons a.linkedin {
    background-color: #0077b5;
  }
  
  /* === CTA Section === */
  .blog-cta {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: center;
    border-left: 4px solid var(--primary-color);
  }
  
  .blog-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
  }
  
  .blog-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  /* === Buttons === */
  .button {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .primary-button {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
  }
  
  .primary-button:hover {
    background-color: transparent;
    color: var(--primary-color);
  }
  
  .secondary-button {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
  }
  
  .secondary-button:hover {
    background-color: var(--secondary-color);
    color: white;
  }
  
  .read-more {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition);
  }
  
  .read-more:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  /* === Post Navigation === */
  .post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    margin-top: 0 !important;
  }
  
  .nav-previous, .nav-next {
    max-width: 48%;
  }
  
  .nav-previous a, .nav-next a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
  }
  
  .nav-previous a:hover, .nav-next a:hover {
    color: var(--primary-color);
  }
  
  /* === Related Posts === */
  .related-posts {
    margin-bottom: 3rem;
  }

  @media screen and (max-width: 767px) {
    .related-posts {
      margin-bottom: 0rem;
    }
    
  }
  
  .related-posts h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
  }
  
  .related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.related-post-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
}

.card-image {
    position: relative;
    width: 100%;
    height: 200px; /* Fixed height for all image containers */
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Makes image cover the container while maintaining aspect ratio */
    object-position: center; /* Centers the image within the container */
}

.card-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.card-title {
    margin-top: 0;
    margin-bottom: 0px !important;
}

.card-text {
    margin-bottom: 15px;
}

.card-body .post-date{
  margin-bottom: 20px !important;
}

.read-more {
    margin-top: auto;
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}
  
  /* === Sidebar === */
  .blog-sidebar {
    position: sticky;
    top: 2rem;
  }
  
  .sidebar-widget {
    margin-bottom: 2.5rem;
  }
  
  .sidebar-widget h3 {
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--light-gray);
  }
  
  .recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .recent-posts-list li {
    margin-bottom: 1.5rem;
  }
  
  .recent-posts-list a {
    display: flex;
    text-decoration: none;
    color: var(--text-color);
  }
  
  .recent-posts-list a:hover h4 {
    color: var(--primary-color);
  }
  
  .recent-posts-list .post-thumbnail {
    width: 70px;
    height: 70px;
    margin-right: 1rem;
    flex-shrink: 0;
  }

  .post-details h4{
    margin-bottom: 0 !important;
  }
  
  .recent-posts-list .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
  }
  
  .recent-posts-list .post-details {
    flex-grow: 1;
  }


  .recent-posts-list h4 {
    font-size: 0.95rem;
    margin:0;
  }
  
  .recent-posts-list .post-date {
    color: var(--medium-gray);
  }
  .post-date p{
    font-size: 16px !important;
    margin-bottom: 0;
  }

  @media screen and (max-width: 767px) {
    .post-date {

      margin-bottom: 1rem !important;
    }
    .post-date p{
      font-size: 14px !important;
    }
    
  }
  /* === Help Widget === */
  .help-widget {
    border: 1px solid var(--light-gray);
    padding: 1.5rem;
    background-color: #0B363A;
    border-radius: var(--border-radius);
  }
  
  .help-widget p {
    margin-bottom: 1rem;
    color: white !important;
  }
  
  .help-widget .button {
    width: 100%;
  }

  .post-reading-time p{
    font-size: 16px !important;
    margin-bottom: 0;
  }
  
  /* === Responsive Styles === */
  @media (max-width: 992px) {
    .content-wrapper {
      grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
      position: static;
      margin-top: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    .blog-post{
      padding-bottom: 0;
    }

    .post-reading-time p{
      font-size: 14px !important;
      margin-bottom: 0;
    }

    .post-title {
      font-size: 2rem;
    }
    
    .post-subtitle {
      font-size: 1.3rem;
    }
    
    .post-meta {
      flex-direction: column;
      gap: 0.5rem;
    }
    
    .key-message {
      font-size: 1.2rem;
    }
    
    .content-pull-quote {
      font-size: 1.2rem;
      padding: 1.5rem;
    }
    
    .post-navigation {

      flex-direction: column;
      gap: 1rem;
    }
    
    .nav-previous, .nav-next {
      max-width: 100%;
    }
    
    .related-posts-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 576px) {
    .container {
      padding: 2rem 0;
    }
    
    .post-title {
      font-size: 1.75rem;
    }
    
    .post-subtitle {
      font-size: 1.2rem;
    }
    
    .key-message {
      font-size: 1.1rem;
    }
    
    .blog-content {
      font-size: 1rem;
    }
    
    .content-pull-quote {
      font-size: 1.1rem;
      padding: 1.25rem;
    }
  }

  .share-buttons {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.share-buttons li a {
    font-size: 24px; /* Make icons a visible size */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}


.facebook { background-color: #3b5998; }
.twitter { background-color: #1DA1F2; }
.linkedin { background-color: #0A66C2; }

.share-buttons li a i {
    color: #ffffff !important; 
    font-size: 1.2rem;
}



/* Add some JavaScript to handle dropdown toggling */
  
  /* Icon styles */
  .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon.icon-sm {
    font-size: 0.875rem;
  }
  
  .icon.icon-md {
    font-size: 1.25rem;
  }
  
  .icon.icon-lg {
    font-size: 1.75rem;
  }
  
  /* Utility classes */
  .mr-auto {
    margin-right: auto !important;
  }
  
  .mr-1 {
    margin-right: 0.25rem !important;
  }
  
  .mr-2 {
    margin-right: 0.5rem !important;
  }
  
  .ml-1 {
    margin-left: 0.25rem !important;
  }

  /* Badge Component Styles
===================================
Compiled from SASS */

/* Base badge styles */
.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    letter-spacing: 0.5px;
    transition: all 0.2s ease-in-out;
  }
  
  /* Rounded/pill variant */
  .badge.badge-rounded {
    border-radius: 50rem;
    padding-right: 0.975em;
    padding-left: 0.975em;
  }
  
  /* Color variants */
  .badge.badge-primary {
    background-color: #37B9C5;
    color: #fff;
  }
  
  .badge.badge-primary:hover {
    background-color: #37B9C5;
  }
  
  .badge.badge-secondary {
    background-color: #6c757d;
    color: #fff;
  }
  
  .badge.badge-secondary:hover {
    background-color: #646d74;
  }
  
  .badge.badge-success {
    background-color: #28a745;
    color: #fff;
  }
  
  .badge.badge-success:hover {
    background-color: #259f42;
  }
  
  .badge.badge-danger {
    background-color: #dc3545;
    color: #fff;
  }
  
  .badge.badge-danger:hover {
    background-color: #d03240;
  }
  
  .badge.badge-warning {
    background-color: #ffc107;
    color: #fff;
  }
  
  .badge.badge-warning:hover {
    background-color: #f2b706;
  }
  
  .badge.badge-info {
    background-color: #17a2b8;
    color: #fff;
  }
  
  .badge.badge-info:hover {
    background-color: #159aae;
  }
  
  .badge.badge-light {
    background-color: #f8f9fa;
    color: #212529;
  }
  
  .badge.badge-light:hover {
    background-color: #ebedef;
  }
  
  .badge.badge-dark {
    background-color: #343a40;
    color: #fff;
  }
  
  .badge.badge-dark:hover {
    background-color: #31363c;
  }
  
  /* Outline variants */
  .badge.badge-outline-primary {
    background-color: transparent;
    color: #4a6cf7;
    border: 1px solid #4a6cf7;
  }
  
  .badge.badge-outline-primary:hover {
    background-color: #4a6cf7;
    color: #fff;
  }
  
  .badge.badge-outline-secondary {
    background-color: transparent;
    color: #6c757d;
    border: 1px solid #6c757d;
  }
  
  .badge.badge-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
  }
  
  .badge.badge-outline-success {
    background-color: transparent;
    color: #28a745;
    border: 1px solid #28a745;
  }
  
  .badge.badge-outline-success:hover {
    background-color: #28a745;
    color: #fff;
  }
  
  .badge.badge-outline-danger {
    background-color: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
  }
  
  .badge.badge-outline-danger:hover {
    background-color: #dc3545;
    color: #fff;
  }
  
  .badge.badge-outline-warning {
    background-color: transparent;
    color: #ffc107;
    border: 1px solid #ffc107;
  }
  
  .badge.badge-outline-warning:hover {
    background-color: #ffc107;
    color: #fff;
  }
  
  .badge.badge-outline-info {
    background-color: transparent;
    color: #17a2b8;
    border: 1px solid #17a2b8;
  }
  
  .badge.badge-outline-info:hover {
    background-color: #17a2b8;
    color: #fff;
  }
  
  .badge.badge-outline-light {
    background-color: transparent;
    color: #f8f9fa;
    border: 1px solid #f8f9fa;
  }
  
  .badge.badge-outline-light:hover {
    background-color: #f8f9fa;
    color: #212529;
  }
  
  .badge.badge-outline-dark {
    background-color: transparent;
    color: #343a40;
    border: 1px solid #343a40;
  }
  
  .badge.badge-outline-dark:hover {
    background-color: #343a40;
    color: #fff;
  }
  
  /* When used inside links */
  a .badge {
    position: relative;
    top: -1px;
  }
  
  /* When used as a link */
  a.badge {
    text-decoration: none;
  }
  
  a.badge:hover, a.badge:focus {
    text-decoration: none;
  }
  
  /* Make badges stand out more when inside buttons */
  .btn .badge {
    position: relative;
    top: -1px;
    margin-left: 0.5em;
    margin-right: -0.25em;
  }
  
  /* Sizing variations */
  .badge.badge-sm {
    font-size: 0.65em;
    padding: 0.25em 0.5em;
  }
  
  .badge.badge-lg {
    font-size: 0.85em;
    padding: 0.45em 0.8em;
  }
  
  /* Empty badges collapse automatically */
  .badge:empty {
    display: none;
  }
  
  /* Badge counter */
  .badge-counter {
    position: absolute;
    transform: translate(-50%, -50%);
    margin-left: 0;
    font-size: 0.6rem;
    padding: 0.2em 0.4em;
    min-width: 1rem;
    min-height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .badge-counter.badge-top-right {
    top: 0;
    right: 0;
    transform: translate(25%, -25%);
  }
  
  .badge-counter.badge-top-left {
    top: 0;
    left: 0;
    transform: translate(-25%, -25%);
  }
  
  .badge-counter.badge-bottom-right {
    bottom: 0;
    right: 0;
    transform: translate(25%, 25%);
  }
  
  .badge-counter.badge-bottom-left {
    bottom: 0;
    left: 0;
    transform: translate(-25%, 25%);
  }

  /* Custom Button Styles
===================================
Compiled from SASS */

/* Base Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: none;
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .btn:hover, .btn:focus {
    /* Removed translateY effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none;
  }
  
  .btn:active {
    /* Removed translateY effect */
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  }
  
  /* Center any icons with text */
  .btn i, .btn svg, .btn img {
    margin-right: 0.5rem;
  }
  
  .btn i:only-child, .btn svg:only-child, .btn img:only-child {
    margin-right: 0;
  }
  
  /* Button Sizes */
  .btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
  
  .btn-md {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
  }
  
  .btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
  }
  
  /* Button Colors */
  .btn-primary {
    background-color: #031A1C;
    color: #fff;
  }
  
  .btn-primary:hover, .btn-primary:focus {
    background-color: #fff;
    color: #031A1C;
  }
  
  .btn-primary:active {
    background-color: #fff;
    color: #031A1C;
  }
  
  .btn-secondary {
    background-color: transparent;
    color: #031A1C;
    border: 1px solid #031A1C;
  }
  
  .btn-secondary:hover, .btn-secondary:focus {
    background-color: #031A1C;
    color: #fff;
  }
  
  .btn-secondary:active {
    background-color: #031A1C;
    color: #fff;
  }
  
  .btn-success {
    background-color: #28a745;
    color: #fff;
  }
  
  .btn-success:hover, .btn-success:focus {
    background-color: #259e42;
    color: #fff;
  }
  
  .btn-success:active {
    background-color: #23953e;
  }
  
  .btn-danger {
    background-color: #dc3545;
    color: #fff;
  }
  
  .btn-danger:hover, .btn-danger:focus {
    background-color: #d03240;
    color: #fff;
  }
  
  .btn-danger:active {
    background-color: #c42f3c;
  }
  
  .btn-warning {
    background-color: #ffc107;
    color: #212529;
  }
  
  .btn-warning:hover, .btn-warning:focus {
    background-color: #f2b706;
    color: #212529;
  }
  
  .btn-warning:active {
    background-color: #e6ad06;
  }
  
  .btn-info {
    background-color: #17a2b8;
    color: #fff;
  }
  
  .btn-info:hover, .btn-info:focus {
    background-color: #159aaf;
    color: #fff;
  }
  
  .btn-info:active {
    background-color: #1391a5;
  }
  
  .btn-light {
    background-color: #f8f9fa;
    color: #212529;
  }
  
  .btn-light:hover, .btn-light:focus {
    background-color: #ecedee;
    color: #212529;
  }
  
  .btn-light:active {
    background-color: #e0e1e3;
  }
  
  .btn-dark {
    background-color: #343a40;
    color: #fff;
  }
  
  .btn-dark:hover, .btn-dark:focus {
    background-color: #31363c;
    color: #fff;
  }
  
  .btn-dark:active {
    background-color: #2d3237;
  }
  
  /* Outline Button Variants */
  .btn-outline-primary {
    background-color: transparent;
    border: 2px solid #4a6cf7;
    color: #4a6cf7;
    box-shadow: none;
  }
  
  .btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: #4a6cf7;
    color: #fff;
  }
  
  .btn-outline-primary:active {
    background-color: #455bc5;
    border-color: #455bc5;
    color: #fff;
  }
  
  .btn-outline-secondary {
    background-color: transparent;
    border: 2px solid #6c757d;
    color: #6c757d;
    box-shadow: none;
  }
  
  .btn-outline-secondary:hover, .btn-outline-secondary:focus {
    background-color: #6c757d;
    color: #fff;
  }
  
  .btn-outline-secondary:active {
    background-color: #646c74;
    border-color: #646c74;
    color: #fff;
  }
  
  .btn-outline-success {
    background-color: transparent;
    border: 2px solid #28a745;
    color: #28a745;
    box-shadow: none;
  }
  
  .btn-outline-success:hover, .btn-outline-success:focus {
    background-color: #28a745;
    color: #fff;
  }
  
  .btn-outline-success:active {
    background-color: #259e42;
    border-color: #259e42;
    color: #fff;
  }
  
  .btn-outline-danger {
    background-color: transparent;
    border: 2px solid #dc3545;
    color: #dc3545;
    box-shadow: none;
  }
  
  .btn-outline-danger:hover, .btn-outline-danger:focus {
    background-color: #dc3545;
    color: #fff;
  }
  
  .btn-outline-danger:active {
    background-color: #d03240;
    border-color: #d03240;
    color: #fff;
  }
  
  .btn-outline-warning {
    background-color: transparent;
    border: 2px solid #ffc107;
    color: #ffc107;
    box-shadow: none;
  }
  
  .btn-outline-warning:hover, .btn-outline-warning:focus {
    background-color: #ffc107;
    color: #212529;
  }
  
  .btn-outline-warning:active {
    background-color: #f2b706;
    border-color: #f2b706;
    color: #212529;
  }
  
  .btn-outline-info {
    background-color: transparent;
    border: 2px solid #17a2b8;
    color: #17a2b8;
    box-shadow: none;
  }
  
  .btn-outline-info:hover, .btn-outline-info:focus {
    background-color: #17a2b8;
    color: #fff;
  }
  
  .btn-outline-info:active {
    background-color: #159aaf;
    border-color: #159aaf;
    color: #fff;
  }
  
  .btn-outline-light {
    background-color: transparent;
    border: 2px solid #f8f9fa;
    color: #f8f9fa;
    box-shadow: none;
  }
  
  .btn-outline-light:hover, .btn-outline-light:focus {
    background-color: #f8f9fa;
    color: #212529;
  }
  
  .btn-outline-light:active {
    background-color: #ecedee;
    border-color: #ecedee;
    color: #212529;
  }
  
  .btn-outline-dark {
    background-color: transparent;
    border: 2px solid #343a40;
    color: #343a40;
    box-shadow: none;
  }
  
  .btn-outline-dark:hover, .btn-outline-dark:focus {
    background-color: #343a40;
    color: #fff;
  }
  
  .btn-outline-dark:active {
    background-color: #31363c;
    border-color: #31363c;
    color: #fff;
  }
  
  /* Add a loading spinner option */
  .btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
  }
  
  .btn-loading:after {
    content: '';
    position: absolute;
    width: 1rem;
    height: 1rem;
    top: 50%;
    left: 50%;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top-color: white;
    animation: btn-spinner 0.8s linear infinite;
  }
  
  @keyframes btn-spinner {
    to {
      transform: rotate(360deg);
    }
  }
  
  /* Button Group */
  .btn-group {
    display: inline-flex;
    position: relative;
  }
  
  .btn-group .btn {
    position: relative;
    flex: 1 1 auto;
  }
  
  .btn-group .btn:not(:first-child) {
    margin-left: -2px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  
  .btn-group .btn:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  
  /* Block buttons (full width) */
  .btn-block {
    display: flex;
    width: 100%;
  }


  :root {
    --primary: #3498db;
    --secondary: #2c3e50;
    --light: #f8f9fa;
    --dark: #343a40;
    --accent: #e74c3c;
    --text: #333;
    --border: #ddd;
}

.gradient-bar{
  height: 50px;
  background: linear-gradient(75deg, #F2C443 2.74%, #7BD5DD 59.45%, #34B8C4 97.57%);
}

.archive-top-bar{
  display: flex;
  justify-content: space-between;
  padding: 3rem 2rem 0rem 2rem;
  width: 55%;
  transform: translateY(40px);
}

.archive-image-container{
 transform: translateY(-65px);
}

@media screen and (max-width: 1024px) {
    .archive-top-bar{
      flex-direction: column;
      align-items: start;
      width: 90%;
      padding: 2rem;
      transform: translateY(30px);
    }

    .archive-image-container{
 transform: translateY(-15px);
}
  
}

@media screen and (max-width: 767px) {
    .archive-top-bar{
      flex-direction: column;
      align-items: start;
      width: 100%;
      padding: 2rem;
  transform: translateY(0px);
    }

    .archive-image-container{
 transform: translateY(-15px);
}
  
}



.archive-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.archive-header p {
    font-size: 1.1rem;
    opacity: 0.8;
}

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

.archive-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-options {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-options select {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

@media screen and (max-width: 767px) {
    .view-toggle {
        display: none;
    }
  
}

.view-button {
    background-color: white;
    border: 1px solid var(--border);
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #0B363A !important;
}

.view-button.active {
    background-color: #37B9C5 !important;
    color: white;
    border-color: #37B9C5;
}

.archive-content {
    /* margin: 2rem 0; */
    padding-top: 1rem;
    padding-bottom: 2rem;
}

/* Grid view */
.grid-view {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .grid-view {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .grid-view {
        grid-template-columns: 1fr;
    }
}

/* List view */
.list-view .post {
    display: flex;
    margin-bottom: 2rem;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.list-view .post-image {
    flex: 0 0 30%;
}

.list-view .post-content {
    flex: 1;
    padding: 1.5rem;
}

/* Common post styles */
.post {
    background: #F1F0ED;
    overflow: hidden;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
}



.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-image {
    height: 200px;
    position: relative;
}

.post-categories {

    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: 90%;
    margin-bottom: 0.75rem;
}

.post-category {
    background-color: #F1F0ED;
    color: black;
    padding: 2.5px 7px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* margin-bottom: 5px; */
    display: inline-block;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    flex-direction: row;
    /* gap: 1rem; */
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #777;
}

.post-meta span {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.post-meta span svg {
    margin-right: 5px;
    height: 14px;
    width: 14px;
}

.card-post-title {
    /* font-size: 20px !important;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -1px !important; */
}

.card-post-title a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}

.post-title a:hover {
    color: var(--primary);
}

.post-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.read-more:hover {
    color: var(--secondary);
}

.archive-pagination {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.page-numbers {
    display: flex;
    list-style: none;
    gap: 5px;
}

.page-numbers li a,
.page-numbers li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
}

.page-numbers li a:hover {
    background-color: #e9ecef;
}

.page-numbers li span.current {
    background-color: var(--primary);
    color: white;
}

/* Loading Animation */
.loader {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.loader .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* No results message */
.no-results {
    text-align: center;
    padding: 3rem 0;
    display: none;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.no-results p {
    color: #666;
    margin-bottom: 1.5rem;
}


@media (max-width: 768px) {
    .archive-controls {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
    }
    
    .filter-options {
        width: 100%;
        justify-content: space-between;
        
    }
    
    .list-view .post {
        flex-direction: column;
    }
    
    .list-view .post-image {
        flex: 0 0 200px;
    }

    .grid-view {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

/* Custom styles for the blog archive page */
/* Make dropdowns wider */
.filter-options select {
  min-width: 160px;
}

/* Make cards the same height */
.post {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-excerpt {
  flex-grow: 1;
}

.read-more {
  margin-top: auto;
}

/* List view adjustments */
.list-view .post {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
  height: 350px;
}

.list-view .post-image {
  flex: 0 0 70%;
  height: 100%;
}

.list-view .post-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  flex: 0 0 30%;
  padding: 1.5rem;
  overflow: hidden;
}

.list-view .read-more {
  margin-top: auto;
}










/* Navbar Styles
=================================== */

/* Base Navbar Styles */
.navbar {
  display: flex;
  align-items: center;
  padding: 1rem;
  min-height: 100px;
  width: 100%;
  position: relative;
  z-index: 99999;
}

.navbar .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo/Brand */
.navbar .navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  margin-right: 1.5rem;
}

.navbar .navbar-brand img.navbar-logo {
  max-height: 40px;
  width: auto;
  margin-right: 0.75rem;
}

/* Toggler for mobile */
.navbar .navbar-toggler {
  display: none;
  background-color: transparent;
  border: none;
  width: 48px;
  height: 48px;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 4px;
  z-index: 1050;
  -webkit-appearance: none;
  appearance: none;
  user-select: none;
  touch-action: manipulation;
}

/* Hamburger menu styles */
.navbar .navbar-toggler .hamburger-menu {
  width: 30px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar .navbar-toggler .hamburger-menu .line {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background-color: currentColor;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-toggler[aria-expanded="true"] .hamburger-menu .line:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.navbar .navbar-toggler[aria-expanded="true"] .hamburger-menu .line:nth-child(2) {
  opacity: 0;
}

.navbar .navbar-toggler[aria-expanded="true"] .hamburger-menu .line:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* Navigation container */
.navbar .navbar-collapse {
  display: flex;
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
  justify-content: end;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

/* Navigation list */
.navbar .navbar-nav {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar .navbar-nav .nav-item {
  position: relative;
  margin: 0 0.25rem;
}

.navbar .navbar-nav .nav-item.active .nav-link {
  font-weight: 600;
}

.navbar .navbar-nav .nav-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 600;
  gap: 5px;
}

.navbar .navbar-nav .nav-link .icon {
  margin-right: 0.5rem;
}

/* Dropdown menus */
.navbar .navbar-nav .dropdown {
  position: relative;
}

.navbar .navbar-nav .dropdown .dropdown-toggle {
  position: relative;
  padding-right: 1.5rem;
}

.navbar .navbar-nav .dropdown .dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  vertical-align: middle;
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.navbar .navbar-nav .dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10000; /* Increased z-index to ensure dropdowns appear above other elements */
  display: none;
  min-width: 200px;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: opacity 0.15s ease-in-out, visibility 0.15s ease-in-out;
  /* Always remove bullets from dropdown lists */
  list-style: none !important;
  list-style-type: none !important;
  list-style-image: none !important;
}

.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  clear: both;
  font-weight: 400;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

/* Specific styling for dropdown items on mobile */
@media (max-width: 991.98px) {
  .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item {
    justify-content: center !important;
    padding: 8px 15px !important;
    text-align: center !important;
    width: 100% !important;
  }
}

/* Ensure all list items in dropdowns have no bullets */
.navbar .navbar-nav .dropdown .dropdown-menu,
.navbar .navbar-nav .dropdown .dropdown-menu ul,
.navbar .navbar-nav .dropdown .dropdown-menu li {
  list-style: none !important;
  list-style-type: none !important;
  list-style-image: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Remove any bullets from dropdown list items */
.navbar .navbar-nav .dropdown .dropdown-menu li::before,
.navbar .navbar-nav .dropdown .dropdown-menu li::marker {
  content: none !important;
  display: none !important;
}

.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item.active {
  font-weight: 600;
}

.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item .icon {
  margin-right: 0.75rem;
}

.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Enable dropdown hover behavior by default for desktop */
.navbar .navbar-nav .dropdown:hover .dropdown-menu,
.navbar .navbar-nav .dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Action buttons/links area */
.navbar .navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 1rem;
}

.navbar .navbar-actions .btn {
  white-space: nowrap;
}

/* Badges inside nav */
.navbar .badge {
  display: inline-block;
  padding: 0.25em 0.5em;
  font-size: 0.75em;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.navbar .badge.badge-rounded {
  border-radius: 50px;
}

/* Color variants */
.navbar-light {
  background-color: #F5F3EE;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-toggler:hover,
.navbar-light .navbar-toggler:focus {
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar-light .nav-link {
  color: #0B363A;
}

.navbar-light .nav-link:hover,
.navbar-light .nav-link:focus {
  color: #0B363A;
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar-light .dropdown-menu {
  background-color: #F5F3EE;
}

.navbar-light .dropdown-menu .dropdown-item {
  color: #0B363A;
  font-weight: 500 !important;
}

.navbar-light .dropdown-menu .dropdown-item:hover,
.navbar-light .dropdown-menu .dropdown-item:focus {
  color: #0B363A;
  background-color: rgba(0, 0, 0, 0.05);
}

.navbar-light .dropdown-menu .dropdown-item.active {
  color: #0B363A;
  background-color: rgba(0, 0, 0, 0.05);
}

/* Dark theme variant */
.navbar-dark {
  background-color: #212529;
}

.navbar-dark .navbar-brand {
  color: #F5F3EE;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-dark .navbar-toggler:hover,
.navbar-dark .navbar-toggler:focus {
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .nav-link {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link:focus {
  color: #F5F3EE;
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .dropdown-menu {
  background-color: #343a40;
}

.navbar-dark .dropdown-menu .dropdown-item {
  color: rgba(255, 255, 255, 0.8);
}

.navbar-dark .dropdown-menu .dropdown-item:hover,
.navbar-dark .dropdown-menu .dropdown-item:focus {
  color: #F5F3EE;
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .dropdown-menu .dropdown-item.active {
  color: #F5F3EE;
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .dropdown-menu .dropdown-divider {
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* Placement options */
.navbar.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

/* Responsive Mobile Menu - Common styles */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Body state when navbar is open */
body.navbar-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  touch-action: none;
}

/* Mobile menu styles for dropdown functionality */
.navbar .navbar-nav .dropdown .dropdown-menu.show {
  display: block;
  width: 100%;
  text-align: center;
  border: none;
  box-shadow: none;
  padding: 10px 0;
  margin: 10px 0;
}

/* Dropdown styles for mobile */
@media (max-width: 991.98px) {
  .navbar .navbar-nav .dropdown .dropdown-menu {
    position: relative !important;
    box-shadow: none !important;
    padding-left: 1.5rem;
    display: none !important;
    background-color: transparent !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    transition: opacity 0.2s ease, height 0.3s ease !important;
    pointer-events: none !important; /* Disable interactions until fully visible */
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important; /* Remove bullets */
    z-index: 1 !important; /* Lower z-index for mobile */
    top: 0 !important; /* Reset top positioning */
    left: 0 !important; /* Reset left positioning */
  }
  
  /* Disable hover behavior in mobile */
  .navbar .navbar-nav .dropdown:hover .dropdown-menu {
    display: none !important;
  }
  
  /* Remove bullets and padding from dropdown list */
  .navbar .navbar-nav .dropdown .dropdown-menu,
  .navbar .navbar-nav .dropdown .dropdown-menu li,
  .navbar .navbar-nav .dropdown .dropdown-menu ul {
    list-style-type: none !important;
    list-style-image: none !important;
    list-style-position: outside !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  
  /* Fix dropdown list appearance */
  .navbar .navbar-nav .dropdown .dropdown-menu li::before,
  .navbar .navbar-nav .dropdown .dropdown-menu li::marker {
    content: none !important;
    display: none !important;
  }
  
  /* Styles for visible dropdown on mobile */
  .navbar .navbar-nav .dropdown .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    height: auto !important;
    padding-left: 0 !important; /* Remove left padding completely */
    pointer-events: auto !important; /* Re-enable interactions when visible */
    /* Add delay to prevent accidental clicks */
    transition-delay: 0.2s;
    overflow: visible !important;
    margin-top: 10px !important;
    padding-top: 5px !important;
    position: relative !important; /* Use relative positioning for mobile accordion */
  }
  
  .navbar .navbar-nav .dropdown .dropdown-toggle::after {
    position: relative; /* Change to relative positioning */
    right: auto; /* Remove absolute positioning */
    margin-left: 5px; /* 5px spacing between text and arrow */
    transition: transform 0.3s ease;
    vertical-align: middle;
    display: inline-block;
    order: 2; /* Ensure it comes after the text in flex layout */
    transform: translateY(1px);
  }
  
  /* Style the text inside dropdown toggle */
  .navbar .navbar-nav .dropdown .dropdown-toggle span {
    order: 1; /* Ensure text comes before arrow in flex layout */
  }
  
  /* Rotate the arrow when dropdown is active/open */
  .navbar .navbar-nav .dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg) translateY(-1px);
  }
  
  /* Make dropdown toggle clickable without triggering link */
  .navbar .navbar-nav .dropdown {
    position: relative;
    margin-bottom: 10px; /* Add space between dropdown items */
    border-radius: 4px;
    padding: 5px;
  }
  
  /* Create a larger clickable area for the dropdown toggle */
  .navbar .navbar-nav .dropdown .dropdown-toggle {
    display: flex;
    width: 100%; /* Cover full width for better mobile touch */
    pointer-events: none; /* Disable link clicks on mobile */
    position: relative;
    z-index: 1; /* Keep above other elements but below the click handler */
    justify-content: center; /* Center content */
    align-items: center; /* Align items vertically */
    text-align: center; /* Center text */
  }
  
  /* Use the parent element for toggle clicks */
  .navbar .navbar-nav .dropdown {
    cursor: pointer;
  }
  
  /* Add visual indicator for dropdown state */
  .navbar .navbar-nav .dropdown.active {
    background-color: rgba(0, 0, 0, 0.03);
  }
  
  /* Add space between dropdown items when visible */
  .navbar .navbar-nav .dropdown.active {
    margin-bottom: 0; /* Adjust to prevent extra space */
    transition: margin-bottom 0.3s ease;
  }
  
  /* Zero height when closed */
  .navbar .navbar-nav .dropdown .dropdown-menu:not(.show) {
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden !important;
  }
  
  /* Styling for open dropdown menu */
  .navbar .navbar-nav .dropdown .dropdown-menu.show {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  /* Ensure dropdown items are always visible when dropdown is shown */
  .navbar .navbar-nav .dropdown .dropdown-menu.show .dropdown-item {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .navbar .navbar-nav .dropdown .dropdown-item {
    padding: 8px 15px; /* Increase touch target size */
    text-align: center !important; /* Ensure center alignment */
    font-size: 18px;
    color: #555;
    display: block;
    margin: 5px auto; /* Add spacing between items */
    border-radius: 4px; /* Rounded corners for touch targets */
    transition: background-color 0.2s ease;
    justify-content: center; /* For flex items */
    align-items: center; /* For flex items */
    position: relative !important; /* Ensure relative positioning for accordion items */
  }
  
  /* Ensure all dropdown menu items are center aligned */
  .navbar .navbar-nav .dropdown .dropdown-menu li,
  .navbar .navbar-nav .dropdown .dropdown-menu a {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }
  
  /* Better visual feedback for dropdown items */
  .navbar .navbar-nav .dropdown .dropdown-item:active,
  .navbar .navbar-nav .dropdown .dropdown-item:focus,
  .navbar .navbar-nav .dropdown .dropdown-item.clicked,
  .navbar .navbar-nav .nav-link.clicked {
    background-color: rgba(0, 0, 0, 0.05);
    outline: none;
  }
  
  /* Visual feedback for clicked state */
  .navbar .navbar-nav .dropdown .dropdown-item.clicked,
  .navbar .navbar-nav .nav-link.clicked {
    position: relative;
    background-color: rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease;
  }
  
  /* Special styling for navigation transitioning state */
  body.navigating .navbar-collapse.show {
    /* Force menu to stay visible during page transitions */
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9999 !important;
    transition: none !important;
    animation: none !important;
  }
  
  /* Add loading indicator for clicked items */
  .navbar .navbar-nav .dropdown .dropdown-item.clicked::after,
  .navbar .navbar-nav .nav-link.clicked::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #333;
    animation: spin 0.6s linear infinite;
  }
  
  @keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
  }
  
  /* Fix for click isolation */
  .navbar-nav .dropdown,
  .navbar-nav .dropdown-menu,
  .navbar-nav .dropdown-item {
    touch-action: manipulation; /* Optimize for touch */
  }
}

/* Medium-sized screen dropdown styles (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Fix for dropdown display on medium screens */
  .navbar .navbar-nav .dropdown {
    position: relative;
  }
  
  /* Force the dropdown-menu to have proper desktop styling */
  .navbar .navbar-nav .dropdown .dropdown-menu {
    height: auto !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background-color: #F5F3EE !important;
    border: none !important;
    min-width: 200px !important;
    list-style: none !important;
    padding: 0.75rem 0 !important;
    margin: 0 !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    border-radius: 6px !important;
    z-index: 1100 !important;
  }
  
  /* Show dropdown menu on hover */
  .navbar .navbar-nav .dropdown:hover .dropdown-menu,
  .navbar .navbar-nav .dropdown:focus-within .dropdown-menu,
  .navbar .navbar-nav .dropdown.active .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow: visible !important;
  }
  
  /* Reset dropdown item styling for medium screens */
  .navbar .navbar-nav .dropdown .dropdown-item {
    text-align: left !important;
    justify-content: flex-start !important;
    padding: 0.5rem 1.5rem !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
  }
  
  /* Enable hover on dropdown toggle */
  .navbar .navbar-nav .dropdown .dropdown-toggle {
    pointer-events: auto;
    cursor: pointer;
  }
}

/* Global dropdown hover behavior to work on all desktop sizes */
.navbar .navbar-nav .dropdown:hover .dropdown-menu {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Increase z-index for navbar to ensure it's above other elements */
.navbar {
  z-index: 9999 !important;
}

/* Desktop dropdown styles - restore hover behavior */
@media (min-width: 1200px) {
  /* Fix for dropdown display on desktop */
  .navbar .navbar-nav .dropdown {
    position: relative;
  }
  
  /* Force the dropdown-menu to have height: auto on desktop */
  .navbar .navbar-nav .dropdown .dropdown-menu {
    height: auto !important;
    transition-delay: 0.1s;
  }
  
  /* Ensure the dropdown toggle has the pointer cursor */
  .navbar .navbar-nav .dropdown .dropdown-toggle {
    cursor: pointer;
  }
}

@media (min-width: 992px) {
  /* Center align navbar items */
  .navbar-nav {
    align-items: center;
  }
  
  /* Enable hover on dropdown toggle */
  .navbar .navbar-nav .dropdown .dropdown-toggle {
    pointer-events: auto;
  }
}

@media (min-width: 992px) {
  /* Show dropdown menu on hover */
  .navbar .navbar-nav .dropdown:hover .dropdown-menu,
  .navbar .navbar-nav .dropdown:focus-within .dropdown-menu,
  .navbar .navbar-nav .dropdown.active .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    height: auto !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0.75rem 0 !important;
    position: absolute !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    border-radius: 6px !important;
    z-index: 1100 !important;
    /* Override any inline styles */
    inset: auto !important;
    transform: none !important;
    max-height: none !important;
    min-height: auto !important;
  }
}
  
  /* Reset dropdown positioning for desktop */
  @media (min-width: 992px) {
    .navbar .navbar-nav .dropdown .dropdown-menu {
      position: absolute !important;
      top: 100% !important;
      left: 0 !important;
      background-color: #F5F3EE !important;
      border: none !important;
      min-width: 200px !important;
      list-style: none !important;
      padding-left: 0 !important;
    }
  }
  
  /* Remove bullets from dropdown items on desktop */
  @media (min-width: 992px) {
    .navbar .navbar-nav .dropdown .dropdown-menu li,
    .navbar .navbar-nav .dropdown .dropdown-menu ul {
      list-style-type: none !important;
      list-style-image: none !important;
      list-style-position: outside !important;
      padding-left: 0 !important;
      margin-left: 0 !important;
    }
    
    /* Fix any ::before or ::marker pseudo-elements */
    .navbar .navbar-nav .dropdown .dropdown-menu li::before,
    .navbar .navbar-nav .dropdown .dropdown-menu li::marker {
      content: none !important;
      display: none !important;
    }
  }
  
@media (min-width: 992px) {
  /* Reset dropdown item styling for desktop */
  .navbar .navbar-nav .dropdown .dropdown-item {
    text-align: left !important;
    justify-content: flex-start !important;
    padding: 0.5rem 1.5rem !important;
    font-size: 16px !important;
  }
  
  /* Fix dropdown toggle arrow positioning for desktop */
  .navbar .navbar-nav .dropdown .dropdown-toggle::after {
    position: absolute !important; 
    right: 0.5rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

/* Apply mobile styles at different breakpoints */
@media (max-width: 575.98px) {
  .navbar-expand-sm .navbar-toggler {
    display: block;
  }
  
  .navbar-expand-sm .navbar-collapse {
    display: none;
  }
  
  .navbar-expand-sm .navbar-collapse.show {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #F5F3EE;
    padding: 1rem;
    /* padding-top: calc(70px + 2rem); */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1040;
    overflow-y: hidden;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .navbar-expand-sm .navbar-nav {
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin: 20px auto;
    padding: 0;
    max-width: 320px;
  }
  
  .navbar-expand-sm .navbar-nav .nav-item {
    margin: 15px 0;
    text-align: center;
    width: 100%;
  }
  
  .navbar-expand-sm .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    justify-content: center;
    display: inline-block;
  }
  
  .navbar-expand-sm .navbar-actions {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    gap: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md .navbar-toggler {
    display: block;
  }
  
  .navbar-expand-md .navbar-collapse {
    display: none;
  }
  
  .navbar-expand-md .navbar-collapse.show {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #F5F3EE;
    padding: 1rem;
    /* padding-top: calc(70px + 2rem); */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1040;
    overflow-y: hidden;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .navbar-expand-md .navbar-nav {
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin: 20px auto;
    padding: 0;
    max-width: 320px;
  }
  
  .navbar-expand-md .navbar-nav .nav-item {
    margin: 0;
    text-align: center;
    width: 100%;
  }
  
  .navbar-expand-md .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    justify-content: center;
    display: inline-block;
  }
  
  .navbar-expand-md .navbar-actions {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    gap: 0.5rem;
  }
  
  .navbar-expand-md .navbar-actions a,
  .navbar-expand-md .navbar-actions button {
    margin: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg .navbar-toggler {
    display: block;
  }
  
  .navbar-expand-lg .navbar-collapse {
    display: none;
  }
  
  .navbar-expand-lg .navbar-collapse.show {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #F5F3EE;
    padding: 1rem;
    /* padding-top: calc(70px + 2rem); */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1040;
    overflow-y: hidden;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .navbar-expand-lg .navbar-nav {
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin: 20px auto;
    padding: 0;
    max-width: 320px;
  }
  
  .navbar-expand-lg .navbar-nav .nav-item {
    margin: 0;
    text-align: center;
    width: 100%;
  }
  
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    justify-content: center;
    display: inline-block;
  }
  
  .navbar-expand-lg .navbar-actions {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    gap: 0.5rem;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl .navbar-toggler {
    display: block;
  }
  
  .navbar-expand-xl .navbar-collapse {
    display: none;
  }
  
  .navbar-expand-xl .navbar-collapse.show {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #F5F3EE;
    padding: 1rem;
    padding-top: calc(70px + 2rem);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1040;
    overflow-y: hidden;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .navbar-expand-xl .navbar-nav {
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin: 20px auto;
    padding: 0;
    max-width: 320px;
  }
  
  .navbar-expand-xl .navbar-nav .nav-item {
    margin: 0;
    text-align: center;
    width: 100%;
  }
  
  .navbar-expand-xl .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    justify-content: center;
    display: inline-block;
  }
  
  .navbar-expand-xl .navbar-actions {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    gap: 0.5rem;
  }
}


/**
 * Finalized CSS for Call Center Solution Layout
 * Add this to your theme's stylesheet or as a custom CSS block
 */

/* Section styling */
.call-center-solution {
  background-color: #F5F3EE;
  padding: 4rem 0;
}

/* Container styling for proper width control */
.call-center-solution .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Grid layout - ensuring responsive columns */
.call-center-solution .grid {
  display: grid;
  gap: 2rem;
  width: 100%;
  justify-content: center;
}

/* Desktop: Three columns */
@media (min-width: 992px) {
  .call-center-solution .grid {
    grid-template-columns: repeat(3, minmax(auto, 520px));
    justify-content: center;
  }
}

/* Tablet: Two columns */
@media (min-width: 768px) and (max-width: 991px) {
  .call-center-solution .grid {
    grid-template-columns: repeat(2, minmax(auto, 520px));
    justify-content: center;
  }
}

/* Mobile: Single column */
@media (max-width: 767px) {
  .call-center-solution .grid {
    grid-template-columns: minmax(auto, 520px);
    justify-content: center;
  }
}

/* Column styling */
.solution-column {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #eaeaea;
  padding: 24px;
  width: 100%;
  margin-bottom: 20px;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Using existing maxwidth class for width control */
.solution-column.maxwidth {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.call-center-button-container{
  display: flex;
  justify-content: center;
}

/* Image containers */
.column-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  margin-bottom: 1.5rem;
}

.column-image img {
  max-width: 80%; /* Reduced by 20% as requested */
  height: auto;
}

/* Heading styling - now left-aligned as requested */
.solution-column h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1A3A3A;
  text-align: left; /* Changed from center to left */
}

/* Lists styling */
.solution-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}

.solution-column li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

/* Icon styling */
.feature-icon {
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* CTA button styling */
.cta-button {
  text-align: center;
  margin-top: 3rem;
}

.cta-button a {
  display: inline-block;
  background-color: #1A3A3A;
  color: white;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button a:hover {
  background-color: #34B8C4;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
  .call-center-solution {
    padding: 3rem 0;
  }
  
  .solution-column {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .column-image {
    height: 100px;
  }
  
  .cta-button {
    margin-top: 2rem;
  }
}

/* Tablet-specific adjustments */
@media (min-width: 768px) and (max-width: 991px) {
  /* Add any tablet-specific styles here */
  .column-image {
    height: 110px;
  }
  
  /* Ensures the third column in tablet view is centered */
  .call-center-solution .grid > div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .call-center-solution h2 {
    font-size: 1.5rem;
  }
  
  .solution-column h3 {
    font-size: 1.25rem;
  }
}


/**
 * Integration Section Styles
 * CSS for GetBettr.ai and NetSapiens integration section
 */

/* Container styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Main section styling */
.integration-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left side with circles/images */
.image-container {
  flex: 1;
  position: relative;
  width: 100%;
  max-width: 500px;
}

.circle-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* Makes it responsive while maintaining aspect ratio */
}

.circle {
  position: absolute;
  background-color: #f0f0f0; /* Light grey background for placeholder */
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}


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

.circle-1 {
  width: 60%;
  height: 60%;
  left: 0;
  top: 0;
  z-index: 2;
}

.circle-2 {
  width: 80%;
  height: 80%;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Right side with text content */
.content-container {
  flex: 1;
  padding: 20px 0;
  width: 80%;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 30px;
  line-height: 1.2;
}

.description {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #4a4a4a;
}

/* Responsive styles */
@media (max-width: 992px) {
  .title {
      font-size: 2rem;
  }
  
  .circle-1 {
      width: 45%;
      height: 45%;
  }
  
  .circle-2 {
      width: 75%;
      height: 75%;
  }
}

@media (max-width: 768px) {
  .integration-section {
      flex-direction: column;
  }
  
  .image-container {
      max-width: 400px;
      order: 1;
      margin: 0 auto;
  }
  
  .content-container {
      order: 2;
      text-align: center;
  }
  
  .title {
      font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 20px 15px;
  }
  
  .image-container {
      max-width: 300px;
  }
  
  .title {
      font-size: 1.5rem;
  }
  
  .description {
      font-size: 0.9rem;
  }
  
  .circle-1 {
      width: 50%;
      height: 50%;
  }
  
  .circle-2 {
      width: 70%;
      height: 70%;
  }
}


.help_cta_widget {
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

  overflow: hidden;
  transition: transform 0.2s ease;
}



.help_cta_header {
  background: #0B363A;
  /* background: linear-gradient(75deg, #F2C443 2.74%, #7BD5DD 59.45%, #34B8C4 97.5%); */
  padding: 15px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.help_cta_header h3 {
  color: rgb(255, 255, 255)!important;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0 !important;
}

.help_cta_content {
  padding: 20px;
}

.help_cta_content p {
  color: #0B363A !important;
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* No button styles - using existing classes */

/* Media query for smaller screens */
@media (max-width: 480px) {
  .help_cta_widget {
      width: 100%;
  }
}