/* HERO SECTION CSS */

:root {
    --tomato-primary: #ff6347;
    --tomato-dark: #e74c3c;
    --tomato-light: #ff8c7a;
    --tomato-bg: #fff5f3;
    --tomato-accent: #ff4500;
}

*{
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, 
                Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    max-height: 1200px;
    background: url('../img/herobanner.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(47, 48, 58, 0.5) 0%, rgba(28, 37, 65, 0.9) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 650px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero .subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--tomato-primary), var(--tomato-accent));
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    background-color: #4338ca;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

/*about us section*/

.about-section {
  padding: 6rem 0;
  position: relative;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--tomato-accent);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text p {
  color: var(--tomato-accent);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* ====== About Section ====== */
.about-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
              url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center;
  background-size: cover;
  color: var(--white);
  position: relative;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.about-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.about-section p {
  color: rgba(255, 255, 255, 0.9);
}

.section-subtitle {
  display: inline-block;
  color: var(--tomato-accent);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  background: var(--tomato-bg);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
  transition: var(--transition);
  border-left: 3px solid var(--tomato-accent);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.2rem;
  color: tomato;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-card h3::before {
  content: '✓';
  color: var(--tomato-accent);
  font-weight: bold;
  font-size: 1.3rem;
}

.feature-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.about-image {
  flex: 1 1 45%;
  min-width: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 5px solid rgba(255, 255, 255, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.stats-container {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--tomato-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ====== Responsive Adjustments ====== */
@media (max-width: 992px) {
  .about-section {
      padding: 4rem 0;
  }
  
  .about-content {
      flex-direction: column;
  }
  
  .about-image {
      min-width: 100%;
      order: -1;
  }
  
  .about-text {
      text-align: center;
  }
  
  .stats-container {
      justify-content: center;
  }
  
  .feature-card {
      text-align: left;
  }
}

@media (max-width: 768px) {
  h2 {
      font-size: 2rem;
  }
  
  .about-features {
      grid-template-columns: 1fr;
  }
  
  .stat-item {
      min-width: calc(50% - 1rem);
  }
}

/* .trust-indicators {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    opacity: 0.9;
} */


/* ===== Professional Trust Indicators ===== */
.trust-indicators {
    
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem 0;
  }
  
  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
  }
  
  .trust-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
  }
  
  .trust-value::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #fff, rgba(222, 48, 9, 0.3));
    border-radius: 3px;
    opacity: 0;
    transition: var(--transition);
  }
  
  .trust-item:hover .trust-value::after {
    opacity: 1;
    bottom: -12px;
  }
  
  .trust-label {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
  }
  
  .trust-item:hover .trust-label {
    color:white;
    transform: translateY(2px);
  }
  
  /* Mobile: Two Column Layout */
  @media (max-width: 768px) {
    .trust-indicators {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.5rem;
      padding: 2rem 0;
    }
  
    .trust-item {
      align-items: flex-start;
      text-align: left;
      padding: 1.25rem;
      justify-content: center;
      background: rgba(251, 54, 33, 0.8);
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
  
    .trust-value {
      font-size: 1.75rem;
      margin-bottom: 0.25rem;
    }
  
    .trust-value::after {
      left: 0;
      transform: none;
    }
  
    .trust-label {
      font-size: 0.875rem;
    }
  
    /* Handle odd number of items */
    .trust-item:nth-child(3) {
      grid-column: 1 / -1;
      text-align: center;
      align-items: center;
    }
  
    .trust-item:nth-child(3) .trust-value::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }
  
  /* Desktop: Horizontal Layout */
  @media (min-width: 769px) {
    .trust-indicators {
      flex-direction: row;
      justify-content: space-around;
      gap: 1rem;
    }
  
    .trust-item {
      flex: 1;
      max-width: 200px;
      padding: 1.5rem;
      background: rgba(249, 44, 21, 0.9);
      border-radius: 10px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
      border: 1px solid var(--border-color);
    }
  
    .trust-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }
  
    .trust-value {
      font-size: 2.25rem;
    }
  
    .trust-label {
      font-size: 0.9375rem;
    }
  }
  
  /* Large Desktop Enhancements */
  @media (min-width: 1200px) {
    .trust-indicators {
      gap: 2rem;
      padding: 3rem 0;
    }
  
    .trust-item {
      padding: 2rem;
    }
  
    .trust-value {
      font-size: 2.5rem;
    }
  
    .trust-label {
      font-size: 1rem;
    }
  }
  
.hero-image {
    position: relative;
    flex: 1;
    max-width: 600px;
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    /* Glassy light gradient */
    background: linear-gradient(
        145deg,
        rgba(47, 48, 58, 0.2),
        rgba(28, 37, 65, 0.6)
    );

    /* Optional: light border for glass edge feel */
    border-radius: 16px;
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 1;
}


@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MEDIA QUERIES */
@media (min-width: 576px) {
    :root {
      --container-padding: 2rem;
    }
    
    .hero h1 {
      font-size: 3rem;
    }
    
    .hero .subtitle {
      font-size: 1.2rem;
    }
    
    .btn {
      padding: 1rem 2rem;
      font-size: 1.05rem;
    } 
   
    
  }
  
  @media (min-width: 768px) {
    .hero-container {
      flex-direction: row;
      align-items: center;
      gap: 3rem;
    }
    
    .hero-content {
      max-width: 55%;
    }
    
    .hero-image {
      display: block;
      flex: 1;
      max-width: 45%;
      animation: float 6s ease-in-out infinite;
    }
    
    .hero-image img {
      filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    }
    
   
  }
  
  @media (min-width: 992px) {
    :root {
      --container-padding: 3rem;
    }
    
    .hero h1 {
      font-size: 3.5rem;
    }
    
    .hero .subtitle {
      font-size: 1.3rem;
    }
    
    .trust-value {
      font-size: 2.2rem;
    }
    
    .trust-label {
      font-size: 1rem;
    }
  }
  
  @media (min-width: 1200px) {
    .hero h1 {
      font-size: 4rem;
      margin-top: 50px;
    }
    
    .hero-content {
      max-width: 650px;
    }
    
    .hero-image {
      max-width: 600px;
    }
    
    .trust-indicators {
      gap: 3rem;
    }
    
    .trust-value {
      font-size: 2.5rem;
    }
  }
  
  @media (min-width: 1400px) {
    :root {
      --container-padding: 4rem;
    }
  }
  
  /* RESPONSIVE ADJUSTMENTS */
  @media (max-height: 700px) and (min-width: 768px) {
    .hero {
      min-height: 700px;
    }
    
    .hero-content {
      padding: 2rem 0;
    }
  }

  /* financal sol css*/

  
.financial-solutions {
    padding: 6rem 0;
    background: linear-gradient(175deg, #f8fafc 0%, #f0f4f8 100%);
    position: relative;
}

.fs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fs-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fs-tagline {
    display: inline-block;
    color: #fff;
    background-color: var(--tomato-accent);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.fs-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.fs-description {
    color: #64748b;
    font-size: 1.125rem;
    line-height: 1.6;
}

.fs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
}

.fs-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.fs-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
    border-color: #c7d2fe;
}

.fs-card-emphasis {
    border-top: 4px solid tomato;
    background: linear-gradient(to bottom, #ffffff 0%, #f8faff 100%);
}

.fs-badge {
    position: absolute;
    top: 1rem;
    right: -2.5rem;
    background: var(--tomato-accent);
    color: white;
    padding: 0.25rem 2.5rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2);
}

.fs-icon-wrapper {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tomato-accent);
    margin-bottom: 1.5rem;
}

.fs-icon-wrapper .fs-icon-image {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.fs-icon-wrapper.fs-icon-circle {
  border-radius: 50%;
}

.fs-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: tomato;
}

.fs-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.fs-card-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.fs-benefits {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.fs-benefit-item {
    margin-bottom: 0.75rem;
    color: #475569;
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.fs-benefit-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--tomato-dark);
    border-radius: 50%;
}

.fs-action-link {
    display: inline-flex;
    align-items: center;
    color: var(--tomato-accent);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.fs-action-link:hover {
    color:black;
}

.fs-action-link:hover .fs-arrow {
    transform: translateX(0.25rem);
}

.fs-arrow {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .fs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .financial-solutions {
        padding: 4rem 0;
    }
    
    .fs-title {
        font-size: 2rem;
    }
    
    .fs-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .fs-container {
        padding: 0 1.25rem;
    }
    
    .fs-grid {
        grid-template-columns: 1fr;
    }
    
    .fs-card {
        padding: 2rem 1.5rem;
    }
}
/* our services  */
/* ===== Premium Services Carousel ===== */
.premium-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
  }
  
  .ps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
  }
  
  .ps-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .ps-title {
    font-size: 2.75rem;
    color: #212529;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.5px;
  }
  
  .ps-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .ps-slider-wrapper {
    position: relative;
    padding: 0 40px;
  }
  
  .ps-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    padding: 30px 0; /* Space for elevation */
  }
  
  .ps-slide {
    flex: 0 0 33.333%;
    padding: 0 15px;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
  }
  
  .ps-card {
    width: 100%;
    max-width: 380px;
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
  }
  
  /* Centered Card Styles */
  .ps-slide.ps-center .ps-card {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
  }
  
  .ps-slide.ps-center .ps-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--tomato-accent);
    border-radius: 12px 12px 0 0;
  }
  
  /* Adjacent Cards */
  .ps-slide:not(.ps-center) .ps-card {
    opacity: 0.85;
    transform: scale(0.92);
  }
  
  .ps-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 186, 9, 0.05);
    border-radius: 50%;
  }
  
  .ps-slide.ps-center .ps-icon-wrapper {
    background: rgba(242, 127, 5, 0.1);
  }
  
  .ps-icon {
    width: 36px;
    height: 36px;
    fill: var(--tomato-primary);
  }
  
  .ps-slide.ps-center .ps-icon {
    fill: var(--tomato-accent);
  }
  
  .ps-service-title {
    font-size: 1.5rem;
    color: #212529;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
  }
  
  .ps-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .ps-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .ps-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: tomato;
    border-radius: 50%;
  }
  
  .ps-slide.ps-center .ps-features li::before {
    background: var(--tomato-dark);
  }
  
  .ps-cta {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background: tomato;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .ps-slide.ps-center .ps-cta {
    background: var(--tomato-accent);
  }
  
  .ps-cta:hover {
    background: var(--tomato-light);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .ps-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
  }
  
  .ps-prev, .ps-next {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .ps-prev svg, .ps-next svg {
    fill: var(--tomato-accent);
    width: 24px;
    height: 24px;
  }
  
  .ps-prev:hover, .ps-next:hover {
    background: rgba(108, 117, 125, 0.1);
  }
  
  .ps-prev:hover svg, .ps-next:hover svg {
    fill: tomato;
  }
  
  .ps-dots {
    display: flex;
    gap: 10px;
  }
  
  .ps-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--tomato-light);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
  }
  
  .ps-dot.active {
    background: var(--tomato-accent);
    transform: scale(1.2);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .ps-slide {
      flex: 0 0 50%;
    }
    
    .ps-slide.ps-center .ps-card {
      transform: scale(1);
    }
  }
  
  @media (max-width: 768px) {
    .premium-services {
      padding: 80px 0;
    }
    
    .ps-title {
      font-size: 2.25rem;
    }
    
    .ps-slide {
      flex: 0 0 100%;
    }
    
    .ps-slider-wrapper {
      padding: 0;
    }
    
    .ps-slide:not(.ps-center) {
      opacity: 0.7;
    }
  }
  
  @media (max-width: 576px) {
    .ps-header {
      margin-bottom: 40px;
    }
    
    .ps-title {
      font-size: 2rem;
    }
    
    .ps-service-title {
      font-size: 1.3rem;
    }
    
    .ps-features li {
      font-size: 0.9rem;
    }
  }
/* WHy Choose us css*/
.features-section {
    position: relative;
    padding: 80px 0;
    background-image: url('https://media.istockphoto.com/id/1403293820/photo/woman-hand-picked-wooden-cube-block-with-light-bulb-icon-and-question-mark-symbol.jpg?s=612x612&w=0&k=20&c=MmuHWhJrknvEDpPguxZ-qzm0WApT6r_35YdRjf2aQ5k=');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}

.features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.features-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.features-content {
    max-width: 600px;
}

.features-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    background-color: tomato;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.feature-text p {
    margin: 0;
    color: #e0e0e0;
    line-height: 1.5;
}

.features-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: tomato;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.features-btn:hover {
    background-color: var(--tomato-accent);
}

.features-visual {
    display: flex;
    justify-content: center;
}

.features-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-content {
        max-width: 100%;
    }
    
    .features-visual {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .features-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .feature-item {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 10px;
    }
}
/* 
.why-choose-us {
    padding: 80px 0;
    background-color: var(--tomato-bg);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 99, 71, 0.08);
    border-radius: 50%;
    z-index: 0;
}

.section-title h2 {
    font-size: 36px;
    color: var(--tomato-accent);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--tomato-primary), var(--tomato-accent));
    border-radius: 2px;
}

.why-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.why-text {
    flex: 1;
}

.why-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.why-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.why-text ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    transition: all 0.3s ease;
}

.why-text ul li:hover {
    transform: translateX(10px);
}

.why-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--tomato-primary);
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s ease;
}

.why-text ul li:hover::before {
    color: var(--tomato-accent);
    transform: scale(1.3);
}

.why-text ul li strong {
    color: var(--tomato-dark);
}

.why-video {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 99, 71, 0.15);
    transition: all 0.5s ease;
}

.why-video:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 50px rgba(255, 99, 71, 0.25);
}

.why-video img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: all 0.5s ease;
}

.why-video:hover img {
    transform: scale(1.05);
} */

@media (max-width: 575.98px) {
    .hero-content {
      padding: 30px 12px;
    }
  
    .hero-content h1 {
      font-size: 1.6rem;
    }
  
    .hero-content .subtitle {
      font-size: 0.95rem;
    }
  
    .hero-cta {
      flex-direction: column;
      gap: 12px;
    }
  
    .btn {
      width: 100%;
    }
  
    .trust-indicators {
      flex-direction: column;
      gap: 16px;
    }
  
    .trust-value {
      font-size: 1.5rem;
    }
  
    .trust-label {
      font-size: 0.9rem;
    }
  }

/* Responsive Design */
@media (max-width: 992px) {
    
    .why-content {
        flex-direction: column;
    }
    
    .why-video {
        margin-top: 40px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .why-text p, .why-text ul li {
        font-size: 16px;
    }
    
    .btn-primary {
        padding: 12px 25px;
    }
}

/* SUceess story css*/

.success-showcase {
    padding: 5rem 0;
    background-color: #f9fafb;
    position: relative;
}

.ss-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ss-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ss-pretitle {
    display: inline-block;
    color: white;
    background-color: var(--tomato-accent);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.ss-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: black;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.ss-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
}
.ss-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ss-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e5e7eb;
}

.ss-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

.ss-card-featured {
    border: 1px solid #c7d2fe;
}

.ss-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: tomato;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.ss-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ss-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ss-card:hover .ss-image {
    transform: scale(1.05);
}

.ss-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
}

.ss-content {
    padding: 1.75rem;
}

.ss-results {
    margin-bottom: 1rem;
}

.ss-stat {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--tomato-accent);
    line-height: 1;
}

.ss-stat-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.ss-case-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.ss-case-desc {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.ss-outcomes {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.ss-outcome-item {
    margin-bottom: 0.75rem;
    color: #4b5563;
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.9375rem;
}

.ss-outcome-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--tomato-dark);
    border-radius: 50%;
}

.ss-cta-link {
    display: inline-flex;
    align-items: center;
    color: var(--tomato-primary);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.ss-cta-link:hover {
    color: var(--tomato-light);
}

.ss-cta-link:hover .ss-cta-icon {
    transform: translateX(0.25rem);
}

.ss-cta-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.ss-footer {
    text-align: center;
    margin-top: 2rem;
}

.ss-view-all {
    display: inline-flex;
    align-items: center;
    color: tomato;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ss-view-all:hover {
    color: var(--tomato-accent);
}

.ss-view-all:hover .ss-arrow-icon {
    transform: translateX(0.25rem);
}

.ss-arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .ss-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .success-showcase {
        padding: 3rem 0;
    }
    
    .ss-header {
        margin-bottom: 2.5rem;
    }
    
    .ss-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 480px) {
    .ss-container {
        padding: 0 1.25rem;
    }
    
    .ss-grid {
        grid-template-columns: 1fr;
    }
    
    .ss-card {
        max-width: 400px;
        margin: 0 auto;
    }
}


/*Imact Css */

.impact-metrics {
    padding: 5rem 0;
    background: linear-gradient(135deg, #8e8b98 0%, var(--tomato-accent) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.im-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.im-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.im-metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.im-metric-card:hover {
    transform: translateY(-0.5rem);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.im-metric-content {
    width: 100%;
    position: relative;
    z-index: 2;
}

.im-value-wrapper {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.im-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
}

.im-prefix, .im-suffix {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.im-prefix {
    margin-right: 0.25rem;
}

.im-suffix {
    margin-left: 0.25rem;
}

.im-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.im-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.im-underline {
    width: 3rem;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    margin: 1.5rem 0;
    transition: all 0.3s ease;
}

.im-metric-card:hover .im-underline {
    width: 4rem;
    background: white;
}

.im-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    opacity: 0.2;
    width: 4rem;
    height: 4rem;
    transition: all 0.3s ease;
}

.im-metric-card:hover .im-icon {
    opacity: 0.4;
    transform: scale(1.1);
}

.im-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

@media (max-width: 1024px) {
    .im-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-metrics {
        padding: 3rem 0;
    }
    
    .im-value {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .im-container {
        padding: 0 1.25rem;
    }
    
    .im-grid {
        grid-template-columns: 1fr;
    }
    
    .im-metric-card {
        padding: 2rem 1.5rem;
    }
}

/* CTA SECTON CSS */

/* CTA SECTION */
.cta-section {
    position: relative;
    padding: 5rem 1rem;
    background: url('../img/hero-bgg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(114, 128, 171, 0.8) 0%, rgba(56, 58, 47, 0.8) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.cta-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.cta-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    background: #fff;
}

.cta-btn {
    padding: 1rem 2rem;
    background-color: var(--tomato-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    background-color: var(--tomato-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.arrow {
    transition: transform 0.3s ease;
}

.cta-btn:hover .arrow {
    transform: translateX(3px);
}

.cta-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* RESPONSIVE ADJUSTMENTS */
@media (min-width: 768px) {
    .cta-section {
        padding: 6rem 2rem;
    }
    
    .cta-title {
        font-size: 2.75rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    
    .cta-form-group {
        flex-direction: row;
    }
    
    .cta-btn {
        padding: 1rem 2.5rem;
    }
}

@media (min-width: 992px) {
    .cta-section {
        padding: 8rem 2rem;
    }
    
    .cta-title {
        font-size: 3rem;
    }
}

