/* Custom styles for branch cards */
        .branch-card {
            transition: all 0.3s ease;
            border: 1px solid rgba(109, 77, 242, 0.1) !important;
        }
        
        .branch-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 1rem 3rem rgba(109, 77, 242, 0.175) !important;
            border-color: var(--primary-color) !important;
        }
        
        .title-divider {
            height: 3px;
            width: 60px;
            background: var(--primary-gradient-bg);
            margin: 1rem 0;
        }
        
        .section-title h2 {
            color: #2D3748;
            font-weight: 700;
        }
        
        .icon-shape {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Ensure AOS animations work */
        [data-aos] {
            visibility: hidden;
        }
        
        [data-aos].aos-animate {
            visibility: visible;
        }

/* Helpline Section Styling */
.helpline_area {
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.8)), 
              url('https://blog.komandoor.com/storage/help-line-bg-4.jpg') no-repeat center center;
  background-size: cover;
  padding: 60px 20px;
  position: relative;
  color: #ffffff;

  text-align: center;
}

.helpline_inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.helpline_inner .media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.helpline_inner .media-left img {
  width: 80px;
  height: auto;
  filter: brightness(0) invert(1);
}

.helpline_inner .media-body h6 {
  color: #8c71ff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.helpline_inner .media-body h4 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
  color: #ffffff; /* Explicit white color */
}

.helpline_inner .media-body p {
  margin-bottom: 30px;
  font-size: 18px;
  max-width: 600px;
  line-height: 1.6;
  color: #ffffff; /* Explicit white color */
  opacity: 1; /* Remove any fade effect */
}

.contact_d {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact_d a {
  color: #ffffff; /* Explicit white color */
  font-size: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
  background: rgba(109, 77, 242, 0.15);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact_d a:hover {
  background: rgba(109, 77, 242, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(109, 77, 242, 0.3);
}

.contact_d a.icn_red {
  color: #ffffff; /* Explicit white color */
  animation: pulse 2s infinite;
}

.contact_d a i {
  margin-right: 10px;
  font-size: 20px;
  background: linear-gradient(135deg, #6d4df2 0%, #8c71ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .helpline_area {
    padding: 40px 15px;
    border-radius: 8px;
  }
  
  .helpline_inner .media-left img {
    width: 70px;
  }
  
  .helpline_inner .media-body h4 {
    font-size: 26px;
  }
  
  .helpline_inner .media-body p {
    font-size: 16px;
  }
  
  .contact_d {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }
  
  .contact_d a {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .helpline_inner .media-body h4 {
    font-size: 22px;
  }
  
  .helpline_inner .media-body p {
    font-size: 15px;
  }
  
  .contact_d a {
    font-size: 14px;
    padding: 8px 16px;
  }
  
  .contact_d a i {
    font-size: 16px;
  }
}


#list-photo .item .photo-item {
    padding-left: 7px;
    padding-right: 7px;
    display:flex !important;
    justify-content:center !important;
}