/*--------------------------------------------------------------
# Customer Service Section Styles
--------------------------------------------------------------*/

/* Container */
.custom-tabs-container {
  padding: 40px 0;
}

/* Tab Navigation */
.nav-tabs-custom {
  border: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.nav-tabs-custom .nav-link {
  background: #ffffff;
  color: #415e9b;
  padding: 20px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  font-family: 'Georama', sans-serif;
  font-weight: 500;
    min-width: 500px;
    font-size: 21px;
}

.nav-tabs-custom .nav-link i {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.nav-tabs-custom .nav-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(65, 94, 155, 0.15);
  border-color: #415e9b;
}

.nav-tabs-custom .nav-link.active {
      background: #ffffff;
    color: #cf173c;
    box-shadow: 0 4px 21px rgb(22 20 21 / 15%);
    border: 1px solid #ccc;
}

.nav-tabs-custom .nav-link.active i {
  transform: scale(1.1);
  color: #cf173c;
}

/* Tab Content */
.tab-content-custom {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Service Card */
.service-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(65, 94, 155, 0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  
}

.card-body-custom {
  padding: 30px;
  background: linear-gradient(135deg, rgba(239, 183, 183, 0.1) 0%, rgba(139, 162, 216, 0.1) 19%, rgba(141, 165, 216, 0.1) 20%, rgba(172, 223, 216, 0.1) 39%, rgba(199, 223, 166, 0.1) 61%, rgba(141, 203, 182, 0.1) 81%, rgba(213, 148, 148, 0.1) 100%);
}

.card-title-custom {
  color: #cf173c;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-family: 'Georama', sans-serif;
}

.card-title-custom i {
  margin-right: 15px;
  font-size: 28px;
  color: #415e9b;
}

.card-text-custom {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
  font-family: 'Georama', sans-serif;
}

.highlight-text {
  color: #cf173c;
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 20px 0 0 0;
  margin: 0;
}

.feature-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: #666;
  font-family: 'Georama', sans-serif;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #cf173c;
  font-weight: bold;
  font-size: 18px;
}

/* Customer Service Specific Styles */
.cs-page-heading {
  color: #e50914;
  font-weight: 500;
  font-size: 2.5rem;
  font-family: 'Georama', sans-serif;
  text-align: center;
  margin-bottom: 30px;
}

.cs-description-heading {
  color: #415e9b;
  font-weight: 500;
  font-size: 1.2rem;
  text-align: left;
  font-family: 'Georama', sans-serif;
  margin-bottom: 20px;
}

.cs-contact-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cs-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.cs-contact-item:hover {
  box-shadow: 0 4px 12px rgba(65, 94, 155, 0.1);
}

.cs-contact-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.cs-contact-icon.phone {
  color: #415e9b;
}

.cs-contact-icon.email {
  color: #cf173c;
}

.cs-contact-label {
  color: #cf173c;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: 'Georama', sans-serif;
  font-size: 17px;
}

.cs-contact-value {
  font-size: 16px;
  color: #333;
  margin: 0;
  font-weight: 600;
  font-family: 'Georama', sans-serif;
}

.cs-contact-value a {
  color: #415e9b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cs-contact-value a:hover {
  color: #cf173c;
  text-decoration: underline;
}

.cs-contact-list {
  color: #666;
  font-size: 15px;
  margin: 0;
  line-height: 1.8;
  font-family: 'Georama', sans-serif;
}

.cs-contact-list a {
  color: #415e9b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cs-contact-list a:hover {
  color: #cf173c;
  text-decoration: underline;
}

/* Officer Information Section */
.cs-officer-title-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.cs-officer-title {
  color: #cf173c;
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Georama', sans-serif;
}

.cs-officer-title i {
  margin-right: 15px;
  font-size: 28px;
  color: #415e9b;
}

.cs-officer-container {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.cs-officer-name {
  color: #cf173c;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
  font-family: 'Georama', sans-serif;
}

.cs-officer-designation {
  color: #415e9b;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 15px;
  font-family: 'Georama', sans-serif;
}

.cs-officer-company {
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: 'Georama', sans-serif;
}

.cs-address-box {
  margin: 20px 0;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.cs-address-text {
  color: #666;
  line-height: 1.8;
  margin: 0;
  font-size: 14px;
  font-family: 'Georama', sans-serif;
}

.cs-info-flex {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

.cs-info-flex-first {
  padding-bottom: 0;
  border-bottom: none;
}

.cs-info-flex-last {
  padding-top: 15px;
}

.cs-info-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.cs-info-icon.email-icon {
  color: #cf173c;
}

.cs-info-icon.time-icon {
  color: #415e9b;
}

.cs-info-text {
  margin: 0;
  font-size: 14px;
  font-family: 'Georama', sans-serif;
}

.cs-info-text.regular {
  color: #666;
}

.cs-info-label {
  color: #333;
  font-weight: 500;
}

.cs-info-text a {
  color: #415e9b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cs-info-text a:hover {
  color: #cf173c;
  text-decoration: underline;
}

.cs-info-subtext {
  font-size: 14px;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cs-officer-container {
    padding: 20px;
  }

  .cs-contact-item {
    padding: 15px;
    min-height: auto;
  }

  .cs-address-box {
    padding: 12px;
    margin: 15px 0;
  }

  .cs-info-text {
    font-size: 13px;
  }

  .cs-info-subtext {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .cs-contact-icon {
    font-size: 28px;
  }

  .cs-officer-name {
    font-size: 16px;
  }

  .cs-officer-designation {
    font-size: 14px;
  }

  .cs-address-text {
    font-size: 13px;
  }
}

.cs-info-link {
  color: #415e9b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cs-info-link:hover {
  color: #cf173c;
  text-decoration: underline;
}

.cs-info-subtext {
  font-size: 13px;
  color: #999;
  display: block;
}

/* Image Layer Background */
.cs-banner-image {
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-tabs-custom {
    gap: 10px;
  }

  .nav-tabs-custom .nav-link {
   min-width: 371px;
        padding: 12px 15px;
        font-size: 18px;
  }

  .nav-tabs-custom .nav-link i {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .service-card {
    margin-bottom: 20px;
  }

  .cs-contact-item {
    flex-direction: column;
    text-align: center;
  }

  .cs-contact-icon {
    font-size: 32px;
  }

  .cs-page-heading {
    font-size: 2rem;
  }

  .cs-description-heading {
    font-size: 18px;
    text-align: center;
  }
  .customer-service-section .image-layer {
    background-position: 85% 50%;
  }
}

@media (max-width: 576px) {
  .custom-tabs-container {
    padding: 20px 0;
  }

  .nav-tabs-custom {
    margin-bottom: 30px;
  }

  .nav-tabs-custom .nav-link {
    min-width: 371px;
        padding: 12px 15px;
        font-size: 18px;
  }

  .card-body-custom {
    padding: 20px;
  }

  .cs-page-heading {
    font-size: 1.75rem;
  }
}
