:root {
    --primary-gold: #ffd700;
    --secondary-gold: #ffed4e;
    --dark-bg: #1a1a1a;
    --light-gray: #f8f8f8;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
body {

    font-family: 'Sunflower','inter';
    line-height: 1.6;
    color: #333;
}

/* Header 
.header {
    background: #ffffff;
    color: white;
    padding: 0px 0;
    position: fixed;
    z-index: 9999999;
    width: 100%;
    background: transparent;
  
}*/
/* 
.inforce-version .text-wrapper-16 {
        position: absolute;
        top: 124px;
        left: 0;
        font-family: inter;
        font-weight: 700;
        color: #ffffff;
        font-size: 13px;
        letter-spacing: 0;
        line-height: 16px;
        white-space: nowrap;
    } */

/* .logo {
    display: flex;
    align-items: center;
    gap: 10px;
} */
.position-relative .valuesection {
width: 296px;
height: 311px;
margin: 0 auto;
}
.logo-icon {
    width: 127px;
    height: 127px;
    Top:17px;
     Left:13.46px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--dark-bg);
}
.separator-line {
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
           
        }
.home .header-divider {display:none;}
.navbar-nav .nav-link {
    color:#fff !important;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: #000;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-color: #fff;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 139px;
}

.hero-text {
    color: white;
    padding-top: 85px;
    Width: 450px;
    Height:350px;
    Left:40px;
}


.hero-text p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 400px;
}

.hero-image {

	
width: 127%;

	
display: flex;
justify-content: flex-start;
align-items: center;
overflow: hidden;

}

.hero-image img {
width: 100%;
height: auto;
/* object-fit: cover; */
max-height: 600px;
}

.money-bag {
    width: 180px;
    height: 200px;
    background: linear-gradient(145deg, #8B4513, #A0522D);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--primary-gold);
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 3;
}

.money-bag::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: #8B4513;
    border-radius: 15px 15px 0 0;
}

.coins {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    border: 3px solid #fff700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 4;
}

.coins::before {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: bold;
    color: #b8860b;
}

.coin-1 { 
    top: 80px; 
    left: -40px;
    animation: float 3s ease-in-out infinite;
}
.coin-2 { 
    top: 40px; 
    right: -50px;
    animation: float 3s ease-in-out infinite 0.5s;
}
.coin-3 { 
    bottom: 120px; 
    left: -50px;
    animation: float 3s ease-in-out infinite 1s;
}
.coin-4 { 
    bottom: 60px; 
    right: -40px;
    animation: float 3s ease-in-out infinite 1.5s;
}
.coin-5 {
    top: 10px;
    left: 30px;
    animation: float 3s ease-in-out infinite 2s;
}
.coin-6 {
    bottom: 30px;
    left: 10px;
    animation: float 3s ease-in-out infinite 2.5s;
}

.bills {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.bill {
    width: 100px;
    height: 50px;
    background: linear-gradient(145deg, #90EE90, #7CFC00);
    border: 2px solid #32CD32;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.bill::before {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
    color: #006400;
}

.bill:nth-child(1) { transform: rotateZ(-5deg); }
.bill:nth-child(2) { transform: rotateZ(2deg); }
.bill:nth-child(3) { transform: rotateZ(-3deg); }
.bill:nth-child(4) { transform: rotateZ(4deg); }

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

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.icon-chart { background: #e8f5e8; color: #4CAF50; }
.icon-lock { background: #e3f2fd; color: #2196F3; }
.icon-target { background: #fff3e0; color: #FF9800; }

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.btn-custom {
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: var(--secondary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* What We Do Section */
.what-we-do {
    padding: 80px 0;
    background: white;
}
.Values-driven {

padding: 80px 0;
}
.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 50px;
}

.service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.service-item-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.service-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.service-item p {
    font-size: 14px;
    color: #666;
}

.chart-image {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 150px;
}

.bar {
    width: 30px;
    background: #ff6b35;
    border-radius: 5px 5px 0 0;
}

.bar-1 { height: 60px; }
.bar-2 { height: 100px; }
.bar-3 { height: 150px; }

.arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f0f0f0;
}

.about-logo {
    width: 300px;
    height: 300px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.about-logo::before {
    content: 'iAAR';
    font-size: 48px;
    font-weight: bold;
    color: var(--dark-bg);
}

.about-logo::after {
    content: 'Financial Group';
    position: absolute;
    bottom: 80px;
    font-size: 16px;
    color: var(--dark-bg);
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: white;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-weight: bold;
}

.stat-item p {
    color: #666;
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-bg);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: var(--dark-bg);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
}

.testimonial-author {
    font-weight: bold;
    color: var(--dark-bg);
}


 .dots-bg-top-left {
    


    background-image: url(img/Dotted.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 184px;
    top: 0px;
    left: 14px;
    z-index: 0;
   }

/* Steps Section */
.steps {
    padding: 80px 0;
    background: var(--dark-bg);
    color: white;
}


.step-image {
    width: 100%;
    height:auto;
    background: #333;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    align-items: center;
}

.step-building {
    width: 120px;
    height: 120px;
    background: #666;
    position: relative;
}

.step-building::before,
.step-building::after {
    content: '';
    position: absolute;
    background: #999;
}

.step-building::before {
    width: 20px;
    height: 60px;
    top: 10px;
    left: 20px;
}

.step-building::after {
    width: 20px;
    height: 60px;
    top: 10px;
    right: 20px;
}

.step-text h3 {
    color: var(--primary-gold);
    font-size: 24px;
    margin-bottom: 10px;
}

.step-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.step-text p {
    color: #ccc;
    margin-bottom: 30px;
}

.step-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.dot.active {
    background: var(--primary-gold);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.social-sidebar {
width: 16px;
height:16px;
padding: 0;
align-items: center;
}










.values {

font-family:Inter;
font-weight: 600;
font-Size: 16px;

}

.text-muted {
font-family: inter;
color: #2f2f2f;
font-size: 10px;
text-align: center;
line-height: 24px;
font-weight: 400;
}

.head{

height: 242px;
left: 0;
background-color: #fff5d9;
border-radius: 20px;
}

.what-we-do {
padding: 80px 0;
}
.service-icon {
width: 36px;
height: 36px;
background-color: #ffc107;
color: #000;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 1.2rem;
}
.service-item h6 {
font-weight: 600;
}
.service-item p {
font-size: 0.9rem;
}
.dots-background {
position: absolute;
right: 80px;
top: 40px;
opacity: 0.2;
}
.service-image {
position: relative;
}
.service-image img {
max-width: 100%;
height: auto;
}
/* Bootstrap Responsive Adjustments */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text {
        padding-right: 20px;
		padding-left: 30px;
    }

    .hero-image {
        padding-left: 20px;
        margin-top: 40px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-logo {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .money-bag {
        width: 150px;
        height: 170px;
        font-size: 60px;
    }

    .coins {
        width: 40px;
        height: 40px;
    }

    .bill {
        width: 80px;
        height: 40px;
    }
}


/* Testimonial Slider Styles */
.testimonial-slider {
position: relative;
overflow: hidden;
min-height: 250px;
}

.testimonial-item {
position: absolute;
width: 100%;
top: 0;
left: 0;
opacity: 0;
transition: opacity 0.5s ease, transform 0.5s ease;
transform: translateX(50px);
pointer-events: none;
}

.testimonial-item.active {
opacity: 1;
transform: translateX(0);
position: relative;
pointer-events: auto;
}

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

.testimonial-dots .dot {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #fff;
border: 1px solid #fff;
cursor: pointer;
transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active {
background-color: #FFB900;
border-color: #fff;
}



/* Process Slider Styles 
.process-slider {
position: relative;
}

.process-slide {
display: none;
opacity: 0;
transition: opacity 0.5s ease;
position: relative;
}

.process-slide.active {
display: block;
opacity: 1;
}

.process-slide .image-wrapper {
background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
border: 1px solid #333;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
position: relative;
overflow: hidden;
min-height: 300px;
}

.process-slide .animated-image {
position: absolute;
top: 0;
left: 0;
right: 0;
display: flex;
justify-content: center;
transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
opacity: 1;
transform: translateY(0);
}

.process-slide .animated-image img {
max-height: 600px;
transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-slide.active .animated-image img {
transform: scale(1.02);
}

.process-step {
cursor: pointer;
transition: all 0.3s ease;
}

.process-step:hover {
transform: scale(1.1);
}

.process-navigation {
position: relative;
z-index: 10;
}

.process-nav-btn {
cursor: pointer;
transition: transform 0.3s ease;
}

.process-nav-btn:hover {
transform: scale(1.1);
}



.tags-container {
display: flex;
flex-direction: column;
gap: 10px;
}

.tag-pair {
display: flex;
flex-wrap: wrap;
gap: 5px;
}

.tag-badge {
font-family: inter;
font-weight: 700;
display: inline-block;
background-color:#3F3F3FC9;
color: #8F8F8F;
padding: 8px 15px;
border-radius: 4px;
font-size: 10px;
letter-spacing: 1px;
text-transform: uppercase;
line-height: 18px;
}


.hero {
position: relative;
overflow: hidden;
}
.hero-image-wrapper img {
width: 100%;
height: auto;
display: block;
}*/
  /* Process Slider Styles */
.process-slider {
    position: relative;
  }
  
  .process-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  
  .process-slide.active {
    display: block;
    opacity: 1;
  }
  
  .process-step {
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .process-step:hover {
    transform: scale(1.1);
  }
  
  .process-navigation {
    position: relative;
    z-index: 10;
  }
  
  .process-nav-btn {
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .process-nav-btn:hover {
    transform: scale(1.1);
  }
        

.tags-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag-badge {
    font-family: inter;
    font-weight: 700;
  display: inline-block;
  background-color:#3F3F3FC9;
  color: #8F8F8F;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 18px;
}


.hero {
    position: relative;
    overflow: hidden;
}
.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/*****************Contact page ******************/
p.contact.heading {
font-family: 'Sunflower';
font-size: 48px !important;
font-weight: 700;
color: #FBCD61;
	width: 95%;
}

p.has-text-align-left.freeconcultation {

font-family: 'Inter';
font-size: 20px !important;
font-weight: 400;
color: #8C9291;
width: 90%;
}
p.has-text-align-left.letstalk {
font-family: 'Inter';
font-weight: 700;
font-size: 30px;
color: #0E2824;
}

.form-container {
    background-color: #F0BA48;
    padding: 40px;
    border-radius: 8px;
    width: 99%;
    
}

.form-row {
    display: flex;
    gap: 35px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

label {
     font-family: 'Inter';
     font-size: 14px;
     font-weight: 500;
     line-height: 120%;
     letter-spacing: 0px;
     display: block;
     margin-bottom: 8px;
     color: #262626;
        text-align: left;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    background-color: #fff;
    font-size: 16px;
    color: #999; 
    outline: none;
    transition: all 0.3s ease;
	font-family: 'INTER' !important;
}

input[type="text"]:not(:placeholder-shown),
input[type="tel"]:not(:placeholder-shown),
input[type="email"]:not(:placeholder-shown),
textarea:not(:placeholder-shown) {
    color: #000;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
    color: #008000 !important;
    -webkit-text-fill-color: #999 !important;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    color: #000;
}

textarea {
    height: 160px;
    resize: vertical;
    font-family: inherit;
}

.message-group {
    margin-bottom: 30px;
}

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

.submit-btn {
    background-color: #fff;
    color: #333;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
    
    .form-container {
        padding: 20px;
    }
}

.gradient-line {
height: 4px;
width: 140px;
background: linear-gradient(to right, #f6b93b, #000000);
border-radius: 2px;
margin-bottom: 10px;
}

.founder-img {

display: block;
margin-left: auto;
margin-right: auto;
}

.form-row {
display: flex;
flex-wrap: wrap;
}

.form-group {
flex: 1 1 45%;
display: flex;
flex-direction: column;
}

.message-group,
.submit-container {
margin-top: 15px;
}

input, textarea {
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}

/* Container centers the button and handles spinner */
.submit-container {
display: flex;
justify-content: center;
align-items: center;
position: relative;
}

/* Style the submit button */
.submit-btn {
background-color: white;
color: #000;
padding: 10px 30px;
border: 2px solid #000;
border-radius: 25px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover effect */
/* .submit-btn:hover {
background-color: #000;
color: #fff;
}
*/
/* Position spinner next to button but don't shift it */
/* Spinner alignment */
form[action*="wpcf7-f394"] .wpcf7-spinner {
margin-left: 10px;
position: relative;
top: 0;
transform: translateY(0);
}
/* Target inputs and textarea only for form ID wpcf7-f394 */
form[action*="wpcf7-f394"] input,
form[action*="wpcf7-f394"] textarea {
color: #B6C3CA !important;
}

/* Optional: change placeholder color */
form[action*="wpcf7-f394"] input::placeholder,
form[action*="wpcf7-f394"] textarea::placeholder {
color: #B6C3CA !important;
opacity: 1;
}
form[action*="wpcf7-f394"] input[type="Email"]{

border-radius: 6px;
    height: auto;
    border: none !important;
}
/* Target submit button inside the specific form */
form[action*="wpcf7-f394"] input[type="submit"] {
background-color: white !important;
color: rgba(0, 0, 0, 1) !important;
border: none;
border-radius: 25px;
padding: 10px 30px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s ease, color 0.3s ease;
display: inline-block;
text-align: center;
width: 127px;
height: 50px;
font-family: 'Inter';
font-size: 16px;
font-weight: 500;  
}

.wpcf7-not-valid-tip {
float: left;
}

span.wpcf7-spinner {
display: none;
}

/* .wpcf7-spinner {
  display: inline-block;
  margin-left: 10px;
} */

/* .wpcf7-not-valid + .wpcf7-not-valid-tip {
  color: #000;
  font-size: 13px;
} */
section.text-center.py-5.inforce-version {
margin-top: 0;
}
.page-id-11 .about.py-5 {
padding-bottom: 7rem !important;
}

.footerheading {
    font-family: inter;
    font-weight: 700;
    line-height: 20px;
    font-size: 14px;
	padding-bottom: 1px;
	padding-top: 10px;
	
}
.foundername {
    font-family: "Sunflower", Helvetica;
    font-weight: 500;
    font-size: 27px;
	color: rgba(0, 0, 0, 1);
}
span.designation {
    font-family: inter;
    font-weight: 400;
    font-size: 16px;
	line-height: 29px;
}
/************Aboutpage************************/

@media screen and (min-width: 800px) {
.page-template .col-12.col-md-6.text-center.text-md-end {
    height: 540px;
}
}
ul li strong {
    font-family: 'Inter';
    font-weight: bold;
    font-size: 16px;
}
ul li span {
    font-family: inter;
    font-weight: 400;
    font-size: 16px;
}

/****************slider ***********************************/
/* Financial Slider Styles - Exact match to HTML version */
/* .financial-slider-container {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.financial-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
  pointer-events: none;
}
 */
.financial-slide.active {
  pointer-events: all;
}

.slide-image-container {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  overflow: hidden;
  z-index: 1;
  background: #333;
  border-radius: 20px;
}

.slide-image {
  position: fixed;
/*   width: 547px;
  height: 480px; */
  background: #333;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-200px, -300px);
  opacity: 1;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-image.active {
  transform: translate(0, 0);
}

.slide-image.staying {
  transform: translate(0, 0);
}

.slide-image.moving-down {
  transform: translate(0, 0px);
}

.slide-image.exit {
  transform: translate(0, 400px);
}

.slide-image.entering {
  transform: translate(-174px, -430px);
  opacity: 0;
	
}

.slide-image .step-image {
  width: 400px;
  height: 400px;
  /*object-fit: cover;
   filter: brightness(1.2); */
}

.slide-content-wrapper {
  flex: 1;
  max-width: 600px;
  margin-left: 500px;
  height: 470px;
  opacity: 0;
  transition: opacity 0.6s ease-out 0.4s;
}

.financial-slide.active .slide-content-wrapper {
  opacity: 1;
}



.step-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.step-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 50px;
	padding-left:25%;
}

.financial-navigation {
  position: absolute;
  bottom: 60px;
  right: 8%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-arrow {
  background: #FFA500;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-arrow:hover {
  background: #FF8C00;
  transform: scale(1.1);
}

.nav-arrow::after {
  content: '→';
  color: white;
  font-size: 20px;
  font-weight: bold;
}

/* .nav-dots {
  display: flex;
  gap: 10px;
}      */

.nav-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
 
  color: #ffa500;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-dot.active {
  background: #FFA500;
  border-color: #FFA500;
  color: white;
}

.nav-dot:hover:not(.active) {
  border-color: #FFA500;
  color: #FFA500;
}

/* Custom icons for each step */
.icon-step-1::before {
  content: '🧮';
  font-size: 80px;
}

.icon-step-2::before {
  content: '📊';
  font-size: 80px;
}

.icon-step-3::before {
  content: '🎯';
  font-size: 80px;
}

.icon-step-4::before {
  content: '📈';
  font-size: 80px;
}

.icon-step-5::before {
  content: '🛡️';
  font-size: 80px;
}

.icon-step-6::before {
  content: '🚀';
  font-size: 80px;
}

/* Responsive Design
@media (max-width: 768px) {
  .slide-image-container {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
  }
  
  .slide-content-wrapper {
    margin-left: 0;
    text-align: center;
  }
  
  .step-title {
    font-size: 2.5rem;
  }
  
  .financial-navigation {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
  }
}
*/
     .stats-wrapper {
           display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: left;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }


        /* Vertical dividers */
        .stat-item:not(:last-child)::after {
           content: '';
    position: absolute;
    right: -70%;
    top: 31px;
    bottom: 0;
    width: 1px;
    background-color: #4A4363;
    transform: translateX(70%);
    height: 42px;
        }
			@media only screen and (max-width: 480px) {
			  .gradient-line {
				margin-left: auto;
				margin-right: auto;
			  }
				h5.card-title.mb-3.mt-3

 				{
  				  margin-top: 1rem !important;
					}
		}
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .stats-wrapper {
                flex-direction: column;
                gap: 40px;
                align-items: center;
            }
            
            .stat-item:not(:last-child)::after {
                display: none;
            }
			.stat-item {
   
           position: relative;
        text-align: center;
        display: flex
;
        align-items: center;
        }
			.text-wrapper {
    
    text-align: center;
    padding: 10px;
     }
			h2.valuesdriven.mb-3  {
				width:auto !important;
			}
		p.mb-4.card-text{ width:auto !important; }
			
    .whatwedo .service-icon-left {
    text-align: center!important;;}
.whatwedo h6.fw-semibold.mb-3
 { 
     text-align: center!important;;
	 }

.whatwedo .small {
     width: auto!important;
     text-align: center!important;
	 }
			h2.valuesdriven.mb-3 {
				 width: auto!important;
                 text-align: center!important;
			}
			
			
}
@media (min-width: 1024px) {
    .hero-image img {
        height: 530px;
        padding-bottom: 0px !important;
    }
	
  .financial-slider-container .slide-content-wrapper {
  flex: 1;
  max-width: 600px;
  margin-left: 0px;
  height: 470px;
  opacity: 0;
  transition: opacity 0.6s ease-out 0.4s;
}
	
}
@media (min-width: 1024px) {
 .financial-slide {
    position: absolute !important; 
    width: auto !important;
    height: auto !important;
    
  }
 	.financial-slider-container {
		height:100vh !important;
		width:auto;
	}
	    .financial-navigation {
        bottom: -20px !important; 
    }
	
	.hero-text h1.customtitle {
    font-size: 28px;
   }
	.hero-content .hero-text p {
		font-size: 14px;
	}
	
	
	/*
	.slide-content-wrapper {
		margin-left:2px !important;
	}  */
}
@media (min-width: 2560px) {
 .hero-image img {
	    position:absolute;         
        width: 100%;
        height: 700PX;
        PADDING-TOP: 38px;
        margin-top: 358px;
}

	
	.financial-slider-container {
    position: relative;
        width: 100%;
        height: 45vh !important;
        align-items: center;
        display: block !important;
        height: 41vh !important;
   
}
}
@media (min-width: 1920px) {
 .hero-image img {
	    position:absolute;         
        width: 100%;
        height: 700PX;
        PADDING-TOP: 38px;
        margin-top: 358px;
}
	.financial-slider-container {
    position: relative;
        width: 100%;
        height: 45vh !important;
        align-items: center;
        display: block !important;
        height: 648px !important;
   
}
}
@media (max-width: 1024px) {
    .financial-slide{
        height:auto !important;
    }
	 .financial-slider-container .slide-content-wrapper {
        width: 100%;
        max-width: 100%;
        margin-left: 0px;
        text-align: center;
    }
/* 	    .financial-navigation {
          bottom: 60px !important;
         } */
	
	    .slide-content-wrapper .step-title {
           font-size: 1.5rem;
          }
	    .process-section h2.text-warning {
        text-align: center;
    }
	p.text-light.mb-5.processtxt {
    text-align: center;
    width: 100%;
}   
	.financial-slider-container .process-section .text-light 
	{
		width: 100%;
        text-align: center;
    }
  .process-section .row.align-items-center {
    display: block;
    text-align: -webkit-center;
    
}
	

}
@media (min-width: 1025px) {
.financial-slide .slide-image-container {
	
	position:relative;
}
}
.wp-block-column.is-layout-flow.wp-block-column-is-layout-flow .contact.heading {
    line-height: 57px;
}


   .cs-banner a.social-icon{
        color: #000 !important;
        background-color: rgb(250, 204, 21);
        padding: 5px;
        font-size: 12px !important;
        border-radius: 5px;
        line-height: 0px;
    }

    .valuesection:hover h5{
            font-size: 18px;
            font-weight: 700 !important;
    }
  a.emailfooter {
    text-decoration: none;
    color: #fff;
}

a.emailfooter:hover {
  color: #ffc107; /* Bootstrap's warning yellow */
}
.contact-email .emailfooter:hover
 {
  color: #ffc107; /* Bootstrap's warning yellow */
}
.contact-field{
	text-decoration:none;align-content
}
.contact-field:hover {
	text-decoration:none;
  color: #ffc107; /* Yellow or any color you want */
}