/* Import from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

/* Root font setup */
:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Usage */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--light);
  color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
}
/* ---------------------------
   Variables
--------------------------- */
:root {
  /* Brand Colors */
  --primary: #f26522;
  --secondary: #fbb034;
  --primary-dark: #6C63FF; 

  --primary-orange: #f26522;
  --secondary-yellow: #fbb034;
  --brand-blue: #0d47a1;
  --brand-green: #00796b;
  --brand-navy: #0b2447;
  --gray: #ADB5BD;
  --light: #F8F9FA;
  --lighter: #FFFFFF;

  /* Combined stops used by linear-gradient */
  --tw-gradient-to: #eab308;
  --tw-gradient-from: #f97316;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);

  /* Backwards-compatible variable */
  --gradient-orange: linear-gradient(to right,var(--tw-gradient-stops));

  /* Backwards-compatible variable */
  --gradient-orange2: linear-gradient(to right,#f97316, #eab308);

  --footer-color:rgb(17 24 39 / var(--tw-bg-opacity, 1));

  /* Text Colors */
  --text-dark: #333333;
  --text-light: #ffffff;
  --text-muted: #666666;

  /* Backgrounds */
  --bg-light: #ffffff;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.15);

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 6px;

  /* Typography */
  --font-family: 'Arial', sans-serif;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 20px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;

  /* Transition */ 
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* footer  */
  --dark: #1A1A2E;
  --darker: #0F0F1B;
}

/* ---------------------------
   Reset
--------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.5;
}

/* ---------------------------
   Container
--------------------------- */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  overflow: hidden;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}
header{
    position:relative
}

/* ---------------------------
   Top Bar
--------------------------- */
.top-bar {
  background-color: var(--gradient-orange); /* fallback for old browsers */
  background-image: var(--gradient-orange);
  color: var(--text-light);
  font-size: var(--font-size-sm);
  padding: var(--space-sm) 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-left span {
  margin-right: var(--space-md);
}

.top-left span i {
  margin-right: 6px;
  color: var(--text-light);
}

.top-right a , .top-left a {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 10px;
  transition: var(--transition);
}

.top-right a:hover {
  text-decoration: underline;
}

.top-right a i {
  margin-right: 6px;
}

/* ---------------------------
   Navbar
--------------------------- */
.navbar {
  background: var(--bg-light);
  box-shadow: var(--shadow-md);
  padding: var(--space-md) 0;
  position: relative;
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 3rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}
.nav-links li{
    line-height: 30px;
}
.nav-links li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links li a:hover {
  color: var(--primary-orange);
}

.nav-links li a.active {
  color: var(--primary-orange);
}

.client-login {
  background-color: var(--gradient-orange2); /* fallback for old browsers */
  background-image: var(--gradient-orange2);
  color: var(--text-light) !important;
  border: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: bold;
  transition: var(--transition);
}

.client-login:hover {
  opacity: 0.9;
}

/* ---------------------------
   Mobile Menu
--------------------------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 2px;
  width: 20px;
  background: var(--text-dark);
  margin: 2.5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------------------------
   Responsive
--------------------------- */
@media (max-width: 992px) {
  .nav-links {
    gap: var(--space-md);
  }
}

@media (max-width: 968px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: -100%;
    background: var(--bg-light);
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: var(--space-lg) 0;
    gap: var(--space-md);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .client-login {
    margin-top: var(--space-sm);
  }

  .top-bar .container { 
    text-align: center;
    gap: var(--space-sm);
  }
}

@media (max-width: 776px) {
   .top-bar-links span{
     display: none;
   }
}

/* ############################## Hero Section ############# */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #059669 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}
.hero .hero-tag{
  font-weight: 600;

}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-content .highlight {
    color: #fbbf24;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    padding: 12px 25px;
    border-radius: .7rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #e55a30;
}

.btn-secondary {
    background: white;
    color: #1e3a8a;
    padding: 12px 25px;
    border-radius: .7rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: inset 0px 0px 4px 0px #00000040;
}

.btn-secondary:hover {
    background: #f1f5f9;
}

.hero-features {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.hero-features h3 {
    margin-bottom: 1rem;
    color: #fbbf24;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-list i {
    color: #10b981;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-container .hero-buttons{        
        justify-content: center;
    }
}
@media (max-width: 486px) {
     .hero-buttons{
        flex-direction: column;
     }
}
/* ############################## Hero Section ############# */
/* ############################## Client Bar ############# */
.client-bar{
    background-color: rgb(255 247 237 / 1);
    padding-top: 1rem;
    padding-bottom: 1rem;
}
/* ############################## Client Bar ############# */

/* ############################## business-solution new ############# */

.business-sol-cont{
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: rgb(255, 255, 255); 
}
.business-sol-cont .business-header{
    margin-bottom: 4rem;
}
.business-sol-cont .business-header h2{
    font-size: 2.25rem;
    line-height: 2.5rem; 
    color: rgb(31 41 55 / 1);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.business-sol-cont .business-header p{ 
    color: rgb(75 85 99 / 1);
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 48rem;
    margin: auto;
} 

.business-sol-cont .card-grid{
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 3rem;
}

@media (max-width: 1022px) {          
    .business-sol-cont .card-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 685px) {          
    .business-sol-cont .card-grid{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .page-banner h1 {
        font-size: 2.5rem !important; 
    }
}

.business-sol-cont .card-grid .card{
    background: #fff;    
    border: 1px solid #e5e7eb;
    border-radius: .5rem;
    padding: 1.5rem;
    box-shadow: 0 0 #0000,0 0 #0000,0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    position: relative; 
    transition-duration: 0.3s;
    /* transition: transform 0.35s ease, box-shadow 0.35s ease; */
}

.business-sol-cont .card-grid .card.popular{  
    border-color: rgb(249 115 22 /  1);
    border-width: 2px;
    transform: scale(1.04);
    position: relative;
}

.business-sol-cont .card-grid .card.popular::before { 
    content: "Most Popular";
    font-weight: 500;
    font-size: .75rem;
    line-height: 1rem;    
    padding: .25rem 1rem; 
    color: #fff;
    background-image: linear-gradient(to right, #f97316, #eab308);
    border-radius: 9999px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.business-sol-cont .card:hover{
    border-color: rgb(253 186 116 /  1);
    transform: scale(1.04);
}
.business-sol-cont .card .card-header{    
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: .5rem;
    gap: 10px;
}
.business-sol-cont .card .card-header h3{
    letter-spacing: -.025em;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.business-sol-cont .card .card-header .tag{
    color: rgb(234 88 12 /  1);
    font-size: .65rem;
    line-height: 1rem;
    font-weight: 600; 
    padding: 0.125rem 0.525rem;
    background-color: rgb(255 247 237 /  1);
    border:1px solid rgb(254 215 170);
    border-radius: 9999px; 
    min-width: 125px;
    text-align: center;
}
.business-sol-cont .card p{
    --tw-space-y-reverse: 0;
    margin-top: 0.375rem;
    margin-bottom: 0.375rem;
    color: rgb(75 85 99 /  1);
    font-size: .875rem;
    line-height: 1.625;
    padding-bottom: 0rem;
}
.business-sol-cont .card .prices .price{
    --tw-text-opacity: 1;
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.business-sol-cont .card .prices .gst{
    --tw-space-x-reverse: 0;
    margin-right: calc(.5rem * var(--tw-space-x-reverse));
    margin-left: calc(.5rem * calc(1 - var(--tw-space-x-reverse)));
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
    font-size: .875rem;
    line-height: 1.25rem;
}

.business-sol-cont .card .doc-tags{
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.business-sol-cont .card .card-content h4{
    color: rgb(31 41 55 / 1);
    font-weight: 600;
    font-size: .875rem;
    line-height: 1.25rem;
}
.business-sol-cont .card .card-content ul{
    list-style: none;
}
.business-sol-cont .card .card-content ul li{
    margin-top: 4px;
} 
.business-sol-cont .card .card-content ul li:last-child{
    margin-top: .25rem;
    margin-bottom: .25rem;
    color: rgb(107 114 128 / 1);
    margin-left: 1.5rem; 
    color: rgb(107 114 128 / 1);
    font-size: .875rem;
    line-height: 1.25rem;
}
.business-sol-cont .card .button-cont .mainButton{
    display: block;
    text-align: center;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    animation-duration: .3s;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    white-space: nowrap;
    height: 2.5rem;
    background-image: var(--gradient-orange2);
    text-decoration: none;
    border-radius: 8px;
    position:relative;
}
.business-sol-cont .card .button-cont{    
    position:relative;
}
.business-sol-cont .card .button-cont .number-label{
    transition-duration: .3s;
    position: absolute;
    left: 0;
    right: 0;
    top: -58px;
    color: rgb(255 255 255 /  1);
    font-size: .75rem;
    line-height: 1rem;
    padding: .5rem .75rem;
    background-color: rgb(31 41 55 /  1);
    border-radius: 10px;
    margin-left: .5rem;
    margin-right: .5rem;
    z-index: 99; 
    pointer-events: none; 
    text-align: center;   
    transform: translateY(-30px);
    opacity:0;
}
.business-sol-cont .card .button-cont .number-label::before{
    content: "";
    position: absolute;
    bottom:-7px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: rgb(31 41 55 /  1);
    rotate: 45deg;
}

.business-sol-cont .card:hover .button-cont .number-label{
    transform: translateY(0px) !important;
    opacity: 1 !important;
}
/* ############################## business-solution new ############# */


/* ############################## Business Ecosystem ############# */
.business-ecosystem{    
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: rgb(249 250 251 /  1)
}
.business-ecosystem .business-header{
    margin-bottom: 4rem;
}
.business-ecosystem .business-header h2{
    font-size: 2.25rem;
    line-height: 2.5rem; 
    color: rgb(31 41 55 / 1);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.business-ecosystem .business-header p{ 
    color: rgb(75 85 99 / 1);
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.business-ecosystem .grid{ 
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem; 
}
.business-ecosystem .business-card{ 
  padding: 1.5rem;
  background-color: var(--lighter);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
  animation-duration: .3s;
  border-radius: .5rem;
  border: .5px solid transparent;
  border-left-width: 4px;
  transition-duration: .3s;
}
.business-ecosystem .business-card:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.business-card.blue{
    border-left-color: rgb(59 130 246 /  1);
}
.business-card.blue .head svg{
    color:rgb(37 99 235);
}
.business-card.green{
    border-left-color: rgb(34 197 94 /  1);
}
.business-card.green .head svg{
    color:rgb(34 197 94 /  1);
}

.business-card.purple{
    border-left-color: rgb(168 85 247);
}
.business-card.purple .head svg{
    color:rgb(168 85 247);
}

.business-card.orange{
    border-left-color: rgb(249 115 22);
}
.business-card.orange .head svg{
    color:rgb(249 115 22);
}
.business-card .head{
    padding-bottom: .75rem;
    display: flex;
    flex-direction: column;
}
.business-card .head svg{     
    width: 2rem;
    height: 2rem;
    margin-bottom: .5rem;
}
.business-card .head h3{      
    --tw-space-y-reverse: 0;
    margin-top: calc(.375rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(.375rem * var(--tw-space-y-reverse));
    letter-spacing: -.025em;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.75rem;
} 

.business-card .list ul{
    list-style: none;    
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    font-size: .875rem;
    line-height: 1.5rem;
}

/* ############################## Business Ecosystem ############# */

/* ############################## why Choose Us ############# */
.why-chooseUs{    
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-image: linear-gradient(to right, #1e3a8a , #166534 );
    /* background-size: 200% 200%;
    animation: gradientFlow 6s infinite alternate ease-in-out; */
}
.why-chooseUs .chooseUs-header{
    margin-bottom: 4rem;
}
.why-chooseUs .chooseUs-header h2{
    font-size: 2.25rem;
    line-height: 2.5rem; 
    color: rgb(255, 255, 255);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.why-chooseUs .chooseUs-header p{ 
    color: rgb(255, 255, 255);
    max-width: 48rem;
    margin: auto;    
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.why-chooseUs .grid{ 
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem; 
}
.why-chooseUs .card{ 
  padding: 1.5rem;
  background-color: #ffffff1a; 
  animation-duration: .3s;
  border-radius: .5rem; 
  transition-duration: .3s;
  text-align: center;
  box-shadow: inset 0px 0px 5px 0px color(srgb 0 0 0 / 0.45);
}
.why-chooseUs .card:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
   box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
   background-color: #ffffff33;
}
.why-chooseUs .card .head {
    padding-bottom: 1rem;
}
.why-chooseUs .card .head .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;    
    height: 4rem;
    border-radius: 9999px;
    background-color: #3b82f633;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}
.why-chooseUs .card .head .icon svg{
    width: 2rem;
    height: 2rem;
    color: rgb(147 197 253 /  1);
}
.why-chooseUs .card .head h3{ 
    font-weight: 600;
    letter-spacing: -.025em;
    font-size: 1.25rem;
    line-height: 1.75rem; 
    color: rgb(219 234 254) ;
}
.why-chooseUs .card .content p{ 
    color: rgb(219 234 254);
}
.why-chooseUs .card .head .icon.green{
   background-color: #22c55e33;
}
.why-chooseUs .card .head .icon.purple{
   background-color: #a855f733;
}
.why-chooseUs .card .head .icon.green svg{ 
    color: rgb(134 239 172);
}
.why-chooseUs .card .head .icon.purple svg{ 
    color: rgb(216 180 254);
}

/* ############################## why Choose Us ############# */
/* ############################## Ongoing Compliances ############# */

.ongoing-compliances{    
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: rgb(249 250 251 /  1); 
}
.ongoing-compliances .grid{
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
}
@media (max-width: 1024px) { 
    .ongoing-compliances .grid{ 
        grid-template-columns:1fr;
    }
    .ongoing-compliances .inner-grid {    
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
        gap: 1rem;
        align-items: center;
    }
}
.ongoing-compliances .grid-col-1 .tag{
    color:rgb(154 52 18);    
    font-weight: 600;
    font-size: .75rem;
    line-height: 1rem;
    padding: .5rem 1rem; 
    border-radius: 9999px;
    background-color: rgb(255 237 213 / 1);
    display: inline-flex;    
    margin-bottom: 1rem;
}
.ongoing-compliances .grid-col-1 h2{
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color:rgb(31 41 55);
}
.ongoing-compliances .grid-col-1 p{ 
    color: rgb(75 85 99 / 1);
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
}
.ongoing-compliances .grid-col-1 button{
    background-image: var(--gradient-orange2);
    border-radius: 5px !important;
}
.ongoing-compliances .inner-grid {    
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    align-items: center;
}
.ongoing-compliances .grid-col-2 .inner-grid-card{
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;     
    box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
    padding: 1rem;
    background-color: rgb(255, 255, 255);
    border:0.5px solid transparent;
    border-left-width: 4px;
    border-radius: .5rem;
    border-left-color: rgb(59 130 246 /  1);
}

.ongoing-compliances .grid-col-2 .inner-grid-card svg{
    color:rgb(34 197 94);
    width: 1.25rem;
}
.ongoing-compliances .grid-col-2 .inner-grid-card span{
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    color:rgb(31 41 55);
    --tw-space-x-reverse: 0;
    margin-right: calc(.5rem);
    margin-left: calc(.5rem);
}

/* ############################## Ongoing Compliances ############# */
/* ############################## stats-section ############# */
.stats-section{
    background: linear-gradient(90deg, #0066ff, #00cc88);
}
.stats-section .container{
    color: #fff;
    text-align: center;
    padding: 25px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
.stat-box { 
    padding: 30px 20px;
    border-radius: 16px; 
    transition: transform 0.3s ease;
}
.stat-box:hover {
    transform: translateY(-8px) scale(1.05);
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}
/* Responsive */
@media (max-width: 600px) {
    .stat-number {
    font-size: 1.8rem;
    }
}
/* ############################## stats-section ############# */

/* ############################## footer-banner ############# */
.footer-banner{    
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: rgb(249 250 251 / 1);
    /* background-size: 200% 200%;
    animation: gradientFlow 6s infinite alternate ease-in-out; */
}
.footer-banner .header{
    margin-bottom: 3rem;
}
.footer-banner .header h2{
    font-size: 2.25rem;
    line-height: 2.5rem; 
    color: rgb(31 41 55);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.footer-banner .header p{ 
    color: rgb(31 41 55);
    max-width: 48rem;
    margin: auto;    
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.footer-banner .hero-buttons{
    justify-content: center;
}
/* ############################## footer-banner ############# */

/* ############################## footer ############# */
/* Footer */
#footer {
    background: linear-gradient(135deg, var(--darker), var(--dark));
    color: var(--lighter);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}
#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--secondary));
}
#footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
#footer .footer-column {
    position: relative;
    z-index: 1;
}
#footer .footer-column h3 { 
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
#footer .footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}
#footer .footer-column p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
#footer .footer-links {
    list-style: none;
}
#footer .footer-links li {
    margin-bottom: 0.75rem;
}
#footer .footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-block;
    transition: var(--transition);
    position: relative;
    padding-left: 1rem;
}
#footer .footer-links a::before {
    content: '→';
    position: absolute;
    left: -5px;
    opacity: 0;
    transition: var(--transition);
    color: var(--primary);
}
#footer .footer-links a:hover {
    color: var(--lighter);
    padding-left: 1.5rem;
}
#footer .footer-links a:hover::before {
    left: 0;
    opacity: 1;
}
/* Contact Info */
#footer .contact-info {
    margin-top: 1rem;
}
#footer .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--gray);
}
#footer .contact-item i {
    margin-right: 0.75rem;
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}
#footer .contact-item span {
    font-size: 0.95rem;
    line-height: 1.5;
    transition-duration: 0.3s;
}

#footer .contact-item a{
    color: #ADB5BD;
}
#footer .contact-item a span:hover {
    color: var(--lighter);
    padding-left: 1.5rem;
}
#footer .contact-item a span::before {
    content: '→';
    position: absolute;
    left: -5px;
    opacity: 0;
    transition: var(--transition);
    color: var(--primary);
}
#footer .contact-item a span:hover::before {
    left: 32px;
    opacity: 1;
}

/* Social Links */
#footer .social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
#footer .social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lighter);
    transition: var(--transition);
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
#footer .social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: var(--transition);
}
#footer .social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
#footer .social-link:hover::after {
    opacity: 1;
}
#footer .social-link i {
    position: relative;
    z-index: 1;
}
/* Copyright */
#footer .copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.85rem;
}
#footer .copyright a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}
#footer .copyright a:hover {
    color: var(--primary);
    text-decoration: underline;
}
/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
#footer .footer-column {
    animation: fadeIn 0.6s ease forwards;
}
#footer .footer-column:nth-child(1) {
    animation-delay: 0.1s;
}
#footer .footer-column:nth-child(2) {
    animation-delay: 0.2s;
}
#footer .footer-column:nth-child(3) {
    animation-delay: 0.3s;
}
#footer .footer-column:nth-child(4) {
    animation-delay: 0.4s;
}
/* Responsive */
@media (max-width: 992px) { 
    .footer-grid {
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    footer {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-column h3::after {
        width: 40px;
    }
}
.barba-on {
    cursor: wait;
}
/* Transition overlay */
#transition-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background: linear-gradient(135deg, #0b1220 0%, #0d1b2a 35%, #10243e 100%);
    transform: translateX(-100%);
    display: grid;
    place-items: center;
    overflow: hidden;
}
#transition-overlay.is-active {
    pointer-events: auto;
}
#transition-overlay .overlay-logo{
    display: grid;
    place-items: center;
}
#transition-overlay .overlay-logo img{
    width: 250px;
    height: auto;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.514));
    opacity: 0.95;
}
/* subtle pattern */
#transition-overlay::after{
    content: "";
    position: absolute;
    inset: -40% -10% -40% -10%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.098) 1px, transparent 1px);
    background-size: 18px 18px;
    transform: rotate(2deg);
}
.btn:active {
    transform: scale(0.95)translateY(-3px); 
}

/* ######################  Page Banner ########################### */
.page-banner{
    padding-top: 5rem;
    padding-bottom: 5rem; 
    background-image: linear-gradient(to right, #1e3a8a, #166534);
    color: rgb(254, 254, 254);
    text-align: center;
}
.page-banner h1{
    font-size: 3rem;
    line-height: 1;
}
.page-banner p{
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 56rem;
    margin-bottom: 2rem;
    --tw-text-opacity: 1;
    color: rgb(219 234 254 / var(--tw-text-opacity, 1));
    margin-left: auto;
    margin-right: auto;
}
.page-banner .tag{
    color: rgb(254 215 170 / 1);
    font-weight: 600;
    font-size: .75rem;
    line-height: 1rem;
    padding: .5rem 1rem; 
    background-color: #f9731633;
    border:1px solid rgb(253 186 116 / 1);
    border-radius: 9999px;
    display: inline-flex;
    margin-bottom: 1rem;
}
.page-banner  .button{
    background-color: var(--gradient-orange2);
    background-image: var(--gradient-orange2);
    color: var(--text-light);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: var(--font-size-sm);
    font-weight: bold;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}
/* ######################  Page Banner ########################### */

/* ######################  Contact Page ########################### */

.contact-section{    
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color:#f9fafb;
}
.contact-section .contact-grid{
    display: grid;
    gap: 2rem; 
    grid-template-columns: repeat(3, minmax(0, 1fr)); 
}
@media (min-width: 1024px) {
    .contact-section .grid-2 {
        grid-column: span 2 / span 2;
    }
}
@media (max-width: 1024px) {
    .contact-section .contact-grid{        
        grid-template-columns: repeat(1, minmax(0, 1fr)) !important; 
        column-gap: 0;
    }
}
.contact-section .card{  
    box-shadow: 0 0 #0000, 0 0 #0000 , 0 1px 2px 0 rgb(0 0 0 / .05);
    color: hsl(var(--card-foreground));
    background-color: hsl(0 0% 100%);
    border: 1px solid hsl(214.3 31.8% 91.4%);    
    border-radius: .5rem;
    padding: 1.5rem;
}
.contact-section .card h3{
    letter-spacing: -.025em;
    line-height: 1;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem; 
}
.contact-section .btn{
    display: block;
    margin-top: .75rem;
    border-radius: .5rem;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
}
.contact-section .btn-black{
    color: hsl(210 40% 98%);    
    background-color: hsl(222.2 47.4% 11.2%);
}

.contact-section .form-cont .form-grid{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 22px;
}
@media (max-width: 652px) { 
    .contact-section .form-cont .form-grid{ 
        grid-template-columns: 1fr; 
    }
}
.contact-section .form-cont label{
    font-weight: 500;
    font-size: .875rem;
    line-height: 1.25rem;
    display: block;
}
.contact-section .form-cont input ,.contact-section .form-cont select,.contact-section .form-cont textarea{
    padding: .75rem;
    border: 1px solid rgb(209 213 219);
    border-radius: .5rem;
    width: 100%;

    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    resize: vertical;   /* allow only horizontal resizing */
}
.contact-section .form-cont button{
    display: block;
    width: 100%;
    margin-top: 20px;
}
.contact-section .form-cont button svg{
    width: 1rem;
    height: 1rem;
    margin-right: .5rem;
}

.contact-section .faq-cont > div{
   margin-top: 16px;
}
/* ######################  Contact Page ########################### */



/* ######################  About Us Page ########################### */
.about-section{
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.about-why-chooseUs{    
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #fff;
    /* background-size: 200% 200%;
    animation: gradientFlow 6s infinite alternate ease-in-out; */
}
.about-why-chooseUs .chooseUs-header{
    margin-bottom: 4rem;
}
.about-why-chooseUs .chooseUs-header h2{
    font-size: 2.25rem;
    line-height: 2.5rem; 
    color: rgb(21, 21, 21);
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.about-why-chooseUs .chooseUs-header p{ 
    color: rgb(21, 21, 21);
    max-width: 48rem;
    margin: auto;    
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.about-why-chooseUs .grid{ 
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem; 
}
.about-why-chooseUs .card{ 
  padding: 1.5rem;
  background-color: #ffffff1a; 
  animation-duration: .3s;
  border-radius: .5rem; 
  transition-duration: .3s;
  text-align: center;
  box-shadow: inset 0px 0px 3px 0px color(srgb 0 0 0 / 0.45);
} 
.about-why-chooseUs .card .head {
    padding-bottom: 1rem;
}
.about-why-chooseUs .card .head .icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;    
    height: 4rem;
    border-radius: 9999px;
    background-color: #3b82f633;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}
.about-why-chooseUs .card .head .icon svg{
    width: 2rem;
    height: 2rem;
    color: rgb(147 197 253 /  1);
}
.about-why-chooseUs .card .head h3{ 
    font-weight: 600;
    letter-spacing: -.025em;
    font-size: 1.25rem;
    line-height: 1.75rem; 
    color: rgb(30, 30, 30) ;
}
.about-why-chooseUs .card .content p{ 
    color: rgb(75 85 99);
}
.about-why-chooseUs .card .head .icon.green{
   background-color: #22c55e33;
}
.about-why-chooseUs .card .head .icon.purple{
   background-color: #a855f733;
}
.about-why-chooseUs .card .head .icon.green svg{ 
    color: rgb(134 239 172);
}
.about-why-chooseUs .card .head .icon.purple svg{ 
    color: rgb(216 180 254);
}
.about-page .mission-cont{    
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: rgb(249 250 251 / 1);
}

.about-page .mission-cont .mission-grid{
   display: grid;
   grid-template-columns: 1fr 1fr; 
   gap: 2.5rem;
}
@media (max-width: 782px) { 
    .about-page .mission-cont .mission-grid{ 
        grid-template-columns: 1fr; 
    }
}
.about-page .mission-grid .grid-col{ 
    padding: 2.5rem;    
    border-radius: 0.5rem;
    border: 1px solid hsl(214.3 31.8% 91.4%);
    background: #fff;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
    transition-duration: 0.3s;
}
.about-page .mission-grid .grid-col:hover{  
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.about-page .mission-grid .grid-col .icons{    
    display: inline-flex;
    width: 4rem;
    height: 4rem;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
}
.about-page .mission-grid .grid-col h3{  
    margin-top: 1rem;
    margin-bottom: 0;
}
.about-page .mission-grid .grid-col p{  
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ######################  About Us Page ########################### */


/* ######################  Services Page ########################### */
.service-page .business-card .head { 
    align-items: start;
}
.service-page .business-card .head span{ 
    display: inline-grid;
    place-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 100%; 
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
}

.service-page .business-sol-cont{
    background: #f9fafb;
}
.service-page .business-ecosystem{
    background-color: rgb(255 255 255);
}
.service-page .business-ecosystem .business-card{
    background-color: #f9fafb;
}

.service-page .service-header{
    padding: .25rem;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    background-color: #fff;
}
@media (max-width: 982px) { 
    .service-page .service-header{ 
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 682px) { 
    .service-page .service-header{ 
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.service-page .service-header{
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border-radius: .75rem;
}

.service-page .services-button{ 
    background-color: #fff; 
    transition-duration: .3s;
    font-weight: 500;
    font-size: .75rem;
    line-height: 1rem;
    padding: 1rem;     
    border-radius: 0.5rem;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color:#66748c;
    cursor: pointer;
}
.service-page .services-button svg{ 
    color:#66748c;
}
.service-page .services-button.active{   
    color: rgb(255 255 255 /  1);
    background-image: linear-gradient(to right, #3b82f6, #22c55e);
    transition-duration: .3s;
}
.service-page .services-button.active svg{ 
    color: rgb(255 255 255 /  1);
}




/* ######################  Services Page ########################### */

/* ######################  Compliances Page ########################### */
.compliance-page .business-sol-cont { 
    background: #f9fafb;
}
.compliance-page .compliances-header{
    padding: .25rem;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
@media (max-width: 982px) { 
    .compliance-page .compliances-header{ 
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 682px) { 
    .compliance-page .compliances-header{ 
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.compliance-page .compliances-header{
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    border-radius: .75rem;
}

.compliance-page .compliance-button{ 
    background-color: #fff; 
    transition-duration: .3s;
    font-weight: 500;
    font-size: .75rem;
    line-height: 1rem;
    padding: 1rem;     
    border-radius: 0.5rem;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color:#66748c;
    cursor: pointer;
}
.compliance-page .compliance-button svg{ 
    color:#66748c;
}
.compliance-page .compliance-button.active{   
    color: rgb(255 255 255 /  1);
    background-image: linear-gradient(to right, #3b82f6, #22c55e);
    transition-duration: .3s;
}
.compliance-page .compliance-button.active svg{ 
    color: rgb(255 255 255 /  1);
}

/* ######################## card start here */

.compliance-grid{
    position: relative;
}

.compliance-card-container{
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    transition-duration: 0.5s;
    width: 100%; 
    opacity: 0;
}
.compliance-card-container.active{
    opacity:1; 
    transition-duration: 0.5s;     
    transform: translateX(0) !important;
}
@media (max-width: 982px) { 
    .compliance-card-container{ 
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}
.compliance-card-container .card{
    color: hsl(222.2 84% 4.9%);
    background-color: #fff;
    border: 1px solid rgb(226 232 240);
    border-radius: .5rem;
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    padding: 1.5rem;
}
.compliance-card-container .comp-card1{     
    border-left-width: 4px; 
    border-left-color: rgb(59 130 246 /  1) !important;
}

.compliance-card-container .card:hover{     
    transform: scale(1) !important;
    border-color: rgb(226 232 240); 
}

.compliance-card-container .comp-card1 h3{    
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
    letter-spacing: -.025em;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .compliance-card-container .comp-card1 .tag{
    font-weight: 600;
    font-size: .75rem;
    line-height: 1rem;    
    padding: .125rem .625rem;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;    
    border-radius: 9999px; 
  }

  .compliance-card-container .comp-card2{
  }

  .compliance-card-container .comp-card2 h3{
    font-size: 1.5rem;
    line-height: 2rem;
    align-items: center;
  }
  .compliance-card-container .comp-card2 .content{
     padding-top: 1rem;
  }
  .compliance-card-container .comp-card2 .content ul{
     list-style: none;
  }
  .compliance-card-container .comp-card2 .content ul li{
    display: flex;
    gap: .75rem;
    margin-top: 12px;
  }
  .compliance-card-container .comp-card2 ul li span:nth-child(1){
      width: 1.5rem;
      height: 1.5rem;
      display: grid;
      place-content: center;
      background-color: rgb(220 252 231 /  1);
      border-radius: 100%;
      font-size: .75rem; 
      font-weight: 700;
  }
  .compliance-card-container .comp-card2 .content .button-cont{
      border-top: 1px solid hsl(214.3 31.8% 91.4%);

  }
  .compliance-card-container .comp-card2 .button-cont button{
      font-size: .875rem;
      line-height: 1.25rem;
      padding: .5rem 1rem;  
      color: rgb(255 255 255 / 1);    
      background-image: linear-gradient(to right, #3b82f6, #22c55e);
      border-radius: .5rem;
      width: 100%;
      height: 2.5rem;
      border: none;
      cursor: pointer;
  }
/* ######################  Compliances Page ########################### */
/* ########################## Servies animation ############################# */

.service-page .servies-page-cardGrid .card{   
    transition-duration: 0.3s; 
    opacity: 0;
}
.service-page .servies-page-cardGrid .card.active{
    opacity:1; 
    transition-duration: 0.5s;     
    transform: translateX(0) scale(1) !important;
}

.service-page .servies-page-cardGrid .card:hover{   
    transform: scale(1.05) !important; 
}

/* ########################## Servies animation ############################# */

/* ########################## Insights animation ############################# */
.subscribe-banner #subscribe-form{
    display: flex;
    gap: 1rem;
    max-width: 28rem;  
    width: 28rem;  
    margin-left: auto;
    margin-right: auto;
}
.subscribe-banner #subscribe-form input{
    font-size: .875rem;
    line-height: 1.25rem;
    color: rgb(255 255 255 / 1) !important;
    padding: .5rem .75rem; 
    background-color: #ffffff1a; 
    border: 1px solid #fff3;
    border-radius: calc( 0.5rem - 2px);
    width: 70%;
    height: 2.5rem;
}
.subscribe-banner #subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.631) ;
}
.subscribe-banner #subscribe-form input:focus{
    border: 1px solid #fff3;
    outline: none;
}
.subscribe-banner #subscribe-form button{ 
    color: white;
    padding: 12px 25px;
    border-radius: .5rem;
    text-decoration: none;
    font-weight: 600;  
    cursor: pointer;
    background-image: var(--gradient-orange);
    color: var(--text-light);
    border: none; 
}
@media (max-width: 566px){
   .subscribe-banner #subscribe-form{        
        flex-direction: column;
        width: 100%;
    }
    .subscribe-banner #subscribe-form input{
        width: 100%;
    }
    
}

/* ########################## Insights animation ############################# */

/* ########################## Blog (Insights) ############################# */
.blogs-container{
    background: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.blogs-layout{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}
@media (max-width: 1024px){
    .blogs-layout{ grid-template-columns: 1fr; }
}
.featured-post{
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
    margin-bottom: 2rem;
}
@media (max-width: 820px){
    .featured-post{ grid-template-columns: 1fr; }
}
.featured-post .image-wrap{
    position: relative; display: block;
}
.featured-post img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-post .badge{
    position: absolute; top: 12px; left: 12px;
    padding: .35rem .6rem; border-radius: 999px;
    font-size: .75rem; font-weight: 600; color: #fff;
    background-image: var(--gradient-orange2);
}
.featured-post .content{ padding: 1.25rem 1.25rem; }
.featured-post .category{ color: #2563eb; text-decoration: none; font-weight: 600; font-size: .85rem; }
.featured-post .title{ font-size: 1.6rem; line-height: 1.2; margin: .5rem 0 .5rem; }
.featured-post .title .reading-time{ font-size:.9rem; color:#6b7280; font-weight:600; margin-left:.6rem; display:inline-flex; align-items:center; gap:.35rem; }
.featured-post .excerpt{ color: #4b5563; }
.featured-post .meta{ color: #6b7280; display: flex; gap: .75rem 1rem; margin-top: .75rem; font-size: .9rem; flex-wrap: wrap; align-items: center; }
.featured-post .meta span{ display:inline-flex; align-items:center; gap:.4rem; }
.featured-post .meta .author img{ width:20px; height:20px; border-radius:50%; object-fit:cover; }
.featured-post .read-more{ display: inline-block; margin-top: .75rem; text-decoration: none; font-weight: 600; color: #0d47a1; }

.blog-grid{ display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
@media (max-width: 1024px){ .blog-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px){ .blog-grid{ grid-template-columns: 1fr; } }
.post-card{ border: 1px solid #e5e7eb; border-radius: .75rem; overflow: hidden; background: #fff; transition: transform .25s ease; }
.post-card:hover{ transform: translateY(-6px); }
.post-card .thumb img{ width:100%; height:200px; object-fit:cover; display:block; }
.post-body{ padding: 1rem; }
.post-body .category{ display:inline-block; font-size: .75rem; font-weight:700; text-transform:uppercase; letter-spacing:.03em; margin-bottom:.35rem; text-decoration:none; }
.post-body .category.blue{ color:#2563eb; }
.post-body .category.purple{ color:#7c3aed; }
.post-body .category.green{ color:#16a34a; }
.post-body .category.orange{ color:#ea580c; }
.post-body .category.teal{ color:#0d9488; }
.post-title{ font-size:1.05rem; line-height:1.35; margin:.25rem 0 .5rem; }
.post-title .reading-time{ font-size:.8rem; color:#6b7280; font-weight:600; margin-left:.5rem; }
.post-title a{ text-decoration:none; color:#111827; }
.post-excerpt{ color:#6b7280; font-size:.95rem; }
.post-meta{ color:#9ca3af; display:flex; gap:.6rem 1rem; margin-top:.75rem; font-size:.85rem; flex-wrap: wrap; align-items: center; }
.post-meta span{ display:inline-flex; align-items:center; gap:.35rem; }
.post-meta .author img{ width:18px; height:18px; border-radius:50%; object-fit:cover; }

.pagination{ display:flex; gap:.5rem; align-items:center; justify-content:center; margin-top:2rem; }
.pagination .page{ width:38px; height:38px; display:grid; place-items:center; border:1px solid #e5e7eb; border-radius:.5rem; text-decoration:none; color:#111827; }
.pagination .page.active{ background-image: var(--gradient-orange2); color:#fff; border-color: transparent; }

.blogs-sidebar .widget{ border:1px solid #e5e7eb; border-radius:.75rem; background:#fff; padding:1rem; margin-bottom:1rem; }
.blogs-sidebar .widget h3{ font-size:1.1rem; margin-bottom:.75rem; }
.search-form{ display:flex; gap:.5rem; }
.search-form input{ flex:1; padding:.55rem .7rem; border:1px solid #e5e7eb; border-radius:.5rem; }
.search-form button{ padding:.55rem .9rem; border:none; border-radius:.5rem; background-image: var(--gradient-orange2); color:#fff; }
.cat-list{ list-style:none; }
.cat-list li{ display:flex; justify-content:space-between; align-items:center; padding:.45rem 0; }
.cat-list a{ text-decoration:none; color:#374151; width:100%; display:flex; justify-content:space-between; }
.popular-list{ list-style:none; display:grid; gap:.75rem; }
.popular-list li a{ display:flex; gap:.6rem; align-items:center; text-decoration:none; color:#111827; }
.popular-list img{ width:58px; height:58px; border-radius:.5rem; object-fit:cover; flex-shrink:0; }
.tags{ display:flex; flex-wrap:wrap; gap:.5rem; }
.tags a{ text-decoration:none; padding:.35rem .6rem; border:1px solid #e5e7eb; border-radius:999px; color:#374151; font-size:.85rem; }
.widget.subscribe .subscribe-mini{ display:flex; gap:.5rem; }
.widget.subscribe input{ flex:1; padding:.55rem .7rem; border:1px solid #e5e7eb; border-radius:.5rem; }
.widget.subscribe button{ padding:.55rem .9rem; border:none; border-radius:.5rem; background-image: var(--gradient-orange2); color:#fff; }
/* ########################## Blog (Insights) ############################# */

/* ########################## Blog Single ############################# */
.blog-single-layout{ display:grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
@media (max-width: 1024px){ .blog-single-layout{ grid-template-columns: 1fr; } }
.blog-hero{ position:relative; border-radius:.75rem; overflow:hidden; }
.blog-hero img{ width:100%; height:420px; object-fit:cover; display:block; }
.blog-hero::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.45)); }
.blog-hero .blog-hero-inner{ position:absolute; inset:auto 0 0 0; padding:1.2rem; color:#fff; display:flex; justify-content:space-between; align-items:flex-end; gap:1rem; }
.blog-hero .blog-hero-title{ font-size:1.6rem; line-height:1.2; font-weight:700; }
.blog-article{ background:#fff; border:1px solid #e5e7eb; border-radius:.75rem; overflow:hidden; }
.blog-article .post-cover img{ width:100%; height: 340px; object-fit: cover; display:block; }
@media (max-width: 640px){ .blog-article .post-cover img{ height: 260px; } }
.blog-article .post-head{ padding: 1rem 1.25rem 0; }
.blog-article .post-content{ padding: 0 1.25rem 1.25rem; }
.blog-article .post-tags{ padding: 0 1.25rem 1rem; display:flex; flex-wrap:wrap; gap:.5rem; }
.blog-article .post-tags a{ text-decoration:none; padding:.35rem .6rem; border:1px solid #e5e7eb; border-radius:999px; color:#374151; font-size:.85rem; }
.blog-article .cta{ padding: 0 1.25rem 1.25rem; display:flex; gap:.75rem; flex-wrap:wrap; }
.blog-aside{ display:flex;flex-direction: column; gap: 1.5rem; position:relative; }
.blog-aside .sticky{ position:sticky; top:90px; }
.typography h2{ font-size:1.35rem; margin:1.25rem 0 .5rem; }
.typography h3{ font-size:1.1rem; margin:1rem 0 .35rem; }
.typography p{ color:#374151; margin:.4rem 0 1rem; }
.typography ul{ padding-left: 1.25rem; margin:.25rem 0 1rem; }
.typography ol{ padding-left: 1.25rem; margin:.25rem 0 1rem; }
.typography blockquote{ background:#fff7ed; border-left:4px solid #fdba74; padding: .75rem 1rem; border-radius:.5rem; color:#7c2d12; margin: .5rem 0 1rem; }
.author-box{ margin-top:1rem; display:flex; gap:.75rem; align-items:flex-start; border-top:1px solid #e5e7eb; padding:1rem 1.25rem; }
.author-box img{ width:48px; height:48px; border-radius:50%; object-fit:cover; }
.author-box .name{ font-weight:700; }
.post-nav{ border-top:1px solid #e5e7eb; padding:1rem 1.25rem; display:flex; justify-content:space-between; gap:1rem; }
.toc{ background:#fff; border:1px solid #e5e7eb; border-radius:.75rem; padding:1rem; }
.toc h4{ margin-bottom:.5rem; font-size:1rem; }
.toc ul{ list-style:none; padding:0; margin:0; }
.toc li{ margin:.35rem 0; }
.toc a{ text-decoration:none; color:#374151; }
.related-posts{ margin-top:2rem; }
.related-grid{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:1rem; }
@media (max-width: 820px){ .related-grid{ grid-template-columns: 1fr; } }
.related-card{ border:1px solid #e5e7eb; border-radius:.75rem; overflow:hidden; background:#fff; }
.related-card img{ width:100%; height:150px; object-fit:cover; display:block; }
.related-card .body{ padding:.75rem; }
/* ########################## Blog Single ############################# */

/* ########################## Legal Pages (Policy/Terms/FAQ) ############################# */
.policy-page-cont .policy-content, .terms-page-cont .policy-content, .faq-page-cont .policy-content{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:.75rem;
    padding:2rem;
    box-shadow: 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05);
}
.policy-page-cont h2, .terms-page-cont h2, .faq-page-cont h2{
    font-size:1.35rem;
    margin:1.25rem 0 .5rem;
}
.policy-page-cont p, .terms-page-cont p, .faq-page-cont p{ color:#4b5563; margin:.35rem 0 1rem; }
.policy-page-cont ul, .terms-page-cont ul{ padding-left:1rem; margin:.5rem 0 1rem; }
.policy-page-cont ul li, .terms-page-cont ul li{ list-style: disc; color:#374151; margin:.25rem 0; }
.faq-page-cont .faq-group{ margin-bottom:1.5rem; }
.faq-page-cont .faq-hero{ text-align:center; margin-bottom:1.5rem; }
.faq-page-cont .faq-hero h2{ font-size:1.75rem; margin-bottom:.25rem; }
.faq-page-cont .faq-hero p{ color:#4b5563; }
.faq-page-cont .faq-grid{ display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:1rem; }
@media (max-width: 1024px){ .faq-page-cont .faq-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px){ .faq-page-cont .faq-grid{ grid-template-columns: 1fr; } }
.faq-page-cont .faq-group h3{ font-size:1.1rem; margin: .5rem 0  .25rem; color:#0f172a; }
.faq-page-cont .faq-item{ position:relative; border:1px solid #e5e7eb; border-radius:.9rem; background:#fff; margin:.6rem 0; overflow:hidden; transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease; }
.faq-page-cont .faq-item:hover{ transform: translateY(-2px); border-color:#d1d5db; }
.faq-page-cont .faq-item::before{ content:""; position:absolute; left:0; top:0; bottom:0; width:3px; background: transparent; transition: background .25s ease; }
.faq-page-cont .faq-item.is-open{ box-shadow: 0 6px 18px rgba(2,6,23,.06); border-color:#cbd5e1; }
.faq-page-cont .faq-item.is-open::before{ background: linear-gradient(180deg, #f97316, #eab308); }
.faq-page-cont .faq-question{ width:100%; text-align:left; background:transparent; border:none; padding: 1rem 1.1rem; display:flex; align-items:center; justify-content:space-between; font-weight:600; color:#0f172a; cursor:pointer; }
.faq-page-cont .faq-question:hover{ color:#111827; }
.faq-page-cont .faq-question:focus-visible{ outline: 2px solid #eab308; outline-offset: 2px; border-radius:.5rem; }
.faq-page-cont .faq-icon{ font-weight:800; color:#0f172a; margin-left:1rem; width:26px; height:26px; display:grid; place-items:center; border-radius:999px; background:#f1f5f9; transition: transform .2s ease, background .2s ease; }
.faq-page-cont .faq-item.is-open .faq-icon{ transform: rotate(45deg); background:#fde68a; }
.faq-page-cont .faq-answer{ height:0; overflow:hidden; transition: height .3s ease; }
.faq-page-cont .faq-answer .inner{ padding: .5rem 1.1rem 1.1rem; color:#475569; border-top:1px solid #f1f5f9; }
.faq-page-cont .faq-cta{ margin-top:2rem; display:grid; place-items:center; }
.faq-page-cont .cta-card{ border:1px solid #e5e7eb; border-radius:.75rem; background:#fff; padding:1.25rem; text-align:center; width:100%; max-width:680px; box-shadow: 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / .05); }
.faq-page-cont .cta-actions{ display:flex; gap:.75rem; justify-content:center; margin-top:.75rem; }
/* ########################## Legal Pages (Policy/Terms/FAQ) ############################# */




/* ########################## Service Single ############################# */
.service-page .ss-grid{ display:grid; grid-template-columns: 2fr 1fr; gap: 2rem; }
@media (max-width: 1024px){ .service-page .ss-grid{ grid-template-columns: 1fr; } }
.service-page .ss-card{ background:#fff; border:1px solid #e5e7eb; border-radius:.75rem; padding:1.5rem; }
.service-page .ss-content h2{ font-size:1.35rem; margin:1.25rem 0 .5rem; }
.service-page .ss-content p{ color:#4b5563; }
.service-page .ss-content ul{ list-style:none; margin:.25rem 0 1rem; padding-left:0; }
.service-page .ss-content ul li{ color:#374151; margin:.4rem 0; }
.service-page .ss-content ul li:before{ content:""; width:10px; height:10px; margin-top:.35rem; border-radius:999px; background:linear-gradient(90deg,#f97316,#eab308);display:inline-block;margin-right: .6rem; }

.service-page .ss-steps{ counter-reset: step; list-style:none; margin:.25rem 0 1rem; padding-left:0; }
.service-page .ss-steps li{ position:relative; padding-left:2rem; margin:.5rem 0; color:#374151; }
.service-page .ss-steps li:before{ counter-increment: step; content: counter(step); position:absolute; left:0; top:.1rem; width:1.4rem; height:1.4rem; border-radius:999px; background:#0ea5e9; color:#fff; display:grid; place-items:center; font-weight:700; font-size:.9rem; }
.service-page .ss-info-cards{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:1rem; margin: .5rem 0 1rem; }
@media (max-width: 820px){ .service-page .ss-info-cards{ grid-template-columns: 1fr; } }
.service-page .ss-info-cards .ss-info{ background:#fff; border:1px solid #e5e7eb; border-radius:.75rem; padding:1rem; text-align:center; }
.service-page .ss-info h4{ margin-bottom:.25rem; font-size:1rem; color:#0f172a; }
.service-page .ss-info .val{ font-size:1.35rem; font-weight:700; color:#f97316; }
.service-page .ss-cta{ display:flex; gap:.75rem; flex-wrap:wrap; margin-top:1rem; }
.service-page .ss-aside .ss-card h3{ margin-bottom:.35rem; }
.service-page .ss-aside .why ul{ list-style:none; padding-left:0; }
.service-page .ss-aside .why li{ margin:.35rem 0; color:#374151; }
.service-page .ss-form{ display:grid; gap:1rem; grid-template-columns: repeat(2, minmax(0,1fr)); margin-top:.5rem; }
@media (max-width: 640px){ .service-page .ss-form{ grid-template-columns: 1fr; } }
.service-page .ss-form label{ display:block; font-weight:600; font-size:.9rem; margin-bottom:.25rem; }
.service-page .ss-form input{ width:100%; padding:.7rem; border:1px solid #e5e7eb; border-radius:.5rem; }
.service-page .ss-form .full{ grid-column: 1 / -1; }


/* ########################## General Blog / Service Single ############################# */
.ss-content {
  color: #374151;
  line-height: 1.7;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ss-content h1,
.ss-content h2,
.ss-content h3,
.ss-content h4,
.ss-content h5 {
  color: #0f172a;
  margin: 1.25rem 0 0.5rem;
  line-height: 1.3;
}

.ss-content h2 {
  font-size: 1.45rem;
}

.ss-content h3 {
  font-size: 1.25rem;
}

.ss-content p {
  color: #4b5563;
  margin-bottom: 1rem;
}

/* Grid layout for main + sidebar */
.ss-content .grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .ss-content .grid {
    grid-template-columns: 1fr;
  }
}

/* Card box */
.ss-content .card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

/* Basic unordered list with gradient bullet */
.ss-content ul {
  list-style: none;
  margin: 0.25rem 0 1rem; 
  padding-left: inherit !important;
}

.service-page .ss-content ul , .service-page .ss-content ol{
  padding-left: inherit !important;
}

.ss-content ul li { 
  gap: 0.5rem;
  color: #374151;
  margin: 0.4rem 0;
}
.ss-content ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316, #eab308);
  display: inline-block;
  margin-right: 0.6rem;
}

.ss-content ul li ul{ 
    margin-left: 15px !important;
}

/* Numbered steps (1, 2, 3...) */
.ss-content .steps {
  counter-reset: step;
  list-style: none;
  margin: 0.25rem 0 1rem;
  padding-left: 0;
}
.ss-content .steps li {
  position: relative;
  padding-left: 2rem;
  margin: 0.5rem 0;
  color: #374151;
}
.ss-content .steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: #0ea5e9;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Info cards (3-column grid) */
.ss-content .info-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0.5rem 0 1rem;
}
@media (max-width: 820px) {
  .ss-content .info-cards {
    grid-template-columns: 1fr;
  }
}
.ss-content .info-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
}
.ss-content .info-card h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  color: #0f172a;
}
.ss-content .info-card .val {
  font-size: 1.35rem;
  font-weight: 700;
  color: #f97316;
}

/* CTA (buttons or links section) */
.ss-content .cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Form elements */
.ss-content .form {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.5rem;
}
@media (max-width: 640px) {
  .ss-content .form {
    grid-template-columns: 1fr;
  }
}
.ss-content .form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.ss-content .form input,
.ss-content .form textarea,
.ss-content .form select {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}
.ss-content .form .full {
  grid-column: 1 / -1;
}

/* ########################## General Blog / Service Single ############################# */
/* ########################## Service Single ############################# */