/* Videos Section */
.videos-acx-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.videos-acx-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Videos Grid */
.videos-acx-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* Video Card */
.videos-acx-card {
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.videos-acx-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.3);
}

/* Hidden Videos */
.videos-acx-card.videos-acx-hidden {
  display: none;
}

/* Video Player */
.videos-acx-video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.testi-box_img img {
  height: 120px !important;
}
/* AcounTx House Certificates - Fixed Height & Brand Color */

.certificate-accountx-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.certificate-accountx-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(150, 31, 31, 0.02) 0%,
    transparent 70%
  );
  z-index: 0;
}

.certificate-accountx-section > .container {
  position: relative;
  z-index: 2;
}

/* Header Section */
.certificate-accountx-header {
  margin-bottom: 60px;
}

.certificate-accountx-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #961f1f;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.certificate-accountx-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f2239;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Certificate Card */
.certificate-accountx-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.certificate-accountx-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #961f1f 0%, #7a1a1a 100%);
}

.certificate-accountx-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(150, 31, 31, 0.15);
}

/* Certificate Image - Fixed Height */
.certificate-accountx-image {
  position: relative;
  overflow: hidden;
  height: 500px; /* Fixed height as requested */
}

.certificate-accountx-img {
  width: 100%;
  height: 100%; /* Full height coverage */
  object-fit: contain; /* Maintain aspect ratio, show full image */
  object-position: center;
  display: block;
  transition: all 0.3s ease;
  background: #f8f9fa; /* Light background for transparency */
}

.certificate-accountx-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(150, 31, 31, 0.9); /* AcounTx brand color overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.certificate-accountx-card:hover .certificate-accountx-overlay {
  opacity: 1;
}

.certificate-accountx-card:hover .certificate-accountx-img {
  transform: scale(1.02); /* Minimal zoom to avoid cropping */
}

.certificate-accountx-actions {
  display: flex;
  gap: 15px;
}

.certificate-accountx-view-btn,
.certificate-accountx-download-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #961f1f;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.certificate-accountx-view-btn:hover,
.certificate-accountx-download-btn:hover {
  background: #ffffff;
  color: #7a1a1a;
  transform: translateY(-2px);
  text-decoration: none;
}

.certificate-accountx-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(150, 31, 31, 0.9);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Certificate Content */
.certificate-accountx-content {
  padding: 25px;
  text-align: center;
  border-top: 2px solid #961f1f;
}

.certificate-accountx-type {
  background: rgba(150, 31, 31, 0.1);
  color: #961f1f;
  padding: 6px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 15px;
}

.certificate-accountx-cert-title {
  font-size: 18px;
  font-weight: 600;
  color: #0f2239;
  margin-bottom: 15px;
  line-height: 1.3;
}

.certificate-accountx-authority {
  font-size: 14px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
}

.certificate-accountx-authority i {
  color: #961f1f;
}

/* Trust Indicators */
.certificate-accountx-trust {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #e2e8f0;
}

.certificate-accountx-trust-item {
  padding: 30px 20px;
  text-align: center;
}

.certificate-accountx-trust-item i {
  font-size: 48px;
  color: #961f1f;
  margin-bottom: 20px;
}

.certificate-accountx-trust-item h5 {
  font-size: 20px;
  font-weight: 600;
  color: #0f2239;
  margin-bottom: 10px;
}

.certificate-accountx-trust-item p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

.contact-us-accountx {
  padding: 30px 0;
  background: linear-gradient(135deg, #fff5f5 0%, #fef7f7 100%);
  position: relative;
  overflow: hidden;
}

.contact-us-accountx::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(255, 165, 0, 0.03) 0%,
    transparent 70%
  );
  z-index: 0;
}

.contact-us-accountx > .container {
  position: relative;
  z-index: 2;
}

/* Header Section */
.contact-us-accountx-header {
  margin-bottom: 80px;
}

.contact-us-accountx-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: #961f1f;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-us-accountx-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f2239;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-us-accountx-info-section {
  margin-bottom: 100px;
}

.contact-us-accountx-info-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-us-accountx-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.contact-us-accountx-location::before {
  background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
}

.contact-us-accountx-phone::before {
  background: linear-gradient(90deg, #16a34a 0%, #15803d 100%);
}

.contact-us-accountx-email::before {
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.contact-us-accountx-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.contact-us-accountx-info-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-us-accountx-location .contact-us-accountx-info-icon {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.contact-us-accountx-phone .contact-us-accountx-info-icon {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.contact-us-accountx-email .contact-us-accountx-info-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.contact-us-accountx-info-icon i {
  color: #ffffff;
  font-size: 32px;
}

.contact-us-accountx-info-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: #222;
  margin-bottom: 20px;
}

.contact-us-accountx-info-content p {
  font-size: 16px;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.5;
}

.contact-us-accountx-info-content p:last-child {
  margin-bottom: 0;
}

/* Form Section */
.contact-us-accountx-form-section {
  background: #ffffff;
  border-radius: 30px;
  padding: 60px 50px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.contact-us-accountx-form-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 165, 0, 0.02) 0%,
    transparent 70%
  );
  z-index: 0;
}

.contact-us-accountx-form-visual,
.contact-us-accountx-form-container {
  position: relative;
  z-index: 2;
}

/* Visual Card */
.contact-us-accountx-visual-card {
  background: #961f1f;
  color: #ffffff;
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-us-accountx-visual-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 25s linear infinite;
}

.contact-us-accountx-logo-section {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.contact-us-accountx-logo {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-us-accountx-logo i {
  font-size: 40px;
  color: #ffffff;
}

.contact-us-accountx-logo-section h3 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.contact-us-accountx-logo-section p {
  font-size: 16px;
  opacity: 0.9;
  color: #ffffff;

  position: relative;
  z-index: 2;
}

.contact-us-accountx-features {
  display: grid;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.contact-us-accountx-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-us-accountx-feature i {
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-us-accountx-feature span {
  font-size: 16px;
  font-weight: 500;
}

/* Form Container */
.contact-us-accountx-form-header {
  margin-bottom: 40px;
}

.contact-us-accountx-form-header h3 {
  font-size: 28px;
  font-weight: 500;
  color: #222;
  margin-bottom: 15px;
}

.contact-us-accountx-form-header p {
  font-size: 16px;
  color: #222;
  font-weight: 400;
}

.contact-us-accountx-form-group {
  position: relative;
  margin-bottom: 0;
}

.contact-us-accountx-form-control {
  width: 100%;
  padding: 18px 25px 18px 55px;
  border: 1px solid #d9dadb;
  border-radius: 15px;
  font-size: 16px;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
  color: #1a1a1a;
}

.contact-us-accountx-form-control:focus {
  border-color: #961f1f;
  outline: none;
  background: #ffffff;
}

.contact-us-accountx-form-control::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.contact-us-accountx-form-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  font-size: 16px;
  z-index: 2;
  pointer-events: none;
}

.contact-us-accountx-form-group:focus-within .contact-us-accountx-form-icon {
  color: #961f1f;
}

.contact-us-accountx-submit-btn {
  background: #961f1f;
  color: #ffffff;
  padding: 13px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-us-accountx-submit-btn:hover {
  transform: translateY(-3px);
}
.contact-us-accountx-clickable-phone {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.contact-us-accountx-clickable-phone:hover {
  color: #961f1f;
  text-decoration: none;
  transform: scale(1);
}

.contact-us-accountx-clickable-phone::before {
  content: "\f095";
  font-family: FontAwesome;

  font-weight: 500;
  position: absolute;
  left: 0;
  font-size: 14px;
  color: #961f1f;
}

/* Clickable Email */
.contact-us-accountx-clickable-email {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.contact-us-accountx-clickable-email:hover {
  color: #961f1f;
  text-decoration: none;
  transform: scale(1);
}

.contact-us-accountx-clickable-email::before {
  content: "\f0e0"; /* FontAwesome envelope icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 500;
  position: absolute;
  left: 0;
  font-size: 14px;
  color: #961f1f;
}

/* Enhanced hover effects for cards */
.contact-us-accountx-phone:hover {
  transform: translateY(-10px);
}

.contact-us-accountx-email:hover {
  transform: translateY(-10px);
}

/* Active click states */
.contact-us-accountx-clickable-phone:active,
.contact-us-accountx-clickable-email:active {
  transform: scale(0.98);
}

/* Textarea Icon Fix */
.textarea-iocn-contact {
  position: absolute;
  left: 20px;
  top: 20px;
  transform: none;
  color: #333;
  font-size: 16px;
  z-index: 2;
  pointer-events: none;
}

.tally-custom-services {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.tally-custom-services::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(
    circle,
    rgba(150, 31, 31, 0.03) 0%,
    transparent 70%
  );
  z-index: 0;
}

.tally-custom-services > .container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.tally-custom-header {
  margin-bottom: 60px;
}

.tally-custom-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #961f1f;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tally-custom-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f2239;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Service Cards */
.tally-custom-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.tally-custom-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.tally-custom-success::before {
  background: linear-gradient(90deg, #16a34a 0%, #15803d 100%);
}

.tally-custom-primary::before {
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
}

.tally-custom-warning::before {
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.tally-custom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.tally-custom-success:hover {
  box-shadow: 0 25px 60px rgba(22, 163, 74, 0.15);
}

.tally-custom-primary:hover {
  box-shadow: 0 25px 60px rgba(59, 130, 246, 0.15);
}

.tally-custom-warning:hover {
  box-shadow: 0 25px 60px rgba(245, 158, 11, 0.15);
}

/* Card Header */
.tally-custom-card-header {
  padding: 30px 25px 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.tally-custom-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tally-custom-success .tally-custom-icon {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.tally-custom-primary .tally-custom-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.tally-custom-warning .tally-custom-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.tally-custom-icon i {
  color: #ffffff;
  font-size: 28px;
}

.tally-custom-title-section {
  flex: 1;
}

.tally-custom-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3;
}

/* Card Body */
.tally-custom-card-body {
  padding: 0 25px 25px;
  flex: 1;
}

.tally-custom-card-desc {
  font-size: 15px;
  color: #222;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}

.tally-custom-additional-info {
  background: rgba(150, 31, 31, 0.05);
  padding: 12px 18px;
  border-radius: 10px;
  border-left: 4px solid #961f1f;
  margin-bottom: 20px;
}

.tally-custom-additional-info strong {
  color: #961f1f;
  font-size: 14px;
  font-weight: 600;
}

/* Card Footer */
.tally-custom-card-footer {
  padding: 25px;
  background: #f8f9fa;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.tally-custom-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tally-custom-price-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.tally-custom-price-value {
  font-size: 20px;
  font-weight: 800;
  color: #961f1f;
  background: rgba(150, 31, 31, 0.1);
  padding: 4px 12px;
  border-radius: 12px;
  display: inline-block;
}

.tally-custom-actions {
  flex-shrink: 0;
}

.tally-custom-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tally-custom-btn-success {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
}

.tally-custom-btn-success:hover {
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
  color: #ffffff;
  text-decoration: none;
}

.tally-custom-btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
}

.tally-custom-btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  color: #ffffff;
  text-decoration: none;
}

.tally-custom-btn-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
}

.tally-custom-btn-warning:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
  color: #ffffff;
  text-decoration: none;
}

/* Call to Action */
.tally-custom-cta {
  margin-top: 80px;
  padding: 50px 40px;
  background: linear-gradient(135deg, #961f1f 0%, #7a1a1a 100%);
  border-radius: 25px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.tally-custom-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.tally-custom-cta h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.tally-custom-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
}

.tally-custom-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  color: #961f1f;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.tally-custom-cta-btn:hover {
  background: #f8f8f8;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
  color: #961f1f;
  text-decoration: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.section-contact-us {
  margin-top: -34px;
  margin-bottom: 35px;
}
.placement-accountx-timeline-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fefefe 0%, #f8f4f4 100%);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap p {
  text-align: justify !important;
  color: #222;
}
.contact-form-wrap h2 {
  text-align: justify !important;
  font-size: 2.5rem;
}

.placement-accountx-timeline-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(150, 31, 31, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(150, 31, 31, 0.02) 0%,
      transparent 50%
    );
  z-index: 0;
}

/* Header Section */
.placement-accountx-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.placement-accountx-main-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--title-color);
  margin-bottom: 20px;
}

.placement-accountx-main-title p {
  font-size: 20px;
  color: #64748b;
  margin-bottom: 50px;
  font-weight: 500;
}

.placement-accountx-stats-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.placement-accountx-stat-box {
  text-align: center;
  padding: 30px 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(150, 31, 31, 0.1);
  box-shadow: 0 15px 40px rgba(150, 31, 31, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.placement-accountx-stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #961f1f 0%, #fadb3c 100%);
}

.placement-accountx-stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(150, 31, 31, 0.15);
  border-color: rgba(150, 31, 31, 0.2);
}

.placement-accountx-big-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #0f2239;
  margin-bottom: 10px;
  line-height: 1;
}

.placement-accountx-stat-label {
  font-size: 13px;
  color: #222;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Timeline Structure */
.placement-accountx-timeline {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 2;
}

/* Timeline Content */
.placement-accountx-timeline-content {
  margin-top: 60px;
}

.placement-accountx-timeline-section {
  background: #ffffff;
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.placement-accountx-timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}

.placement-accountx-section-star::before {
  background: linear-gradient(90deg, #f8bc00 0%, #f8bc00 100%);
}

.placement-accountx-section-training::before {
  background: linear-gradient(90deg, #f8bc00 0%, #f8bc00 100%);
}

.placement-accountx-section-experience::before {
  background: linear-gradient(90deg, #f8bc00 0%, #f8bc00 100%);
}

.placement-accountx-section-women::before {
  background: linear-gradient(90deg, #f8bc00 0%, #f8bc00 100%);
}

.placement-accountx-section-advancement::before {
  background: linear-gradient(90deg, #f8bc00 0%, #f8bc00 100%);
}

.placement-accountx-section-number {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #961f1f 0%, #7a1a1a 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(150, 31, 31, 0.3);
}

.placement-accountx-section-title {
  font-size: 25px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
  margin-top: 20px;
}

.placement-accountx-section-desc {
  font-size: 16px;
  color: #222;
  text-align: justify;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Star Performers Grid */
.placement-accountx-performer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.placement-accountx-performer-card {
  background: linear-gradient(135deg, #fff8dc 0%, #fef7f7 100%);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #f3a90a;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.placement-accountx-performer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.placement-accountx-performer-avatar {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f09217 0%, #f3a90a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.placement-accountx-performer-avatar i {
  color: #ffffff;
  font-size: 28px;
}

.placement-accountx-performer-info h4 {
  font-size: 19px;
  font-weight: 500;
  color: #222;
  margin-bottom: 5px;
}

.placement-accountx-performer-info p {
  font-size: 14px;
  color: #222;
  margin-bottom: 8px;
}

.placement-accountx-salary-highlight {
  font-size: 17px;
  font-weight: 500;
  color: #222;

  padding: 5px 12px;
  border-radius: 15px;
  display: inline-block;
}

/* Success Lists */
.placement-accountx-success-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.placement-accountx-success-item {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 20px;
  padding: 20px;
  background: rgba(75, 78, 79, 0.1);
  border-radius: 15px;
  border-left: 5px solid #961f1f;
  align-items: center;
}

.placement-accountx-name {
  font-size: 17px;
  font-weight: 500;
  color: #222;
}

.placement-accountx-role {
  font-size: 14px;
  color: #222;
  font-weight: 400;
}

.placement-accountx-salary {
  font-size: 16px;
  font-weight: 600;
  color: #961f1f;
  text-align: right;
}

/* Growth Grid */
.placement-accountx-growth-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.placement-accountx-growth-card {
  background: linear-gradient(135deg, #fff8dc 0%, #fef7f7 100%);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid #f3a90a;
  transition: all 0.3s ease;
}

.placement-accountx-growth-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.placement-accountx-growth-card h4 {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin-bottom: 8px;
}

.placement-accountx-growth-card p {
  font-size: 14px;
  color: #222;
  margin-bottom: 12px;
}

.placement-accountx-amount {
  font-size: 20px;
  font-weight: 500;
  color: #222;
}

/* Women Showcase */
.placement-accountx-women-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.placement-accountx-women-card {
  background: linear-gradient(135deg, #fff8dc 0%, #fef7f7 100%);
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #f3a90a;

  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.placement-accountx-women-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.placement-accountx-women-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f3a90a 0%, #f3a90a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.placement-accountx-women-icon i {
  color: #ffffff;
  font-size: 24px;
}

.placement-accountx-women-details h4 {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  margin-bottom: 5px;
}

.placement-accountx-women-details p {
  font-size: 14px;
  color: #222;
  margin-bottom: 8px;
}

.placement-accountx-women-details span {
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

/* Advancement List */
.placement-accountx-advancement-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.placement-accountx-advancement-item {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 25px;
  background: linear-gradient(135deg, #fff8dc 0%, #fef7f7 100%);

  border-radius: 20px;
  border: 1px solid #f3a90a;
  transition: all 0.3s ease;
}

.placement-accountx-advancement-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.placement-accountx-advancement-icon {
  width: 60px;
  height: 60px;

  background: linear-gradient(135deg, #f3a90a 0%, #f3a90a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.placement-accountx-advancement-icon i {
  color: #ffffff;
  font-size: 24px;
}

.placement-accountx-advancement-info h4 {
  font-size: 20px;
  font-weight: 500;
  color: #222;
  margin-bottom: 5px;
}

.placement-accountx-advancement-info p {
  font-size: 14px;
  color: #222;
  margin-bottom: 8px;
}

.placement-accountx-new-salary {
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.course_Accountx {
  margin-top: -34px;
  margin-bottom: -60px;
}
.checklist li {
  color: #222;
  font-weight: 400;
  text-align: justify;
  font-size: 17px;
}
.course-description p,
.course-curriculam p {
  text-align: justify;
  color: #222;
  font-size: 17px;
}
.widget_info .widget_title {
  margin: -12px 0 0 0;
}
.widget {
  padding: 26px;
}
.enquiry-form {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
  border: 1px solid #e1e5e9;
  margin-top: 11px;
}

.enquiry-form-group {
  position: relative;
  margin-bottom: 20px;
}

.enquiry-form-control {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 14px;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
  color: #333;
}
.enquiry-form-control:focus {
  border-color: #961f1f;
  box-shadow: 0 0 0 0.25rem rgb(252, 252, 252);
  outline: none;
  background: #fff;
  transform: translateY(-1px);
}

.enquiry-form-control::placeholder {
  color: #222;
  font-weight: 400;
}

.enquiry-form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 12px;
  appearance: none;
  padding-right: 45px;
}

.enquiry-form-textarea {
  resize: vertical;
  min-height: 100px;
  padding-top: 15px;
}

.enquiry-form-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 16px;
  z-index: 2;
  transition: color 0.3s ease;
}

.enquiry-form-group:focus-within .enquiry-form-icon {
  color: #961f1f;
}

.enquiry-form-btn {
  width: 100%;
  padding: 15px 25px;
  background: linear-gradient(135deg, #961f1f 0%, #961f1f 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enquiry-form-btn:hover {
  transform: translateY(-2px);
}

.enquiry-form-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.enquiry-form-contact {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.enquiry-form-contact-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 10px;
}

.enquiry-form-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
  padding: 10px 0;
  border-bottom: 1px solid #f1f3f4;
}

.enquiry-form-contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.enquiry-form-contact-icon {
  margin-right: 15px;
  width: 20px;
  text-align: center;
  color: #007bff;
  font-size: 16px;
}

.enquiry-form-contact-item span {
  font-weight: 500;
}

/* Animation for form submission */
.enquiry-form-submitting .enquiry-form-btn {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
}

.enquiry-form-submitting .enquiry-form-btn::after {
  content: "Submitting...";
}

/* Success state */
.enquiry-form-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-color: #b8daff;
}

.enquiry-form-success .enquiry-form-btn {
  background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
}

/* Error state */
.enquiry-form-error .enquiry-form-control {
  border-color: #dc3545;
  background: #fff5f5;
}

.enquiry-form-error .enquiry-form-icon {
  color: #dc3545;
}

/* Enhanced focus states */
.enquiry-form-control:focus + .enquiry-form-icon {
  transform: translateY(-50%) scale(1.1);
}

/* Loading spinner for button */
.enquiry-form-btn.loading::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-right: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.custom-icon-contact-container {
  padding: 0;
  margin: 0;
}

.custom-icon-phone,
.custom-icon-envelope,
.custom-icon-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* Phone Icon */
.custom-icon-phone {
  background: linear-gradient(45deg, #25d366, #128c7e);
  color: white;
}

.custom-icon-phone:hover {
  background: linear-gradient(45deg, #128c7e, #25d366);
  transform: scale(1.1);
}

/* Email Icon */
.custom-icon-envelope {
  background: linear-gradient(45deg, #ea4335, #d93025);
  color: white;
}

.custom-icon-envelope:hover {
  background: linear-gradient(45deg, #d93025, #ea4335);
  transform: scale(1.1);
}

/* Location Icon */
.custom-icon-location {
  background: linear-gradient(45deg, #4285f4, #1a73e8);
  color: white;
}

.custom-icon-location:hover {
  background: linear-gradient(45deg, #1a73e8, #4285f4);
  transform: scale(1.1);
}

/* Contact Menu Items - P Elements */
.custom-icon-menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.custom-icon-menu-item:hover {
  transform: translateX(5px);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.custom-icon-menu-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* Contact Links - No Arrow Effects */
.custom-icon-contact-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  flex: 1;
}

.custom-icon-contact-link:hover {
  color: white;
  text-decoration: none;
}

/* Remove any list styling and arrows */
.custom-icon-contact-container ul,
.custom-icon-contact-container li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-icon-contact-container ul::before,
.custom-icon-contact-container li::before,
.custom-icon-contact-container ul::after,
.custom-icon-contact-container li::after {
  display: none;
  content: none;
}

.footer-wrapper .as-social a {
  background-color: #961f1f;
}
.footer-wrapper .as-social a:hover {
  background-color: #961f1f;
  border-color: #fff;
}
.copyright-text a {
  color: #222;
  font-weight: bold;
}
.footer-layout2 .copyright-wrap {
  padding: 10px 0;
  background-color: #961f1f;
}
.footer-links p {
  position: relative;
  top: 10px;
  color: #fff;
}
.footer-layout2 .widget-area {
  padding-top: 49px;
  padding-bottom: 0;
}
.footer-layout2 {
  background-color: #161717;
}
.footer-logo {
  height: 98px !important;
  margin-left: 57px;
}
.as-widget-about .about-text {
  text-align: justify;
}
/* Our Gallery Accounts Section - Clean Design Without Filters */
.our-gallery-accounts-section {
  padding: 50px 0;
  background: #ffffff;
  position: relative;
}

/* Header Styles */
.our-gallery-accounts-header {
  text-align: center;
  margin-bottom: 60px;
}

.our-gallery-accounts-subtitle {
  display: inline-flex;
  align-items: center;
  color: #961f1f;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.our-gallery-accounts-subtitle i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.our-gallery-accounts-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f2239;
  line-height: 1.2;
  margin-bottom: 20px;
}

.our-gallery-accounts-intro {
  font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Gallery Grid */
.our-gallery-accounts-grid {
  margin-bottom: 14px;
}

.our-gallery-accounts-item {
  margin-bottom: 30px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

/* Gallery Card */
.our-gallery-accounts-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: white;
}

.our-gallery-accounts-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Image Container */
.our-gallery-accounts-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.our-gallery-accounts-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.our-gallery-accounts-card:hover .our-gallery-accounts-image img {
  transform: scale(1.1);
}

/* Overlay */
.our-gallery-accounts-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(150, 31, 31, 0.85),
    rgba(44, 62, 80, 0.8)
  );
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 25px;
  color: white;
}

.our-gallery-accounts-card:hover .our-gallery-accounts-overlay {
  opacity: 1;
  visibility: visible;
}

/* Overlay Content */
.our-gallery-accounts-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.our-gallery-accounts-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.our-gallery-accounts-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 15px;
}

.our-gallery-accounts-category {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

/* Action Buttons */
.our-gallery-accounts-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.our-gallery-accounts-zoom,
.our-gallery-accounts-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.our-gallery-accounts-zoom:hover,
.our-gallery-accounts-link:hover {
  background: white;
  color: #961f1f;
  transform: scale(1.1);
  text-decoration: none;
  border-color: white;
}

/* View More Section */
.our-gallery-accounts-view-more {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid #f8f9fa;
}

.our-gallery-accounts-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #961f1f, #b8312f);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(150, 31, 31, 0.3);
}

.our-gallery-accounts-btn:hover {
  background: linear-gradient(45deg, #7a1a1a, #961f1f);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(150, 31, 31, 0.4);
  color: white;
  text-decoration: none;
}

.our-gallery-accounts-btn i {
  transition: transform 0.3s ease;
}

.our-gallery-accounts-btn:hover i {
  transform: translateX(3px);
}

.tesimonial-container {
  padding: 40px 0;
}
.bg-theme {
  background-color: #2d247c !important;
}
.counter-card-wrap {
  border-color: #49418c !important;
}
.testi-box_text {
  font-size: 17px;
  color: #222;
  text-align: justify;
}
.testi-box_desig {
  color: #961f1f;
}
.testi-box {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.slick-dots {
  margin-top: -233px;
}
.counter-card {
  padding: 59px 0;
}
.checklist .check-title {
  font-size: 19px;
}
.testi-box_review i {
  color: #961f1f;
}
.sub-title {
  font-size: 1rem;
  color: #961f1f;
}
.title-area .sec-title {
  font-size: 2.5rem;
}
.header-img {
  height: 44px !important;
}
.header-layout6 .main-menu > ul > li {
  margin: 0 24px !important;
}
.header-layout6 .header-button {
  margin-left: 42px !important;
}
.main-menu ul li:hover > ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
  width: 700px;
}
.main-menu ul.mega-menu > li > a {
  color: #af2123;
  border-color: #961f1f;
}
.main-menu ul.mega-menu > li > a::after,
.main-menu ul.mega-menu > li > a::before {
  background-color: #961f1f;
}
.main-menu a:hover {
  color: #961f1f;
}
.header-layout6 .menu-area {
  background-color: #fff;
}
.header-layout6 .main-menu > ul > li > a {
  color: #222;
}
.as-btn {
  background-color: #961f1f;
  color: #fff;
}
.as-btn.style3:hover {
  color: #fff;
}
.as-btn.style3::before {
  background: #f8bc00;
}
.slick-track {
  height: 634px;
}
.text-theme {
  color: #9d2524 !important;
}
.p-about-us {
  color: #222;
  text-align: justify;
  font-size: 17px;
}
.checklist .check-text {
  color: #222;
  font-size: 15px;
  font-weight: 400 !important;
  text-align: justify;
}
.checklist li::before {
  color: #f8bc00;
}
.as-btn::before {
  background-color: #f8bc00;
}
.about-section-Accounts {
  margin-top: -77px;
  margin-bottom: -57px;
}

.bg-blue {
  background: #0f1b31;
}

.banner-accont {
  position: relative;
  height: 100vh;
  background-image: url("../images/gallery/16.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  font-family: "Inter", "Poppins", sans-serif;
  overflow: hidden;
}

.banner-accont-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(17, 24, 39, 0.8) 30%,
    rgba(31, 41, 55, 0.85) 70%,
    rgba(0, 0, 0, 0.9) 100%
  );

  display: flex;
  align-items: center;
  z-index: 2;
}

.banner-accont-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.banner-accont-content {
  max-width: 650px;
  color: white;
  animation: slideInLeft 1s ease-out;
}

.banner-accont-small-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-accont-main-title {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 35px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.banner-accont-highlight {
  color: #fef3c7;
  position: relative;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.banner-accont-highlight::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-accont-features {
  display: flex;
  gap: 45px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.banner-accont-feature {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-accont-feature i {
  color: #34d399;
  font-size: 1.3rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-accont-buttons {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.banner-accont-btn {
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.8px;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid transparent;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.banner-accont-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.banner-accont-btn:hover::before {
  left: 100%;
}

.banner-accont-btn-primary {
  background: linear-gradient(45deg, #ffffff, #f8fafc);
  color: #dc2626;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.banner-accont-btn-primary:hover {
  background: linear-gradient(45deg, #fbbf24, #f59e0b);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banner-accont-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
}

.banner-accont-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* AcounTx House Brand Specific Styles */
.banner-accont.accountx-theme .banner-accont-highlight {
  background: linear-gradient(45deg, #fef3c7, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-accont.accountx-theme .banner-accont-btn-primary:hover {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
}
/* Our Courses Accounting Section */
.our-courses-accounting-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.our-courses-accounting-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,107,53,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
  z-index: 1;
}

.our-courses-accounting-container {
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.our-courses-accounting-header {
  text-align: center;
  margin-bottom: 60px;
}

.our-courses-accounting-subtitle {
  display: inline-block;
  color: #961f1f;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.our-courses-accounting-subtitle i {
  margin-right: 10px;
  color: #961f1f;
}

.our-courses-accounting-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f2239;
  line-height: 1.2;
  margin: 0;
}

/* Slider Wrapper */
.our-courses-accounting-slider-wrapper {
  position: relative;
  padding: 0 50px;
}

.our-courses-accounting-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.our-courses-accounting-slider::-webkit-scrollbar {
  display: none;
}

/* Course Card */
.our-courses-accounting-slide {
  flex: 0 0 calc(25% - 22.5px);
  min-width: 280px;
}

.our-courses-accounting-card {
  background: white;
  border-radius: 15px;
  height: 480px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid transparent;
}

.our-courses-accounting-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #961f1f, #e64622);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.our-courses-accounting-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.2);
}

.our-courses-accounting-card:hover::before {
  opacity: 1;
}

/* Course Image */
.our-courses-accounting-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.our-courses-accounting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.our-courses-accounting-card:hover .our-courses-accounting-image img {
  transform: scale(1.1);
}

.our-courses-accounting-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(45deg, #961f1f, #e64622);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Course Content */
.our-courses-accounting-content {
  padding: 25px;
}

.our-courses-accounting-course-title {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.3;
}

.our-courses-accounting-description {
  color: #222;
  text-align: justify;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.our-courses-accounting-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.our-courses-accounting-meta span {
  display: flex;
  align-items: center;
  color: #222;
  font-size: 0.8rem;
  font-weight: 500;
}

.our-courses-accounting-meta span i {
  color: #961f1f;
  margin-right: 6px;
  font-size: 0.8rem;
}

/* Read More Button */
.our-courses-accounting-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #961f1f, #e64622);
  color: white;
  padding: 10px 25px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.our-courses-accounting-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s;
}

.our-courses-accounting-btn:hover::before {
  left: 100%;
}

.our-courses-accounting-btn:hover {
  background: linear-gradient(45deg, #961f1f, #e64622);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  color: white;
  text-decoration: none;
}

.our-courses-accounting-btn i {
  transition: transform 0.3s ease;
}

.our-courses-accounting-btn:hover i {
  transform: translateX(3px);
}

/* Navigation Arrows */
.our-courses-accounting-prev,
.our-courses-accounting-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: white;
  border: 2px solid #961f1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #961f1f;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.our-courses-accounting-prev {
  left: 0;
}

.our-courses-accounting-next {
  right: 0;
}

.our-courses-accounting-prev:hover,
.our-courses-accounting-next:hover {
  background: #961f1f;
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Director Accounts Section - Fixed 550px Height Cards */
.director-accounts-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.director-accounts-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,107,53,0.03)" points="0,0 1000,400 1000,1000 0,600"/></svg>');
  z-index: 1;
}

.director-accounts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.director-accounts-header {
  text-align: center;
  margin-bottom: 80px;
}

.director-accounts-subtitle {
  display: inline-block;
  color: #961f1f;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.director-accounts-subtitle i {
  margin-right: 10px;
  color: #961f1f;
}

.director-accounts-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f2239;
  line-height: 1.2;
  margin-bottom: 20px;
}

.director-accounts-intro {
  font-size: 1rem;
  color: #222;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards Wrapper - Side by Side Layout */
.director-accounts-cards-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Director Card - Fixed 550px Height */
.director-accounts-card {
  display: flex;
  width: 550px;
  height: 530px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.director-accounts-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(45deg, #e42922, #961f1f);
  border-radius: 20px 0 0 20px;
}

.director-accounts-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(255, 107, 53, 0.15);
}

/* Director Image Section - Left Side */
.director-accounts-image-wrapper {
  position: relative;
  width: 200px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.director-accounts-image {
  width: 160px;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 0 auto 15px auto;
}

.director-accounts-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.director-accounts-card:hover .director-accounts-image img {
  transform: scale(1.05);
}

.director-accounts-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.director-accounts-image:hover .director-accounts-image-overlay {
  opacity: 1;
}

.director-accounts-social {
  display: flex;
  gap: 15px;
}

.director-accounts-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.director-accounts-social-link:hover {
  background: white;
  color: #961f1f;
  transform: scale(1.1);
}

/* Image Info Below Image */
.director-accounts-image-info {
  text-align: center;
  flex: 1;
  display: flex;
  margin-top: -175px;
  flex-direction: column;
  justify-content: center;
}

.director-accounts-name {
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.2;
}

.director-accounts-position {
  display: block;
  background: linear-gradient(45deg, #e42922, #961f1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.director-accounts-experience-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(45deg, #e42922, #961f1f);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.7rem;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  z-index: 5;
}

/* Director Content - Right Side */
.director-accounts-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.director-accounts-description {
  font-size: 0.99rem;
  line-height: 1.6;
  color: #222;
  text-align: justify;
  margin: 0;
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: #961f1f #f1f1f1;
}

.director-accounts-description::-webkit-scrollbar {
  width: 4px;
}

.director-accounts-description::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.director-accounts-description::-webkit-scrollbar-thumb {
  background: #961f1f;
  border-radius: 2px;
}

.director-accounts-signature {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid rgba(150, 31, 31, 0.2);
  text-align: right;
  font-size: 0.9rem;
  color: #2c3e50;
  flex-shrink: 0;
}

.director-accounts-signature strong {
  color: #961f1f;
  font-weight: 700;
}

.director-accounts-signature em {
  color: #222;
  font-style: italic;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1200px) {
  .director-accounts-cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .director-accounts-card {
    width: 100%;
    max-width: 550px;
  }

  .our-courses-accounting-slide {
    flex: 0 0 calc(33.333% - 20px);
  }

  .banner-accont-main-title {
    font-size: 3.2rem;
  }

  .placement-accountx-badges-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .videos-acx-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .director-accounts-section {
    padding: 60px 0;
  }

  .director-accounts-title {
    font-size: 2.2rem;
  }

  .director-accounts-card {
    height: auto;
    min-height: 400px;
    flex-direction: column;
  }

  .director-accounts-image-wrapper {
    width: 100%;
    flex-direction: row;
    align-items: center;
    padding: 20px;
  }

  .director-accounts-image {
    width: 120px;
    height: 150px;
    margin-right: 20px;
    margin-bottom: 0;
  }

  .director-accounts-image-info {
    text-align: left;
  }

  .director-accounts-content {
    padding: 20px;
  }

  .director-accounts-description {
    font-size: 0.9rem;
    max-height: 200px;
  }

  .our-courses-accounting-section {
    padding: 60px 0;
  }

  .our-courses-accounting-title {
    font-size: 2.2rem;
  }

  .our-courses-accounting-slider-wrapper {
    padding: 0 20px;
  }

  .our-courses-accounting-slide {
    flex: 0 0 calc(50% - 15px);
    min-width: 250px;
  }

  .our-courses-accounting-prev,
  .our-courses-accounting-next {
    display: none;
  }

  .banner-accont {
    height: auto;
    min-height: 100vh;
    background-attachment: scroll;
  }

  .banner-accont-container {
    padding: 0 20px;
  }

  .banner-accont-content {
    max-width: 100%;
    text-align: center;
    padding: 80px 0;
  }

  .banner-accont-main-title {
    font-size: 2.8rem;
    line-height: 1.2;
  }

  .banner-accont-small-text {
    font-size: 1rem;
  }

  .banner-accont-features {
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
  }

  .banner-accont-buttons {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .banner-accont-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 16px 30px;
  }

  .our-gallery-accounts-section {
    padding: 60px 0;
  }

  .our-gallery-accounts-title {
    font-size: 2rem;
  }

  .our-gallery-accounts-image {
    height: 250px;
  }

  .our-gallery-accounts-overlay {
    padding: 20px 15px;
  }

  .our-gallery-accounts-card-title {
    font-size: 1.2rem;
  }

  .our-gallery-accounts-description {
    font-size: 0.9rem;
  }

  .our-gallery-accounts-actions {
    gap: 12px;
  }

  .our-gallery-accounts-zoom,
  .our-gallery-accounts-link {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .custom-icon-phone,
  .custom-icon-envelope,
  .custom-icon-location {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
    margin-right: 10px;
  }

  .custom-icon-contact-link {
    font-size: 0.9rem;
  }

  .videos-acx-section {
    padding: 27px 0;
  }

  .videos-acx-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testi-box_img img {
    height: 80px !important;
  }

  .certificate-accountx-section {
    padding: 60px 0;
  }

  .certificate-accountx-title {
    font-size: 2rem;
  }

  .certificate-accountx-image {
    height: 400px; /* Smaller height for tablets */
  }

  .certificate-accountx-actions {
    flex-direction: column;
    gap: 10px;
  }

  .certificate-accountx-view-btn,
  .certificate-accountx-download-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .certificate-accountx-content {
    padding: 20px;
  }

  .certificate-accountx-cert-title {
    font-size: 16px;
  }

  .enquiry-form {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .enquiry-form-control {
    padding: 12px 15px 12px 45px;
    font-size: 14px;
  }

  .enquiry-form-icon {
    left: 15px;
    font-size: 14px;
  }

  .enquiry-form-btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  .enquiry-form-contact {
    padding: 20px 15px;
  }

  .enquiry-form-contact-title {
    font-size: 16px;
  }

  .enquiry-form-contact-item {
    font-size: 13px;
  }

  .placement-accountx-main-title h2 {
    font-size: 36px;
  }

  .placement-accountx-stats-row {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .placement-accountx-badges-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .placement-accountx-achievement-badge {
    min-width: auto;
    padding: 20px 15px;
  }

  .placement-accountx-timeline-section {
    padding: 30px 25px;
  }

  .placement-accountx-section-title {
    font-size: 24px;
  }

  .placement-accountx-performer-grid,
  .placement-accountx-growth-grid,
  .placement-accountx-women-showcase {
    grid-template-columns: 1fr;
  }

  .placement-accountx-success-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .placement-accountx-cta-content {
    padding: 40px 30px;
  }

  .placement-accountx-cta-content h3 {
    font-size: 28px;
  }

  .tally-custom-services {
    padding: 60px 0;
    overflow-x: hidden; /* Mobile horizontal scroll fix */
  }

  .tally-custom-services::before {
    width: 100%; /* Background size mobile ke liye kam kar diya */
    height: 100%;
    top: 0;
    left: 0;
  }

  .tally-custom-title {
    font-size: 28px;
  }

  .tally-custom-desc {
    font-size: 16px;
  }

  .tally-custom-card-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .tally-custom-card-footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .tally-custom-cta {
    margin-top: 60px;
    padding: 40px 25px;
  }

  .tally-custom-cta h3 {
    font-size: 24px;
  }

  .tally-custom-cta p {
    font-size: 16px;
  }

  .contact-us-accountx-clickable-phone,
  .contact-us-accountx-clickable-email {
    font-size: 16px;
    padding: 8px 5px 8px 25px;
    display: inline-block;
  }

  .contact-us-accountx-clickable-phone::before,
  .contact-us-accountx-clickable-email::before {
    font-size: 16px;
  }

  .textarea-iocn-contact {
    top: 17px;
    left: 15px;
    font-size: 14px;
  }

  .contact-us-accountx {
    padding: 60px 0;
  }

  .contact-us-accountx-title {
    font-size: 2.2rem;
  }

  .contact-us-accountx-desc {
    font-size: 16px;
  }

  .contact-us-accountx-info-section {
    margin-bottom: 60px;
  }

  .contact-us-accountx-info-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }

  .contact-us-accountx-form-section {
    padding: 40px 30px;
  }

  .contact-us-accountx-visual-card {
    padding: 40px 30px;
    margin-bottom: 40px;
  }

  .contact-us-accountx-logo {
    width: 80px;
    height: 80px;
  }

  .contact-us-accountx-logo i {
    font-size: 32px;
  }

  .contact-us-accountx-logo-section h3 {
    font-size: 24px;
  }

  .contact-us-accountx-form-header h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .vedios-btn-ax {
    padding-top: 0 !important;
    margin-top: -26px;
    margin-bottom: -11px;
  }
  .contact-us-accountx-clickable-phone::before,
  .contact-us-accountx-clickable-email::before {
    font-size: 14px;
  }

  .textarea-iocn-contact {
    top: 15px;
    left: 15px;
    font-size: 14px;
  }

  .contact-us-accountx {
    padding: 25px 0;
  }

  .contact-us-accountx-header {
    margin-bottom: 20px;
  }

  .contact-us-accountx-title {
    font-size: 1.8rem;
  }

  .contact-us-accountx-subtitle {
    font-size: 12px;
    padding: 8px 20px;
    margin-bottom: -3px;
  }

  .contact-us-accountx-info-card {
    padding: 25px 20px;
  }

  .contact-us-accountx-info-icon {
    width: 70px;
    height: 70px;
  }

  .contact-us-accountx-info-icon i {
    font-size: 28px;
  }

  .contact-us-accountx-form-section {
    padding: 22px 12px;
    margin-top: -29px;
  }
  .contact-us-accountx-logo-section p {
    font-size: 14px;
  }
  .contact-us-accountx-feature span {
    text-align: justify;
  }
  .contact-us-accountx-form-header p {
    text-align: justify;

    font-size: 15px;
  }
  .contact-us-accountx-visual-card {
    padding: 30px 25px;
  }

  .contact-us-accountx-form-control {
    padding: 15px 20px 15px 45px;
    font-size: 15px;
  }

  .contact-us-accountx-form-icon {
    left: 15px;
    font-size: 14px;
  }

  .contact-us-accountx-submit-btn {
    width: 244px;
    padding: 10px 30px;
    font-size: 14px;
  }

  .tally-custom-header {
    margin-bottom: 30px;
  }

  .tally-custom-title {
    font-size: 1.6rem;
  }

  .tally-custom-services {
    padding: 20px 0;
    overflow-x: hidden; /* Mobile horizontal scroll fix */
  }

  .tally-custom-services::before {
    display: none; /* Very small screens par background hide */
  }

  .tally-custom-card {
    margin-bottom: 30px;
  }

  .tally-custom-card-header {
    padding: 25px 20px 15px;
  }

  .tally-custom-card-body {
    padding: 0 20px 20px;
  }

  .tally-custom-card-footer {
    padding: 20px;
    flex-direction: row;
  }

  .tally-custom-card-title {
    font-size: 20px; /* Mobile ke liye font size kam */
  }
  .tally-custom-price {
    margin-top: -12px;
  }
  .tally-custom-card-desc {
    font-size: 16px; /* Mobile ke liye font size kam */
  }

  .widget {
    padding: 13px;
  }
  .breadcumb-title {
    font-size: 28px;
  }
  .widget_info .widget_title {
    margin: 4px 0 0 0;
  }
  .enquiry-form {
    padding: 20px 9px;
  }
  .checklist li {
    font-size: 16px;
  }
  .course-description p,
  .course-curriculam p {
    font-size: 16px;
  }
  .sidebar-area {
    padding-top: 0 !important;
  }
  .our-courses-accounting-slider {
    margin-top: -30px;
  }
  .counter-card {
    padding: 31px 0;
  }
  .our-gallery-accounts-section {
    padding: 39px 0;
  }
  .header-img {
    height: 36px !important;
  }
  .as-menu-toggle {
    background-color: #810000;
  }
  .as-menu-toggle:hover {
    background-color: #810000;
  }
  .as-menu-wrapper .as-menu-toggle {
    background-color: #810000;
  }
  .as-menu-wrapper .as-menu-area {
    border-right: 3px solid #810000;
  }
  .as-mobile-menu ul li.as-active > a {
    color: #810000;
  }
  .as-menu-wrapper .mobile-logo {
    background-color: rgb(255 255 255);
  }
  .custom-icon-phone,
  .custom-icon-envelope,
  .custom-icon-location {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    margin-right: 8px;
  }

  .custom-icon-contact-link {
    font-size: 0.85rem;
  }

  .custom-icon-menu-item {
    margin-bottom: 12px;
    padding: 6px 0;
  }
  .enquiry-form-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .course-single-bottom {
    margin-bottom: 18px;
  }
  .our-gallery-accounts-image {
    height: 220px;
  }
  .breadcumb-wrapper {
    height: 50px !important;
    padding-top: 39px;
    padding-bottom: 121px;
  }

  .our-gallery-accounts-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
  .footer-logo {
    height: 70px !important;
    margin-left: 0;
  }
  .footer-layout2 .widget-area {
    padding-top: 29px;
    padding-bottom: 1px;
    margin-bottom: -22px;
  }
  .banner-accont {
    height: auto;
    min-height: 483px;
    background-attachment: scroll;
  }
  .our-gallery-accounts-card-title {
    font-size: 1.1rem;
  }

  .our-gallery-accounts-description {
    font-size: 0.85rem;
  }

  .banner-accont-content {
    padding: 60px 0;
  }

  .banner-accont-main-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .banner-accont-feature {
    font-size: 1rem;
  }

  .banner-accont-small-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .banner-accont-features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .banner-accont-btn {
    padding: 10px 25px;
    font-size: 13px;
  }
  .p-about-us {
    font-size: 16px;
  }
  .checklist .check-title {
    font-size: 17px;
  }
  .our-courses-accounting-slide {
    flex: 0 0 calc(90% - 15px);
    min-width: 280px;
  }

  .our-courses-accounting-content {
    padding: 20px;
  }

  .our-courses-accounting-title,
  .director-accounts-title,
  .title-area .sec-title,
  .our-gallery-accounts-title {
    font-size: 1.6rem;
  }
  .our-courses-accounting-subtitle,
  .director-accounts-subtitle,
  .sub-title,
  .our-gallery-accounts-subtitle {
    font-size: 14px;
  }
  .our-gallery-accounts-grid {
    margin-top: -32px;
    margin-bottom: -30px;
  }
  .testi-box_text {
    font-size: 16px;
  }
  .testi-box_desig {
    font-size: 15px;
  }
  .tesimonial-container {
    margin-bottom: -185px;
    padding: 35px 0;
  }

  .testi-box_name {
    font-size: 18px;
  }
  .our-courses-accounting-section {
    padding-bottom: 15px;
    padding: 30px 0;
  }

  .director-accounts-section {
    padding: 30px 0;
    padding-bottom: 10px;
  }
  .director-accounts-card {
    margin-bottom: 30px;
    margin-top: -51px;
  }
  .as-btn {
    padding: 15px 29px;
  }
  .director-accounts-image-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .our-courses-accounting-btn {
    font-size: 13px;
  }
  .director-accounts-image {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .director-accounts-image-info {
    margin-left: -172px;
  }

  .director-accounts-name {
    font-size: 1.1rem;
  }

  .director-accounts-position {
    font-size: 0.8rem;
  }

  .certificate-accountx-section {
    padding: 40px 0;
    overflow-x: hidden; /* Small screen horizontal scroll fix */
  }

  .certificate-accountx-section::before {
    display: none; /* Hide background on very small screens */
  }

  .certificate-accountx-header {
    margin-bottom: 40px;
  }

  .certificate-accountx-title {
    font-size: 1.6rem;
  }

  .certificate-accountx-subtitle {
    font-size: 14px;
    padding: 8px 20px;
  }

  .certificate-accountx-image {
    height: 350px;
  }

  .certificate-accountx-cert-title {
    font-size: 15px;
  }

  .certificate-accountx-trust-item i {
    font-size: 36px;
  }

  .certificate-accountx-trust-item h5 {
    font-size: 18px;
  }

  .certificate-accountx-content {
    padding: 20px 10px; /* Further reduce padding */
  }

  .certificate-accountx-actions {
    gap: 8px;
  }

  .certificate-accountx-view-btn,
  .certificate-accountx-download-btn {
    padding: 8px 12px;
    font-size: 12px;
    min-width: 120px;
  }

  .section-contact-us {
    margin-top: -10px;
    margin-bottom: 35px;
  }
  .contact-form-wrap h2 {
    font-size: 1.6rem;
  }
  .placement-accountx-badges-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .placement-accountx-name,
  .placement-accountx-role {
    text-align: left;
  }
  .placement-accountx-main-title h2 {
    font-size: 1.6rem;
  }
  .placement-accountx-big-number {
    display: block;
    font-size: 22px;
  }
  .placement-accountx-timeline {
    margin-top: -38px;
  }
  .placement-accountx-timeline-section {
    padding: 25px 12px;
  }
  .placement-accountx-section-title {
    font-size: 20px;
  }
  .placement-accountx-performer-card,
  .placement-accountx-women-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .placement-accountx-advancement-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}
