/* Base Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --success-color: #2ecc71;
    --white: #ffffff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: fit-content;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.lead {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    margin-top: 1rem;
}

.cta-button i {
    margin-left: 8px;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.learn-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.learn-more i {
    margin-left: 5px;
    font-size: 0.8rem;
}

.learn-more:hover {
    color: var(--secondary-color);
}

/* Header */
.main-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0 240px 0;
}

.header-content {
    max-width: 600px;
}

.header-image {
    position: absolute;
    right: 0px;
    top: 100px !important;
    width: 50%;
}
.fbr-invoice-image {
  width: 90% !important;
  height: 100% !important;
  display: block; 
}

/* Checklist */
.checklist {
    list-style: none;
    margin: 2rem 0;
}

.checklist li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.checklist i {
    margin-right: 10px;
    color: var(--success-color);
    font-size: 1.2rem;
}

.checklist .checked {
    color: var(--text-color);
    font-weight: 500;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}
.expertise-section h2 {
text-align:center
}

.section-header h2 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
}

/* Consultants Section */
.consultants-section {
    padding: 60px 0;
    background-color: var(--light-color);
    text-align: center;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.industries {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 3rem;
}

.industry-tag {
    background-color: var(--light-color);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.expertise-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expertise-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Empower Section */
.empower-section {
    padding: 80px 0;
    background:linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    text-align: center;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--light-color);
    text-align: center;
}

.section-title {
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 1.4;
text-align:center;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.benefit-card {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.benefit-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.benefit-text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #333;
}
.icon {
  font-size: 18px;
}

.icon.blue {
  color: #007bff;
}

.icon.orange {
  color: #ff6600;
}

.icon.yellow {
  color: #f0ad4e;
}

/* Responsive */
@media (max-width: 768px) {
  .benefits-container {
    flex-direction: column;
    align-items: center;
  }
}
/* CTA Section */
.cta-section {
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    box-shadow: var(--box-shadow);
}

.cta-card h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.partner-table {
    width: 100%;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
    border-collapse: collapse;
}

.partner-table th, .partner-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-table th {
    color: var(--white);
    font-weight: 500;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .header-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .header-image {
        position: absolute;
        width: 100%;
    }
    
    .benefits-content {
        flex-direction: column;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .expertise-grid, .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        gap: 20px;
    }
    
    .stat-item {
        flex: 1 1 100px;
    }
}
.trusted-carousel {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.trusted-carousel h2 {
  font-size: 22px;
  margin-bottom: 30px;
  color: #444;
}

.trusted-carousel h2 span {
  font-weight: bold;
  color: #000;
}

.carousel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.nav {
  background: none;
  border: none;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.nav:hover {
  color: #000;
}

.carousel-track {
  display: flex;
  gap: 30px;
  overflow: hidden;
  width: 80%;
  max-width: 900px;
}

.carousel-item {
  min-width: 180px;
  max-width: 200px;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.carousel-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}
