/*************flexible content********************/
     .fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 2s !important;
  animation-duration: 2s !important;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
  }
  @keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
  }
/* Global spacing for flexible content builder sections.
   Keep .container focused on width/layout; section spacing belongs here. */
.flexible-content-section {
    padding-top: 35px;
    padding-bottom: 35px;
}
.flexible-content-section.flexible-content-section--no-spacing,
.custom-code-section.custom-code-section--no-spacing {
    padding-top: 0;
    padding-bottom: 0;
}
.flexible-content-section--cta-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
.custom-code-section {
    /* Intentionally minimal: custom code controls its own presentation. */
}
.custom-code-section--contained,
.custom-code-section--full-width {
    /* Width behavior is handled by the section markup. */
}
@media (max-width: 767px) {
    .flexible-content-section {
        padding-top: 25px;
        padding-bottom: 25px;
    }
    .flexible-content-section.flexible-content-section--no-spacing,
    .custom-code-section.custom-code-section--no-spacing {
        padding-top: 0;
        padding-bottom: 0;
    }
    .flexible-content-section--cta-section {
        padding-top: 35px;
        padding-bottom: 35px;
    }
}
.flexible-row{
margin: 15px 0px;
padding: 0px 5px;	
} 
/**************massive quote*************/
.massive-quote {
    position: relative;
    border: 7px solid #002b64; /* Navy blue border */
    padding: 20px;
    margin: 35px 20px;
   border-radius: 15px;
   padding-bottom: 35px;
}

.massive-quote blockquote {
    margin: 0;
    position: relative;
    padding-right:5%;
}

.massive-quote::before {
    content: "“";
    position: absolute;
    top: 14px;
    left: -14px;
    font-size: 72px;
    color: #002b64;
    line-height: .5;
    font-family: fantasy;
    background: white;
    padding-top: 28px;
}

.massive-quote::after {
    content: "”";
    position: absolute;
    bottom: 16px;
    right: -16px;
    font-size: 72px;
    color: #002b64;
    line-height: 0.5;
    font-family: fantasy;
    padding-top: 28px;
    background: white;
}
blockquote:not(.etheme-blockquote) {
    border-left:none;
}
span.massive-citation {
    display: contents;
    float: right;
    font-size: 20px;
    font-weight: bold;
}
/******************cta  section*********/ 
.cta-row {
    margin: 0;
}
.cta-container.col-md-9 {
    padding: 100px 5%;
}
.cta-container h3 {
    color: white;
	font-size: 3em;
	
}
.cta-container h4 {
    color: #f4f4f4;
    font-weight: 100;
    line-height: 1.6;
	margin-bottom: 30px;
	text-align:justify;
}
.cta-row {
    background-size: cover !important;
}
table#SolutionsTable {
    margin: 50px 10px;
}
.container.img-text {
    margin: 30px 10px;
}

.fifty-fifty-row {
    display: flex;
    flex-wrap:wrap;	
	justify-content: space-between;
	gap: 50px;
/*	margin: 50px 0px;*/
	
}
.fifty-fifty-row .col-md-6 {
    flex:2;
	min-width: 300px;
	padding: 0px;
	
}
/**.image-txt {
    margin: 30px 0px;
}***/
/****************comparison boxes*************/
.title-row {
    display: inline-flex;
}
.title-row i{
	color: #004366;
	font-size: 35px;
	padding-right:25px;
}
.col-md-6 > .shadow-box{
	padding: 60px;
}
.comparison > p {
    text-align: left;
	font-size: 20px !important;
}
.comparison > ul li {
    font-size: 20px !important;
}
.comparison > h4 {
     font-size: 30px;
	 line-height: 1.5 !important;
	 display: inline-block;
	 margin-bottom: 15px;
	
}
/*****************numbered List CSS****************/
ol.number-list {
    
    list-style: none;
}
.numbered-list {
    list-style: none; /* Remove default list styling */
    padding-left: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
	counter-reset: list-item; /* Reset the counter at the start of the list */
}

.number-list-item {
    position: relative;
    padding-left: 8em; /* Space for the number */
    margin-bottom: 4.5em !important; /* Space between list items */
	padding-top: 1em !important;
	counter-increment: list-item 1; /* Increment the counter by 1 explicitly */
	font-size: 20px !important;

}

.number-list-item::before {
    content: counter(list-item) ".";   
    position: absolute;
    left: 0;
    top: 0;
    width: 2em;
    height: 2em;
    background-color: #00AEEF; /* Light blue background */
    color: white; /* White number */
    font-size: 2.5em; /* Large number size */
    text-align: center; /* Center the number horizontally */
    border-radius: 50%; /* Make the background circular */
	line-height: 2em;
	padding-left: 4px;
}
@media (max-width: 600px) {
	.number-list-item::before {
    font-size: 1.2em;
	top: 25px;
    }
	.number-list-item {
		padding-left: 4em;
	}
	
}
/************check-list************/
/* Container for the checklist */
.check-list {
    margin: 0;
    padding: 0;
}

/* Remove default list styling */
.check-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual list items */
.check-list-item {
    display: flex;
    align-items: center; /* Align items at the middle */
    margin-bottom: 15px; /* Space between items */
}

/* Icon styling */
.check-icon {
    width: 95px;
    height: auto;
    flex-shrink: 0;
    margin-right: 60px;
	object-fit: contain; /* Ensure the image scales properly */
}
.check-content {
    border: 2px solid gray !important;
    border-radius: 34px !important;
    padding: 30px !important;
	text-align:left !important;
}
li.check-list-item{
	list-style:none;
	margin-bottom:35px !important;
}
/* Content within the list item */
.check-content h4 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
	color: #00AEEF;
	font-weight: 600;
}

.check-content p {
    margin: 0;
    font-size: 1em;
    color: #555; /* Adjust color as needed */
}

/* Responsive adjustments (optional) */
@media (max-width: 600px) {
    .check-list-item {
         align-items: flex-start;
    }

    .check-icon {
    margin-bottom: 5px;
    margin-right: 10px;
    width: 40px;
    height: auto;
    padding-top: 35px;
}
}




/*****mobile and tablet styling****/
@media (max-width:960px){
	.img-txt-container.col-md-9 {
    margin-top: 25px;
}
}
@media (max-width:470px){
	.img-txt-container.col-md-9 {
    margin-top: 25px;
}
		
}
/*statistics blocks***/

.featured-stats h3 {
    font-size: 40px;
}
.featured-stats h4 {
    font-size: 20px;
}

.container.featured-statistics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem; /* 16px */
    max-width: 960px; /* Exactly fits 4 × 220 + 3 × 16 */
    width: 100%;
    margin: 75px auto;
    padding: 0rem 1rem 6rem 1rem;
    box-sizing: border-box;
}





.statistics-box {
    width: 218px;
    height: 218px;
    background: rgba(1, 34, 65, 0.65); /* 85% opacity */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    overflow: hidden;
    transition: background-color 0.3s ease;
    border-radius: 50px;
    margin: 0; /* Optional: fallback spacing if gap doesn't apply */
}



/**inner boxes***/
.statistics-number {
    font-size: 54px;
    font-weight: 900;
    margin-top: 20px;
    font-family: 'PT Sans', sans-serif;
		line-height:1.2;
		color: #ffffff;
	  transition: background-color 0.3s ease; /* Smooth transition */
	  }
.statistics-number::after {
    content: " +";
    color: #96D969;
    font-weight: bold;
    margin-left: 1px; /* optional spacing */
	float:right;
}
	  

.statistics-um {
    font-size: 28px;
    font-weight: 900;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
		line-height:1.5;}

.statistics-text {
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
	line-height: 1.1;
	text-transform:capitalize;
	color: #96D969;
}
.statistics-box:hover {
    background: #00aeef; /* Change background color on hover */}

.statistics-box:hover .statistics-number {
    color: #004366; /* Change number color on parent hover */
}
.statistics-box:hover .statistics-text {
    color: #012241; /* Change number color on parent hover */
}

.supporting-text.container {
    margin-top: -44px;
    margin-bottom: 20px;
}
/***********image-text styling 50 50**************/
.has-image {
    overflow: hidden !important;
	border-radius:15px !important;
	position: relative;
}

.has-image-fifty img {
    width: 100%;
	height: 100%;
	top:0;
	left: 0;
	border-radius: 15px;
}

/***********image-text styling 33 66**************/
.img-img-container.col-md-4 {
    min-width: 300px;
    padding: 15px;
    margin-bottom: 15px;
}
.img-txt-container.col-md-7 {
    padding: 15px;
}
.img-img-container.col-md-4 {
    min-width: 300px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.has-image-thirtythree img {
    object-fit: cover !important;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
	border-radius:15px;
}
.image-txt.two-thirds-row.fadeIn {
    margin: 0;
}
/****feature-benefit styling*****/
.feature-benefit-row {
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
	margin-top: 35px;
	gap: 35px;	
}
.flex-feature {
    min-width: 250px;    
    flex: 0 1 30%;
	box-sizing: border-box;
}
.flex-feature h4 {
    font-weight: bold;
}
.flex-feature img {
    padding-bottom: 25px;
	margin: auto;
	display: block;
	text-align:center;
	height: 150px;
	width:auto;
}
.flex-feature h4{
	color:#00416B;
}
.flex-feature a {
    display: block; /* Ensures the <a> tag behaves as a block-level element, wrapping all inner content */
    transition: transform 0.3s ease; /* Smooth transition for the transform */
}

.flex-feature a:hover {
    transform: scale(1.05); /* Increase size by 5% */
}
.feature-benefit h3 {
    margin-bottom: 65px;
}
.featured-categories h3 {
    text-align: center;
    margin: auto;
}

/*** feature boxes styling*****/
.featured-boxes h3 {
    text-align: center;
    margin-bottom: 45px;
}
.featured-boxes h4 {
    text-align: center;
    margin-bottom: 35px;
}
.featured-boxes{	
	    margin: 0;

}
.feature-info.shadow-box.align-left {
    padding: 30px 30px;
}
/**********styles for tablet***********/
@media only screen and (max-width: 900px) {
	.flex-feature {
    flex: 0 1 45%;    
}
	
}

/* Styles for the first column on mobile screens */
@media only screen and (max-width: 600px) {
  
.solutions-table th, .solutions-table th:first-child, .solutions-table th:last-child {
    padding: 21px 20px;
    font-size: 1.0em;
}
.solutions-table td:first-child {
    font-size: 12px;	
    
}
.solutions-table td {
   padding: 10px !important;
}
.solutions-table i {
    padding: 12px;
    font-size: 25px;
}
.solutions-table td p {
    font-size: 10px !important;    
}
.solutions-table ul li {
    font-size: 10px !important;
	text-align:left !important;
}
.solutions-table ul {
    padding: 15px;
}
.feature-benefit-row {
   	column-gap: 1px;
	
}
.flex-feature {
    min-width: 250px;    
    flex: 1;
	box-sizing: border-box;
}
}
/**********feature boxes front page**********/
.featured-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    justify-items: normal;
    gap: 35px;
	margin-bottom: 35px;
}
.feature-box{
	flex-grow: 3;
	width: 300px;	
}
.feature-info i {
    font-size: 32px;
    padding: 8px;
	color: #E00000;
}
.feature-info p {
    line-height: 1.4;
    font-size: 15px;
}
.feature-info.shadow-box.align-left {
    padding: 15px 25px;
}
.feature-info h4 {
    font-weight: 600;
    color: #00416B;
	line-height:3;
}
.featured-categories h4 {
    max-width: 70%;
   	text-align: center;
    display: inline-block;
    line-height: 1.3;
	margin-top:5px;
}
.featured-boxes .feature-heading h4 {
    line-height: 2;
}
.flexible-content-section--benefits-boxes .featured-boxes > h4 {
    font-weight: 300;
}
.flexible-content-section--benefits-boxes .featured-boxes .feature-heading h4 {
    font-weight: 300;
}
.featured-boxes .feature-info p {
    color: #808285;
    font-size: 15px !important;
    font-weight: 300;
    line-height: 1.55;
    text-align: left;
}
.feature-heading .icon {
    vertical-align: top;
}
/*****solutions table******/
table thead {
    background-color: #00416b;
}
#SolutionsTable tr:not(:first-child) td:nth-child(2),
#SolutionsTable tr:not(:first-child) td:nth-child(3),
#SolutionsTable tr:first-child td:nth-child(2),
#SolutionsTable tr:first-child td:nth-child(3) {
    text-align: left;
}
.solutions-table th, .solutions-table th:first-child, .solutions-table th:last-child {
    color: white;
    text-align: center;
    text-transform: capitalize;
    padding: 21px 30px;
    font-size: 1.4em;
}
.solutions-table.shadow-box{
	padding: 0px !Important;
	display:inline-table !important;
}
.solutions-table td:last-child, .solutions-table th:last-child {
    padding-right: 10px !important;
    text-align: left !important;
}
.solutions-table td {
    padding: 20px;
	border: 1px solid #dee2e6;
}
.solutions-table td p {
    text-align: left;
}
.solutions-table td:first-child {
    background: aliceblue;
    color: #00416b;
    font-size: 18px;
    font-weight: 400;
    vertical-align: middle;
	/*padding:1em;*/
}
.solutions-table i {
    display: block;
    padding: 12px;
    font-size: 30px;
}
/* Styles for the first column on mobile screens */
@media only screen and (max-width: 600px) {
  
.solutions-table th, .solutions-table th:first-child, .solutions-table th:last-child {
    padding: 21px 20px;
    font-size: 1.0em;
}
.solutions-table td:first-child {
    font-size: 12px;	
    
}
.solutions-table td {
   padding: 10px !important;
}
.solutions-table i {
    padding: 12px;
    font-size: 25px;
}
.solutions-table td p {
    font-size: 10px !important;    
}
.solutions-table ul li {
    font-size: 10px !important;
	text-align:left !important;
}
.solutions-table ul {
    padding: 15px;
}
.feature-benefit-row {
   	column-gap: 1px;
	
}
}
/****client logos section**************/
.client-logos h2{
	text-align:center;
}
.client-logos h3{
	text-align:center;
}
.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem; /* space between logos */
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-item {
    flex: 1 1 200px; /* grow/shrink, base size */
    max-width: 200px; /* cap width so it doesn't stretch too far */
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-width: 100%;
    max-height: 130px; /* adjust as needed */
    object-fit: contain;
}
/**********card grid section******/
.card-grid-section {
    background: transparent;
}

.card-grid-header {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    text-align: center;
}

.card-grid-section--align-center .card-grid-header {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.card-grid-section-heading {
    max-width: 820px;
    margin: 0 auto 14px;
    text-align: center;
}

.card-grid-subheading {
    color: #555;
    font-size: 1.12rem;
    line-height: 1.55;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.card-grid-subheading > :last-child {
    margin-bottom: 0;
}

.card-grid {
    display: grid;
    gap: 24px;
}

.card-grid--cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid--cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid-card {
    --card-accent-color: #00AEEF;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    min-width: 0;
    padding: 28px;
    position: relative;
}

.card-grid-section--style-accent-top .card-grid-card {
    border-top: 5px solid var(--card-accent-color);
}

.card-grid-card--accent-blue {
    --card-accent-color: #00416B;
}

.card-grid-card--accent-teal {
    --card-accent-color: #00AEEF;
}

.card-grid-card--accent-light-blue {
    --card-accent-color: #50dcff;
}

.card-grid-card--accent-navy {
    --card-accent-color: #012243;
}

.card-grid-card--accent-orange {
    --card-accent-color: #f79322;
}

.card-grid-card__subtitle {
    color: var(--card-accent-color);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.35;
    margin: -2px 0 12px;
}

.card-grid-card__title {
    color: #00416B;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 14px;
}

.card-grid-card__text,
.card-grid-card__text p {
    color: #5f6368;
    font-size: 15px !important;
    line-height: 1.55;
}

.card-grid-card__text p {
    text-align: left;
}

.card-grid-card__text > :last-child {
    margin-bottom: 0;
}

.card-grid-card__button-wrap {
    margin-top: 22px;
    text-align: left;
}

.card-grid-card__button {
    display: inline-flex;
}

@media (max-width: 1024px) {
    .card-grid--cols-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .card-grid--cols-3,
    .card-grid--cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .card-grid,
    .card-grid--cols-2,
    .card-grid--cols-3,
    .card-grid--cols-4 {
        grid-template-columns: 1fr;
    }

    .card-grid-header {
        margin-bottom: 24px;
    }

    .card-grid-card {
        padding: 22px;
    }
}
/**********full width section******/
.full-width-row {
    width: 100%;
    padding: 0.5rem 0;
    box-sizing: border-box;
}

.full-width-row .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.full-width-content {
    width: 100%;
    max-width: 100%;
}

.full-width-content > * {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
/****icon row*******************/
/* grid container */
.icon-row-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px; /* space between items */
  text-align: center;
  align-items: start;
}

/* each item */
.icon-row .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
  padding: 10px;
}

/* make the whole card clickable */
.icon-row .icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.icon-row .icon-card img {
  max-width: 100px;   /* adjust icon size */
  height: auto;
  margin-bottom: 10px;
}

.icon-row .icon-card h3 {
  font-size: 1rem;
  margin: 0;
  line-height: 1.3;
  color: #012243;
  font-weight: 500;
}

/* Hover/Focus grow */
.icon-row .icon-card:hover,
.icon-row .icon-card:focus-visible {
  transform: scale(1.1);
//  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
