.inc-card{
    display:flex; 
    gap:16px; 
}
.inc-left{
    font-size: 24px;
    margin-top: 2px;
}
.inc-icon i{ 
    font-size:22px; 
    color: #032d60;
}
.inc-body h4{
    margin:0 0 8px; 
    font-size:16px; 
    color:#181818 ;    
    line-height: 25px; 
    font-family: "Plus Jakarta Sans", Sans-serif;
    font-weight: 600;
    text-transform: capitalize;
}
.how-it-works {
   background: radial-gradient(circle at 20% 20%, #1e1b4b 0%, #111 100%);
   padding: 40px 20px;
   border-radius: 20px;
   box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}
.offices-section {
  background: radial-gradient(circle at 20% 20%, #1e1b4b 0%, #111 100%);
  color: #fff;
  padding: 40px 0;
  text-align: center;
}
.office-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.office-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.4s ease;
}
.office-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
  text-align: left;
  border-radius: 0 0 20px 20px;
}
.office-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: #fff;
}
.office-info p {
  color: #ccc;
  font-size: 0.95rem;
  margin: 0px 0px 15px;
}
.office-card:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}
.office-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.button-view-location{
   margin-top: 30px;
}
.approach-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  padding: 35px 25px;
  transition: all 0.3s ease;
}
.approach-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
.about-stats {
  flex: 1 1 45%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
}
.stat-box {
  background: #fff;
  border-radius: 12px;
  padding: 15px 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.our-services-modern {
  color: #fff;
  text-align: center;
  padding: 30px 0 0;
}
.service-modern-card {
  background: #ffeebb;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  padding: 10px;
}
.service-modern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.service-image {
  position: relative;
  width: 100%;
  height: 220px;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
  border-radius: 10px 10px 0 0;
}
.service-modern-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.85);
}
.service-image .icon {
    position: absolute;
    bottom: -30px;
    right: 15px;
    background: #f0710f;
    color: #fff;
    font-size: 22px;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s 
ease;
    border: 4px solid white;
    width: 60px;
    z-index: 9;
}
.service-modern-card:hover .icon {
  background: #032d60;
  transform: scale(1.1);
}
.service-content {
  background: rgba(255, 255, 255, 0.12);
  padding: 25px 20px;
  text-align: left;
  color: #fff;
}
.service-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #032d60;
  margin-top: 15px;
  line-height: 26px;
  font-family: 'outfit';
}
.service-content p {
  font-size: 16px;
  color: #181818;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
  font-family: "Plus Jakarta Sans", Sans-serif;
}
.our-services-modern .swiper {
  padding-bottom: 50px;
}
.our-services-modern .swiper-slide {
  display: flex;
  justify-content: center;
}
.our-services-modern .swiper-pagination-bullet {
  background: #00d4ff !important;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .office-info {
    text-align: center;
  }
}
