/* ========================================
   UTILITY-FIRST CLASSES
   Generic, reusable utilities for all pages
   ======================================== */

/* ========================================
   VISIBILITY & DISPLAY
   ======================================== */

/* Visibility - Mobile/Desktop */
.m-block {
    display: none!important;
}

.d-block {
    display: block!important;
}

.opacity-50 { opacity: 0.5 !important; }

/* Display Utilities */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.d-grid { display: grid !important; }


/* ========================================
   BORDER RADIUS
   ======================================== */

.r-5 { border-radius: 5px !important; }
.r-8 { border-radius: 8px !important; }
.r-10 { border-radius: 10px !important; }
.r-12 { border-radius: 12px !important; }
.r-15 { border-radius: 15px !important; }
.r-20 { border-radius: 20px !important; }
.r-25 { border-radius: 25px !important; }
.r-30 { border-radius: 30px !important; }
.r-45 { border-radius: 45px !important; }
.r-50 { border-radius: 50px !important; }
.r-full { border-radius: 50% !important; }

/* Rounded corners - specific sides */
.r-top-10 { border-radius: 10px 10px 0 0 !important; }
.r-top-15 { border-radius: 15px 15px 0 0 !important; }
.r-bottom-10 { border-radius: 0 0 10px 10px !important; }
.r-bottom-15 { border-radius: 0 0 15px 15px !important; }
.r-left-10 { border-radius: 10px 0 0 10px !important; }
.r-right-10 { border-radius: 0 10px 10px 0 !important; }


/* ========================================
   BORDERS
   ======================================== */

/* Border Width */
.border-0 { border: 0 !important; }
.border-1 { border: 1px solid !important; }
.border-2 { border: 2px solid !important; }
.border-3 { border: 3px solid !important; }
.border-4 { border: 4px solid !important; }

/* Border Sides */
.border-top { border-top: 1px solid !important; }
.border-top-2 { border-top: 2px solid !important; }
.border-top-3 { border-top: 3px solid !important; }
.border-top-4 { border-top: 4px solid !important; }

.border-bottom { border-bottom: 1px solid !important; }
.border-bottom-2 { border-bottom: 2px solid !important; }
.border-bottom-3 { border-bottom: 3px solid !important; }
.border-bottom-4 { border-bottom: 4px solid !important; }

.border-left { border-left: 1px solid !important; }
.border-left-2 { border-left: 2px solid !important; }
.border-left-3 { border-left: 3px solid !important; }
.border-left-4 { border-left: 4px solid !important; }

.border-right { border-right: 1px solid !important; }
.border-right-2 { border-right: 2px solid !important; }
.border-right-3 { border-right: 3px solid !important; }
.border-right-4 { border-right: 4px solid !important; }

/* Border Colors */
.border-blue { border-color: #00aeff !important; }
.border-darkred { border-color: #D32425 !important; }
.border-orange { border-color: #FFCC4D !important; }
.border-green { border-color: #9EF3CB !important; }
.border-darkgreen { border-color: #10b981 !important; }
.border-grey { border-color: #666 !important; }
.border-lightgrey { border-color: #e0e0e0 !important; }
.border-white { border-color: #ffffff !important; }
.border-black { border-color: #000000 !important; }
.border-purple { border-color: #C5D1FF !important; }

/* Combined Border Utilities */
.border-left-blue { border-left: 3px solid #00aeff !important; }
.border-left-orange { border-left: 3px solid #f1a62b !important; }
.border-left-green { border-left: 3px solid #44c962 !important; }

/* Responsive divider - vertical on desktop, horizontal on mobile */
.col-divider {
    border-left: 3px solid #00aeff !important;
    border-top: none !important;
    padding-left: 30px;
}

.border-left-blue-4 { border-left: 4px solid #00aeff !important; }
.border-left-orange-4 { border-left: 4px solid #fcae08 !important; }
.border-left-green-4 { border-left: 4px solid #44c962 !important; }


/* ========================================
   SPACING - MARGIN
   ======================================== */

/* Margin - All sides */
.m-0 { margin: 0 !important; }
.m-5 { margin: 5px !important; }
.m-10 { margin: 10px !important; }
.m-15 { margin: 15px !important; }
.m-20 { margin: 20px !important; }
.m-25 { margin: 25px !important; }
.m-30 { margin: 30px !important; }
.m-40 { margin: 40px !important; }

/* Margin Top */
.mt-0 { margin-top: 0 !important; }
.mt-5 { margin-top: 5px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0 !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }

/* Margin Left */
.ml-0 { margin-left: 0 !important; }
.ml-5 { margin-left: 5px !important; }
.ml-10 { margin-left: 10px !important; }
.ml-15 { margin-left: 15px !important; }
.ml-20 { margin-left: 20px !important; }
.ml-30 { margin-left: 30px !important; }
.ml-auto { margin-left: auto !important; }

/* Margin Right */
.mr-0 { margin-right: 0 !important; }
.mr-5 { margin-right: 5px !important; }
.mr-10 { margin-right: 10px !important; }
.mr-15 { margin-right: 15px !important; }
.mr-20 { margin-right: 20px !important; }
.mr-auto { margin-right: auto !important; }

/* Margin Horizontal */
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.mx-10 { margin-left: 10px !important; margin-right: 10px !important; }
.mx-20 { margin-left: 20px !important; margin-right: 20px !important; }

/* Margin Vertical */
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-10 { margin-top: 10px !important; margin-bottom: 10px !important; }
.my-20 { margin-top: 20px !important; margin-bottom: 20px !important; }


/* ========================================
   SPACING - PADDING
   ======================================== */

/* Padding - All sides */
.p-0 { padding: 0 !important; }
.p-5 { padding: 5px !important; }
.p-10 { padding: 10px !important; }
.p-15 { padding: 15px !important; }
.p-20 { padding: 20px !important; }
.p-25 { padding: 25px !important; }
.p-30 { padding: 30px !important; }
.p-40 { padding: 40px !important; }


.pb-0 { padding-bottom: 0px !important; }
.pb-5 { padding-bottom: 5px !important; }
.pb-10 { padding-bottom: 10px !important; }
.pb-15 { padding-bottom: 15px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pb-40 { padding-bottom: 40px !important; }

.pt-0 { padding-top: 0px !important; }
.pt-5 { padding-top: 5px !important; }
.pt-10 { padding-top: 10px !important; }
.pt-15 { padding-top: 15px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-40 { padding-top: 40px !important; }

.pl-0 { padding-left: 0px !important; }
.pl-5 { padding-left: 5px !important; }
.pl-10 { padding-left: 10px !important; }
.pl-15 { padding-left: 15px !important; }
.pl-20 { padding-left: 20px !important; }
.pl-30 { padding-left: 30px !important; }
.pl-40 { padding-left: 40px !important; }


/* ========================================
   WIDTH & HEIGHT
   ======================================== */

/* Width Percentages */
.w-25 { width: 25% !important; }
.w-33 { width: 33.333% !important; }
.w-50 { width: 50% !important; }
.w-55 { width: 55% !important; }
.w-60 { width: 60% !important; }
.w-65 { width: 65% !important; }
.w-70 { width: 70% !important; }
.w-75 { width: 75% !important; }
.w-80 { width: 80% !important; }
.w-90 { width: 90% !important; }
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }


/* Height */
.h-auto { height: auto !important; }
.h-100 { height: 100% !important; }


/* ========================================
   FLEXBOX UTILITIES
   ======================================== */

/* Flex Direction */
.flex { display: flex !important; }
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }

/* Justify Content */
.justify-start { justify-content: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-end { justify-content: flex-end !important; }
.justify-between { justify-content: space-between !important; }
.justify-around { justify-content: space-around !important; }

/* Align Items */
.items-start { align-items: flex-start !important; }
.items-center { align-items: center !important; }
.items-end { align-items: flex-end !important; }
.items-stretch { align-items: stretch !important; }

/* Gap Utilities */
.gap-5 { gap: 5px !important; }
.gap-10 { gap: 10px !important; }
.gap-15 { gap: 15px !important; }
.gap-20 { gap: 20px !important; }
.gap-30 { gap: 30px !important; }

/* Flex Grow/Shrink */
.flex-1 { flex: 1 !important; }
.flex-2 { flex: 2 !important; }
.flex-3 { flex: 3 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-grow-0 { flex-grow: 0 !important; }


/* ========================================
   TEXT ALIGNMENT
   ======================================== */

.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }


/* ========================================
   FONT SIZE UTILITIES
   ======================================== */


/* Named Font Sizes (Semantic) */
.text-xxs { font-size: 12px !important; line-height: 1.5 !important; }   /* Extra Extra Small */
.text-xs { font-size: 14px !important; line-height: 1.5 !important; }    /* Extra Small */
.text-sm { font-size: 15px !important; line-height: 1.5 !important; }    /* Small */
.text-base { font-size: 16px !important; line-height: 1.5 !important; }  /* Base/Normal */
.text-md { font-size: 17px !important; line-height: 1.5 !important; }    /* Medium */
.text-lg { font-size: 18px !important; line-height: 1.5 !important; }    /* Large */
.text-xl { font-size: 20px !important; line-height: 1.4 !important; }    /* Extra Large */
.text-xxl { font-size: 24px !important; line-height: 1.4 !important; }   /* Extra Extra Large */
.text-3xl { font-size: 28px !important; line-height: 1.3 !important; }   /* 3X Large */
.text-4xl { font-size: 32px !important; line-height: 1.3 !important; }   /* 4X Large */
.text-5xl { font-size: 36px !important; line-height: 1.2 !important; }   /* 5X Large */
.text-6xl { font-size: 40px !important; line-height: 1.2 !important; }   /* 6X Large */
.text-7xl { font-size: 60px !important; line-height: 1.2 !important; }   /* 7X Large */

/* Font Weight Utilities */
.font-thin { font-weight: 100 !important; }
.font-extralight { font-weight: 200 !important; }
.font-light { font-weight: 300 !important; }
.font-normal { font-weight: 400 !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.font-extrabold { font-weight: 800 !important; }
.font-black { font-weight: 900 !important; }

/* Text Transform */
.text-uppercase { text-transform: uppercase !important; }
.text-lowercase { text-transform: lowercase !important; }
.text-capitalize { text-transform: capitalize !important; }

/* ========================================
   SHADOWS
   ======================================== */

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }
.shadow { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important; }
.shadow-md { box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important; }
.shadow-lg { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important; }
.shadow-xl { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important; }
.shadow-none { box-shadow: none !important; }


/* ========================================
   POSITION
   ======================================== */

.relative { position: relative !important; }
.absolute { position: absolute !important; }
.fixed { position: fixed !important; }
.sticky { position: sticky !important; }


/* ========================================
   OVERFLOW
   ======================================== */

.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }
.overflow-visible { overflow: visible !important; }


/* ========================================
   CURSOR
   ======================================== */

.cursor-pointer { cursor: pointer !important; }
.cursor-default { cursor: default !important; }

/* ========================================
   END OF UTILITIES
   ======================================== */


/* ========================================
   LAYOUT COMPONENTS (Legacy)
   ======================================== */

/* Section - Full width container */
.section {
    width: 100%;
    padding: 0px 0px;
}

/* Block - Centered content container */
.block {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    text-align: left;
}

.block-narrow{
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
    text-align: left;
}

.block-shadow {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    height: fit-content;
}

.space{
    height: 40px;
}

.border-grey{
    border: 2px solid #e0e0e0;
}


/* Footer - Centered footer container */
.footer {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 4rem 2rem 2rem;
    color: #ffffff;
    font-size: 12px;
}

.footer a{
    color: #ffffff;
}

.footer ul li{
    padding-bottom: 0px!important;
    margin-bottom: 0px!important;
}

/* Logo */
.logo img {
    height: 50px;
    width: auto;
}

/* Column Layouts */
.col-2 {
    display: flex;
    gap: 3rem;
}

.col-2 > * {
    flex: 1;
}

.col-3 {
    display: flex;
    gap: 2rem;
}

.col-3 > * {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* .col-3 > div {
    flex: 1;
    display: flex;
    flex-direction: column;
} */

.col-4 {
    display: flex;
    gap: 2rem;
}

.col-4 > * {
    flex: 1;
}


/* Grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}


/* Typography Classes */

.headline {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.subheadline {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.megatitle{
    font-size: 35px!important;
    margin-bottom: 15px;
    padding: 0 0px;
    font-weight: 900;
    line-height: 1.3;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-transform: capitalize;
}

.subtitle {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.smalltitle{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.title-sm{
    font-size: 16px!important;
    font-weight: 700!important;
    line-height: 1.2!important;
    margin-bottom: 5px!important;
    text-transform: capitalize;
}

.text-normal{
    font-weight: normal !important;
}

.text-xl{
    font-size: 18px !important;
}

/* Alignment */
.center{
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
}

.left{
    text-align: left !important;
    margin-left: 0;
    margin-right: auto;
}

.right{
    text-align: right !important;
    margin-left: auto;
    margin-right: 0;
}

.top{
    display: flex;
    align-items: flex-start;
}

.bottom{
    display: flex;
    align-items: flex-end;
}

.middle{
    display: flex;
    align-items: center;
}

/* Padding */

.p-0 {
    padding: 0px !important;
}

.p-5 {
    padding: 5px !important;
}

.p-10{
    padding: 10px;
}

.p-20{
    padding: 20px;
}

.p-40{
    padding: 40px;
}


  /* ========================================
     GENERIC ICON MODIFIER CLASSES
     Use these classes on <li> elements instead of position-based selectors
     ======================================== */
  
  /* Icon modifiers - Add these classes to individual <li> items */
  .icon-setting::before {
    background: url('images/icon-setting.svg') no-repeat center !important;
  }

  .icon-mobile::before {
    background: url('images/icon-mobile.svg') no-repeat center !important;
  }

  .icon-plus::before {
    background: url('images/icon-plus.svg') no-repeat center !important;
  }

  .round-tick-list li{
    line-height: 20px;
    padding-bottom: 5px;
  }

  .round-tick-list li::before {
    background: url('images/icon-check-green.svg') no-repeat center!important;
    background-size: contain!important; /* ensure image scales nicely */

  }


  .cross-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .cross-list li {
    position: relative;
    margin: 8px 0;
    padding-left: 32px; /* space for cross image */
    line-height: 24px;
  }
  
  .cross-list li::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-size: contain; /* scale icon */
  }
  
/* Numbered list with round badge (no wrapper needed) */
.number-list{
    --badge: 48px;      /* circle diameter (adjust to your design) */
    --gap: 20px;        /* space between badge and text */
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: item; 
  }
  
  .number-list li{
    position: relative;
    margin: 22px 0;
    padding-left: calc(var(--badge) + var(--gap));
    line-height: 1.6;
    min-height: var(--badge);              /* row never shorter than the badge */
    align-items: center;                   /* vertically center text with icon */
  }
  
  /* numbered badge */
  .number-list li::before{
    counter-increment: item;
    content: counter(item, decimal-leading-zero);
    position: absolute;
    left: 0;
    width: var(--badge);
    height: var(--badge);
    border-radius: 50%;
    background: #00aeff;                     /* Niagawan blue */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: calc(var(--badge) * 0.33);
    letter-spacing: .5px;
  }
  
  /* make <b> behave like normal inline text */
  .number-list li b{
    display: inline;
    font-weight: 800;
  }

  /* List */
.tick-list {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0;
  }
  
  .tick-list li {
    position: relative;
    margin: 8px 0;
    padding-left: 32px; /* space for tick image */
    line-height: 21px;
    padding-bottom: 5px;
  }
  
  .tick-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: url('images/icon-tick.png') no-repeat center;
    background-size: contain; /* ensure image scales nicely */
  }

  .yellow-bullet-list {
    list-style: none; /* remove default bullets */
    margin-left: 0;
    padding-left: 20px;
  }
  
  .yellow-bullet-list li {
    position: relative;
    margin-bottom: 8px;
  }
  
  .yellow-bullet-list li::before {
    content: "•"; /* custom bullet */
    color: #FFC107; /* yellow color */
    font-size: 2em; /* size of the bullet */
    position: absolute;
    left: -20px; /* position it to the left of text */
    top: -14px; /* adjust vertical alignment */
  }

  .blue-tick-list li::before {
    content: "\f00c";
        font-family: FontAwesome;
        display: inline-block;
        /* margin-left: -35px; */
        width: 10px;
        padding-right: 30px;
        color: #00aeef;}


  /* Circle tick list */
  .circle-tick-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .circle-tick-list li {
    position: relative;
    margin: 8px 0;
    padding-left: 32px; /* space for tick image */
    line-height: 21px;
    padding-bottom: 5px;
  }
  
  .circle-tick-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: url('images/icon-circle-tick.svg') no-repeat center;
    background-size: contain; /* ensure image scales nicely */
  }
  
  /* color variants */
  .number-list.orange li::before{ background:#F1A62B; }
  .number-list.green  li::before{ background:#44C962; }
  
  /* Step list - smaller version for simple steps */
  .step-list {
    --badge: 32px;      /* smaller circle diameter */
    --gap: 16px;        /* space between badge and text */
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: item;
  }
  
  .step-list li {
    position: relative;
    margin: 12px 0;     /* smaller margin */
    padding-left: calc(var(--badge) + var(--gap));
    line-height: 1.4;   /* tighter line height */
    min-height: var(--badge);
    display: flex;
    align-items: center!important; /* center text vertically with badge */
  }
  
  /* numbered badge for steps */
  .step-list li::before {
    counter-increment: item;
    content: counter(item, decimal-leading-zero);
    position: absolute;
    left: 0;
    width: var(--badge);
    height: var(--badge);
    border-radius: 50%;
    background: #00aeff;                     /* Green color for steps */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: calc(var(--badge) * 0.4);
    letter-spacing: .5px;
  }


  /* Badge */
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;

    
}

.badge-green {
    background: #CAF9E1;
    color: #06724F !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
    border: 2px solid #06724F;
}

.badge-darkblue {
    background: #E1F5FF;
    color: #143EE2 !important;
    box-shadow: 0 4px 12px rgba(20, 62, 226, 0.25);
    border: 2px solid #143EE2;
}

  /* ========================================
     CUSTOM AIN CSS - DESKTOP STYLES
     ======================================== */
  

  /* Layout Components */
  .red {
      color: red;
  }
  
  .border {
      border: 1px solid red;
  }
  
  .space-2 {
      height: 6rem;
  }
  
  .space-4 {
      height: 12rem;
  }
  
  /* Flex Utility Classes */
  .flex-1 { flex: 1; }  /* 1 part */
  .flex-2 { flex: 2; }  /* 2 parts */
  .flex-3 { flex: 3; }  /* 3 parts */
  
  /* Background Utilities */
  .bg-light-blue {
      background: #f6f9fe;
  }

  
  
  .bg-dark {
      background-color: #1a1a1a;
      color: #ffffff!important;
  }

  .bg-darkblue {
    background-color: #171F28 !important;
    color: #ffffff!important;
  }

  .bg-light-grey{
    background-color: #F8F9FA;
  }
  
  /* ========================================
     ICON AND TEXT LAYOUT STYLES
     ======================================== */
  
  /* Base with-icon class */
  .with-icon {
      position: relative;
      padding-left: 28px; /* creates indent for the tick */
      line-height: 1.7;
      margin-bottom: -5px!important;
  }

  /* Compact Feature Block - like the image */
  .feature-block {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
      padding: 15px;
      background: #f8f9fa;
      border-radius: 12px;
      border-left: 4px solid #00aeff;

  }

  /* Pos-page feature block */
  .feature-icon {
      width: 3rem;
      height: 3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
  }

  .feature-content {
      flex: 1;
      text-align: left;
      justify-content: left;
      align-items: left;
  }
  
  .with-icon::before {
      content: "";
      position: absolute;
      left: 0;
      top: 2px;
      width: 20px;
      height: 20px;
      background-size: contain; /* ensure image scales nicely */
      background-repeat: no-repeat;
      background-position: center;
  }


  .grey-block{
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #ffffff;
  }
  
  /* Green tick variant (default) */
  .with-tick-green::before {
      background-image: url('images/icon-tick.png');
  }
  
  /* Blue tick variant */
  .with-tick-blue::before {
      background-image: url('images/icon-tick-blue.svg');
  }
  
  
  /* Icon text layout */
  .icon-text {
      display: flex;
      align-items: flex-start; /* align top of image with text */
      gap: 1rem; /* space between image and text */
  }
  
  .icon {
      width: 4rem;
      height: 4rem;
      flex-shrink: 0; /* don't let it shrink */
  }


  .button-options {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 0px; 
    padding: 0px;
}

.button-options .option {
    padding-bottom: 10px;
    width: 90%;
}

.option a {
    display: block;
    width: 100%;
    height: 100%;
}

.option a:hover {
    transform: translateY(-2px);
}
  
  /* ========================================
     GENERIC FEATURE ICON SIZES
     ======================================== */
  
  /* Large feature icon - Use with .feature-icon-lg class */
  .feature-icon-lg {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      color: #00aeff;
      display: block;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
  }
  
  /* Statistics card styling */
  .stats-card {
      background: #fff;
      /* background: rgba(0, 174, 255, 0.2);  */
      border: 1px solid rgba(252, 253, 253, 0.695);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 20px;
      border-radius: 15px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
  }



  /* Google Review Customer Logo */
  /* ============================================ */
    /* GENERIC REVIEW & TESTIMONIAL CARDS */
    /* Use on any page for reviews/testimonials */
  /* ============================================ */

  /* Customer Logo Container */
  .customer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }

  .logo-img {
    width: 60%;
    height: 70%;
  }

  /* Subtitle Box with centered flex */
  .subtitle-box {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: -25px;
  }

  /* Generic flex centering utility */
  .flex-center {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }
  
  /* Review Card - Generic styling */
  .review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
  }

  /* Star Rating Component */
  .star-rating {
      display: flex;
      gap: 5px;
      margin-bottom: 15px;
      padding-top: 10px;
  }

  .star-icon {
    font-size: 1rem;
    color: #ffc107;
    display: block;
  }
  
  /* Generic italic text - use for quotes, reviews, testimonials */
  .text-italic {
      margin: 0 0 15px 0;
      line-height: 1.5;
      font-style: italic;
      font-size: 16px;
  }
  
  /* Reviewer Info Section */
  .reviewer-info {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 10px;
  }
  
  /* Avatar Circle */
  .avatar {
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
  }
  
  /* Generic bold dark text - use for names, labels, emphasis */
  .text-bold-dark {
      font-weight: bold;
      color: #333;
      padding-bottom: 5px;
  }
  
  .review-source {
      font-size: 12px;
      color: #666;
      padding-bottom: 0px;
  }


/* Customer Logo Container - Desktop: All in one row */
  .customer-logo-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  .customer-logo-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
  }

  /* Generic extra-small image - use for logos, icons, small graphics */
  .img-xs {
    width: 95px;
    max-width: 110px;
    height: auto;
    object-fit: contain;
  }

  .logo-auto-width {
    width:auto!important;
  }



.badge-text{
    background-color: #ECF1F7;
    /* background: linear-gradient(150deg, #E6F8FF 0%, #FFFFFF 100%); */

    margin-bottom: 10px;
    padding: 6px 12px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px; 
    font-weight:600;
    color: #000;
}

  /* ========================================
     GENERIC TIMELINE & ACHIEVEMENT COMPONENTS
     Use these classes on any page
     ======================================== */
  
  /* Timeline Box - Generic left-bordered box */
  /* Generic blue left border box - use for timelines, callouts, highlights, notes */
  .border-left-blue {
     text-align: left;
     margin-bottom: 19px;
     padding-left: 20px;
     padding-bottom: 1px;
     border-left: 4px solid #00aeff;
     color: #000!important;
    }

    .border-left-darkred {
        border-left: 4px solid #D32425;
       }
  
  /* Professional Achievements Timeline */
  .achievements-timeline {
    border-radius: 10px;
    padding: 10px 10px 0px 10px!important;
  }

  /* Achievement Item - Horizontal flex layout */
  .achievement-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 20px;
      padding-bottom: 0px!important;
      border-radius: 10px;
  }
  
  /* Achievement Icon Circle */
  .achievement-icon {
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      background: rgba(0, 174, 255, 0.2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(0, 174, 255, 0.3);
  }
  
  /* ========================================
     ICON SIZE UTILITIES
     Use with color classes: .text-blue, .text-orange, etc.
     ======================================== */
  
  /* Icon Sizes */
  .icon-xs {
      font-size: 0.875rem; /* 14px */
      display: inline-block;
  }
  
  .icon-sm {
      font-size: 1rem; /* 16px */
      display: inline-block;
  }
  
  .icon-md {
      font-size: 1.25rem; /* 20px */
      display: inline-block;
  }
  
  .icon-lg {
      font-size: 1.5rem; /* 24px */
      display: inline-block;
  }
  
  .icon-xl {
      font-size: 2rem; /* 32px */
      display: inline-block;
  }
  
  .icon-xxl {
      font-size: 3rem; /* 48px */
      display: inline-block;
  }
  
  .icon-xxxl {
      font-size: 4rem; /* 64px */
      display: inline-block;
  }
  
  /* Combined Icon Size + Color Classes (for backwards compatibility) */
  .icon-xs-blue { font-size: 0.875rem; color: #00aeff; display: inline-block; }
  .icon-sm-blue { font-size: 1rem; color: #00aeff; display: inline-block; }
  .icon-md-blue { font-size: 1.25rem; color: #00aeff; display: inline-block; }
  .icon-lg-blue { font-size: 1.5rem; color: #00aeff; display: inline-block; }
  .icon-xl-blue { font-size: 2rem; color: #00aeff; display: inline-block; }
  .icon-xxl-blue { font-size: 3rem; color: #00aeff; display: inline-block; }
  
  .icon-xs-orange { font-size: 0.875rem; color: #f1a62b; display: inline-block; }
  .icon-sm-orange { font-size: 1rem; color: #f1a62b; display: inline-block; }
  .icon-md-orange { font-size: 1.25rem; color: #f1a62b; display: inline-block; }
  .icon-lg-orange { font-size: 1.5rem; color: #f1a62b; display: inline-block; }
  .icon-xl-orange { font-size: 2rem; color: #f1a62b; display: inline-block; }
  .icon-xxl-orange { font-size: 3rem; color: #f1a62b; display: inline-block; }
  
  .icon-xs-green { font-size: 0.875rem; color: #44c962; display: inline-block; }
  .icon-sm-green { font-size: 1rem; color: #44c962; display: inline-block; }
  .icon-md-green { font-size: 1.25rem; color: #44c962; display: inline-block; }
  .icon-lg-green { font-size: 1.5rem; color: #44c962; display: inline-block; }
  .icon-xl-green { font-size: 2rem; color: #44c962; display: inline-block; }
  .icon-xxl-green { font-size: 3rem; color: #44c962; display: inline-block; }
  
  .icon-xs-white { font-size: 0.875rem; color: #ffffff; display: inline-block; }
  .icon-sm-white { font-size: 1rem; color: #ffffff; display: inline-block; }
  .icon-md-white { font-size: 1.25rem; color: #ffffff; display: inline-block; }
  .icon-lg-white { font-size: 1.5rem; color: #ffffff; display: inline-block; }
  .icon-xl-white { font-size: 2rem; color: #ffffff; display: inline-block; }
  .icon-xxl-white { font-size: 3rem; color: #ffffff; display: inline-block; }
  
  .icon-xs-black { font-size: 0.875rem; color: #000000; display: inline-block; }
  .icon-sm-black { font-size: 1rem; color: #000000; display: inline-block; }
  .icon-md-black { font-size: 1.25rem; color: #000000; display: inline-block; }
  .icon-lg-black { font-size: 1.5rem; color: #000000; display: inline-block; }
  .icon-xl-black { font-size: 2rem; color: #000000; display: inline-block; }
  .icon-xxl-black { font-size: 3rem; color: #000000; display: inline-block; }

  /* Journey/Story Section Card */
  .journey-section {
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
    color: #000!important;
  }

  
  /* ========================================
     PAGE-SPECIFIC: ABOUT PAGE
     ======================================== */
  
  /* About page list spacing */
  .about-list li {
      margin-bottom: 20px;
  }
  
  /* Social media icons */
  .social-media-box a {
      color: white;
      font-size: 2rem;
  }


  /* ========================================
     TEXT STYLING
     ======================================== */
  
  /* Wavy text underline */
  .wavy-text {
      text-decoration-line: underline;
      text-decoration-style: wavy;
      text-decoration-color: #fcae08;
      text-decoration-thickness: 3px;
      text-underline-offset: 5px;
  }

  .text-yellow{
    text-decoration-color: #fcae08;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
  }

  .straight-text {
    text-decoration-line: underline;
    text-decoration-style: solid;
}

.double-underline-text {
    text-decoration-line: underline;
    text-decoration-style: double;
}
  
  .smalltitle-compact {
      font-size: 18px;
      margin-bottom: 5px;
      font-weight: 600;
  }
  
  /* ========================================
     IMAGE STYLES
     ======================================== */
  
  .img-block-small {
      width: 50%;
      height: auto;
  }
  
  .img-testimonial {
      width: 30%;
      height: auto;
      max-width: 80px;
      display: block;
      object-fit: contain;
      margin: 0 auto;
  }


   /* ========================================
     GENERIC PRODUCT COMPARISON ROW
     Use on any page for product comparisons
     ======================================== */

    /* Product Row Layout */
    .product-row { 
    display: grid; 
    grid-template-columns: 320px 1fr; 
    align-items: center; 
    gap: 24px; 
    padding: 28px 0;
    }

    .product-options { 
        display: grid; 
        grid-template-columns: 1fr 1px 1fr; 
        gap: 24px; 
    }

    .product-options .option{
        margin-left:20px;
        text-align: center!important;
    }

    .product-options .option:first-child{ 
        border-right: 2px solid #eee; 
    }

    .product-options .option:first-child,
    .product-options-3 .option:first-child { 
        margin-left: 0;
    }

    .product-options .text-xs, .product-options-3 .text-xs{ 
        color: #64748B!important; 
        padding-top: 10px; 
    }
  
  /* ========================================
     TESTIMONIAL CARD STYLES - TESTIMONIAL PAGE DESKTOP
     ======================================== */
  
  .testimonial-card {
      position: relative;
      border-radius: 12px;
      min-height: 250px;
      color: white;
      background-image: url('images/banner-2.webp');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      height: auto;
      padding: 30px;
  }
  
  .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
  }
  
  .testimonial-card > * {
      position: relative;
      z-index: 2;
  }
  
  .testimonial-card .col-2 {
      align-items: flex-start;
      margin-top: auto;
  }


  /* ========================================
     NIAGASCAN CARD STYLES
     ======================================== */
     .video-wrapper:hover {
        box-shadow: 0 30px 80px rgba(0, 168, 232, 0.25);
        transform: translateY(-8px);
    }

    /* Image Wrapper */
    .image-wrapper {
        position: relative;
        width: 100%;
        aspect-ratio: 4/3;
        background: linear-gradient(135deg, #f5f7fa 0%, #f0f4f8 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

        
    .card {
        position: relative;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .card-border-blue {
        border: 3px solid #00aeff;
    }

    .card-border-yellow {
        border: 3px solid #f1a62b;
    }

    .solution-card .card-content {
        padding: 30px 40px!important;
    }

    .card-border-blue .image-wrapper  {
        border-bottom: 3px solid #00aeff;
    }

    .card-border-yellow .image-wrapper  {
        border-bottom: 3px solid #f1a62b;
    }


  
  /* ========================================
     E-INVOICE STEPS SECTION STYLES - EINVOICE PAGE DESKTOP
     ======================================== */
  
  .e-invoice-steps {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      margin-top: 40px;
  }
  
  .step-block {
      background: white;
      border-radius: 12px;
      padding: 10px;
  }
  
  .step-number {
      width: 45px;
      height: 45px;
      background: #00aeff;
      color: white;
      border-radius: 50%;
      display: flex!important;
      align-items: center!important;
      justify-content: center!important;
      font-size: 16px;
      font-weight: 600!important;
      line-height: 1!important;
      margin-bottom: 20px!important;
      margin-left: auto;
      margin-right: auto;
  }
  
  .step-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  
  .step-image {
      text-align: center;
      margin-bottom: 20px;
  }
  
  /* Generic medium rounded image - use for steps, features, content images */
  .img-md-rounded {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
  }
  
  .step-text {
      text-align: center;
  }
  
  /* ========================================
     TOGGLE BUTTON STYLES - EINVOICE PAGE DESKTOP
     ======================================== */
  
  .toggle-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin: 20px 0;
  }
  
  .toggle-btn {
      padding: 12px 24px;
      background: #00aeff;
      color: #ffffff;
      border-radius: 10px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      min-width: 200px;
      box-shadow: 0 4px 12px rgba(35, 55, 64, 0.3);
  }
  
  .toggle-btn:hover {
      background: #ffffff;
      color: #00aeff;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 174, 255, 0.3);
  }
  
  .toggle-btn.active {
      background: #00aeff;
      color: white;
      box-shadow: 0 4px 12px rgba(0, 174, 255, 0.3);
  }

  /* ========================================
     HORIZONTAL TAB STYLES - CAREER PAGE DESKTOP  
     ======================================== */
  
  .tab-navigation {
      display: flex;
      justify-content: center;
      margin: 30px 0;
      border-bottom: 2px solid #e0e0e0;
      border-radius: 15px 15px 0 0;
      padding: 10px;
  }
  
  .tab-btn {
      padding: 15px 30px;
      background: transparent;
      color: #00AEFF;
      border: none;
      border-radius: 10px 10px 0 0;
      font-size: 20px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin: 0 5px;
      position: relative;
      min-width: 180px;
  }
  
  .tab-btn:hover {
      background: #e9ecef;
      color: #00aeff;
      transform: translateY(-2px);
  }
  
  .tab-btn.active {
      background: #00aeff;
      color: #ffffff;
      /* box-shadow: 0 4px 12px rgba(0, 174, 255, 0.3); */
      transform: translateY(-2px);
  }
  
  .tab-btn.active::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      right: 0;
      height: 3px;
      background: #00aeff;
      border-radius: 2px;
  }
  
  .tab-content {
      background: #ffffff;
      border-radius: 0 0 15px 15px;
      overflow: hidden;
  }
  
  .tab-panel {
      display: none;
      padding: 40px;
      animation: fadeIn 0.3s ease-in-out;
  }
  
  .tab-panel.active {
      display: block;
  }
  
  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(10px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }


  .career-block{
    padding: 20px;
    border-radius: 15px;
    /* box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1); */
    border: 1px solid #BBBBBB;
    background-color: #ffffff!important;
  }


  .career-block > div, .career-block > p{
    text-align: left!important;
    margin-left: 0!important;
    margin-right: auto!important;
  }

  /* ========================================
     JOB DETAILS POPUP STYLES - CAREER PAGE DESKTOP
     ======================================== */
  
  .clickable-details {
      transition: all 0.3s ease;
  }
  
  .clickable-details:hover {
      color: #0088cc !important;
      text-decoration: underline;
      transform: translateX(5px);
  }
  
  .job-modal-content {
      position: relative;
      background-color: #ffffff;
      margin: 5% auto;
      padding: 0;
      border-radius: 15px;
      width: 90%;
      max-width: 800px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      animation: slideIn 0.3s ease-out;
  }
  
  @keyframes slideIn {
      from {
          opacity: 0;
          transform: translateY(-50px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  .job-details {
      padding: 40px;
  }
  
  /* Generic extra-large centered heading - use for main titles */
  .heading-xl-centered {
      color: #000;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 10px;
      text-align: center;
  }
  
  /* Generic blue badge - use for labels, tags, categories */
  .badge-blue {
      background: #f2f8ff;
      color: #00aeff;
      padding: 8px 16px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 14px;
      display: inline-block;
      margin-bottom: 30px;
      text-align: center;
      width: 100%;
  }
  
  .job-section {
      margin-bottom: 30px;
  }
  
  /* Generic underlined blue heading - use for section titles */
  .heading-underlined-blue {
      color: #333;
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 15px;
      border-bottom: 2px solid #00aeff;
      padding-bottom: 5px;
  }
  
  /* Generic secondary text - use for descriptions, subtitles */
  .text-secondary {
      color: #666;
      line-height: 1.6;
      margin-bottom: 15px;
  }
  
  .job-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  
  .job-list li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 10px;
      color: #666;
      line-height: 1.5;
  }
  
  .job-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: #00aeff;
      font-weight: bold;
      font-size: 16px;
  }
  
  .job-actions {
      display: flex;
      gap: 15px;
      justify-content: center;
      margin-top: 40px;
      padding-top: 30px;
      border-top: 1px solid #e0e0e0;
  }
  
  .btn-secondary {
      background-color: #6c757d;
      color: #ffffff;
      padding: 12px 24px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  
  .btn-secondary:hover {
      background-color: #5a6268;
      transform: translateY(-2px);
  }
  
  .linkedin-btn {
      background-color: #0077b5 !important;
      border-color: #0077b5 !important;
  }
  
  .linkedin-btn:hover {
      background-color: #005885 !important;
      border-color: #005885 !important;
  }
  
  .linkedin-icon {
      display: inline-block;
      background-color: #ffffff;
      color: #0077b5;
      font-weight: bold;
      font-size: 14px;
      padding: 2px 4px;
      border-radius: 2px;
      margin-right: 8px;
  }

  /* ========================================
     SOCIAL CONNECT CARD STYLES - CAREER PAGE DESKTOP
     ======================================== */
  
  .social-connect-card {
      background-color: #FFF7EA;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 6px 6px 0px 0px #D4D4D4;
      /* border: 4px solid #D4D4D4; */
  }
  
  .social-icons {
      display: flex;
      gap: 15px;
      align-items: center;
  }
  
  .social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 20px;
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .social-icon.facebook {
      background-color: #1877f2;
  }
  
  .social-icon.linkedin {
      background-color: #0077b5;
  }
  
  .social-icon.instagram {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  }

  /* ========================================
     YEARLY ACTIVITIES GALLERY STYLES - CAREER PAGE DESKTOP
     ======================================== */
  
  .year-navigation {
      display: flex;
      justify-content: center;
      margin: 30px 0;
      gap: 10px;
      flex-wrap: wrap;
  }
  
  .year-btn {
      padding: 12px 24px;
      background: transparent;
      color: #666;
      border: 2px solid #e0e0e0;
      border-radius: 25px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      min-width: 80px;
  }
  
  .year-btn:hover {
      background: #f8f9fa;
      color: #00aeff;
      border-color: #00aeff;
      transform: translateY(-2px);
  }
  
  .year-btn.active {
      background: #00aeff;
      color: #ffffff;
      border-color: #00aeff;
      box-shadow: 0 4px 12px rgba(0, 174, 255, 0.3);
  }
  
  .year-content {
      margin-top: 30px;
  }
  
  .year-panel {
      display: none;
      animation: fadeIn 0.3s ease-in-out;
  }
  
  .year-panel.active {
      display: block;
  }
  
  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin: 20px 0;
  }
  
  .gallery-item {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
  
  /* Generic tall cover image - use for galleries, cards, features */
  .img-cover-tall {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.3s ease;
  }
  
  .gallery-item:hover .img-cover-tall {
      transform: scale(1.05);
  }
  
  .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
      color: white;
      padding: 20px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
  }
  
  /* ========================================
     GENERIC PACKAGE CARD STYLES
     Use on any page for pricing/package cards
     ======================================== */

  /* Package Card Container */
  .package-card {
      margin: 20px 25px;
      display: flex;
      flex-direction: column;
      height: 100%;
  }

  
  /* Price Card Banner Header - Exact Curve Match */
  .card-banner {
      background: #00aeff;
      color: white;
      text-align: center;
      padding: 20px 25px;
      border-radius: 15px 15px 0 0;
      font-weight: 700;
      font-size: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin: 0;
      line-height: 1.2;
      /* Override block-shadow padding to fill full width */
      margin-left: -20px;
      margin-right: -20px;
      margin-top: -20px;
  }

  .price {
    text-transform: none!important;
  }

  
  /* ribbon style */
  .popular-ribbon {
      position: absolute;
      top: -15px;
      right: -15px;
      background: #00aeff;
      color: white !important;
      padding: 8px 20px !important;
      font-size: 14px !important;
      font-weight: bold !important;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
      border-radius: 15px;
      z-index: 10;
  }

  

  .badge{
    text-align: left;
    margin-left: 0!important;
    margin-right: auto;
}

    .badge-text{
      padding: 5px 15px;
    }


    /* Price page combo card */
    .combo-container{
        /* padding: 5px; */
        text-align: left!important;
        justify-content: left!important;
        align-items: left!important;
    }

    .combo-container .title, .combo-container .subtitle{
        text-align: left!important;
    }

    /* Price page add-on card */
    .add-on-card {
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        padding: 10px;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .add-on-card-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 10px;
        flex: 1;
        justify-content: center;
        gap: 10px;
    }

    /* Generic small contained image - use for products, icons, thumbnails */
    .img-sm-contain {
        height: 130px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .img-md-contain {
        height: 180px;
        object-fit: contain;
        margin-bottom: 10px;
    }
  
  /* Trust & Guarantee Section */
  .trust-section {
      margin-top: 60px;
      text-align: center;
  }
  
  .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
  }
  
  .trust-box {
      background: #1E73BE!important;
      padding: 15px 15px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      align-content: center;
  }
  
  .trust-box-large {
      grid-column: 1 / -1;
      margin-top: 20px;
      padding: 30px 20px;
  }
  
  .trust-text {
      font-size: 16px;
      font-weight: 500;
      color: #ffffff;
      line-height: 1.4;
      text-align: center;
  }
  
  /* Price Card Content */
  .card-content {
      border-radius: 0 0 15px 15px;
      box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
      background-color: #ffffff;
      padding: 20px 30px;
      /* Override block-shadow padding to fill full width */
      margin-left: -20px;
      margin-right: -20px;
      margin-bottom: -20px;
      display: flex;
      flex-direction: column;
      flex: 1;
  }

  .card-content-round{
    border-radius: 15px!important;
  }

  .card-content-combo{
    border: 1px solid #BBBBBB!important; 
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2); 
  }
  
  /* Make the tick list flexible to fill available space */
  .card-content ul.tick-list {
      flex: 1;
  }


  /* Image Gallery Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #0e0909;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f1f1f1;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    padding: 16px;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #f1f1f1;
    font-size: 16px;
    background-color: rgba(0,0,0,0.7);
    padding: 8px 16px;
    border-radius: 20px;
}


/* Clickable Image Styles - Desktop */
.clickable-image {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.overlay-text {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

  
  /* ========================================
     LAYOUT UTILITY CLASSES
     ======================================== */
  
  /* Feature Blocks Equal Height - NiagaPlus */
  .col-3 > div , .col-2 > div , .col-4 > div {
      display: flex;
      flex-direction: column;
  }
  
  .col-3 .block , .col-2 .block , .col-4 .block {
      height: 100%;
      display: flex;
      flex-direction: column;
  }
  
  .col-3 .block > div:last-child , .col-2 .block > div:last-child , .col-4 .block > div:last-child {
      margin-top: auto;
  }
  
  /* Two Column Equal Height - NiagaPlus */
  .col-2 .block-shadow, .col-4 .block-shadow {
      height: 100%;
      display: flex;
      flex-direction: column;
  }
  
  .col-2 .block-shadow > div:last-child {
      margin-top: auto;
  }
  
  /* ========================================
     DESKTOP ORDER RESET
     ======================================== */
  
  /* Reset order on desktop to maintain natural HTML flow */
  .order-1-mobile,
  .order-2-mobile {
      order: 0 !important; /* Reset order on desktop - 0 is the default natural order */
  }


/* Check list */
.check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.check-list li {
    position: relative;
    margin: 8px 0;
    padding-left: 32px; /* space for cross image */
    line-height: 24px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: url('images/icon-check.svg') no-repeat center;
    background-size: contain; /* scale icon */
}

/* Text utility classes */
.text-disclaimer {
    font-size: 12px;
    color: #7d7d7d;
    font-weight: 500;
}

.text-justify {
    text-align: justify;
    font-size: 16px;
    line-height: 1.7rem;
        margin: 10px 0 0 0;
    padding-left: 1rem;

}

/* Nested Ordered Lists - Proper Hierarchy */
ol ol {
    padding-left: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

ol ol ol {
    padding-left: 2rem;
}

/* Nested Unordered Lists - Show Bullets */
.nested-ul {
    list-style: disc;
    padding-left: 2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.nested-ul li {
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 14px;
    color: #7d7d7d;
    font-weight: 300;
}

/* Column auto layout */
.col-auto {
    display: flex;
    gap: 2rem;
}

.col-auto > * {
    flex: 0 0 auto; /* don't grow, don't shrink, size = content */
}


/* Text Colors */
.text-blue {
    color: #00aeff!important;
}

.text-darkblue {
    color: #005885!important;
}

.text-green {
    color: #22c55e!important;
}

.text-darkgreen {
    color: #008E5B!important;
}

.text-red {
    color: #ff0000!important;
}

.text-lightyellow {
    color: #FADB33!important;
}

.text-darkred {
    color: #8b0000!important;
}

.text-orange {
    color: #f1a62b!important;
}

.text-darkorange{
    color: #CA7C00!important;
}

.text-white{
    color: #ffffff!important;
}

.text-black{
    color: #000000!important;
}

.text-gray{
    color: #666!important;
}

.text-gradient-blue{
    background: linear-gradient(to right, #00aeff, #2575FF);
}
.text-gradient{
    -webkit-background-clip: text;
    background-clip: text;  /* ← Missing: Standard property for modern browsers */
    -webkit-text-fill-color: transparent;
    color: transparent;  /* ← Missing: Fallback for browsers that don't support text-fill-color */
    display: inline-block;  
    padding-top:15px;
}



/* 45-degree Slash Effect */
.strike-diagonal {
    position: relative;
    display: inline-block;
}

.strike-diagonal::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 3px;
    background-color: #ff0000;
    transform: translateY(-50%) rotate(-15deg);
}

/* Background Colors */
.bg-white {
    background-color: #ffffff;
}

.bg-red {
    background-color: #FF0000;
    color: #ffffff;
}

.bg-grey {
    background-color: #efefef;
}

.bg-blue {
    background-color: #00aeff;
    color: #ffffff;
}

.bg-gradient-blue-white {
    background: linear-gradient(to bottom, #f2f8ff, #ffffff);
}

.bg-lightblue {
    background-color: #f2f8ff;
}

.bg-lightgrey {
    background-color: #ECF1F7;
}


.bg-gradient-green{
    background: linear-gradient(90deg, #EBFDF5, #ffffff);
}

.bg-gradient-yellow{
    background: linear-gradient(90deg, #FFFBED, #ffffff);
}

.bg-gradient-purple{
    background: linear-gradient(90deg, #ECF0FF, #ffffff);
}

.bg-yellow {
    background-color: #f1a62b;
    color: #000;
}

.bg-lightyellow {
    background-color: #FADB33;
    color: #000;
}

.bg-blue .title,
.bg-blue .subtitle,
.bg-blue .headline,
.bg-blue .subheadline,
.bg-blue h1,
.bg-blue h2,
.bg-blue h3,
.bg-blue h4,
.bg-blue h5,
.bg-blue h6 {
    color: #ffffff;
}

.bg-orange {
    background-color: #f1a62b;
    color: #ffffff;
}

.bg-orange .title,
.bg-orange .subtitle,
.bg-orange .headline,
.bg-orange .subheadline,
.bg-orange h1,
.bg-orange h2,
.bg-orange h3,
.bg-orange h4,
.bg-orange h5,
.bg-orange h6 {
    color: #ffffff;
}

/* Button */
.btn-green {
    background-color: #44c962;
    color: #ffffff;
}

.btn-orange {
    background-color: #f1a62b;
    color: #ffffff;
}

.btn-grey {
    background-color: #bbbbbb;
    color: #ffffff;
}

.btn-white i {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    margin-right: 10px;
}

.btn-blue {
    background-color: #00aeff;
    color: #ffffff;
}

.btn-round {
    border-radius: 20px;
}

.btn-shadow {
    box-shadow: 0 0 10px 0 redgba(0, 0, 0, 0.3);
}

.btn-whiteborder{
    border: 2px solid #ffffff;
}

.btn-orangeborder{
    border: 2px solid #fcae08;
}


.round-border{
    border-radius: 15px;
    border: 1px solid #bbbbbb;
    padding: 8px 20px;
    background-color: #ffffff!important;
}

/* Menu */
.menu {
    display: flex;
}

.menu nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.menu nav ul li a {
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menu nav ul li a:hover {
    background-color: #00aeff;
    color: #ffffff;
}

/* Desktop Header - Show desktop, hide mobile */
.header-desktop {
    display: flex;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 20px;
    justify-content: space-between;
    align-items: center;
}

.header-mobile {
    display: none;
}

/* Image */
.img-home {
    width: 45%;
    height: auto;
    margin-top: -20px; 
    /* clip-path: inset(0 0 15% 0)!important; */
}

.firstfold-button {
    margin-top: 0px; 
    padding-top: 20px;
    margin-left: -60px;
}

.img-main {
    width: 70%;
    height: auto;
}

.img-block {
    width: 80%;
    height: auto;
}

/* .img-block-small {
    width: 50%;
    height: auto;
} */

.img-container-fill {
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.img-fill {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.img-rounded {
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1;
    width: 300px;
    height: 300px;
}

/* Higlight */
/* Brush-style oval highlight (auto-stretches with text) */
/* Brush-style oval highlight (thin, #F1A62B) */
.marker-orange{
    position: relative;
    display: inline-block;
    line-height: 1;
    padding: .12em .65em;
    z-index: 0;
  }
  
  .marker-orange::before{
    content: "";
    position: absolute;
    left: -.65em;
    right: -.65em;
    top: 50%;
    height: 1.30em;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' preserveAspectRatio='none'%3E%3Cpath d='M5,20 C5,9 22,4 50,4 C78,4 95,9 95,20 C95,31 78,36 50,36 C22,36 5,31 5,20 Z' fill='none' stroke='%23F1A62B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8,9 Q 20,6 33,8' fill='none' stroke='%23F1A62B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    pointer-events: none;
    z-index: -1;
  }
  
  
.marker-red{
    position: relative;
    display: inline-block;
    z-index: 0;
}

  /* curved brush underline */
.marker-red::after{
    content:"";
    position:absolute;
    left:-.35em;
    right:-.35em;
    bottom:-.08em;
    height:.55em;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M3 15 C 35 9, 65 9, 97 12' fill='none' stroke='%23D63A1E' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M92 12 Q 96 13, 97 14' fill='none' stroke='%23D63A1E' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:center;
    background-size:100% 100%;
    pointer-events:none;
    z-index:-1;
}
    

/* Login */
.login {
    display: flex;
    align-items: center;
}

/* Copyright */
.copyright {
    text-align: center;
    padding: 20px;
    color: #ffffff;
    font-size: 12px;
    border-top: 1px solid #efefef;
    margin-top: 20px
}

/* Optin Form */
.optin {
    display: flex;
    gap: 15px;
    margin: 0 auto;
    justify-content: center;
}

.optin input[type="text"] {
    padding: 12px 15px;
    width: 250px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}


.optin button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    border:2px solid #ffffff;
}

.faq{
    --primary:#00AEFF;
    --q-bg:#f3f6fb;
    --a-bg:#fff;
    --radius:12px;
  }
  .faq .question{
    position:relative;
    cursor:pointer;
    padding:16px 44px 16px 20px;
    margin-bottom: 5px;
    background:var(--q-bg);
    border-radius:var(--radius);
    font-weight:500;
    line-height:1.5;
    transition:background .2s ease;
  }
  .faq .question:hover{ background:#eaf1fb; }
  .faq .question::after{
    content:"▸";
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%) rotate(0deg);
    font-size:20px;
    color:var(--primary);
    transition:transform .2s ease;
  }
  .faq .question.open::after{ transform:translateY(-50%) rotate(90deg); }
  .faq .answer{
    overflow:hidden;
    max-height:0;
    opacity:0;
    margin:0 8px;
    background:var(--a-bg);
    border-radius:0 0 var(--radius) var(--radius);
    transition:max-height .3s ease, opacity .2s ease, margin-top .2s ease;
    padding:0 16px;
  }
  .faq .answer.show{
    opacity:1;
    padding-top:14px;
    padding-bottom:16px;
    margin-top:6px;
  }
  .faq .space{ display:none; }

/** Form **/

.form .form-group{
    margin-bottom: 15px;
}


/** Cart **/
.cart table{
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}
.cart table th{
    background-color: #f0f0f0;
    padding: 10px 20px;
    text-align: left;
    border-bottom: 1px solid #ffffff;
}
.cart table td{
    padding: 10px 20px;
    text-align: left;
}


/* ========================================
   VIDEO MODAL - DESKTOP STYLES
   ======================================== */

/* Video Modal - Desktop Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(2px);
}

.video-modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-modal-body {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
 
.video-modal[style*="display: block"]{
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
  

/* ========================================
   GENERIC INFO MODAL (TEXT POPUP)
   ======================================== */
.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
}

.info-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(2px);
}

.info-modal-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 70%;
    max-height: 80vh;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 24px 24px 20px 24px;
    overflow-y: auto;
}

.info-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #666;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.info-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.12);
    transform: scale(1.05);
}


.info-modal-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

.video-modal[style*="display: block"] .video-modal-content{
    top: auto;
    left: auto;
    transform: none;
    width: calc(100% - 32px);
    max-width: 1000px;
    max-height: 92vh;
    border-radius: 12px;
}

    /* ========================================
    PAGE-SPECIFIC: SALE TEMPLATE
    ======================================== */

/* Table Styling */
    /* Comparison Table Styling */
    .table-striped {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        overflow: hidden;
    }
    
    .table-striped thead th {
        padding: 1rem;
        text-align: left;
        font-weight: 600;
        font-size: 16px;
    }
    
    .table-striped thead th:first-child {
        background-color: #1A202C;
        color: #ffffff;
    }
    
    .table-striped thead th:nth-child(2) {
        background-color: #FEF1EF;
        color: #ffffff;
    }
    
    .table-striped thead th:nth-child(3) {
        background-color: #f6f9fe;
        color: #ffffff;
    }

    
    .table-striped tbody tr {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .table-striped tbody tr:last-child {
        border-bottom: none;
    }
    
    .table-striped tbody tr:nth-child(even) {
        background-color: #f9f9f9;
    }
    
    .table-striped tbody td {
        padding: 1rem 1.3rem;
        vertical-align: top;
        text-align: left;
    }
    
    .table-striped tbody td:first-child {
        background-color: #fff;
        color: #000;
        font-weight: 800;
    }
    
    .table-striped tbody td:nth-child(2) {
        background-color: #FEF1EF;
    }
    
    .table-striped tbody td:nth-child(3) {
        background-color: #f6f9fe;
    }
    
    .table-striped tbody td strong {
        display: block;
        margin-bottom: 0.5rem;
        font-size: 18px;
    }
    
    .table-striped tbody td .text-gray {
        font-size: 13px;
        line-height: 1.5;
        font-weight: 600;
    }
    .table-striped tbody td .text-point {
      /* text-align: left; */
      font-size: 23px;
      line-height: 1.5;
      font-weight: 900;
    }



    /* ------Niagatax Table Styling------ */

    .table-niagatax tbody td{
        background-color: #fff!important;
    }


    .thead-niagatax th {
        background-color: #1A202C!important;
        color: #ffffff!important;
    }


    
    /* Table styling end */

    .sale-einvoice .feature-block {
        background-color: #ffffff!important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }
    
      .sale-reviews .review-card {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border:none!important;
        border-top: 5px solid #00aeff!important;
      }
    

/* ========================================
   PAGE-SPECIFIC: POS DESKTOP
   ======================================== */

.featured-product {
    max-width: 970px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 3px solid #3b82f6;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
    position: relative;
}

.featured-product::before {
    content: '⭐ PALING POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbbf24;
    color: #1e293b;
    padding: 6px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.5);
}

.featured-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: center;
}

.featured-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-image img {
    max-width: 140%;
    height: auto;
    border-radius: 12px;
}


/* ========================================
   MOBILE RESPONSIVE STYLES
   All mobile and tablet breakpoints below
   ======================================== */

/* ========================================
   SPECIAL BREAKPOINT: 900px
   For NiagaPos product row tablet view
   ======================================== */
@media (max-width: 900px) {
    .product-row { 
        grid-template-columns: 2fr; 
        top: 0px;
        gap: 10px!important;
        }

    .product-row .media { 
        margin: 0 auto!important; 
        text-align: center;
        }

    .product-row .media img { 
            width: 60%; 
            }

    .product-options {
        align-items: flex-start !important;
        gap: 10px!important;
        padding: 10px!important;
    }

    .product-options .option { 
        content: top;
        display:grid;
        margin:0px!important;
        
        }

    .product-options .option:first-child{ 
        padding-right: 20px; 
        }

    .product-options .option > div { 
        text-align: center!important;}


        }
        

/* Mobile Responsive - Media Query for screens up to 768px */
/* ========================================
   MOBILE RESPONSIVE (768px and below)
   ======================================== */

@media (max-width: 768px) {

    .text-7xl { font-size: 40px !important; }   /* 7X Large */
    
    .w-100-mobile { width: 100% !important; }

    /* ========================================
       VISIBILITY & DISPLAY UTILITIES
       ======================================== */
    
    .m-block {
        display: block!important;
    }

    .d-block {
        display: none!important;
    }


    /* ========================================
       LAYOUT COMPONENTS
       ======================================== */
    .section {
        width: 100%;
        padding: 20px 0px;
    }

    .block {
        padding: 20px;
        margin: 0 0px;
    }

    .block-narrow{
        padding: 20px;
        margin: 0 0px;
    }

    .block-shadow {
        padding: 20px;
        margin: 10px 15px;
        /* Ensure proper mobile box-shadow behavior */
        overflow: hidden;
        position: relative;
    }
    
    .space {
        height: 20px;
    }
    
    .space-2 {
        height: 20px!important;
    }

    
    /* ========================================
       HEADER & NAVIGATION
       ======================================== */
    
    /* Mobile - Hide desktop header, show mobile header */
    .header-desktop {
        display: none;
    }
    
    .header-mobile {
        display: flex;
        padding: 0px 20px;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    /* Mobile Header - Left Menu Icon */
    .header-mobile .left {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .header-mobile .left i {
        font-size: 18px;
        color: #333333;
        transition: color 0.3s ease;
    }
    
    .header-mobile .left:hover i {
        color: #00aeff;
    }
    
    /* Mobile Header - Center Logo */
    .header-mobile .logo {
        position: absolute;
        left: 50%;
        margin-top: -25px!important;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .header-mobile .logo img {
        height: 35px;
    }
    
    /* Mobile Header - Right Login Icon */
    .header-mobile .right {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .header-mobile .right i {
        font-size: 18px;
        color: #333333;
        transition: color 0.3s ease;
    }
    
    .header-mobile .right:hover i {
        color: #00aeff;
    }
    
    /* Mobile Submenu Dropdown */
    .header-mobile .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 10px 10px;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        z-index: 9;
    }
    
    .header-mobile .submenu.active {
        max-height: 400px;
    }
    
    .header-mobile .submenu nav ul {
        list-style: none;
        margin: 0;
        padding: 0 20px;
        display: flex;
        flex-direction: column;
    }
    
    .header-mobile .submenu nav ul li {
        border-bottom: 1px solid #f5f5f5;
    }
    
    .header-mobile .submenu nav ul li:last-child {
        border-bottom: none;
    }
    
    .header-mobile .submenu nav ul li a {
        padding: 10px;
        text-align: left;
        display: block;
        color: #333333;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .header-mobile .submenu nav ul li a:hover {
        background-color: #f8f9fa;
        color: #00aeff;
    }
    
    .footer {
        padding: 0px 40px;
        text-align: left;
    }

    .footer p{
        font-size: 12px!important;
    }


    /* ========================================
       COLUMN LAYOUTS
       ======================================== */
    
    /* Column Layouts - Stack on mobile */
    .col-2,
    .col-3,
    .col-4 {
        flex-direction: column;
        gap: 1.5rem;
    }


    /* ========================================
       TYPOGRAPHY
       ======================================== */
    
    .headline {
        font-size: 28px;
        margin-bottom: 15px;
        padding: 0 0px;
    }
    
    .subheadline {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 0px;
        font-weight: 500;
    }

    .megatitle{
        font-size: 30px!important;
        margin-bottom: 15px;
        padding: 0 0px;
        font-weight: 900;
        line-height: 1.3;
    }
    
    .title {
        font-size: 24px;
        margin-bottom: 15px;
        padding: 0 0px;
    }
    
    .subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 0px;
    }
    
    .smalltitle {
        font-size: 18px;
        margin-bottom: 15px;
        padding: 0 0px;
    }

    .text-justify {
        font-size: 14px!important;
    }
    


    /* ========================================
       IMAGES & MEDIA
       ======================================== */
    
    .img-home {
        width: 90%!important;
        margin-top: -20px!important;
    }

    /* Firstfold */
    .firstfold-button {
        margin-top: -20px;
        margin-left: auto!important;
        margin-right: auto!important;
    }

    .img-main {
        width: 80%;
    }
    
    .img-block {
        width: 80%;
    }
    
    
    /* Padding adjustments */
    .p-40 {
        padding: 20px;
    }
    
    .p-20 {
        padding: 15px;
    }


    /* ========================================
       FORMS & INPUTS
       ======================================== */
    
    /* Optin Form - Mobile */
    .optin {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .optin input[type="text"],
    .optin button {
        width: 100%;
        text-align: center;
    }


    /* ========================================
       LISTS & ICONS
       ======================================== */
    
    /* Number Lists */
    .number-list li {
        margin: 14px 0;
        gap: 12px;
    }
    
    .number-list li::before {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    /* Step Lists */
    .step-list li {
        margin: 10px 0;
        font-size: 14px !important;
        line-height: 1.7 !important;
    }

    .step-list li::before {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    /* Round Tick List */
    .round-tick-list li {
        padding-bottom: 1px;
    }


    /* ========================================
       GLOBAL MOBILE ADJUSTMENTS
       ======================================== */
    
    p {
        font-size: 17px !important;
        font-weight: 500 !important;
        line-height: 1.7 !important;
    }

    .space-4 {
        height: 2rem;
    }


    /* ========================================
       PAGE-SPECIFIC: HOMEPAGE
       ======================================== */

    /* Achievements Section */
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-item,
    .journey-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 10px!important;
        border-radius: 10px!important;
        box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    }

    .journey-section {
        background-color: #f8f9fa;
        padding: 10px!important;
        border-radius: 10px!important;
        margin: 0 10px!important;
    }

    .stats-card {
        padding: 15px!important;
        border: none!important;
        border-top: none!important;
        margin: 10px!important;
    }

    /* Customer Logo Container */
    .customer-logo-container {
        flex-direction: column;
        gap: 20px;
    }

    .customer-logo-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        justify-items: center;
        align-items: center;
        width: 100%;
    }

    .img-xs {
        max-width: 80%;
    }

    .customer-logo-container .customer-logo-row:last-child {
        margin-top: -40px!important;
    }

    /* Google Review Cards */
    .google-review .google-review-card p {
        font-size: 15px!important;
    }

    .google-review .google-subtitle-box {
        gap: 1px!important;
        display: block!important;
        margin-bottom: -10px!important;
    }

    .google-subtitle-box .google-flex {
        display: flex!important;
        justify-content: center!important;
        text-align: center!important;
        align-items: center!important;
        padding: 5px!important;
    }

    .google-subtitle-box .google-flex:first-child {
        margin-bottom: -25px!important;
    }

     /* ========================================
       PAGE-SPECIFIC: POS
       ======================================== */
         /* Featured NiagaPosPro Swan - POS Page Mobile */
         .featured-product {
            margin: 30px auto 0;
            padding: 24px 16px;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .featured-product::before {
            font-size: 0.7rem;
            padding: 5px 16px;
            top: -12px;
        }

        .featured-content {
            grid-template-columns: 1fr;
            gap: 20px;
            
        }

        .featured-image img {
            max-width: 100%;
        }

    /* ========================================
       PAGE-SPECIFIC: ABOUT
       ======================================== */
    
    /* About page - Blue border box mobile adjustments */
    .border-left-blue {
        margin: 10px 0px;
        padding: 15px;
    }

    /* Responsive divider - horizontal line on mobile */
    .col-divider {
        border-left: none !important;
        border-top: 3px solid #00aeff !important;
        padding-left: 0 !important;
        padding-top: 30px;
        margin-top: 30px;
    }



    /* ========================================
       PAGE-SPECIFIC: PRICE
       ======================================== */
    
    /* Price package card - NiagaPos & NiagaPlus */
    .package-card {
        padding: 40px;
        height: fit-content;
        margin: 0px 0px !important;
        display: flex;
        flex-direction: column;
    }
       
    /* Mobile column order changes */
    .col-2 {
        flex-direction: column !important;
    }
    
    /* Ensure mobile ordering works */
    .col-2 .order-1-mobile {
        order: 1 !important;
    }
    
    .col-2 .order-2-mobile {
        order: 2 !important;
    }



    /* ========================================
       PAGE-SPECIFIC: E-INVOICE
       ======================================== */
    
    /* E-Invoice Steps */
    .e-invoice-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .toggle-buttons {
        /* flex-direction: row !important; */
        gap: 10px !important;
    }
    
    .toggle-buttons .space {
        display: none !important; /* Hide the space div on mobile */
    }
    
    .toggle-btn {
        min-width: auto !important; /* Allow buttons to size naturally */
        flex: 1 !important; /* Make buttons equal width */
    }
    
    /* Mobile order classes */
    .order-1-mobile {
        order: 1 !important; /* This makes it appear FIRST on mobile */
    }
    
    .order-2-mobile {
        order: 2 !important; /* This makes it appear SECOND on mobile */
    }
    
    /* Icon Overrides for E-Invoice */
    
    .with-icon {
        position: relative !important;
        padding-left: 28px !important;
        line-height: 1.7 !important;
    }

    .with-icon::before {
        content: "" !important;
        position: absolute !important;
        left: 0 !important;
        top: 2px !important;
        width: 20px !important;
        height: 20px !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }

    /* Mobile green tick variant */
    .with-tick-green::before {
        background-image: url('images/icon-tick.png') !important;
    }

    /* Mobile blue tick variant */
    .with-tick-blue::before {
        background-image: url('images/icon-tick-blue.svg') !important;
    }

     
     /* Mobile popular ribbon */
     .popular-ribbon {
         top: 10px !important;
         right: 10px !important;
         background: #00aeff !important;
         color: white !important;
         padding: 6px 15px !important;
         font-size: 12px !important;
     }


    /* ========================================
       CARDS & COMPONENTS
       ======================================== */
    
    /* Testimonial Cards */
    
    .testimonial-card {
        text-align: center;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 20px !important;
    }
    
    .testimonial-text,
    .testimonial-card .p-10,
    .testimonial-card .col-2 {
        text-align: center !important;
        width: 100% !important;
    }
    
    .testimonial-card .left {
        text-align: center !important;
    }
    
    /* Ensure testimonial container uses full width on mobile */
    .col-3 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Price Card Banner - Mobile Override */
    .card-banner {
        background: #00aeff;
        color: white;
        text-align: center;
        padding: 20px 20px;
        border-radius: 15px 15px 0 0;
        font-weight: 700;
        font-size: 16px;
        text-transform: uppercase;
        /* letter-spacing: 0.2px; */
        margin: 0;
        line-height: 1.2;
        /* Override block-shadow padding to fill full width */
        margin-left: -20px;
        margin-right: -20px;
        margin-top: -20px;
    }
    
    .col-2 > div {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Combo Card Styles */
    /* Generic responsive large image - use for products, showcases */
    .img-responsive-lg {
       width: 90%!important;
    }

    .combo .combo-container{
        margin-top: -20px!important;
    }

    /* Pro combo section */
    .pro-combo-section{
        padding-top: 0px!important;
        margin-top: -40px!important;
    }

    /* Add-on Card Styles */
    .add-on-section .col-3,
    .add-on-section .col-4{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .stats-section .col-4 {
        /* border: 1px solid red; */
        padding: 0px!important;
        margin-top: -20px!important;
    }

    .col-4 .stats-card {
       height: 95%!important;
       width: 90%!important;
       box-shadow: none!important;
       padding: 8px 10px!important;
    }

    .col-3 .add-on-card,
    .col-2 .add-on-card {
        border: 2px solid #e0e0e0;
        padding: 1px;
        height: fit-content;
        margin: 0px !important;
        display: flex;
        flex-direction: column;
    }

    .add-on-card-content{
        padding: 5px;
    }

    .img-sm-contain {
        height: 100px;
        object-fit: contain;
        margin-bottom: 10px;
    }


    /* ========================================
       PAGE-SPECIFIC: CAREER
       ======================================== */
    
    /* Horizontal Tab Styles */
    
    .tab-navigation {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 15px !important;
    }
    
    .tab-btn {
        min-width: auto !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        margin: 0 !important;
    }
    
    .tab-content {
        border-radius: 0 0 15px 15px !important;
    }
    
    .tab-panel {
        padding: 20px !important;
    }
    
    /* Job Details Popup */
    .job-modal-content {
        width: 95% !important;
        margin: 2% auto !important;
        max-height: 85vh !important;
    }
    
    .job-details {
        padding: 20px !important;
    }
    
    .heading-underlined-blue {
        font-size: 18px !important;
    }
    
    .job-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .btn-primary, .btn-secondary {
        width: 100% !important;
        padding: 15px 20px !important;
    }
    
    /* Social Connect Card */
    .social-connect-card {
        padding: 20px !important;
        margin: 10px 0 !important;
    }
    
    .social-title {
        font-size: 24px !important;
        text-align: center !important;
    }
    
    .social-subtitle {
        font-size: 14px !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .social-icons {
        justify-content: center !important;
        margin-bottom: 20px !important;
    }
    
    .social-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
    
    /* Yearly Activities Gallery */
    .year-navigation {
        flex-direction: column !important;
        gap: 10px !important;
        margin: 20px 0 !important;
    }
    
    .year-btn {
        width: 100% !important;
        padding: 15px 20px !important;
        font-size: 14px !important;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .gallery-item img {
        height: 200px !important;
    }
    
    .gallery-overlay {
        padding: 15px !important;
    }
    
    .gallery-title {
        font-size: 16px !important;
    }


    /* ========================================
       MODALS & GALLERIES
       ======================================== */
    
    /* Image Gallery Modal */
    .modal-content {
        width: 95%;
        height: 85vh;
    }

    .nav-arrow {
        font-size: 24px;
        padding: 12px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }

    /* Gallery Image Adjustments */
    .clickable-image {
        height: 180px;
        min-height: 180px;
        width: 100%;
    }

    /* Video Modal */
    .video-modal[style*="display: block"] .video-modal-body {
        padding-bottom: 0;
        height: calc(100vh - 96px);
        aspect-ratio: 9 / 16;
    }
    
    .video-modal[style*="display: block"] .video-modal-body iframe {
        position: static;
        width: 100%;
        height: 100%;
    }
    
    .video-modal[style*="display: block"] .video-modal-close {
        position: fixed;
        top: 12px;
        right: 12px;
        font-size: 22px;
        width: 36px;
        height: 36px;
        background-color: rgba(0,0,0,.55);
        z-index: 10002;
    }

} /* End of 768px Mobile Responsive */


/* ========================================
   SPECIAL BREAKPOINT: 520px
   For compact number/step list badges
   ======================================== */
@media (max-width: 520px){
    .number-list{ --badge: 60px; --gap: 16px; }
    .step-list{ --badge: 28px; --gap: 12px; }
}


/* ========================================
   SPECIAL BREAKPOINT: 480px
   For number list padding adjustment
   ======================================== */
@media (max-width: 480px){
    .number-list li{ padding-left: 76px; }
}


/* ========================================
   SPECIAL BREAKPOINT: 568px Landscape
   For video modal in landscape orientation
   ======================================== */
@media (max-width: 568px) and (orientation: landscape){
    .video-modal[style*="display: block"] .video-modal-body{
        height: auto;
        aspect-ratio: 16 / 9;
        padding-bottom: 0;
    }
}

/* ========================================
   COMPARISON TABLE STYLES
   ======================================== */
.comparison-table-wrapper {
    position: relative;
    margin: 10px 0;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    padding: 10px;
}

.comparison-table-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

.comparison-table-column {
    padding: 20px;
    min-height: 400px;
}

.comparison-table-column.manual {
    background-color: #E8F5E9; /* Light green */
}

.comparison-table-column.niagawan {
    background-color: #FFF9C4; /* Light yellow */
}

.comparison-table-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-table-list li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: #000;
    line-height: 1.6;
    font-size: 16px;
}

.comparison-table-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-size: 20px;
    font-weight: bold;
}

.comparison-vs-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .comparison-table-header {
        font-size: 18px;
        padding: 15px;
    }
    
    .comparison-table-column {
        padding: 15px;
        min-height: auto;
    }
    
    .comparison-vs-badge {
        top: -20px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .comparison-table-list li {
        font-size: 15px;
        padding: 10px 0;
        padding-left: 25px;
    }
}

/* ========================================
   TESTIMONIAL CAROUSEL
   ======================================== */
.testimonial-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 40px 0;
}

.testimonial-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-carousel-track {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    will-change: transform;
}

.testimonial-carousel-item {
    min-width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .testimonial-carousel-item {
        min-width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }
}

@media (min-width: 1024px) {
    .testimonial-carousel-item {
        min-width: calc(33.333% - 14px);
        flex: 0 0 calc(33.333% - 14px);
    }
}

.testimonial-card-carousel {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
}

.testimonial-card-carousel .testimonial-text {
    flex: 1;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
    color: #333;
}

.testimonial-card-carousel .testimonial-author {
    font-weight: bold;
    color: #000;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.testimonial-card-carousel .testimonial-role {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
}

.testimonial-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-carousel-btn {
    background: #00aeff;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background 0.3s ease;
}

.testimonial-carousel-btn:hover {
    background: #0090cc;
}

.testimonial-carousel-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.testimonial-carousel-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.testimonial-carousel-dot {
    width: 5px;
    height: 5px;
    padding: 0.5rem;
    border-radius: 50%;
    background: #cccccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.testimonial-carousel-dot.active {
    background: #00aeff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-carousel-item {
        min-width: 100%;
        flex: 0 0 100%;
    }
    
    .testimonial-card-carousel {
        padding: 20px;
    }
    .testimonial-carousel-dots {
        gap: 5px;
    }
    .testimonial-carousel-dot {
        padding: 1rem;
        width: 10px!important;
        height: 10px!important;
    }
}


/* ========================================
   INLINE VIDEO EMBED
   ======================================== */
.inline-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.inline-video .video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inline-video .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 30px;
    transition: all 0.3s ease;
    z-index: 2;
}

.inline-video:hover .video-play-button {
    background-color: rgba(0, 174, 255, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.inline-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========================================
   END OF STYLESHEET
   ======================================== */