.our-testimonial-section-head .subtitle {
  color: #222;
  font-size: 1.1rem;
  font-weight: 400;
}

.site-footer.style-2 {
  margin-top: -26px !important;
}

/* ====== Custom Testimonials Section Styling ====== */
.swiper-wrapper {
  width: 100%; /* Wrapper full width */
  display: flex; /* Flex for proper alignment */
}

.swiper-slide {
  width: calc(33.333% - 20px); /* Each slide 1/3 width minus spacing */
  flex-shrink: 0; /* Prevent shrinking */
  opacity: 1 !important; /* Force all slides to be fully visible */
  transform: none !important; /* Remove any transforms */
  visibility: visible !important; /* Ensure visibility */
}
/* Remove Swiper's default fade effects */
.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-prev {
  opacity: 1 !important;
}

.testimonial-wrapper1 {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}
.testimonial-swiper {
  padding: 40px 20px 60px 20px; /* Add padding to container */
  overflow: visible; /* Make sure shadows are visible */
  width: 100%;
}

/* ====== Swiper Container ====== */
.testimonial-swiper {
  padding: 40px 20px 60px 20px; /* Add padding to container */
  overflow: visible; /* Make sure shadows are visible */
}

/* ====== Custom Testimonial Cards ====== */
.newcustom-testimonial-card {
  background: #fff;
  border-radius: 28px;
  margin: 20px 15px; /* Increased margin for better spacing */
  box-shadow: 0 8px 32px 0 rgba(46, 61, 73, 0.12); /* Enhanced shadow */

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 30px 24px 30px;
  min-height: 380px;
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
  opacity: 1 !important; /* Force card visibility */
}

.newcustom-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px 0 rgba(46, 61, 73, 0.2); /* Enhanced hover shadow */
  z-index: 5; /* Higher z-index on hover */
}

/* ====== Theme Colors for Top Border ====== */
.newcustom-theme-orange {
  border-top: 8px solid #ff8a65;
}
.newcustom-theme-blue {
  border-top: 8px solid #42a5f5;
}
.newcustom-theme-pink {
  border-top: 8px solid #ec407a;
}
.newcustom-theme-green {
  border-top: 8px solid #66bb6a;
}
.newcustom-theme-purple {
  border-top: 8px solid #ab47bc;
}
.newcustom-theme-teal {
  border-top: 8px solid #26a69a;
}
.newcustom-theme-red {
  border-top: 8px solid #ef5350;
}
.newcustom-theme-indigo {
  border-top: 8px solid #5c6bc0;
}
.newcustom-theme-amber {
  border-top: 8px solid #ffca28;
}
.newcustom-theme-cyan {
  border-top: 8px solid #26c6da;
}

/* ====== Avatar Section ====== */
.newcustom-avatar-container {
  position: absolute;
  left: 25px;
  top: -38px;
  z-index: 1;
}

.newcustom-avatar-square {
  border-radius: 16px;
  width: 78px;
  height: 78px;
  background: #ff8a65;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #fff;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Avatar Colors for Each Theme */
.newcustom-theme-orange .newcustom-avatar-square {
  background: #ff8a65;
}
.newcustom-theme-blue .newcustom-avatar-square {
  background: #42a5f5;
}
.newcustom-theme-pink .newcustom-avatar-square {
  background: #ec407a;
}
.newcustom-theme-green .newcustom-avatar-square {
  background: #66bb6a;
}
.newcustom-theme-purple .newcustom-avatar-square {
  background: #ab47bc;
}
.newcustom-theme-teal .newcustom-avatar-square {
  background: #26a69a;
}
.newcustom-theme-red .newcustom-avatar-square {
  background: #ef5350;
}
.newcustom-theme-indigo .newcustom-avatar-square {
  background: #5c6bc0;
}
.newcustom-theme-amber .newcustom-avatar-square {
  background: #ffca28;
}
.newcustom-theme-cyan .newcustom-avatar-square {
  background: #26c6da;
}

.newcustom-avatar-tick {
  position: absolute;
  right: -12px;
  bottom: -10px;
  background: #10b981;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}

/* ====== Client Details ====== */
.newcustom-client-name {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 54px;
  margin-bottom: 0;
}

/* Client Name Colors */
.newcustom-theme-orange .newcustom-client-name {
  color: #ff8a65;
}
.newcustom-theme-blue .newcustom-client-name {
  color: #42a5f5;
}
.newcustom-theme-pink .newcustom-client-name {
  color: #ec407a;
}
.newcustom-theme-green .newcustom-client-name {
  color: #66bb6a;
}
.newcustom-theme-purple .newcustom-client-name {
  color: #ab47bc;
}
.newcustom-theme-teal .newcustom-client-name {
  color: #26a69a;
}
.newcustom-theme-red .newcustom-client-name {
  color: #ef5350;
}
.newcustom-theme-indigo .newcustom-client-name {
  color: #5c6bc0;
}
.newcustom-theme-amber .newcustom-client-name {
  color: #ffca28;
}
.newcustom-theme-cyan .newcustom-client-name {
  color: #26c6da;
}

.newcustom-client-role {
  font-size: 1rem;
  color: #353535;
  font-weight: 500;
  margin-bottom: 12px;
}

/* ====== Testimonial Text ====== */
.newcustom-text-block {
  font-size: 16px;
  color: #222;
  margin: 0 0 15px 0;
  min-height: 52px;
  margin-top: 6px;
  line-height: 1.6;
  font-style: italic;
  text-align: justify;
}

/* ====== Card Footer ====== */
.newcustom-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 20px;
}

.newcustom-stars {
  color: #f9b603;
  font-size: 20px;
  letter-spacing: 2px;
  margin-left: 2px;
}

.newcustom-quote-icon {
  background: #ff8a65;
  border-radius: 12px;
  color: #fff;
  width: 48px;
  height: 48px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Quote Icon Colors */
.newcustom-theme-orange .newcustom-quote-icon {
  background: #ff8a65;
}
.newcustom-theme-blue .newcustom-quote-icon {
  background: #42a5f5;
}
.newcustom-theme-pink .newcustom-quote-icon {
  background: #ec407a;
}
.newcustom-theme-green .newcustom-quote-icon {
  background: #66bb6a;
}
.newcustom-theme-purple .newcustom-quote-icon {
  background: #ab47bc;
}
.newcustom-theme-teal .newcustom-quote-icon {
  background: #26a69a;
}
.newcustom-theme-red .newcustom-quote-icon {
  background: #ef5350;
}
.newcustom-theme-indigo .newcustom-quote-icon {
  background: #5c6bc0;
}
.newcustom-theme-amber .newcustom-quote-icon {
  background: #ffca28;
}
.newcustom-theme-cyan .newcustom-quote-icon {
  background: #26c6da;
}

/* ====== Navigation Buttons ====== */
.swiper-btn-center-lr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 -20px;
  pointer-events: none;
  z-index: 10;
}

.newcustom-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  pointer-events: auto;
  border: none;
}

.newcustom-nav-btn:hover {
  background: white;
  transform: scale(1.1);
}

/* ====== Pagination ====== */
.newcustom-pagination {
  position: relative !important;
  margin-top: 40px !important;
  text-align: center;
}

.newcustom-pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 5px !important;
  background: rgba(45, 55, 72, 0.3) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.newcustom-pagination .swiper-pagination-bullet-active {
  background: #2d3748 !important;
  transform: scale(1.3) !important;
}

/* .clients-section */
.custom-clients-section {
  padding: 50px 0 64px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.custom-clients-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.custom-clients-header {
  text-align: center;
  margin-bottom: 60px;
}

.custom-clients-title {
  font-size: 55px;
  font-weight: 700;
  color: #19191a;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.custom-clients-subtitle {
  font-size: 1.1rem;
  color: #222 !important;
  margin: 0;
  font-weight: 400;
}

/* Clients Carousel */
.custom-clients-carousel {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px 0;
}

.custom-clients-track {
  display: flex;
  align-items: center;
  animation: custom-scroll-infinite 25s linear infinite;
  width: calc(200px * 10); /* Adjust based on number of items */
}

/* Infinite Scroll Animation */
@keyframes custom-scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 7)); /* Move by 7 items */
  }
}

.custom-client-item {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.custom-client-logo {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  padding: 15px;
}

.custom-client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 91, 161, 0.15);
  border-color: #005ba1;
}

.custom-client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.3s ease;
}

.custom-client-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Pause animation on hover */
.custom-clients-carousel:hover .custom-clients-track {
  animation-play-state: paused;
}

/* Gradient Overlay for seamless loop */
.custom-clients-carousel::before,
.custom-clients-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.custom-clients-carousel::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(248, 250, 252, 0.9) 0%,
    transparent 100%
  );
}

.custom-clients-carousel::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(248, 250, 252, 0.9) 0%,
    transparent 100%
  );
}

.custom-placement-section {
  padding: 28px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 30%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.custom-placement-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.custom-placement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Side - Visual */
.custom-placement-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-placement-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.custom-shape {
  position: absolute;
  border-radius: 20px;
}

.custom-shape-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #005ba1 0%, #1976d2 100%);
  top: 10%;
  left: 15%;
  transform: rotate(15deg);
  opacity: 0.9;
}

.custom-shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #06b6d4, #0891b2);
  bottom: 20%;
  right: 10%;
  transform: rotate(-20deg);
  opacity: 0.8;
}

.custom-shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #f59e0b, #d97706);
  top: 60%;
  left: 5%;
  transform: rotate(30deg);
  opacity: 0.7;
}

.custom-placement-image {
  position: relative;
  z-index: 2;
  width: 350px;
  height: 350px;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: #fff;
  padding: 15px;
}

.custom-placement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/* Right Side - Content */
.custom-placement-content {
  padding: 20px 0;
}

.custom-placement-badge {
  display: inline-block;
  background: linear-gradient(135deg, #005ba1 0%, #1976d2 100%);

  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.custom-placement-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #b91c1c;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(185, 28, 28, 0.1);
}

.custom-placement-subtitle {
  font-size: 1.3rem;
  color: #374151;
  margin-bottom: 25px;
  font-weight: 500;
}

.custom-highlight {
  color: #b91c1c;
  font-weight: 700;
  font-style: italic;
}

.custom-placement-description {
  margin-bottom: 35px;
}

.custom-placement-description p {
  font-size: 1.1rem;
  color: #222;
  line-height: 1.7;
  margin: 0;
}

/* Stats Section */
.custom-placement-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

.custom-stat-item {
  text-align: center;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #005ba1;
}

.custom-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #005ba1;
  line-height: 1;
}

.custom-stat-label {
  display: block;
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 5px;
  font-weight: 500;
}

/* Action Buttons */
.custom-placement-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.custom-btn-primary {
  background: linear-gradient(135deg, #005ba1 0%, #1976d2 100%);

  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(197, 243, 255, 0.3);
}

.custom-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 243, 255, 0.3);
}

.custom-btn-secondary {
  background: transparent;
  color: #374151;
  border: 2px solid #d1d5db;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-btn-secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-1px);
}

.custom-announce-section {
  width: 100%;
  padding: 40px 0;
  background: #f7f9fb;
  display: flex;
  justify-content: center;
}
.custom-announce-grid {
  width: 90%;
  max-width: 1150px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.custom-announce-title {
  font-size: 1.37rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #005ba1;
  letter-spacing: 1px;
  border-left: 4px solid #005ba1;
  padding-left: 14px;
  position: relative;
}
.custom-notice-card,
.custom-event-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30, 40, 80, 0.1);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.custom-notice-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 260px;
  overflow-y: auto;
}
.custom-notice-list li {
  font-size: 1rem;
  color: #222;
  margin-bottom: 13px;
  display: flex;
  align-items: flex-start;
  background: #e5f0ff;
  padding: 10px 13px;
  border-radius: 7px;
  box-shadow: 0 1px 5px rgba(60, 93, 150, 0.05);
  transition: background 0.15s;
}
.custom-notice-list li:last-child {
  margin-bottom: 0;
}
.custom-notice-list li:hover {
  background: #e1eff9 !important;
}
.custom-icon {
  color: #005ba1;
  font-size: 1.1em;
  margin-right: 11px;
  margin-top: 1.5px;
}

.custom-event-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.custom-event-item {
  display: flex;
  align-items: center;
  background: #f3f8fa;
  border-radius: 9px;
  padding: 11px 14px;
  box-shadow: 0 1px 5px rgba(50, 110, 220, 0.04);
  border-left: 4px solid #005ba1;
  transition: box-shadow 0.18s;
}
.custom-event-item:hover {
  box-shadow: 0 4px 16px rgba(67, 151, 235, 0.14);
  background: #eaf6fd;
}
.custom-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #005ba1;
  border-radius: 8px;
  color: #fff;
  padding: 3px 14px 4px 14px;
  font-weight: 700;
  margin-right: 15px;
  min-width: 52px;
}
.custom-event-day {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
}
.custom-event-month {
  font-size: 0.86rem;
  text-transform: uppercase;
  margin-top: -2px;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.custom-event-info {
  flex: 1;
}
.custom-event-type {
  font-size: 0.92rem;
  color: #1c4b6b;
  font-weight: 500;
  margin-bottom: 2px;
}
.custom-event-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.3;
}

/* Why Choose Us Card Design */

.why-choose-us-section {
  padding: 40px 0;
  background: #fafcff;
}

.why-title {
  font-size: 55px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 35px;
  color: #222;
  position: relative;
  display: inline-block;
}
.why-title::after {
  content: "";
  display: block;
  margin: 12px auto 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #005ba1, #f59e42, #ae43f6);
  border-radius: 2px;
}

.why-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 10px;
}

.why-card {
  background: #f4fbfd;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(44, 62, 80, 0.1);
  display: flex;
  align-items: center;
  padding: 22px 22px 18px 22px;
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s;
  border-left: 6px solid transparent;
  overflow: hidden;
  position: relative;
}
.why-card:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 12px 32px rgba(44, 62, 80, 0.22);
  border-left-color: #005ba1;
}

.why-icon {
  flex-shrink: 0;
  margin-right: 18px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2.5px dashed #e2e4f1;
  background: #e8f3fc;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.1);
  transition: background 0.15s;
}
.why-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.why-icon-green {
  background: #ecfdf5;
  border-color: #10b981;
}
.why-icon-blue {
  background: #e0f2fe;
  border-color: #3b82f6;
}
.why-icon-orange {
  background: #ffedd5;
  border-color: #f59e42;
}
.why-icon-purple {
  background: #f3e8ff;
  border-color: #ae43f6;
}
.why-icon-teal {
  background: #e0fdfa;
  border-color: #34d399;
}
.why-icon-red {
  background: #fee2e2;
  border-color: #f66a6a;
}

.why-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #20224a;
}
.why-content p {
  margin: 0;
  font-size: 16px;
  color: #222;
  line-height: 1.5;
  text-align: justify;
}

.section-head.text-center {
  text-align: center;
}

[data-color="color_1"] {
  --primary: #005ba1;
  --primary-hover: #dc3e22;
  --primary-dark: #dc3e22;
  --rgba-primary-1: rgba(0, 91, 161, 0.1) !important;
  --rgba-primary-2: rgba(0, 91, 161, 0.2) !important;
  --rgba-primary-3: rgba(0, 91, 161, 0.3) !important;
  --rgba-primary-4: rgba(0, 91, 161, 0.4) !important;
  --rgba-primary-5: rgba(0, 91, 161, 0.5) !important;
  --rgba-primary-6: rgba(0, 91, 161, 0.6) !important;
  --rgba-primary-7: rgba(0, 91, 161, 0.7) !important;
  --rgba-primary-8: rgba(0, 91, 161, 0.8) !important;
  --rgba-primary-9: rgba(0, 91, 161, 0.9) !important;

  --title: #222;
  --dark: #0b161e;
  --secondary: #dc3e22;
  --secondary-dark: #121e31;
  --secondary-hover: #dc3e22;
  --rgba-primary-1: rgba(0, 91, 161, 0.1) !important;
  --rgba-primary-2: rgba(0, 91, 161, 0.2) !important;
  --rgba-primary-3: rgba(0, 91, 161, 0.3) !important;
  --rgba-primary-4: rgba(0, 91, 161, 0.4) !important;
  --rgba-primary-5: rgba(0, 91, 161, 0.5) !important;
  --rgba-primary-6: rgba(0, 91, 161, 0.6) !important;
  --rgba-primary-7: rgba(0, 91, 161, 0.7) !important;
  --rgba-primary-8: rgba(0, 91, 161, 0.8) !important;
  --rgba-primary-9: rgba(0, 91, 161, 0.9) !important;
  --title: #222;
  --bs-gradient: linear-gradient(
    to bottom,
    rgba(0, 91, 161, 0.9) 0%,
    rgba(0, 91, 161, 0.8) ; 1%,
    var(--secondary) 24%,
    var(--secondary) 100%
  );
}
.our_Programmers_container {
  background-color: #005ba1 !important;
}
.our_program_title {
  color: #fff !important;
}
.paragraph-colors-notice {
  color: #2b2a2a !important;
}
.text-justify-notice {
  text-align: justify !important;
}
footer .widget_about p {
  font-size: 15px !important;
}
footer .widget_services ul li a {
  font-size: 15px !important;
}
footer .custom-location p {
  font-size: 15px !important;
}
.custom-notice-board {
  height: 300px !important;
  overflow-y: auto;
  border-radius: 10px !important;
  border: 2px solid #333 !important;
  background-color: #fff !important;
  position: relative !important;
  padding: 10px !important;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
  scroll-behavior: smooth;
}

/* Scrolling Notice Wrapper */
.custom-notice-scroll {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
}
.bule-fa-clr {
  color: #005ba1 !important;
}

/* Single Notice */
.custom-attractive-notice {
  background-color: #fefefe !important;
  padding: 15px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  border-left: 5px solid #005ba1 !important;
  border-radius: 5px !important;
}

/* Scroll animation */
@keyframes scrollUp {
  0% {
    transform: translateY(100%) !important;
  }
  100% {
    transform: translateY(-100%) !important;
  }
}

/* Image Styling */
.custom-image-container img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;

  border-radius: 10px !important;
}

.site-footer.style-2 .footer-bottom .copyright-text a {
  color: #e3111b !important;
}
.clr-secondary-2 {
  color: #005ba1 !important;
}
.bg-secondary-2 {
  background-color: #005ba1 !important;
}
.dz-social-icon.style-3 ul li a {
  color: #e9eaee;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  height: 45px;
  width: 45px;
  min-width: 45px;
  text-align: center;
  line-height: 45px;
  z-index: 1;
  border-radius: var(--border-radius-base);
  background-color: #005ba1 !important;
  overflow: hidden;
}
.dz-team.style-1 .dz-media img {
  border-radius: var(--border-radius-base);
  height: 220px !important;
  object-fit: cover;
}
.dz-team.style-1 .dz-media::after {
  background-color: transparent !important;
}
.about-bx3 .dz-media::before {
  background-color: transparent !important;
}
.clients-wrapper .swiper-wrapper .clients-logo .logo-main {
  opacity: 10;
  height: 120px !important;
}
.icon-bx-wraper.style-2 .icon-cell {
  margin-right: 25px;
  background-color: transparent !important;
  display: flex;
  height: 70px;
  width: 70px;
  border-radius: 1px !important;
  align-items: center;
  justify-content: center;
}
.icon-bx-wraper.style-2 {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important ;
}
.icon-lg img {
  height: 80px !important;
}
.icon-bx-wraper .read-more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 8px 14px;
  letter-spacing: -0.03em;
  gap: 10px;
  margin: 16px auto 0 auto;
  border-radius: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
  background-color: transparent;
  overflow: hidden;
  outline: none !important;
  border: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 1;
}

/* ::before pseudo-element for background effect */
.icon-bx-wraper .read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #005ba1; /* Default background */
  z-index: -1;
  border-radius: 16px;
  transition: background-color 0.3s ease;
}

/* On hover of parent box */
.icon-bx-wraper:hover .read-more-btn::before {
  background-color: #fff !important; /* Hover background */
}

.icon-bx-wraper:hover .read-more-btn {
  color: #222 !important;
}
.btn-about {
  margin-top: -22px !important;
}
.section-image img {
  margin-top: 16px;
  border-radius: 10px;
  height: 350px;
}
.dark-text {
  color: #222 !important;
}
.icon-bx-wraper.style-1 {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.icon-bx-wraper.style-1::before {
  background-color: #005ba1 !important;
}
.icon-bx-wraper.style-1:hover .icon-content p {
  color: #fff !important;
}
.section-head .sub-title {
  text-transform: uppercase;
  color: #005ba1 !important;
}
.paragraph-colors p {
  color: #2b2a2a !important;
}
.paragraph-color p {
  color: #2b2a2a !important;
  font-size: 17px !important;
}
.text-justify p {
  text-align: justify !important;
}
.site-header.style-2 .header-nav .nav > li.active > a {
  color: #005ba1;
}

.icon-bx-sm img {
  vertical-align: middle;
  max-width: 100%;
  width: 70px;
  height: 70px;
  object-fit: cover; /* Ensures the image fills the circle */
  display: block;
  margin: 0 auto;
  border-radius: 50%;
}
.icon-bx-wraper.style-4 .separator {
  background-color: #dc3e22;
}
.icon-bx-wraper.style-4:hover {
  border-color: #005ba1 !important;
  background-color: #005ba1 !important;
}

.testimonial-2 {
  border-color: #005ba1 !important;
  background-color: #005ba1 !important;
}

.testimonial-2 .testimonial-content .testimonial-info .quotes i {
  color: #dc3e22 !important;
}

/* .site-header.style-2 .header-nav .nav > li:after
    {
        background-color: #e31e25;
    } */

.btn-primary {
  border-color: #005ba1 !important;
  background-color: #005ba1 !important;
}
.btn-secondary {
  color: #fff;
  background-color: #dc3e22 !important;
  border-color: #dc3e22 !important;
}

.btn-primary.disabled,
.disabled.wp-block-button__link,
.btn-primary:disabled,
.wp-block-button__link:disabled,
.btn-primary:not(:disabled):not(.disabled).active,
.wp-block-button__link:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.wp-block-button__link:not(:disabled):not(.disabled):active,
.btn-primary:active,
.wp-block-button__link:active,
.btn-primary:focus,
.wp-block-button__link:focus,
.btn-primary:hover,
.wp-block-button__link:hover {
  border-color: #dc3e22;
  background-color: #dc3e22;
}

.site-header.style-2 .header-nav .nav > li:after {
  background-color: unset;
}

.site-header.style-2 .header-nav .nav {
  margin-left: 30px;
}

.site-header .extra-nav .extra-cell > * {
  margin-left: 10px;
}

.site-header.style-2 .header-nav .nav > li > a {
  padding: 36px 20px;
  color: #003b4a;
}

.btn {
  padding: 14px 20px;
}

.site-header.style-2 .header-nav .nav > li:hover > a {
  color: #dc3e22;
}

.header-nav .nav > li .sub-menu li:hover > a {
  color: #003b4a;
}

.site-footer.style-2 .footer-top.footer-feature {
  padding-top: 50px !important;
  padding-bottom: 0 !important;
}

.DZ-theme-btn.DZ-bt-buy-now,
.DZ-bt-support-now,
.DZ-theme-btn {
  display: none !important;
}

footer .footer-bottom {
  padding: 10px 0;
}

.site-footer.style-2 .footer-top:before {
  background-color: unset;
}

.site-footer.style-2 .footer-top {
  background-color: #1c1818;
}

.site-footer.style-2 .footer-bottom .copyright-text {
  color: #f6f6f6;
}

.site-footer.style-2 .footer-bottom {
  position: relative;
  background-color: #1c1818 !important;
}

.main-bnr-one .banner-inner {
  background-color: unset;
  background-position: unset;
  min-height: 650px;
}

.main-bnr-one .banner-inner:before {
  /* background-color: unset; */
  opacity: 0.5;
}

.main-bnr-one .banner-content {
  padding-top: 100px;
}

.main-bnr-one .banner-content .title {
  text-align: center;
}

.main-bnr-one .banner-content {
  padding-left: 0px;
}

.main-bnr-one .banner-content p {
  font-size: 18.5px;
  color: #fff !important;
}

.main-bnr-one .banner-content .sub-title {
  text-align: center;
  color: #f4c722 !important;
  font-family: unset;
  font-size: 21px;
}

.main-bnr-one .btn-wrapper .main-btn {
  background-color: #005ba1;
}
.custom-about-us-section h2 {
  margin-top: -48px !important;
}
.custom-about-history {
  margin-top: -68px !important;
}
.custom-about-history-text {
  margin-top: -26px;
}
.principal-image {
  margin-top: -495px !important;
}
.principal-image img {
  border-radius: 10px !important;
  height: 350px !important;
}
.principal-regards-head {
  margin-bottom: -19px !important;
}
.principal-img-text {
  margin-bottom: -2px !important;
}
.list-paragraph-colors {
  color: #2b2a2a !important;
  text-align: justify !important;
  font-size: 17px !important;
}
.red-color-text {
  color: #e31d24 !important;
  font-weight: 500 !important;
}
.bPharm-content-inner {
  margin-top: -88px;
  margin-bottom: -42px;
}
.curriculum-heading {
  margin-top: 0 !important;
}
.custom-d-pharm-head {
  margin-top: -27px !important;
  margin-bottom: -65px !important;
}

@media (max-width: 850px) {
  .why-cards-row {
    grid-template-columns: 1fr;
  }
  .why-card {
    flex-direction: row;
    padding: 18px 10px;
  }
}

@media (max-width: 900px) {
  .custom-announce-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .custom-notice-card,
  .custom-event-card {
    min-height: unset;
  }

  .custom-placement-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .custom-placement-title {
    font-size: 2.3rem;
  }

  .custom-placement-stats {
    justify-content: center;
  }
}
@media screen and (max-width: 1200px) {
  .newcustom-testimonial-card {
    min-height: 370px;
  }
  .site-header.style-2 .header-nav .nav > li > a {
    padding: 36px 11px;
    color: #003b4a;
  }

  .header-nav .nav > li > a {
    font-size: 15px;
  }

  .main-bnr-one .banner-content .title {
    font-size: 55px;
  }
}

@media screen and (max-width: 1300px) {
  .site-header.style-2 .header-nav .nav > li > a {
    padding: 36px 12px;
    color: #003b4a;
  }

  .header-nav .nav > li > a {
    font-size: 15.5px;
  }
}

@media screen and (max-width: 500px) {
  .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  .testimonial-swiper {
    padding: 10px 5px 30px 5px;
  }
  .newcustom-testimonial-card {
    margin: 3px 0;
    min-width: 100%;
    box-sizing: border-box;
  }

  .swiper {
    width: 100%;
    height: auto;
  }

  .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }

  .testimonial-wrapper1 {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
  }

  .newcustom-avatar-square {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .newcustom-client-name {
    font-size: 1.3rem;
    margin-top: 40px;
  }

  .section-head .title {
    font-size: 32px;
  }

  .newcustom-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  footer .widget_about {
    text-align: left !important;
  }
  footer .footer-logo {
    margin-left: 0 !important;
  }
  .custom-clients-section {
    padding: 60px 0;
  }

  .custom-clients-title {
    font-size: 2rem;
  }

  .custom-clients-subtitle {
    font-size: 1rem;
  }

  .custom-client-item {
    flex: 0 0 150px;
  }

  .custom-client-logo {
    width: 100px;
    height: 70px;
    padding: 10px;
  }

  .custom-clients-track {
    width: calc(150px * 10);
    animation-duration: 20s;
  }

  @keyframes custom-scroll-infinite {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-150px * 7));
    }
  }

  .custom-btn-primary {
    font-size: 14px;
  }
  .custom-btn-secondary {
    font-size: 14px;
  }
  .custom-placement-subtitle {
    font-size: 16px;
  }
  .custom-placement-description p {
    font-size: 14px;
    text-align: justify;
  }
  .custom-placement-section {
    padding: 50px 0;
  }

  .custom-placement-image {
    width: 280px;
    height: 280px;
  }

  .custom-placement-title {
    font-size: 2rem;
  }

  .custom-placement-stats {
    flex-direction: column;
    gap: 15px;
  }

  .custom-placement-actions {
    flex-direction: column;
    align-items: center;
  }

  .custom-btn-primary,
  .custom-btn-secondary {
    width: 100%;
    max-width: 280px;
  }
  .custom-notice-list li {
    font-size: 14px !important;
  }
  .custom-announce-section {
    padding: 22px 2vw;
  }
  .custom-announce-grid {
    width: 98%;
  }
  .custom-notice-card,
  .custom-event-card {
    padding: 16px 10px;
  }
  .custom-announce-title {
    font-size: 1.13rem;
  }
  .custom-event-title {
    font-size: 14px;
  }
  .custom-event-type {
    font-size: 14px;
  }
  .why-title {
    font-size: 2rem;
  }
  .why-card {
    flex-direction: column;
    text-align: left;
    padding: 14px 6px;
  }
  .why-icon {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .why-content h5 {
    text-align: center !important;
    font-size: 16px !important;
  }

  .why-content p {
    font-size: 14px !important;
  }

  .custom-d-pharm-head {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .curriculum-heading {
    margin-top: -73px !important;
  }
  .bPharm-content-inner {
    margin-top: -63px !important;
    margin-bottom: -7px !important
      ;
  }

  .list-paragraph-colors {
    color: #2b2a2a !important;
    text-align: justify !important;
    font-size: 15px !important;
  }
  .principal-image {
    margin-top: 0 !important;
  }

  .principal-image img {
    border-radius: 10px !important;
    height: auto !important;
  }
  .custom-about-history {
    margin-top: 0 !important;
  }
  .custom-about-history-text {
    margin-top: -30px !important;
  }

  .custom-about-us-section h2 {
    margin-top: 0 !important;
  }

  .our-gallery-container {
    margin-top: -22px;
  }
  .our-testimonial-section-head {
    margin-top: 10px;
  }

  .main-bnr-one .banner-content .title {
    font-size: 37px !important;
  }

  .main-bnr-one .banner-content .sub-title {
    font-size: 15px;
  }

  .main-bnr-one .banner-content {
    padding-top: 45px;
  }

  .main-bnr-one .banner-inner {
    min-height: 610px;
  }

  .btn {
    font-size: 12px;
  }
  .paragraph-color p {
    color: #2b2a2a !important;
    font-size: 15px !important;
  }
  .paragraph-colors p {
    color: #2b2a2a !important;
  }
  .section-image img {
    margin-top: 0px !important;
    border-radius: 10px !important;
    height: auto !important;
  }
  .content-inner-2 {
    padding-top: 20px !important;
  }
  .content-inner {
    padding-top: 20px !important;
    padding-bottom: 0px !important;
  }

  .section-head {
    margin-bottom: 43px;
  }
  .our-notice-heading {
    text-align: center !important;
    text-align: center;
  }
  .custom-notice-top {
    margin-top: -32px !important;
    margin-bottom: 32px !important;
    font-size: 32px !important;
  }
  .custom-event-top {
    margin-top: 39px !important;
    margin-bottom: 34px !important;
    font-size: 32px !important;
  }
  .custom-image-container img {
    height: auto !important;
  }
  .our-placement-heading {
    text-align: center !important;
    margin-top: 20px !important;
    margin-bottom: 25px !important;
  }

  .about-bx3 .dz-media img {
    width: auto !important;
    margin-top: -50px !important;
  }
  .section-head-about-us {
    margin-bottom: 20px !important;
  }
  .section-head-about-us h2 {
    text-align: center !important;
  }
  .btn-about {
    margin-left: 33% !important;
  }
  .clients-wrapper .swiper-wrapper .clients-logo .logo-main {
    opacity: 10;
    height: 90px !important;
  }
}
@media (max-width: 480px) {
  .testimonial-wrapper1 {
    padding: 29px 0 !important;
    margin-top: 29px !important;
  }
  .custom-clients-header {
    margin-bottom: 40px;
  }

  .custom-clients-carousel {
    padding: 30px 0;
  }

  .custom-client-item {
    flex: 0 0 120px;
  }

  .custom-client-logo {
    width: 80px;
    height: 60px;
    padding: 8px;
  }

  .newcustom-testimonial-card {
    padding: 20px 15px 18px 15px;
  }

  .newcustom-avatar-square {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .newcustom-client-name {
    font-size: 1.1rem;
    margin-top: 35px;
  }

  .newcustom-text-block {
    font-size: 14px;
    text-align: justify;
  }

  .newcustom-stars {
    font-size: 16px;
  }

  .newcustom-quote-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
