@media (min-width: 1200px) {
    .container {
        width: 1260px;
    }
}
html{
    font-size: 16px;
}
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url(../webfonts/fa-regular-400.woff2) format("woff2"), url(../webfonts/fa-regular-400.ttf) format("truetype");
}  

/* Buttons 
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-coral);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn-outline:hover {
    background: var(--primary-navy);
    color: var(--white);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}
 */
 
 .btn-blue-plane{
    background: #1159da;
  border-width: 1px;
    color: #fff;
 }
 .btn-blue-plane:active,
 .btn-blue-plane:hover{
    color: #fff;
background: #093e9d;
  border-width: 1px;
 }
.btn-blue-outline{
    background:transparent; 
    color: #1159da;
    border-color: #1159da;
    border-width: 1px;
 }

 .btn-blue-outline:active,
 .btn-blue-outline:hover{
    color: #1159da; 
    background:transparent; 
      border-width: 1px;
 }

 .btn-blue{
    background: #2478D0;
    background: linear-gradient(180deg,rgba(36, 120, 208, 1) 0%, rgba(22, 94, 183, 1) 100%);
    color: #fff;
 }
 .btn-blue:hover{
    color: #fff;
    background: linear-gradient(180deg,rgba(36, 120, 208, 1) 0%, rgba(22, 94, 183, 1) 100%);
 }
  .btn-green{
    background: #248D53;
    background: linear-gradient(180deg,rgba(36, 141, 83, 1) 0%, rgba(23, 125, 73, 1) 100%);
    color: #fff;
 }
   .btn-green:hover{
    color: #fff;
        background: linear-gradient(180deg,rgba(36, 141, 83, 1) 0%, rgba(23, 125, 73, 1) 100%);
   }

   .btn-purple{
    background: #5637AD;
    background: linear-gradient(180deg,rgba(86, 55, 173, 1) 0%, rgba(71, 41, 151, 1) 100%);
    color: #fff;
 }
   .btn-purple:hover{
    color: #fff;
   background: linear-gradient(180deg,rgba(86, 55, 173, 1) 0%, rgba(71, 41, 151, 1) 100%);
}

.site-2026 .home .fact{
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: normal;
	align-content: normal;
	padding:15px 15px;
	text-align: center;
	border-radius: 20px;
	box-shadow: 0 2px 8px rgba(27, 58, 87, 0.08);
	transition:0.3s ease;
	animation: float 3s ease-in-out infinite; 
	min-height: 120px;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}
.fact-container:nth-child(2) .fact{
    animation-delay: 0.5s;
}

.fact-container:nth-child(3) .fact{
    animation-delay: 1s;
}

.fact-container:nth-child(4) .fact{
    animation-delay: 1.5s;
}

.site-2026 .home .fact .counter{
    line-height: 1em;
    font-size: 55px;
}


.site-2026 .home .fact  .lead{
font-size: 16px;
}
.section-badge{
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1rem;
}
/* Retainer Packages Section */
.retainers-section {
    background: #fff;
    padding: 0 0 80px 0;

}

/* Retainer Packages Section */
.retainers-section {
    background: var(--white);
}
 

.pricing-card {
    position: relative;
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--success-mint);
    border-width: 3px;
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gradient-mint);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1;
        font-family: 'Montserrat', sans-serif;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 0.25rem;
    font-weight: 700;
}

.plan-description {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 700;
}

.plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.plan-features i {
    color: var(--success-mint);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.plan-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

.plan-note i {
    color: var(--accent-coral);
    margin-right: 0.5rem;
}

.pricing-note {
    text-align: center;
}

.note-content {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: var(--gradient-mint);
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.note-content i {
    font-size: 1.5rem;
}
 
/* Hourly Rates Section */
.hourly-rates-section {
    background: var(--light-gray);
     padding: 80px 0;
}

.rates-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.rates-table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
}

.rates-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.rates-table th {
    padding: 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rates-table td {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.rates-table tbody tr:hover {
    background: var(--light-gray);
}

.rates-table tbody tr:last-child td {
    border-bottom: none;
}

.rate-cell {
    font-size: 1.25rem;
    color: var(--accent-coral);
}

.highlight-row {
    background: rgba(78, 205, 196, 0.1);
}

.highlight-row:hover {
    background: rgba(78, 205, 196, 0.15) !important;
}

.retainer-upsell {
    margin-top: 3rem;
}

.upsell-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 3rem;
    background: var(--white);
    border: 3px solid var(--success-mint);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.upsell-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.upsell-text {
    flex: 1;
}

.upsell-text h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.upsell-text p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* Comparison Table Section */
.comparison-section {
    background: var(--white);
   

}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
    min-width: 900px;
}

.comparison-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.comparison-table th {
    padding: 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.criteria-col {
    text-align: left !important;
    min-width: 200px;
}

.option-col {
    min-width: 220px;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.comparison-table tbody tr:hover {
    background: var(--light-gray);
}

.criteria {
    font-weight: 600;
    color: var(--primary-navy);
}

.criteria i {
    margin-right: 0.5rem;
    color: var(--accent-coral);
}

.inhouse, .freelancer, .digilakshya {
    text-align: center;
}

.digilakshya {
    background: rgba(78, 205, 196, 0.1);
    font-weight: 600;
}

.icon-positive {
    color: var(--success-mint);
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.icon-negative {
    color: var(--accent-coral);
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.icon-warning {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.summary-row td {
    font-weight: 700;
    padding: 2rem 1.5rem;
    background: var(--light-gray);
}

.summary-row .digilakshya {
    background: var(--gradient-mint);
    color: var(--white);
    font-size: 1.125rem;
}

.roi-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.roi-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border: 2px solid var(--success-mint);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.roi-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.roi-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.roi-content h4 {
    color: var(--accent-coral);
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.roi-content p {
    margin-bottom: 0;
    color: var(--text-light);
}
 .cbp-l-grid-fullScreen .cbp-item a{
     padding: 15px;
     display: block;
 }
/*.cbp-l-grid-fullScreen .cbp-item {
    
    width: 360px;
    height: 540px;
    margin-right: 0;
   
}*/
 
#fixed-navbar{
    padding: 0;

}

.header-gap{
    height: 110px;
}
/* Hero Section */
.hero {
    padding: 3rem 0 4rem;
    background: var(--gradient-hero-2);
    position: relative;
    overflow: hidden;
    margin: 0;
   
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-image: 
        radial-gradient(circle at 20% 50%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);*/
    pointer-events: none;
    background-image: url("../img/home-h-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    margin-bottom:1rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.badge-icon {
    font-size: 1.25rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-coral);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    flex-wrap: wrap;
}

.country-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.780rem;
    font-weight: 600;
    color: var(--text-light);
}

.flag {
    font-size: 2rem;
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    padding: 2rem;
    text-align: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    animation: float 3s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 0.5s;
}

.stat-card:nth-child(3) {
    animation-delay: 1s;
}

.stat-card:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
 
.cbp-wrapper{
    visibility: visible;
    overflow: visible;
}


.footer ul{
    margin: 0;
    padding: 0;
}

#portfolio{
    padding: 80px 0;
}
 


/* Case Study Section */
.case-study-section {
    background: var(--white);
}

.case-study-content {
    max-width: 900px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-mint);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-coral);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.timeline-item.highlighted .timeline-content {
    background: var(--gradient-mint);
    color: var(--white);
}

.timeline-item.highlighted .timeline-content h4,
.timeline-item.highlighted .timeline-content p,
.timeline-item.highlighted .timeline-value {
    color: var(--white);
}

.timeline-content h4 {
    margin-bottom: 0.75rem;
    color: var(--primary-navy);
}

.timeline-content p {
    margin-bottom: 1rem;
}

.timeline-value {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    color: var(--accent-coral);
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.case-study-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.result-card {
    padding: 2rem;
    text-align: center;
    background: var(--white);
    border: 2px solid var(--success-mint);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.result-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-coral);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--text-light);
    font-weight: 600;
}

.testimonial {
    padding: 3rem;
    background: var(--light-gray);
    border-left: 4px solid var(--accent-coral);
    border-radius: var(--radius-md);
    font-style: italic;
}

.testimonial p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

/* Final CTA Section */
.final-cta-section {
    background: var(--gradient-hero-2);
}


.cta-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-card {
    position: relative;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition-base);
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.cta-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.cta-badge.recommended {
    background: var(--gradient-coral);
}

.cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    color: var(--primary-navy);
    font-size: 2.5rem;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.cta-card h3 {
    margin-bottom: 1rem;
}

.cta-card p {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.cta-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--text-light);
}

.cta-note i {
    color: var(--success-mint);
    margin-right: 0.5rem;
}

.final-cta-section .contact-info {
    text-align: center;
}

.final-cta-section .contact-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.final-cta-section .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.contact-item i {
    color: var(--accent-coral);
    font-size: 1.5rem;
}

.contact-item a:hover {
    color: var(--accent-coral);
}

.services-preview .service-card{
    padding: 0;
}


/* Retainer Packages Section */
.retainers-section {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    position: relative;
    padding: 2.5rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--success-mint);
    border-width: 3px;
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gradient-mint);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-navy);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.plan-description {
    color: var(--text-light);
    font-size: 0.875rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.plan-features i {
    color: var(--success-mint);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.plan-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

.plan-note i {
    color: var(--accent-coral);
    margin-right: 0.5rem;
}

.pricing-note {
    text-align: center;
}

.note-content {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: var(--gradient-mint);
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.note-content i {
    font-size: 1.5rem;
}

/* Hourly Rates Section */
.hourly-rates-section {
    padding: 100px 0;
    background: var(--white);
}

.hourly-table-wrapper {
    overflow-x: auto;
    margin-bottom: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hourly-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

.hourly-table thead {
    background: var(--gradient-primary);
}

.hourly-table th {
    color: var(--white);
    font-weight: 700;
    text-align: left;
    padding: 24px;
    font-size: 16px;
}

.hourly-table tbody tr {
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}

.hourly-table tbody tr:last-child {
    border-bottom: none;
}

.hourly-table tbody tr:hover {
    background: var(--light-bg);
}

.hourly-table td {
    padding: 20px 24px;
    color: var(--dark);
    font-size: 15px;
}

.price-cell {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.hourly-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 20px;
}

.savings-badge {
    display: flex;
    align-items: center;
    gap: 20px;
}

.savings-badge i {
    font-size: 48px;
    color: var(--accent);
}

.savings-badge strong {
    display: block;
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 4px;
}

.savings-badge span {
    font-size: 15px;
    color: var(--gray);
}

.hourly-buttons {
    display: flex;
    gap: 16px;
}

/* ROI Section */
.roi-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.roi-table-wrapper {
    overflow-x: auto;
    margin-bottom: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.roi-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

.roi-table thead {
    background: var(--primary);
}

.roi-table th {
    color: var(--white);
    font-weight: 700;
    text-align: left;
    padding: 24px;
    font-size: 16px;
}

.roi-table th.highlight {
    background: var(--gradient-secondary);
}

.roi-table tbody tr {
    border-bottom: 1px solid var(--light-gray);
}

.roi-table tbody tr:last-child {
    border-bottom: none;
}

.roi-table tbody tr.total-row {
    background: var(--light-bg);
    font-size: 18px;
}

.roi-table td {
    padding: 20px 24px;
    color: var(--dark);
    font-size: 15px;
}

.roi-table td.highlight {
    background: rgba(78, 205, 196, 0.05);
    font-weight: 600;
    color: var(--primary);
}

.roi-savings {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.savings-card {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.savings-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.savings-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.savings-card h3 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 12px;
}

.savings-card p {
    font-size: 16px;
    color: var(--gray);
    margin: 0;
}

/* Workflow Section */
.workflow-section {
    padding: 0px 0 60px 0;
    background: var(--white);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.workflow-step {
    text-align: center;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 20px;
    position: relative;
    transition: var(--transition);
}

.workflow-step:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--primary);
    margin: 0 auto 24px;
    box-shadow: var(--shadow-sm);
}

.workflow-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.workflow-step p {
    font-size: 15px;
    margin: 0;
}

.workflow-timeline {
    text-align: center;
}

.timeline-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 48px;
    background: var(--gradient-secondary);
    color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.timeline-badge i {
    font-size: 32px;
    margin-bottom: 8px;
}

.timeline-badge strong {
    font-size: 24px;
    font-weight: 900;
}

.timeline-badge span {
    font-size: 14px;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0 60px 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 32px;
}

.testimonial-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray);
}
.services-preview .services-cta{
    margin-top: 80px;
}


/* Contact Page */
.contact-section {
    padding:60px 0;
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-method-text strong {
    display: block;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-method-text a {
    color: var(--accent);
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.contact-form h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.navbar-default .navbar-nav > li > a.active {
        color: #2ac5ee;
    }

    .annual-cost-div .top-box .icon-img{
        display: inline-block;
    }
.annual-cost-div .top-box{
    text-align: center;
    background-color: #efeef4;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(0,0, 0, 0.4);
    margin-bottom: 15px;
    padding-bottom: 12px;
    font-size: 23px;
    line-height: 26px;
    font-weight: 600;
    margin: 35px 0;
}
.annual-cost-div .top-box .icon-div img{
 margin: 0 auto;
 max-width: 187px;
}
.annual-cost-div .top-box .icon-div{
    position: absolute;
    width: 100%;
    left: 0;
    top: -45px;
    text-align: center; 
}
 
.annual-cost-div .top-box h4{
    color: #343e65;
    font-size: 23px;
     padding-top: 30px;
     font-weight: 400;
     padding-bottom: 10px;
    background: #BAD4E2;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
background: linear-gradient(145deg,rgba(186, 212, 226, 1) 0%, rgba(255, 255, 255, 1) 100%);
}
.annual-cost-div  .col_1 {
    width: 30%;
        padding-right: 10px;
    padding-left:10px;
}
.annual-cost-div  .col_2 {
width: 25%;
  padding-right: 10px;
    padding-left: 10px;
}
.annual-cost-div  .col_3 {
    width: 45%;
      padding-right: 10px;
    padding-left:10px;
   
}
.annual-cost-div  .col_3 .top-box {
     padding-bottom: 18px;
     margin-top: 0;
}
.annual-cost-div  .col_3 .top-box h4{
  padding-top: 35px;
  color: #fff;
  font-size: 37px;
    background: linear-gradient(
    135deg,
    #2f4a8a 0%,
    #3f5fa8 40%,
    #5f7fc4 70%,
    #2f4a8a 100%
  );
  
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 2px 6px rgba(0,0,0,0.15);

}
.annual-cost-div  .col_3 .top-box{
    color: #283e20;
    font-size: 33px;
    line-height: 36px;
}
.annual-cost-div .save-price{
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 100%;
    text-align: center;

}
.annual-cost-div .save-price span{
     display: inline-block;
  padding: 5px 25px;
  font-size: 20px;
  line-height: 1.1em;
  font-weight: 600;
  color: #e6f2e6;
  text-transform: uppercase;
  letter-spacing: 0.5px;

  background: #3E6825;
background: linear-gradient(90deg,rgba(62, 104, 37, 1) 0%, rgba(82, 125, 51, 1) 50%, rgba(62, 104, 37, 1) 100%);

  border-radius: 5px; 

  
}

.annual-cost-bottom-div{
    box-shadow: 0 0 15px rgba(0,0, 0, 0.4);
    border-radius: 15px;
    overflow: hidden;
}
.annual-cost-bottom-div h4{
    color: #343e65;
    font-size: 21px;
    line-height: 1.3em;
    padding: 10px 15px;
    font-weight: 700;
    margin: 0;
    background: #BAD4E2;
background: linear-gradient(90deg,rgba(186, 212, 226, 1) 0%, rgba(249, 245, 245, 1) 100%);
}
.annual-cost-bottom-div .row{
    margin: 0;
}
.annual-cost-bottom-div .col_1,
.annual-cost-bottom-div .col_2,
.annual-cost-bottom-div .col_3,
.annual-cost-bottom-div .col_4{
    padding: 0;
}
.annual-cost-bottom-div .box-item ul{
    margin: 0;
    list-style: none;
    font-size: 18px;
    padding: 0;
    line-height: 1.2em;
    font-weight: 500;
}
.annual-cost-bottom-div .box-item ul li{
    border-bottom: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf;
     padding: 10px;
     position: relative;
}
.annual-cost-bottom-div .box-item ul li .sm-text{
    font-size: 11px;
    line-height: 1.2em;
}
.annual-cost-bottom-div .box-item ul li:nth-child(1),
.annual-cost-bottom-div .box-item ul li:nth-child(2){
    min-height: 60px;
}
.annual-cost-bottom-div .col_1 h4{
    background: #e8e7ec;
}
.annual-cost-bottom-div .col_4 h4{
   background: linear-gradient(
    135deg,
    #2f4a8a 0%,
    #3f5fa8 40%,
    #5f7fc4 70%,
    #2f4a8a 100%
  );
  
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 2px 6px rgba(0,0,0,0.15);
    color: #fff;
   

}
.annual-cost-bottom-div .col_4 h4 sub{
     font-size: 16px;
}
.feature-list-div {
    font-size: 23px;
    line-height: 1.4em;
    padding: 40px 0;
}
.feature-list-div ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
  max-width: 600px; 
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.feature-list-div li {
 
  align-items: center;
  font-size: 16px;
  color: #343e65; /* grey text */
}

.feature-list-div li::before {
  content: "✔";
  color: #28a745; /* green check */
  font-size: 16px;
  margin-right: 8px;
}

.feature-list-div strong {
  color: #2d3748; /* darker bold text */
  font-weight: 600;
}


.annual-cost-bottom-div .box-item ul li.check-g-icon:before{
     content: "✔";
  color: #28a745; /* green check */
  font-size: 16px;
  margin-right: 8px;
}

.pricing-note-div .note-content-1{
    background-image: url("../img/bg-cta.png");
    background-repeat: no-repeat;
   background-size: 100% 100%;
    padding: 20px 30px;
    font-size: 35px;
    text-align: center;
    line-height: 40px; 
        box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
     border-radius: 20px;
}
.pricing-note-div .note-content-1 .sm-text{
    font-size: 25px;
}
.pricing-note-div .note-content-1 img{
    display: inline-block;
}

.line-behing-title{
    position:relative;
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}
.line-behing-title:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #C6C6C6;
    margin-top: -1px;
    top: 50%;
    left: 0;
}
.line-behing-title span{
    display: inline-block;
    padding: 0 15px;
    background-color: #fff;
        position: relative;
    z-index: 5;
}
.flexible-section{
    padding-top: 40px;
}
.flexible-section .card-div{
    border:1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.3);
    padding:0 15px; 
    color: #16365A;
    margin-bottom: 50px;
} 
.flexible-section .card-div .top-title{
    text-align: center;
    background-repeat: no-repeat;
        background-size: cover;
    background-position: center bottom;
    padding: 15px 0;
    margin: 0 -15px;
    font-size: 23px;
    line-height: 1.2em;
    font-weight: 700;
     display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    min-height: 70px;
    position: relative;
    border-radius: 12px 12px;
}
.flexible-section .block-div-1{
    padding-bottom: 10px;
}
.flexible-section .card-div .top-title .offer-pop{
         position: absolute;
    left: 50%;
    top: -0;
    width: 160px;
    font-size: 15px;
    height: 53px;
    background-size: 100% 100%;
    background-position: center 10px;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    padding-top: 20px;
    transform: translateX(-50%) translateY(-35px);
}
.flexible-section .card-div.cd_3 .top-title .offer-pop{
    background-image: url(../img/offer-bg-1.png); 
    color: #0E5AAB;

}
.flexible-section .card-div.cd_4 .top-title .offer-pop{
    background-image: url(../img/offer-bg-2.png); 

}
.flexible-section .card-div h3{
    font-size: 40px;
    margin: 0;
    padding: 10px 0;
    border-bottom:1px solid #efeef4;
    text-align: center;
}
.flexible-section .card-div .sm-text-hr{
    font-size: 18px;
border-bottom:1px dashed #efeef4;
padding: 10px 0;
    text-align: center;
    min-height: 65px;
    display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
}
.flexible-section .card-div.cd_1 .sm-text-hr{
    font-size: 15px;
    font-weight: 700;
}
.flexible-section .card-div.cd_1 ul{
    font-size: 16px;
}

.flexible-section .card-div.cd_1 ul li{
    padding: 2px 0;
}


.flexible-section .card-div .sm-text-hr strong{
    font-size: 21px;
    
}
.flexible-section .card-div .sm-text-hr sub{
    font-size: 24px;
}
.flexible-section .card-div ul{
    margin: 0;
    padding: 15px 0;
    font-size: 17px;
    line-height: 1.3em;
    list-style: none;
    min-height: 140px;
}
.flexible-section .card-div ul li{
    padding: 5px 0;
    font-weight:700 ;
    display: flex;
}
.flexible-section .card-div ul li::before {
  content: "✔";
  color: #0C4CA4; /* green check */
  font-size: 16px;
  margin-right: 8px;
}
.flexible-section .card-div.cd_1 ul li::before {
  content: "•"; 
  font-size: 27px;
}
.flexible-section .card-div  .best-for{
        font-style: italic;
    background-image: url(../img/shadow_1.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center -3px;
    height: 80px;
    padding: 25px 15px;
    margin: 0 -15px;
}
.flexible-section .card-div .btn{
    display: block;
    font-size: 17px;
    letter-spacing: 0px;
    border-radius: 5px;
}

.flexible-section .card-div  .bottom-cta{
    padding: 10px 15px;
    margin: 0 -15px;
}
.flexible-section .card-div.cd_2 h3{
    color: #227B54;
}
.flexible-section .card-div.cd_3 h3{
    color: #0C4CA4;
}
.flexible-section .card-div.cd_4 h3{
    color: #46279D;
}
.flexible-section .card-div.cd_2 .top-title{
   background-image: url(../img/fs-p-m1.png);
   color: #fff;
}
.flexible-section .card-div.cd_3 .top-title{
  background-image: url(../img/fs-p-m2.png);
  color: #fff;
}
.flexible-section .card-div.cd_4 .top-title{
   background-image: url(../img/fs-p-m3.png);
   color: #fff;
}

.flexible-section .card-div.cd_3 .bottom-cta,
.flexible-section .card-div.cd_3 .best-for{
    background-color: #eaf3fb;
}


.flexible-section .block-div-2 ul{
    margin: 0;
    padding: 0;
    list-style: none;
    border:1px solid #ccc;
    border-radius: 15px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.3);
    padding:25px 35px; 
    color: #16365A;
    font-size: 22px;
    line-height: 1.3em;;
    margin-bottom: 25px;
}
 
.flexible-section .block-div-2 ul li{
     padding: 5px 0;
     background-image: url(../img/list-check-icon.png);
     background-repeat: no-repeat;
     background-position: left 7px;
     background-size: 22px auto; 
     padding-left: 35px;
}
.flexible-section .block-div-2 .tag-p {
    margin: 0;
    padding-top: 4px;
}
.flexible-section .block-div-2 .tag-p span{
    font-size: 16px;
    line-height: 1.1em;;
    background-color: #2B78DB;
    font-weight:700;
    padding: 5px 15px;
    border-radius: 40px;
    color: #fff;
}

.flexible-section .block-div-2 .b-sm-copy{
    font-size: 15px;
    
}
.flexible-section .bottom-note{
    font-size: 18px;
    background-color: #E8F6EC;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
    font-weight: 700;
    color: #133674;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
        align-items: flex-start;
}
.flexible-section .bottom-note .icon-img{
    width: 24px;
    height: auto;
    margin-right: 10px;
}

 
 
.text-with-back-line{
    position:relative;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #133674;
}
.text-with-back-line:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #C6C6C6;
    margin-top: -1px;
    top: 50%;
    left: 0;
}
.text-with-back-line span{
    display: inline-block;
    padding: 0 15px;
    background-color: #fff;
        position: relative;
    z-index: 5;
}
.service-card-custom{
    background-color: #FAF8FB;
    padding: 25px 30px;
    border: 4px solid #fff;
    box-shadow: 0 8px 10px #BBD0E2;
    border-radius: 20px;
    color: #133674;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} 
.service-card-custom:hover{
     transform: translateY(-8px);
     border-color: #4799D4;
}
.service-card-custom .s-icon{
    text-align: center;
    margin-bottom: -10px;
}
.service-card-custom .s-icon img{
    max-width: 150px;
    margin: 0 auto;
}
.service-card-custom h4{
    text-align: center;
    font-size: 22px;
    padding-bottom: 10px;
}
.service-card-custom  ul{
    margin: 0;
    padding: 10px 0;
    list-style: none;
   
}
.service-card-custom  ul li{
     display: flex;
     padding: 3px 0;
}
.service-card-custom  ul li:before{
 content: "✔";
  color: #6cd6e5; /* green check */
  font-size: 14px;
  margin-right: 8px;
}
.service-card-custom .btn-div .service-link{
    background: #4799D4;
    background: linear-gradient(90deg,rgba(71, 153, 212, 1) 49%, rgba(186, 230, 246, 1) 100%);
    text-align: center;
    display: block;
    border: 1px solid #fff;
    box-shadow: 0 5px 8px #BBD0E2;
    border-radius: 10px;
    padding: 10px 15px;
    color: #fff;
}
.services-bottom-icon{
    padding-top: 50px;
}
.services-bottom-icon ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
  align-items: center; 
}
.services-bottom-icon ul li{
    padding: 5px; 
}



/*Home New 14-04-20268*/
.s_home_excellence {
    font-size: 16px;
    background: #E6ECFD;
background: linear-gradient(0deg,rgba(230, 236, 253, 1) 0%, rgba(255, 255, 255, 1) 100%);
}
.s_home_excellence .section-badge{
    font-size: 15px;
    background: #dce9f7;
    color: #1159da;
    padding: 5px 20px;
    margin: 0;
}
.s_home_excellence .title{
    font-size: 41px;
    line-height: 1em;
}
.s_home_excellence .title span {
    background: linear-gradient(135deg, #163a6b 0%, #2465eb 50%, #098fb5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.s_home_excellence .btn{
    padding: 8px 25px;
    margin-right: 15px;
}
.s_home_excellence .cta-div{
    padding: 10px 0;
    display: flex;
    margin-bottom: 15px;
}
.s_home_excellence .trusted-icon{
    margin: 0;
    padding: 0;
    list-style: none;
     display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1em;
}
.s_home_excellence .trusted-icon li{
    padding-right: 15px;
}
.s_home_excellence .quote-div{
     background: linear-gradient(135deg, #ffffff 0%, #e7edfe 50%, #ffffff 100%);    
        display: flex;
        border-radius: 10px;
        border:1px solid #e3e6f1;
        padding: 10px;
        font-size: 18px;
    }
.s_home_excellence .quote-div span{
    line-height: 0.8em;
    font-size: 60px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #1159da;
    margin-right: 5px;
}

.s_hone_counter{
    padding: 0;
    background: #f4f9fc !important;
        display: block !important;
    width: 100%;
    height: auto !important;
    min-height: auto !important;
    padding: 0 0 15px 0!important;
    
}
.s_hone_counter .highlight{
    color: #0958d9;
    font-size: 32px;
    line-height: 1.1em;
    font-weight: 700;
}
.s_hone_counter .lead{
    color: #1e2446;
    font-size: 15px;
    line-height: 1.1em; 
    margin: 0;
    padding: 0;
}
.s_hone_counter .outer-div{
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 10px;
    margin-top: -25px;
}
.s_hone_counter .fact-container{
    padding: 0;
    border-right: 1px solid #c6c6c6;
}
.s_hone_counter .fact-container:last-child{
    border: none !important;
}
.s_hone_counter .row{
    margin-top: 0 !important;
}

.s_home_challenge{
    background: #f4f9fc;
    padding: 30px 0;
}
.section-badge.no-bg{
    margin: 0;
    padding: 0;
    background: transparent;
    color: #1159da;
}
.s_home_challenge .section-badge{
    margin: 0;
    padding: 0;
    background: transparent;
    color: #1159da;
}
.challenge-card{
    background-color: #fefefe;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    color: #7e7c85;

}
.challenge-card p{
    font-size: 11px;
    line-height: 1.2em;
}
.challenge-card .problem-icon {
    width: 40px;
    height: 40px;
    background: #feeaec;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #f12b2d;
    margin-bottom: 15px;
    box-shadow: none;
}
.challenge-card h6{
    color: #000000;
    font-size: 13.5px;
}
.challenge-card .year{
    font-weight: 700;
    font-size: 14px;
    color: #c44343;
}




.s_home_challenge .row-block{
    margin: 0 -10px;
    margin-top: 20px;
}
.s_home_challenge .row-block>div{
    padding: 0 10px;
}

.solution-block{
    background-color: #e7eefe;
    padding: 15px;
    border-radius: 15px;
    font-size: 13px;
    line-height: 1.2em; 
}
.solution-block p{
    font-size: 13px;
    line-height: 1.2em; 
}
.solution-block h5{
        font-size: 18px;
    line-height: 1.2em;
    letter-spacing: -0.5px;
    color: #000000;
}
.solution-block .btn{
    padding: 8px 25px;
    font-size: 13px;
}
ul.check-list-style{
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 10px;
}
ul.check-list-style li{
    display: flex;
    padding: 3px 0;
}
ul.check-list-style li:before{
 content: "✔";
  color: #0e57d8; /* green check */
  font-size: 14px;
  margin-right: 8px;
}

 
.s_home_choose_digi{
    background-color: #f4f9fc;
    padding-top: 10px;
    padding-bottom: 30px;
}
.s_home_choose_digi .row-block{
    margin: 0 -10px;
    margin-top: 20px;
}
.s_home_choose_digi .row-block>div{
    padding: 0 10px;
}
.s_home_choose_digi .title{
    font-size: 21px;
    margin: 5px 0 15px 0;
}
.c-digi-card .problem-icon {
    width: 40px;
    height: 40px;
    background: #e8eefd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1859d6;
    margin-bottom: 5px;
    box-shadow: none;
}
.c-digi-card{
    background-color: #fefefe;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    color: #000;
        min-height: 100%;
}
.c-digi-card p{
    font-size: 15px;
    line-height: 1.2em;
}
.c-digi-card h6{
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
}
.s_home_services .r-link{
    color: #0958d9;
    font-weight: 700;
    padding: 15px 0;
    display: inline-block;
}
.s_home_services {
     background-color: #f4f9fc;
    padding-top: 0;
    padding-bottom: 40px;
}
.s_home_services .title{
    margin: 5px 0 15px 0;
    font-size: 21px;
}
.s_home_services .row-block{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;

}
.s_home_services .c-digi-card{
    padding-bottom: 60px;
    position: relative;
}
.s_home_services .c-digi-card .group-icon{
    position: absolute;
    bottom: 0;
    left: 0;
    padding:15px;
}

.s_home_services .row-block{
    margin: 0 -10px;
    margin-top: 0;
}
.s_home_services .row-block>div{
    padding: 0 10px;
}

.s_home_s_story{
     background-color: #f4f9fc;
    padding-top: 0;
    padding-bottom: 30px;
}

.s_home_s_story .left-bg{
    border-radius: 10px;
    background: #E3E7FD;
background: linear-gradient(90deg, rgba(227, 231, 253, 1) 0%, rgba(244, 249, 252, 1) 100%);
    padding: 15px 0 15px 25px;
}
.s_home_s_story .left-story-box .section-badge{
       background: #fff;
    font-size: 11px;
    color: #002dd0;
    line-height: 1em;
    margin-bottom: 0;
    padding: 5px 10px;
}
.s_home_s_story .digi-quote{
     border-radius: 10px;
    background: #10274e;
    color: #fff;
    padding:30px 25px;
    padding-top: 60px;
}
.s_home_s_story .digi-quote h5{
    font-size: 16px;
    line-height: 1.5em;
    color: #fff;
    margin-bottom: 18px;
}
.s_home_s_story .digi-quote .dc{
    color: #1159da;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 65px;
    line-height: 0.8em;
    position: absolute;
    top: 25px;
    left: 35px;
}
.s_home_s_story  .graph-div{
 border-radius: 10px;
    background: #fff;
    color: #fff;
    padding:5px;
    margin: 15px 0;
}

.row.row-block10{
    margin: 0 -10px;
    margin-top: 0;
}
.row.row-block10>div{
    padding: 0 10px;
}


.s_home_how_work{
     background-color: #f4f9fc;
    padding-top: 0;
}
.s_home_how_work .section-badge{
    color: #002dd0;
    font-weight: 700;
    margin-bottom: 0;
}
.s_home_how_work .title{
    color: #002dd0;
    margin-top: 5px;
}
.hw-step-card{
    color: #8f949d;
    font-size: 12px;
    font-weight: 700;
}
.hw-step-card .no {
    position: relative;
}
.hw-step-card .no span{
    display: inline-block;
    width: 34px;
    height: 34px;
     display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
  font-size: 22px;
  line-height: 1;
  background: #0a4ccb;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 5;

}
.hw-step-card .no:after{
    content: "";
    border-bottom: 3px dotted #0a4ccb;
    position: absolute;
    left: 30px;
    top: 50%;
    height: 1px;
    width: 100%;
}
.step-row>div:last-child .no:after{
    display: none;
}
.hw-step-card h6{
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 20px;
}