:root {
  --primary-blue: #2d3192;
  --soft-sky: #d4effb;
  --passion-red: #ed1c25;
  --pure-white: #ffffff;
  --dark-overlay: rgba(0, 0, 0, 0.75);
  --shadow-sm: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 30px 45px -12px rgba(45, 49, 146, 0.25);
  --transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-body);
  overflow-x: hidden;
  background-color: var(--pure-white);
}
h1,
h2,
h3,
h4,
.hero-title,
.display-text {
  font-family: var(--font-heading);
  font-weight: 700;
}
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #10145a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.7s ease,
    visibility 0.7s;
}
.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
}
.loader-ring {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto;
}
.loader-ring svg {
  width: 100%;
  height: 100%;
  animation: spinRing 2s linear infinite;
}
.loader-ring circle {
  fill: none;
  stroke: var(--soft-sky);
  stroke-width: 4;
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  animation: drawDash 1.6s ease-in-out infinite alternate;
}
@keyframes spinRing {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes drawDash {
  0% {
    stroke-dashoffset: 280;
    stroke: var(--soft-sky);
  }
  100% {
    stroke-dashoffset: 40;
    stroke: var(--passion-red);
  }
}
.loader-book-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  color: white;
  animation: softPulse 1s infinite;
}
@keyframes softPulse {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    text-shadow: 0 0 18px rgba(255, 255, 255, 0.9);
    transform: translate(-50%, -50%) scale(1.05);
  }
}
.loader-text {
  margin-top: 28px;
  display: flex;
  gap: 6px;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.loader-text span {
  color: white;
  animation: waveLetter 1.4s infinite;
  animation-delay: calc(0.07s * var(--i));
  display: inline-block;
}
@keyframes waveLetter {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-12px);
    opacity: 1;
    color: var(--soft-sky);
  }
}
.navbar {
  transition: var(--transition);
  background-color: white !important;
  padding: 0.5rem 2rem;
}
.navbar.scrolled {
  background-color: var(--pure-white) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  padding: 0.45rem 2rem;
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--passion-red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  letter-spacing: -0.3px;
}
.navbar-brand img {
  height: 60px;
  object-fit: contain;
}
.navbar.scrolled .navbar-brand {
  background: linear-gradient(135deg, var(--primary-blue), var(--passion-red));
  -webkit-background-clip: text;
  background-clip: text;
}
.nav-link {
  font-weight: 600;
  margin: 0 10px;
  color: rgb(0, 0, 0) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: 0.2s;
}
.navbar.scrolled .nav-link {
  color: var(--primary-blue) !important;
}
.nav-link {
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--passion-red);
  border-radius: 0;
  transition: width 0.25s ease;
}
.nav-link:hover::after {
  width: 80%;
}

.offcanvas {
  background: linear-gradient(145deg, #ffffff, #f5f7ff);
}
.offcanvas-header {
  background: linear-gradient(90deg, var(--primary-blue), var(--passion-red));
  color: white;
}
.offcanvas-body .nav-link {
  color: var(--primary-blue) !important;
  margin: 15px 0;
  font-size: 1.1rem;
}
.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 700px;
}
.hero-slide-new {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.hero-slide-new .overlay-grid {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgb(255 255 255 / 95%) 0%,
    rgb(255 255 255 / 96%) 60%,
    rgb(45 49 146) 60%,
    rgb(45 49 146) 100%
  );
  z-index: 1;
}
@media (max-width: 992px) {
  .hero-slide-new .overlay-grid {
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.94) 0%,
      rgba(255, 255, 255, 0.94) 60%,
      rgba(45, 49, 146, 0.85) 60%,
      rgba(45, 49, 146, 0.85) 100%
    );
  }
}
.hero-grid-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  height: 100%;
  margin-top: 100px;
}
.hero-text-content {
  text-align: left;
}
.hero-text-content .badge-red {
  background: var(--passion-red, #ed1c25);
  font-size: 0.8rem;
  letter-spacing: 2px;
  display: inline-block;
  padding: 6px 18px;
  border-radius: 40px;
  color: white;
  margin-bottom: 20px;
  font-weight: 600;
}
.hero-text-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #1a1a2e;
}
.hero-text-content .highlight-red {
  color: var(--passion-red, #ed1c25);
}
.hero-text-content .highlight-blue {
  color: var(--primary-blue, #2d3192);
}
.hero-text-content .description {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #4a4a6a;
  margin: 1.5rem 0;
}
.hero-text-content .btn-group-custom {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary-custom {
  background: var(--primary-blue, #2d3192);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-primary-custom:hover {
  background: var(--passion-red, #ed1c25);
  transform: translateY(-3px);
}
.btn-outline-custom {
  background: transparent;
  border: 2px solid var(--primary-blue, #2d3192);
  color: var(--primary-blue, #2d3192);
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-outline-custom:hover {
  background: var(--primary-blue, #2d3192);
  color: white;
  transform: translateY(-3px);
}
.hero-image-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-content img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 50/45;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
  object-fit: cover;
  transition: transform 0.4s;
}
@media (max-width: 992px) {
  .hero-grid-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 5% 6%;
    text-align: center;
  }
  .hero-text-content {
    text-align: center;
  }
  .hero-text-content h1 {
    font-size: 2.2rem;
  }
  .hero-text-content .btn-group-custom {
    justify-content: center;
  }
  .hero-image-content img {
    max-width: 380px;
  }
  .hero-swiper {
    min-height: 750px;
  }
}
@media (max-width: 576px) {
  .hero-text-content h1 {
    font-size: 1.8rem;
  }
  .hero-text-content .description {
    font-size: 0.95rem;
  }
  .btn-primary-custom,
  .btn-outline-custom {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  .hero-image-content img {
    max-width: 280px;
  }
}
.swiper-button-custom {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  width: 48px;
  height: 48px;
  border-radius: 60px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 15;
}
.swiper-button-custom:hover {
  background: var(--passion-red, #ed1c25);
  transform: scale(1.05);
}
.custom-pagination {
  bottom: 30px;
  gap: 5px;
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  z-index: 15;
}
.custom-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 6px;
  border-radius: 0;
  background: #86b7fe;
  opacity: 0.7;
}
.custom-pagination .swiper-pagination-bullet-active {
  width: 65px;
  background: var(--passion-red, #ed1c25);
  opacity: 1;
}
.about-section {
  padding: 80px 0;
  background: linear-gradient(110deg, #ffffff 0%, #faf9ff 100%);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 20% 80%,
    rgba(10, 88, 202, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-side {
  position: relative;
}
.image-mosaic {
  position: relative;
}
.main-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
}
.main-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.main-image:hover img {
  transform: scale(1.05);
}
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 88, 202, 0.1),
    rgba(220, 53, 69, 0.1)
  );
  pointer-events: none;
}
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.float-card {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}
.float-card:hover {
  transform: scale(1.05) translateY(-5px);
}
.card-1 {
  top: 10%;
  left: -10%;
  animation: float 3s ease-in-out infinite;
}
.card-2 {
  bottom: 15%;
  right: -5%;
  animation: float 3s ease-in-out infinite 1s;
}
.card-3 {
  bottom: 30%;
  left: -5%;
  animation: float 3s ease-in-out infinite 0.5s;
}
.float-icon img {
  height: 40px;
  object-fit: contain;
}
.float-text {
  display: flex;
  flex-direction: column;
}
.float-text strong {
  font-size: 14px;
  color: #1a1a2e;
}
.float-text span {
  font-size: 11px;
  color: #666;
}
.experience-ring {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
}
.ring-svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
.ring-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.years {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #0a58ca, #dc3545);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
}
.label {
  font-size: 10px;
  color: #666;
  display: block;
}
.about-content-side {
  padding: 20px 0;
}
.content-wrapper {
  max-width: 600px;
}
.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.tag-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #dc3545, #0a58ca);
  border-radius: 3px;
}
.tag-text {
  color: #dc3545;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 14px;
}
.main-title {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #1a1a2e;
}
.gradient-text {
  background: linear-gradient(135deg, #0a58ca, #dc3545);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.description {
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 16px;
}
.stats-container {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.circular-progress {
  text-align: center;
}
.progress-circle {
  position: relative;
  width: 100px;
  height: 100px;
}
.progress-circle svg {
  width: 100%;
  height: 100%;
}
.progress-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 800;
  color: #0a58ca;
}
.stat-item h4 {
  font-size: 14px;
  margin-top: 10px;
  color: #666;
}
.stat-number {
  text-align: center;
}
.stat-number h3 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
}
.stat-number p {
  color: #666;
  margin: 0;
  font-size: 14px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.feature-icon img {
  height: 45px;
  object-fit: contain;
}

.feature-info h5 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #1a1a2e;
}
.feature-info p {
  font-size: 12px;
  color: #888;
  margin: 0;
}
.cta-buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.btn-primary-glow {
  background: linear-gradient(90deg, #0a58ca, #dc3545, #0a58ca);
  background-size: 200% 100%;
  background-position: left;
  width: fit-content;
  border: none;
  padding: 14px 35px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  transition:
    background-position 0.9s ease,
    box-shadow 0.3s ease;
  /* box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3); */
}

.btn-primary-glow:hover {
  background-position: right;
  /* box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4); */
}
.btn-primary-glow i {
  margin-left: 8px;
  transition: transform 0.7s;
}
.btn-primary-glow:hover i {
  transform: translateX(5px);
}
.contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-info i {
  font-size: 32px;
  color: #0a58ca;
}
.contact-info small {
  font-size: 11px;
  color: #888;
  display: block;
}
.contact-info strong {
  font-size: 16px;
  color: #1a1a2e;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-image-side {
    order: 1;
  }
  .about-content-side {
    order: 2;
  }
  .main-title {
    font-size: 36px;
  }
  .float-card {
    display: none;
  }
  .experience-ring {
    bottom: -20px;
    right: 0;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .stats-container {
    justify-content: center;
  }
  .main-title {
    font-size: 32px;
  }
}
.our-home-branches {
  background-image: url("../images/br-bg.png");
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.our-home-branches::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 88, 202, 0.15), transparent 70%);
  border-radius: 50%;
  animation: floatOrb 20s ease-in-out infinite;
}
.our-home-branches::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.1), transparent 70%);
  border-radius: 50%;
  animation: floatOrb 15s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, 30px) scale(1.1);
  }
}
.branches-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
.branches-header {
  text-align: center;
  margin-bottom: 20px;
}
.branches-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 53, 69, 0.12);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 60px;
  color: #ff6b6b;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border: 1px solid rgba(220, 53, 69, 0.3);
  transition: 0.3s;
}
.branches-badge i {
  font-size: 14px;
}
.branches-title {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}
.title-gradient {
  background: linear-gradient(135deg, #3b82f6, #dc3545, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.branches-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}
.swiper-wrapper-container {
  position: relative;
  padding: 0 0 0;
}
.branches-swiper {
  /* overflow: visible; */
  padding: 0px;
}
.branch-card {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  padding: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 380px;
  max-height: 381px;
}
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75));
  transition: opacity 0.4s ease;
  z-index: 1;
}
.branch-card:hover .card-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
  opacity: 0.8;
}
.card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.branch-card:hover {
  border-color: rgba(220, 53, 69, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.card-header {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 20px;
}
.branch-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(10, 88, 202, 0.8),
    rgba(220, 53, 69, 0.8)
  );
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  backdrop-filter: blur(5px);
}
.branch-card:hover .branch-icon {
  transform: scale(1.05) rotate(5deg);
  background: linear-gradient(
    135deg,
    rgba(10, 88, 202, 1),
    rgba(220, 53, 69, 1)
  );
}
.branch-icon img {
  width: 40px;
  height: auto;
}
.branch-icon i {
  font-size: 32px;
  color: #ff6b6b;
}
.branch-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.1)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.03em;
}
.branch-name {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(220, 53, 69, 0.6);
  display: inline-block;
  text-align: center;
}
.branch-details {
  flex: 1;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.branch-info {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.branch-info i {
  font-size: 17px;
  min-width: 18px;
  margin-top: 5px;
}
.branch-info i.fa-map-marker-alt {
  color: #3b82f6;
}
.branch-info i.fa-envelope {
  color: #f59e0b;
}
.branch-info i.fa-phone-alt {
  color: #10b981;
}
.branch-info span,
.branch-info a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
  transition: 0.3s;
}
.branch-info a:hover {
  color: #ff6b6b;
}
.phone-group {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.branch-cta {
  width: fit-content;
  background: linear-gradient(90deg, #dc3545, #ff6b6b);
  border: none;
  padding: 12px 20px;
  border-radius: 60px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.9s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin: 0 auto;
}
.branch-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}
.branch-cta:hover::before {
  width: 300px;
  height: 300px;
}
.branch-cta:hover {
  transform: tranform 0.9s;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}
.branch-cta i {
  font-size: 13px;
  transition: transform 0.9s;
}
.branch-cta:hover i {
  transform: translateX(5px);
}
.custom-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  position: relative;
}
.custom-swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.custom-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: all 0.3s;
  border-radius: 0;
  margin: 0 !important;
}
.custom-swiper-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: linear-gradient(90deg, #dc3545, #ff6b6b);
  border-radius: 0;
}
@media (max-width: 1200px) {
  .branches-title {
    font-size: 44px;
  }
}
@media (max-width: 992px) {
  .our-home-branches {
    padding: 70px 0;
  }
  .branches-title {
    font-size: 38px;
  }
  .branch-name {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .our-home-branches {
    padding: 60px 0;
  }
  .branches-container {
    padding: 0 20px;
  }
  .branches-title {
    font-size: 32px;
  }
  .branches-subtitle {
    font-size: 16px;
  }
  .card-content {
    padding: 22px;
  }
  .branch-icon {
    width: 55px;
    height: 55px;
  }
  .branch-icon i {
    font-size: 26px;
  }
  .branch-icon img {
    width: 32px;
  }
  .branch-number {
    font-size: 38px;
  }
  .branch-name {
    font-size: 20px;
  }
  .custom-nav-wrapper {
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  .branches-title {
    font-size: 28px;
  }
  .branches-badge {
    font-size: 12px;
    padding: 6px 18px;
  }
  .card-content {
    padding: 18px;
  }
  .branch-info span,
  .branch-info a {
    font-size: 11px;
  }
  .phone-group {
    flex-direction: column;
    gap: 4px;
  }
}
.our-facilities {
  background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 50%, #f0f2ff 100%);
  background-image: url("../images/sas.png");
  background-repeat: repeat;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.our-facilities::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.06), transparent 70%);
  border-radius: 50%;
  animation: floatOrbFacility 18s ease-in-out infinite;
}
.our-facilities::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10, 88, 202, 0.06), transparent 70%);
  border-radius: 50%;
  animation: floatOrbFacility 22s ease-in-out infinite reverse;
}
@keyframes floatOrbFacility {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 40px) scale(1.1);
  }
}
.facilities-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
.facilities-header {
  text-align: center;
  margin-bottom: 30px;
}
.facilities-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 53, 69, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 60px;
  color: #dc3545;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border: 1px solid rgba(220, 53, 69, 0.2);
  transition: 0.3s;
}
.facilities-badge i {
  font-size: 14px;
}
.facilities-title {
  font-size: 52px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}
.title-gradient {
  background: linear-gradient(135deg, #0a58ca, #dc3545, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.facilities-subtitle {
  color: #6c757d;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}
.facility-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: row;
  text-align: left;
  gap: 20px;
}
.facility-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 53, 69, 0.05),
    transparent
  );
  transition: left 0.9s ease;
}
.facility-card:hover::before {
  left: 100%;
}
.facility-card:hover {
  transform: translateY(-10px);
  border-color: rgba(220, 53, 69, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.facility-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}
.facility-icon {
  width: 85px;
  height: 85px;
  background: linear-gradient(
    135deg,
    rgba(10, 88, 202, 0.1),
    rgba(220, 53, 69, 0.1)
  );
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}
.facility-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background: linear-gradient(135deg, #0a58ca, #dc3545);
  opacity: 0;
  transition: 0.4s;
  z-index: -1;
}
.facility-card:hover .facility-icon {
  transform: scaleX(-1);
  background: transparent;
  transition: 0.9s ease;
}
.facility-card:hover .facility-icon::after {
  opacity: 1;
}
.facility-icon i {
  font-size: 40px;
  color: #dc3545;
  transition: 0.4s;
}
.facility-card:hover .facility-icon i {
  color: white;
  transform: scale(1.1);
}
.facility-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.facility-card:hover .facility-name::after {
  width: 50px;
}
.facility-description {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  transition: 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.facility-card:hover .facility-description {
  color: #495057;
}
.facility-hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(
    135deg,
    rgba(220, 53, 69, 0.03),
    rgba(10, 88, 202, 0.03)
  );
  transition: height 0.5s ease;
  z-index: -1;
}
.facility-card:hover .facility-hover-effect {
  height: 100%;
}
@media (max-width: 1200px) {
  .facilities-title {
    font-size: 44px;
  }
  .facilities-grid {
    gap: 25px;
  }
}
@media (max-width: 992px) {
  .our-facilities {
    padding: 70px 0;
  }
  .facilities-title {
    font-size: 38px;
  }
  .facilities-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
  }
  .facility-card {
    padding: 30px 20px;
  }
  .facility-icon {
    width: 75px;
    height: 75px;
  }
  .facility-icon i {
    font-size: 36px;
  }
  .facility-name {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .our-facilities {
    padding: 60px 0;
  }
  .facilities-container {
    padding: 0 20px;
  }
  .facilities-header {
    margin-bottom: 40px;
  }
  .facilities-title {
    font-size: 32px;
  }
  .facilities-subtitle {
    font-size: 16px;
  }
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .facility-card {
    padding: 25px 20px;
  }
  .facility-icon {
    width: 70px;
    height: 70px;
  }
  .facility-icon i {
    font-size: 32px;
  }
  .facility-name {
    font-size: 20px;
  }
  .facility-description {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .facilities-title {
    font-size: 28px;
  }
  .facilities-badge {
    font-size: 12px;
    padding: 6px 18px;
  }
  .facility-icon {
    width: 60px;
    height: 60px;
  }
  .facility-icon i {
    font-size: 28px;
  }
  .facility-name {
    font-size: 18px;
  }
}
.modal-content {
  border-radius: 40px;
  border: none;
}
.btn-custom-primary {
  background: var(--primary-blue);
  color: white;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  transition: 0.2s;
  border: none;
}
.btn-custom-primary:hover {
  background: var(--passion-red);
  transform: scale(0.98);
}
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .navbar {
    background: rgba(45, 49, 146, 0.96) !important;
  }
  .navbar.scrolled {
    background: white !important;
  }
  .about-img {
    box-shadow: 15px 15px 0 var(--primary-blue);
  }
}
@media (max-width: 576px) {
  .hero-content {
    margin-left: 5%;
    margin-right: 5%;
  }
  .hero-swiper {
    min-height: 600px;
  }
}
.chuddamle {
  align-items: center !important;
}
.our-gallery-expand {
  background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 50%, #f0f2ff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.our-gallery-expand::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.05), transparent 70%);
  border-radius: 50%;
  animation: floatExpand 18s ease-in-out infinite;
}
.our-gallery-expand::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10, 88, 202, 0.05), transparent 70%);
  border-radius: 50%;
  animation: floatExpand 22s ease-in-out infinite reverse;
}
@keyframes floatExpand {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 40px) scale(1.1);
  }
}
.gallery-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
.gallery-header {
  text-align: center;
  margin-bottom: 20px;
}
.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 53, 69, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 60px;
  color: #dc3545;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 5px;
  border: 1px solid rgba(220, 53, 69, 0.2);
  transition: 0.9s;
}
.gallery-badge i {
  font-size: 14px;
}
.gallery-title {
  font-size: 52px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.title-gradient {
  background: linear-gradient(135deg, #0a58ca, #dc3545, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.gallery-subtitle {
  color: #6c757d;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.gallery-row {
  display: flex;
  gap: 0;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.gallery-expand-item {
  flex: 1;
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-row:hover .gallery-expand-item {
  flex: 0.7;
}
.gallery-row .gallery-expand-item:hover {
  flex: 3;
}
.expand-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.expand-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.gallery-expand-item:hover .expand-image-wrapper img {
  transform: scale(1.05);
}
.expand-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 88, 202, 0.8),
    rgba(220, 53, 69, 0.8)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.gallery-expand-item:hover .expand-overlay {
  opacity: 1;
}
.expand-content {
  text-align: center;
  color: white;
  transform: translateY(20px);
  transition: transform 0.9s ease;
}
.gallery-expand-item:hover .expand-content {
  transform: translateY(0);
}
.expand-content i {
  font-size: 48px;
  margin-bottom: 15px;
  display: block;
}
.expand-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  white-space: nowrap;
}
.expand-content p {
  font-size: 14px;
  opacity: 0.9;
  white-space: nowrap;
}
.gallery-more {
  text-align: center;
  margin-top: 50px;
}
.view-more-btn {
  background: linear-gradient(135deg, #0a58ca, #dc3545);
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}
.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}
.view-more-btn i {
  margin-left: 8px;
  transition: transform 0.3s;
}
.view-more-btn:hover i {
  transform: translateX(5px);
}
@media (max-width: 1200px) {
  .gallery-title {
    font-size: 44px;
  }
  .gallery-row {
    height: 450px;
  }
  .expand-content h4 {
    font-size: 16px;
  }
  .expand-content p {
    font-size: 12px;
  }
  .expand-content i {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .our-gallery-expand {
    padding: 70px 0;
  }
  .gallery-title {
    font-size: 38px;
  }
  .gallery-row {
    height: 400px;
  }
  .expand-content h4 {
    font-size: 14px;
  }
  .expand-content p {
    font-size: 11px;
  }
  .expand-content i {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .our-gallery-expand {
    padding: 60px 0;
  }
  .gallery-container {
    padding: 0 20px;
  }
  .gallery-header {
    margin-bottom: 30px;
  }
  .gallery-title {
    font-size: 32px;
  }
  .gallery-subtitle {
    font-size: 16px;
  }
  .gallery-row {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }
  .gallery-expand-item {
    height: 250px;
  }
  .gallery-row:hover .gallery-expand-item {
    flex: 1;
  }
  .gallery-row .gallery-expand-item:hover {
    flex: 1;
  }
  .expand-content h4 {
    font-size: 18px;
  }
  .expand-content p {
    font-size: 13px;
  }
  .expand-content i {
    font-size: 40px;
  }
  .view-more-btn {
    padding: 12px 35px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .gallery-title {
    font-size: 28px;
  }
  .gallery-badge {
    font-size: 12px;
    padding: 6px 18px;
  }
  .gallery-subtitle {
    font-size: 14px;
  }
  .gallery-expand-item {
    height: 200px;
  }
  .expand-content h4 {
    font-size: 16px;
  }
  .expand-content p {
    font-size: 11px;
  }
  .expand-content i {
    font-size: 32px;
  }
  .view-more-btn {
    padding: 10px 28px;
    font-size: 13px;
  }
}
.gallery-expand-item {
  animation: fadeInScale 0.5s ease forwards;
  opacity: 0;
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.gallery-expand-item:nth-child(1) {
  animation-delay: 0.1s;
}
.gallery-expand-item:nth-child(2) {
  animation-delay: 0.2s;
}
.gallery-expand-item:nth-child(3) {
  animation-delay: 0.3s;
}
.gallery-expand-item:nth-child(4) {
  animation-delay: 0.4s;
}
.gallery-expand-item:nth-child(5) {
  animation-delay: 0.5s;
}
.gallery-expand-item:nth-child(6) {
  animation-delay: 0.6s;
}
.cta-section {
  position: relative;
  background-image: url("https://images.pexels.com/photos/5212343/pexels-photo-5212343.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
  margin: 0;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.75));
  z-index: 1;
}
.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
.cta-content {
  text-align: center;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cta-badge {
  display: inline-block;
  background: rgba(220, 53, 69, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 50px;
  color: #ff6b6b;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border: 1px solid rgba(220, 53, 69, 0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.cta-title {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.highlight {
  background: linear-gradient(135deg, #0a58ca, #dc3545, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 35px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cta-primary {
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  border: none;
  padding: 14px 35px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(220, 53, 69, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.6);
  gap: 15px;
}
.cta-primary i {
  transition: transform 0.3s;
}
.cta-primary:hover i {
  transform: translateX(5px);
}
.cta-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 12px 35px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cta-secondary:hover {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
  transform: translateY(-3px);
}
.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.cta-feature i {
  color: #28a745;
  font-size: 18px;
}
@media (max-width: 1200px) {
  .cta-title {
    font-size: 44px;
  }
  .cta-section {
    padding: 100px 0;
  }
}
@media (max-width: 992px) {
  .cta-section {
    padding: 80px 0;
  }
  .cta-title {
    font-size: 38px;
  }
  .cta-description {
    font-size: 16px;
  }
  .cta-buttons {
    gap: 15px;
  }
  .cta-primary,
  .cta-secondary {
    padding: 12px 30px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
    background-attachment: scroll;
  }
  .cta-container {
    padding: 0 20px;
  }
  .cta-title {
    font-size: 32px;
  }
  .cta-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .cta-badge {
    font-size: 12px;
    padding: 6px 18px;
    margin-bottom: 20px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
  }
  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .cta-features {
    gap: 20px;
  }
  .cta-feature {
    font-size: 12px;
  }
  .cta-feature i {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .cta-section {
    padding: 50px 0;
  }
  .cta-title {
    font-size: 28px;
  }
  .cta-description {
    font-size: 14px;
  }
  .cta-badge {
    font-size: 11px;
    padding: 5px 15px;
  }
  .cta-primary,
  .cta-secondary {
    padding: 10px 25px;
    font-size: 14px;
    max-width: 250px;
  }
  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-feature {
    font-size: 13px;
  }
}
@keyframes floatContent {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.cta-content {
  animation:
    fadeInUp 0.8s ease-out,
    floatContent 4s ease-in-out infinite 0.8s;
}
.testimonials-section {
  background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 50%, #f0f2ff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10, 88, 202, 0.05), transparent 70%);
  border-radius: 50%;
  animation: floatTestimonial 20s ease-in-out infinite;
}
.testimonials-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.05), transparent 70%);
  border-radius: 50%;
  animation: floatTestimonial 18s ease-in-out infinite reverse;
}
@keyframes floatTestimonial {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, -30px) scale(1.1);
  }
}
.testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 20px;
}
.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 53, 69, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 60px;
  color: #dc3545;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border: 1px solid rgba(220, 53, 69, 0.2);
  transition: 0.3s;
}
.testimonials-badge i {
  font-size: 14px;
}
.testimonials-title {
  font-size: 52px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.title-gradient {
  background: linear-gradient(135deg, #0a58ca, #dc3545, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.testimonials-subtitle {
  color: #6c757d;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.testimonials-slider-wrapper {
  position: relative;
  padding: 0 0 0;
}
.testimonials-swiper {
  /* overflow: visible; */
  padding: 0;
}
.testimonial-card {
  background: #ffffff;
  border-radius: 7px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(220, 53, 69, 0.2);
}
.quote-icon {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 60px;
  color: rgba(220, 53, 69, 0.1);
  font-family: serif;
}
.quote-icon i {
  font-size: 50px;
}
.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #dc3545;
}
.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.author-info p {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 5px;
}
.rating {
  display: flex;
  gap: 3px;
}
.rating i {
  font-size: 12px;
  color: #f59e0b;
}
.testimonials-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.testimonial-button-prev,
.testimonial-button-next {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(10, 88, 202, 0.1),
    rgba(220, 53, 69, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 1px solid rgba(220, 53, 69, 0.3);
}
.testimonial-button-prev i,
.testimonial-button-next i {
  font-size: 20px;
  color: #dc3545;
  transition: 0.3s;
}
.testimonial-button-prev:hover,
.testimonial-button-next:hover {
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  transform: scale(1.1);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.5);
}
.testimonial-button-prev:hover i,
.testimonial-button-next:hover i {
  color: white;
}
.testimonial-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: all 0.3s;
  margin: 0 !important;
  border-radius: 0;
}
.testimonial-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: linear-gradient(90deg, #0a58ca, #dc3545);
  border-radius: 0;
}
@media (max-width: 1200px) {
  .testimonials-title {
    font-size: 44px;
  }
  .testimonial-card {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .testimonials-section {
    padding: 70px 0;
  }
  .testimonials-title {
    font-size: 38px;
  }
  .testimonial-card {
    padding: 25px;
  }
  .testimonial-text {
    font-size: 15px;
  }
  .quote-icon i {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  .testimonials-container {
    padding: 0 20px;
  }
  .testimonials-header {
    margin-bottom: 35px;
  }
  .testimonials-title {
    font-size: 32px;
  }
  .testimonials-subtitle {
    font-size: 16px;
  }
  .testimonial-card {
    padding: 25px 20px;
  }
  .testimonial-text {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .author-image {
    width: 50px;
    height: 50px;
  }
  .author-info h4 {
    font-size: 16px;
  }
  .author-info p {
    font-size: 12px;
  }
  .testimonial-button-prev,
  .testimonial-button-next {
    width: 42px;
    height: 42px;
  }
  .testimonial-button-prev i,
  .testimonial-button-next i {
    font-size: 18px;
  }
  .quote-icon i {
    font-size: 35px;
  }
}
@media (max-width: 480px) {
  .testimonials-title {
    font-size: 28px;
  }
  .testimonials-badge {
    font-size: 12px;
    padding: 6px 18px;
  }
  .testimonial-card {
    padding: 20px 15px;
  }
  .testimonial-text {
    font-size: 13px;
  }
  .author-image {
    width: 45px;
    height: 45px;
  }
  .author-info h4 {
    font-size: 15px;
  }
  .testimonial-button-prev,
  .testimonial-button-next {
    width: 38px;
    height: 38px;
  }
  .testimonial-button-prev i,
  .testimonial-button-next i {
    font-size: 16px;
  }
}
.footer-section {
  position: relative;
  background-image: url("https://images.pexels.com/photos/256468/pexels-photo-256468.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0 20px;
  margin-top: 0;
  overflow: hidden;
}
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.88));
  z-index: 1;
}
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
.footer-main {
  display: grid;
  grid-template-columns: 25% 15% 25% 25%;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-column {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.footer-column:nth-child(1) {
  animation-delay: 0.1s;
}
.footer-column:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-column:nth-child(3) {
  animation-delay: 0.3s;
}
.footer-column:nth-child(4) {
  animation-delay: 0.4s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 50px;
  width: auto;
}
.footer-logo h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.footer-logo h3 span {
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
}
.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-icon:hover {
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  transform: translateY(-3px);
  color: white;
}
.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #dc3545, #ff6b6b);
  border-radius: 3px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links li a i {
  font-size: 10px;
  transition: transform 0.3s;
}
.footer-links li a:hover {
  color: #dc3545;
  transform: translateX(5px);
}
.footer-links li a:hover i {
  transform: translateX(3px);
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}
.footer-contact li i {
  font-size: 18px;
  color: #dc3545;
  margin-top: 3px;
  min-width: 20px;
}
.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact li a:hover {
  color: #dc3545;
}
.footer-contact li strong {
  color: #ffffff;
}
.branches-two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
  margin-bottom: 25px;
}
.branches-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.branches-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.branches-list li i {
  font-size: 12px;
  color: #dc3545;
  min-width: 16px;
}
.branches-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}
.branches-list li a:hover {
  color: #dc3545;
  transform: translateX(3px);
  display: inline-block;
}
.footer-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-cta p i {
  color: #dc3545;
  font-size: 16px;
}
.footer-cta p strong a {
  color: #ff6b6b;
  text-decoration: none;
  font-size: 16px;
}
.footer-cta p strong a:hover {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  color: rgb(19 70 255);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-bottom-links p {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-bottom-links a:hover {
  color: #dc3545;
}
@media (max-width: 1200px) {
  .footer-main {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .footer-section {
    padding: 60px 0 20px;
    background-attachment: scroll;
  }
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
  .branches-two-columns {
    gap: 10px 15px;
  }
}
@media (max-width: 768px) {
  .footer-section {
    padding: 50px 0 20px;
  }
  .footer-container {
    padding: 0 20px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-logo h3 {
    font-size: 22px;
  }
  .footer-title {
    font-size: 18px;
  }
  .branches-two-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
  }
  .branches-list li a {
    font-size: 13px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
  .footer-copyright p {
    font-size: 12px;
  }
  .footer-bottom-links a {
    font-size: 12px;
  }
  .footer-cta p {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .footer-section {
    padding: 40px 0 20px;
  }
  .footer-logo img {
    height: 40px;
  }
  .footer-logo h3 {
    font-size: 20px;
  }
  .footer-description {
    font-size: 13px;
  }
  .footer-title {
    font-size: 18px;
  }
  .branches-two-columns {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .branches-list li a {
    font-size: 12px;
  }
  .social-icon {
    width: 34px;
    height: 34px;
  }
  .footer-cta p {
    font-size: 12px;
  }
  .footer-cta p strong a {
    font-size: 14px;
  }
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  transform: translateY(-5px);
}
.modal-content {
  background: transparent;
  border: none;
  border-radius: 0;
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.close-modal:hover {
  background: #dc3545;
  transform: rotate(90deg);
}
.close-modal i {
  font-size: 18px;
  color: #333;
}
.close-modal:hover i {
  color: white;
}
.enquiry-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.enquiry-left {
  background: linear-gradient(135deg, #0a0a2a, #1a1a3e);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}
.enquiry-left::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.15), transparent);
  border-radius: 50%;
}
.enquiry-left::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(10, 88, 202, 0.1), transparent);
  border-radius: 50%;
}
.enquiry-left-content {
  position: relative;
  z-index: 2;
}
.enquiry-badge {
  display: inline-block;
  background: rgba(220, 53, 69, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #ff6b6b;
  margin-bottom: 20px;
  border: 1px solid rgba(220, 53, 69, 0.3);
}
.enquiry-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  line-height: 1.2;
}
.enquiry-title span {
  background: linear-gradient(135deg, #dc3545, #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.enquiry-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.enquiry-features {
  margin-bottom: 40px;
}
.enquiry-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.enquiry-feature i {
  color: #28a745;
  font-size: 16px;
}
.enquiry-contact-info {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-item i {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #dc3545;
}
.contact-item small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.contact-item strong {
  font-size: 14px;
  color: white;
}
.enquiry-right {
  background: white;
  padding: 50px 40px;
}
.enquiry-form-container {
  width: 100%;
}
.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
}
.form-subtitle {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 30px;
}
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  position: relative;
}
.form-group.full-width {
  grid-column: span 2;
}
.input-field {
  position: relative;
  width: 100%;
}
.input-field i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #dc3545;
  font-size: 16px;
  z-index: 2;
  transition: all 0.3s;
}
.input-field input,
.input-field select,
.input-field textarea {
  width: 100%;
  padding: 16px 16px 16px 45px;
  font-size: 15px;
  border: 2px solid #e8e8e8;
  border-radius: 14px;
  background: white;
  transition: all 0.3s;
  outline: none;
  font-family: inherit;
}
.input-field textarea {
  padding-top: 16px;
  resize: vertical;
  min-height: 80px;
}
.input-field textarea + i {
  top: 20px;
  transform: none;
}
.input-field label {
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 0 6px;
  color: #999;
  font-size: 14px;
  transition: all 0.2s;
  pointer-events: none;
}
.input-field textarea + label {
  top: 18px;
  transform: none;
}
.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
  border-color: #2d3192;
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}
.input-field input:focus + label,
.input-field input:not(:placeholder-shown) + label,
.input-field select:focus + label,
.input-field select:has(option:checked:not([value=""])) + label,
.input-field textarea:focus + label,
.input-field textarea:not(:placeholder-shown) + label {
  top: 0;
  transform: translateY(-50%) scale(0.85);
  color: #2d3192;
  background: white;
}
.input-field input:not(:placeholder-shown),
.input-field select:has(option:checked:not([value=""])),
.input-field textarea:not(:placeholder-shown) {
  border-color: #2d3192;
}
.submit-btn {
  width: fit-content;
  background: linear-gradient(135deg, #0a58ca, #dc3545);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
  margin: 0 auto;
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 53, 69, 0.3);
  gap: 15px;
}
.submit-btn i {
  transition: transform 0.3s;
}
.submit-btn:hover i {
  transform: translateX(5px);
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 20px;
  margin-bottom: 0;
}
.form-note i {
  color: #28a745;
  margin-right: 5px;
}
@media (max-width: 992px) {
  .enquiry-wrapper {
    grid-template-columns: 1fr;
  }
  .enquiry-left {
    padding: 40px 30px;
  }
  .enquiry-right {
    padding: 40px 30px;
  }
  .enquiry-title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .modal-dialog {
    margin: 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .enquiry-left {
    padding: 30px 25px;
  }
  .enquiry-right {
    padding: 30px 25px;
  }
  .enquiry-title {
    font-size: 26px;
  }
  .form-title {
    font-size: 24px;
  }
  .contact-item i {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .enquiry-left {
    padding: 25px 20px;
  }
  .enquiry-right {
    padding: 25px 20px;
  }
  .enquiry-title {
    font-size: 24px;
  }
  .form-title {
    font-size: 22px;
  }
  .input-field input,
  .input-field select,
  .input-field textarea {
    padding: 14px 14px 14px 42px;
    font-size: 14px;
  }
  .input-field i {
    left: 14px;
    font-size: 14px;
  }
  .input-field label {
    left: 42px;
    font-size: 13px;
  }
  .submit-btn {
    padding: 14px;
    font-size: 15px;
  }
  .close-modal {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }
}

/* Breadcrumb Section - Modern & Decent */
.breadcum-section {
  position: relative;
  padding: 140px 0 120px;
  min-height: 550px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Background Image */
.breadcum-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=1600&h=700&fit=crop");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.breadcum-section:hover .breadcum-section__bg {
  transform: scale(1.03);
}

/* Modern Gradient Overlay */
.breadcum-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    rgba(10, 15, 35, 0.92) 0%,
    rgba(45, 49, 146, 0.88) 40%,
    rgba(237, 28, 37, 0.75) 100%
  );
  z-index: -1;
}

/* Subtle Noise Texture */
.breadcum-section__overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Container */
.breadcum-section__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

/* Content Wrapper */
.breadcum-section__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Badge */
.breadcum-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  padding: 8px 20px;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.breadcum-section__badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.breadcum-section__badge-icon {
  width: 16px;
  height: 16px;
  stroke: var(--passion-red, #ed1c25);
}

/* Title */
.breadcum-section__title {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.breadcum-section__gradient {
  background: linear-gradient(
    135deg,
    #ffffff,
    var(--soft-sky, #d4effb),
    var(--passion-red, #ed1c25)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

/* Divider */
.breadcum-section__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.breadcum-section__divider-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--passion-red, #ed1c25),
    transparent
  );
}

.breadcum-section__divider-dot {
  width: 6px;
  height: 6px;
  background: var(--passion-red, #ed1c25);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Subtitle */
.breadcum-section__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin: 0 auto 40px;
  font-weight: 400;
}

/* Navigation */
.breadcum-section__nav {
  display: inline-flex;
  justify-content: center;
}

.breadcum-section__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcum-section__item {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.breadcum-section__item:not(:last-child)::after {
  content: "—";
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin-left: 10px;
  letter-spacing: 1px;
}

.breadcum-section__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 6px 0;
}

.breadcum-section__link:hover {
  color: var(--passion-red, #ed1c25);
  transform: translateX(-3px);
}

.breadcum-section__link-icon {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.breadcum-section__item--active {
  color: var(--passion-red, #ed1c25);
  font-weight: 600;
}

/* Scroll Button */
.breadcum-section__scroll {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s ease-in-out infinite;
  background: transparent;
  border: none;
  z-index: 10;
}

.breadcum-section__scroll:hover {
  transform: translateX(-50%) translateY(5px);
}

.breadcum-section__scroll:hover .breadcum-section__scroll-text {
  color: var(--passion-red, #ed1c25);
  letter-spacing: 3px;
}

.breadcum-section__scroll:hover .breadcum-section__scroll-icon {
  stroke: var(--passion-red, #ed1c25);
  transform: translateY(3px);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.breadcum-section__scroll-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.breadcum-section__scroll-icon {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.7);
  fill: none;
  transition: all 0.3s ease;
}

/* Next Section - Target for scroll */
.next-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  text-align: center;
}

.next-section h2 {
  font-size: 48px;
  color: var(--primary-blue, #2d3192);
  margin-bottom: 20px;
}

.next-section p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 992px) {
  .breadcum-section {
    padding: 110px 0 90px;
    min-height: 500px;
  }

  .breadcum-section__title {
    font-size: 56px;
  }

  .breadcum-section__subtitle {
    font-size: 17px;
  }

  .breadcum-section__scroll {
    bottom: -70px;
  }
}

@media (max-width: 768px) {
  .breadcum-section {
    padding: 90px 0 70px;
    min-height: 450px;
  }

  .breadcum-section__container {
    padding: 0 24px;
  }

  .breadcum-section__title {
    font-size: 44px;
  }

  .breadcum-section__badge {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 24px;
  }

  .breadcum-section__subtitle {
    font-size: 15px;
    margin-bottom: 32px;
    padding: 0 20px;
  }

  .breadcum-section__divider-line {
    width: 30px;
  }

  .breadcum-section__item {
    font-size: 13px;
  }

  .breadcum-section__scroll {
    bottom: -60px;
  }

  .breadcum-section__scroll-text {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .breadcum-section {
    padding: 70px 0 60px;
    min-height: 400px;
  }

  .breadcum-section__title {
    font-size: 36px;
  }

  .breadcum-section__badge {
    font-size: 11px;
    padding: 5px 14px;
    gap: 6px;
  }

  .breadcum-section__badge-icon {
    width: 12px;
    height: 12px;
  }

  .breadcum-section__subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .breadcum-section__divider {
    gap: 8px;
    margin-bottom: 20px;
  }

  .breadcum-section__divider-line {
    width: 25px;
  }

  .breadcum-section__item {
    font-size: 12px;
  }

  .breadcum-section__item:not(:last-child)::after {
    font-size: 12px;
    margin-left: 8px;
  }

  .breadcum-section__link-icon {
    width: 12px;
    height: 12px;
  }

  .breadcum-section__scroll {
    bottom: -50px;
  }
}

/* Dark Premium Mission Section */
.mission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2a 50%, #0a0a1f 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Orbs */
.mission-section__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrb 20s ease-in-out infinite;
  pointer-events: none;
}

.mission-section__orb--1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(45, 49, 146, 0.6), transparent);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.mission-section__orb--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(237, 28, 37, 0.4), transparent);
  bottom: -200px;
  right: -200px;
  animation-delay: 5s;
}

.mission-section__orb--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 49, 146, 0.5), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
  opacity: 0.2;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

.mission-section__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.mission-section__header {
  text-align: center;
  margin-bottom: 30px;
}

.mission-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 10px 28px;
  border-radius: 100px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mission-section__badge i {
  font-size: 14px;
  color: var(--passion-red, #ed1c25);
}

.mission-section__badge:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(237, 28, 37, 0.5);
}

.mission-section__title {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}

.mission-section__gradient {
  background: linear-gradient(
    135deg,
    #60a5fa,
    var(--passion-red, #ed1c25),
    #f59e0b
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.mission-section__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.mission-section__divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--passion-red, #ed1c25),
    var(--primary-blue, #2d3192),
    transparent
  );
}

.mission-section__divider-dot {
  width: 8px;
  height: 8px;
  background: var(--passion-red, #ed1c25);
  border-radius: 50%;
  animation: missionPulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--passion-red, #ed1c25);
}

@keyframes missionPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

.mission-section__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Cards Grid */
.mission-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 0px;
}

/* Mission Card Base */
.mission-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border-radius: 32px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(45, 49, 146, 0.1),
    rgba(237, 28, 37, 0.05)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mission-card:hover::before {
  opacity: 1;
}

.mission-card:hover {
  transform: translateY(-12px);
  border-color: rgba(237, 28, 37, 0.3);
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.5);
}

/* Card Number */
.mission-card__number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 72px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  font-family: monospace;
}

/* Card Variations */
.mission-card--mission .mission-card__icon-bg {
  background: linear-gradient(
    135deg,
    rgba(45, 49, 146, 0.2),
    rgba(45, 49, 146, 0.05)
  );
  border: 1px solid rgba(45, 49, 146, 0.3);
}

.mission-card--vision .mission-card__icon-bg {
  background: linear-gradient(
    135deg,
    rgba(237, 28, 37, 0.2),
    rgba(237, 28, 37, 0.05)
  );
  border: 1px solid rgba(237, 28, 37, 0.3);
}

.mission-card--values .mission-card__icon-bg {
  background: linear-gradient(
    135deg,
    rgba(45, 49, 146, 0.2),
    rgba(237, 28, 37, 0.05)
  );
  border: 1px solid rgba(237, 28, 37, 0.2);
}

/* Icon Wrapper */
.mission-card__icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
}

.mission-card__icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  transform: rotate(45deg);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-card:hover .mission-card__icon-bg {
  transform: rotate(90deg);
  border-radius: 50%;
}

.mission-card__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 42px;
  transition: all 0.4s ease;
}

.mission-card--mission .mission-card__icon {
  color: #60a5fa;
}

.mission-card--vision .mission-card__icon {
  color: #f87171;
}

.mission-card--values .mission-card__icon {
  color: #fbbf24;
}

.mission-card:hover .mission-card__icon {
  transform: translate(-50%, -50%) scale(1.15);
}

/* Card Content */
.mission-card__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mission-card__line {
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25)
  );
  margin: 0 auto 25px;
  transition: width 0.4s ease;
  border-radius: 3px;
}

.mission-card:hover .mission-card__line {
  width: 100px;
}

.mission-card__description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
}

.mission-card__features {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.mission-card__feature {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mission-card__feature i {
  font-size: 11px;
}

.mission-card__feature:hover {
  background: rgba(237, 28, 37, 0.2);
  border-color: rgba(237, 28, 37, 0.5);
  transform: translateY(-2px);
}

.mission-card__hover-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, transparent, rgba(237, 28, 37, 0.05));
  transition: height 0.5s ease;
}

.mission-card:hover .mission-card__hover-effect {
  height: 100%;
}

/* Stats Section */
.mission-section__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  padding: 60px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.mission-stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.mission-stat:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-5px);
}

.mission-stat__icon {
  font-size: 36px;
  margin-bottom: 15px;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
  background: linear-gradient(135deg, #60a5fa, #f87171);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.mission-stat__number {
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, #60a5fa, #f87171);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  line-height: 1;
}

.mission-stat__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.mission-stat__progress {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.mission-stat__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #60a5fa, #f87171);
  border-radius: 3px;
  width: 0%;
  transition: width 1.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Responsive */
@media (max-width: 1024px) {
  .mission-section {
    padding: 100px 0;
  }

  .mission-section__grid {
    gap: 25px;
  }

  .mission-card {
    padding: 35px 25px;
  }

  .mission-card__title {
    font-size: 28px;
  }

  .mission-section__title {
    font-size: 48px;
  }

  .mission-stat__number {
    font-size: 44px;
  }
}

@media (max-width: 992px) {
  .mission-section {
    padding: 80px 0;
  }

  .mission-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .mission-section__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .mission-section__title {
    font-size: 42px;
  }

  .mission-card__number {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .mission-section {
    padding: 60px 0;
  }

  .mission-section__container {
    padding: 0 20px;
  }

  .mission-section__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .mission-section__title {
    font-size: 36px;
  }

  .mission-section__subtitle {
    font-size: 16px;
  }

  .mission-section__badge {
    font-size: 12px;
    padding: 6px 18px;
  }

  .mission-card {
    padding: 40px 25px;
  }

  .mission-card__title {
    font-size: 28px;
  }

  .mission-section__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .mission-stat {
    padding: 15px;
  }

  .mission-stat__number {
    font-size: 36px;
  }

  .mission-stat__icon {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .mission-section {
    padding: 50px 0;
  }

  .mission-section__title {
    font-size: 28px;
  }

  .mission-section__subtitle {
    font-size: 14px;
  }

  .mission-section__stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .mission-card {
    padding: 30px 20px;
  }

  .mission-card__title {
    font-size: 26px;
  }

  .mission-card__description {
    font-size: 14px;
  }

  .mission-card__number {
    font-size: 48px;
    top: 10px;
    right: 15px;
  }

  .mission-card__features {
    gap: 10px;
  }

  .mission-card__feature {
    font-size: 11px;
    padding: 5px 12px;
  }

  .mission-stat__number {
    font-size: 32px;
  }
}

/* Faculty Section - White Background */
.faculty-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  position: relative;
  overflow: hidden;
}

.faculty-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(45, 49, 146, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.faculty-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(237, 28, 37, 0.02) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.faculty-section__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.faculty-section__header {
  text-align: center;
  margin-bottom: 30px;
}

.faculty-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(45, 49, 146, 0.08);
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue, #2d3192);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.faculty-section__badge i {
  font-size: 14px;
  color: var(--passion-red, #ed1c25);
}

.faculty-section__badge:hover {
  background: rgba(45, 49, 146, 0.12);
  transform: translateY(-2px);
}

.faculty-section__title {
  font-size: 52px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 1px;
  letter-spacing: -0.02em;
}

.faculty-section__gradient {
  background: linear-gradient(
    135deg,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.faculty-section__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.faculty-section__divider-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25),
    transparent
  );
}

.faculty-section__divider-dot {
  width: 8px;
  height: 8px;
  background: var(--passion-red, #ed1c25);
  border-radius: 50%;
  animation: facultyPulse 2s ease-in-out infinite;
}

@keyframes facultyPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.faculty-section__subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Faculty Grid */
.faculty-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

/* Faculty Card */
.faculty-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.faculty-card:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 10px 10px rgba(45, 49, 146, 0.15);
}

/* Image Wrapper */
.faculty-card__image-wrapper {
  position: relative;
  overflow: hidden;
}

.faculty-card__image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.faculty-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.faculty-card:hover .faculty-card__image img {
  transform: scale(1.05);
}

/* Social Links */
.faculty-card__social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  background: linear-gradient(
    135deg,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25)
  );
  transition: bottom 0.3s ease;
}

.faculty-card:hover .faculty-card__social {
  bottom: 0;
}

.faculty-card__social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.faculty-card__social a:hover {
  background: white;
  color: var(--passion-red, #ed1c25);
  transform: translateY(-3px);
}

/* Card Content */
.faculty-card__content {
  padding: 15px 10px 25px;
  text-align: center;
}

.faculty-card__name {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 0px;
}

.faculty-card__designation {
  font-size: 13px;
  color: var(--passion-red, #ed1c25);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 5px;
}

.faculty-card__line {
  width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25)
  );
  margin: 0 auto 15px;
  transition: width 0.3s ease;
}

.faculty-card:hover .faculty-card__line {
  width: 60px;
}

.faculty-card__qualification {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  text-align: left;
}

.faculty-card__qualification i {
  color: var(--primary-blue, #2d3192);
}

.faculty-card__bio {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 15px;
}

.faculty-card__subjects {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.faculty-card__subjects span {
  padding: 5px 12px;
  background: rgba(45, 49, 146, 0.08);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  color: var(--primary-blue, #2d3192);
  transition: all 0.3s ease;
}

.faculty-card__subjects span:hover {
  background: rgba(237, 28, 37, 0.1);
  color: var(--passion-red, #ed1c25);
  transform: translateY(-2px);
}

/* CTA Button */
.faculty-section__cta {
  text-align: center;
}

.faculty-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(
    135deg,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25)
  );
  color: white;
  border: none;
  padding: 14px 38px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faculty-section__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.5s ease;
}

.faculty-section__btn:hover::before {
  left: 100%;
}

.faculty-section__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(45, 49, 146, 0.3);
  gap: 18px;
}

.faculty-section__btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faculty-section__btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1200px) {
  .faculty-section__grid {
    gap: 25px;
  }

  .faculty-card__image {
    height: 280px;
  }

  .faculty-section__title {
    font-size: 44px;
  }
}

@media (max-width: 992px) {
  .faculty-section {
    padding: 80px 0;
  }

  .faculty-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .faculty-section__title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .faculty-section {
    padding: 60px 0;
  }

  .faculty-section__container {
    padding: 0 20px;
  }

  .faculty-section__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .faculty-section__title {
    font-size: 32px;
  }

  .faculty-section__subtitle {
    font-size: 16px;
  }

  .faculty-section__badge {
    font-size: 12px;
    padding: 6px 18px;
  }

  .faculty-card__image {
    height: 300px;
  }

  .faculty-card__name {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .faculty-section {
    padding: 50px 0;
  }

  .faculty-section__title {
    font-size: 28px;
  }

  .faculty-section__subtitle {
    font-size: 14px;
  }

  .faculty-card__image {
    height: 260px;
  }

  .faculty-card__content {
    padding: 20px;
  }

  .faculty-card__name {
    font-size: 18px;
  }

  .faculty-card__designation {
    font-size: 12px;
  }

  .faculty-card__bio {
    font-size: 13px;
  }

  .faculty-section__btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

.faculty-swiper {
  padding-bottom: 30px;
}

/* Gallery Section */
.our-gallery {
  background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 50%, #f0f2ff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Background Animation */
.our-gallery::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(220, 53, 69, 0.05), transparent 70%);
  border-radius: 50%;
  animation: floatGallery 18s ease-in-out infinite;
}

.our-gallery::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10, 88, 202, 0.05), transparent 70%);
  border-radius: 50%;
  animation: floatGallery 22s ease-in-out infinite reverse;
}

@keyframes floatGallery {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 40px) scale(1.1);
  }
}

.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.gallery-header {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 53, 69, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 60px;
  color: #dc3545;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border: 1px solid rgba(220, 53, 69, 0.2);
  transition: 0.3s;
}

.gallery-badge i {
  font-size: 14px;
}

.gallery-title {
  font-size: 52px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.title-gradient {
  background: linear-gradient(135deg, #0a58ca, #dc3545, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

.gallery-subtitle {
  color: #6c757d;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Filter Buttons */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 2px solid rgba(220, 53, 69, 0.2);
  padding: 10px 28px;
  border-radius: 50px;
  color: #495057;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: #dc3545;
  color: #dc3545;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #0a58ca, #dc3545);
  border-color: transparent;
  color: white;
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
  border: none;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

/* Gallery Item */
.gallery-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image-wrapper img {
  transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 88, 202, 0.9),
    rgba(220, 53, 69, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  text-align: center;
  color: white;
  transform: scale(0.8);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay-content {
  transform: scale(1);
}

.gallery-overlay-content i {
  font-size: 48px;
  margin-bottom: 10px;
  display: block;
}

.gallery-overlay-content span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Gallery Caption */
.gallery-caption {
  padding: 15px 10px 5px;
}

.gallery-caption h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.gallery-caption p {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .gallery-title {
    font-size: 44px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (max-width: 992px) {
  .our-gallery {
    padding: 70px 0;
  }

  .gallery-title {
    font-size: 38px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }

  .filter-btn {
    padding: 8px 24px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .our-gallery {
    padding: 60px 0;
  }

  .gallery-container {
    padding: 0 20px;
  }

  .gallery-header {
    margin-bottom: 30px;
  }

  .gallery-title {
    font-size: 32px;
  }

  .gallery-subtitle {
    font-size: 16px;
  }

  .gallery-filter {
    gap: 10px;
    margin-bottom: 35px;
  }

  .filter-btn {
    padding: 6px 18px;
    font-size: 12px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-caption h4 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 28px;
  }

  .gallery-badge {
    font-size: 12px;
    padding: 6px 18px;
  }

  .gallery-filter {
    gap: 8px;
  }

  .filter-btn {
    padding: 5px 14px;
    font-size: 11px;
  }

  .gallery-overlay-content i {
    font-size: 36px;
  }

  .gallery-overlay-content span {
    font-size: 12px;
  }
}

/* Contact Section Styles */
.contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(45, 49, 146, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.contact-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(237, 28, 37, 0.02) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.contact-section__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.contact-section__header {
  text-align: center;
  margin: 50px auto;
}

.contact-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(45, 49, 146, 0.08);
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue, #2d3192);
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact-section__badge i {
  font-size: 14px;
  color: var(--passion-red, #ed1c25);
}

.contact-section__badge:hover {
  background: rgba(45, 49, 146, 0.12);
  transform: translateY(-2px);
}

.contact-section__title {
  font-size: 52px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.contact-section__gradient {
  background: linear-gradient(
    135deg,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-section__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.contact-section__divider-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25),
    transparent
  );
}

.contact-section__divider-dot {
  width: 8px;
  height: 8px;
  background: var(--passion-red, #ed1c25);
  border-radius: 50%;
  animation: contactPulse 2s ease-in-out infinite;
}

@keyframes contactPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.contact-section__subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Info Cards */
.contact-section__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.contact-section__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.contact-info__card {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-info__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 49, 146, 0.12);
  border-color: rgba(45, 49, 146, 0.1);
}

.contact-info__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(45, 49, 146, 0.1),
    rgba(237, 28, 37, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.contact-info__card:hover .contact-info__icon {
  background: linear-gradient(
    135deg,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25)
  );
  transform: scale(1.05);
}

.contact-info__icon i {
  font-size: 30px;
  color: var(--primary-blue, #2d3192);
  transition: all 0.3s ease;
}

.contact-info__card:hover .contact-info__icon i {
  color: white;
}

.contact-info__card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.contact-info__card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-info__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-blue, #2d3192);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info__link:hover {
  gap: 12px;
  color: var(--passion-red, #ed1c25);
}

.contact-info__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(46, 204, 113, 0.1);
  border-radius: 50px;
  margin-top: 10px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.contact-info__status span {
  font-size: 12px;
  font-weight: 600;
  color: #2ecc71;
}

/* Form & Map Wrapper */
.contact-section__form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.contact-form__card {
  background: white;
  padding: 35px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-form__title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.contact-form__subtitle {
  font-size: 14px;
  color: #888;
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.form-group label i {
  color: var(--passion-red, #ed1c25);
  margin-right: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue, #2d3192);
  background: white;
  box-shadow: 0 0 0 3px rgba(45, 49, 146, 0.1);
}

.contact-submit-btn {
  background: linear-gradient(
    135deg,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25)
  );
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  gap: 16px;
  box-shadow: 0 10px 25px rgba(45, 49, 146, 0.3);
}

/* Map Card */
.contact-map__card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.map-header {
  padding: 15px 20px;
  background: linear-gradient(
    135deg,
    rgba(45, 49, 146, 0.05),
    rgba(237, 28, 37, 0.02)
  );
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary-blue, #2d3192);
}

.map-header i {
  font-size: 18px;
}

.map-container {
  width: 100%;
  height: 500px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.map-footer {
  padding: 15px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.quick-contact {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.quick-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: all 0.3s ease;
}

.quick-contact a:hover {
  color: var(--passion-red, #ed1c25);
  transform: translateY(-2px);
}

/* Social Section */
.contact-section__social {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-section__social h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(45, 49, 146, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue, #2d3192);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(
    135deg,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25)
  );
  color: white;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
  .contact-section__wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .contact-section__info {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-section__title {
    font-size: 44px;
  }
}

@media (max-width: 992px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-section__info {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section__title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-section__container {
    padding: 0 20px;
  }

  .contact-section__title {
    font-size: 32px;
  }

  .contact-section__subtitle {
    font-size: 16px;
  }

  .contact-section__badge {
    font-size: 12px;
    padding: 6px 18px;
  }

  .contact-section__info {
    gap: 15px;
  }

  .contact-info__card {
    padding: 20px 15px;
  }

  .contact-info__icon {
    width: 55px;
    height: 55px;
  }

  .contact-info__icon i {
    font-size: 24px;
  }

  .contact-info__card h3 {
    font-size: 18px;
  }

  .contact-form__card {
    padding: 25px;
  }

  .contact-form__title {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .quick-contact {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 50px 0;
  }

  .contact-section__title {
    font-size: 28px;
  }

  .contact-section__subtitle {
    font-size: 14px;
  }

  .contact-section__info {
    grid-template-columns: 1fr;
  }

  .contact-info__card {
    padding: 25px 20px;
  }

  .contact-form__card {
    padding: 20px;
  }

  .contact-form__title {
    font-size: 22px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .map-container {
    height: 200px;
  }
}

a {
  text-decoration: none;
}

.all-branches {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.single-branch {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

/* Hero Section */
.single-branch__hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.single-branch__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1562774053-701939374585?w=1600&h=600&fit=crop");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.single-branch__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 35, 0.92),
    rgba(45, 49, 146, 0.88),
    rgba(237, 28, 37, 0.75)
  );
  z-index: 2;
}

.single-branch__hero-container {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

.single-branch__hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.single-branch__hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 600;
}

.single-branch__hero-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.single-branch__gradient {
  background: linear-gradient(135deg, #60a5fa, #f87171, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.single-branch__hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, #f87171);
  margin: 0 auto 20px;
}

.single-branch__hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.single-branch__hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.single-branch__hero-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.single-branch__hero-stat i {
  font-size: 20px;
  color: #f87171;
}

/* Container */
.single-branch__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Quick Info Bar */
.single-branch__quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: -40px;
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}

.single-branch__quick-info-item {
  background: white;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.single-branch__quick-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(45, 49, 146, 0.15);
}

.single-branch__quick-info-item i {
  font-size: 32px;
  color: var(--primary-blue, #2d3192);
}

.single-branch__quick-info-item strong {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.single-branch__quick-info-item p {
  font-size: 14px;
  color: #1a1a2e;
  font-weight: 600;
}

/* Section Header */
.single-branch__section-header {
  text-align: center;
  margin-bottom: 0px;
}

.single-branch__section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(45, 49, 146, 0.08);
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 0px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue, #2d3192);
}

.single-branch__section-badge i {
  color: var(--passion-red, #ed1c25);
}

.single-branch__section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.single-branch__section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25)
  );
  margin: 0 auto;
}

.single-branch__section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0px auto 30px;
}

/* About Section */
.single-branch__about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

.single-branch__about-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.single-branch__about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.single-branch__feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #444;
}

.single-branch__feature-item i {
  color: var(--passion-red, #ed1c25);
}

.single-branch__about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.single-branch__about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.single-branch__about-image:hover img {
  transform: scale(1.05);
}

.single-branch__image-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 13px;
}

/* Facilities Grid */
.single-branch__facilities {
  margin-bottom: 80px;
}

.single-branch__facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.single-branch__facility-card {
  background: white;
  padding: 25px 25px;
  text-align: center;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 25% 75%;
  align-items: center;
  text-align: left;
}

.single-branch__facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 49, 146, 0.12);
}

.single-branch__facility-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(45, 49, 146, 0.1),
    rgba(237, 28, 37, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0px;
}

.single-branch__facility-icon i {
  font-size: 32px;
  color: var(--primary-blue, #2d3192);
}

.single-branch__facility-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 3px;
  color: #1a1a2e;
}

.single-branch__facility-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Academics Section */
.single-branch__academics {
  margin-bottom: 80px;
}

.single-branch__academics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.single-branch__academic-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.single-branch__academic-card:hover {
  transform: translateY(-5px);
}

.single-branch__academic-level {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(
    135deg,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25)
  );
  color: white;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 15px;
}

.single-branch__academic-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.single-branch__academic-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.single-branch__academic-card ul {
  list-style: none;
  padding: 0;
}

.single-branch__academic-card ul li {
  font-size: 14px;
  color: #555;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.single-branch__academic-card ul li i {
  color: var(--passion-red, #ed1c25);
  font-size: 10px;
}
single-branch__map-container

/* Gallery Section */
.single-branch__gallery {
  margin-bottom: 80px;
}

.single-branch__gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.single-branch__gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.single-branch__gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.single-branch__gallery-item:hover img {
  transform: scale(1.1);
}

.single-branch__gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}

.single-branch__gallery-item:hover .single-branch__gallery-overlay {
  opacity: 1;
}

.single-branch__gallery-overlay i {
  font-size: 30px;
}

.single-branch__gallery-overlay span {
  font-size: 14px;
  font-weight: 500;
}

/* Map Section */
.single-branch__map {
  margin-bottom: 80px;
}

.single-branch__map-container {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  height: 400px;
}

.single-branch__map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* CTA Section */
.single-branch__cta {
  background: linear-gradient(
    135deg,
    var(--primary-blue, #2d3192),
    var(--passion-red, #ed1c25)
  );
  border-radius: 24px;
  padding: 50px;
  margin-bottom: 60px;
  text-align: center;
}

.single-branch__cta-content h3 {
  font-size: 32px;
  color: white;
  margin-bottom: 15px;
}

.single-branch__cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.single-branch__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.single-branch__btn-primary,
.single-branch__btn-outline {
  padding: 12px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.single-branch__btn-primary {
  background: white;
  color: var(--primary-blue, #2d3192);
}

.single-branch__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  gap: 15px;
}

.single-branch__btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.single-branch__btn-outline:hover {
  background: white;
  color: var(--passion-red, #ed1c25);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
  .single-branch__hero-title {
    font-size: 48px;
  }

  .single-branch__section-title {
    font-size: 36px;
  }

  .single-branch__academics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .single-branch__gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .single-branch__quick-info {
    grid-template-columns: repeat(2, 1fr);
  }

  .single-branch__about {
    grid-template-columns: 1fr;
  }

  .single-branch__facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .single-branch__hero-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .single-branch__container {
    padding: 0 20px;
  }

  .single-branch__quick-info {
    grid-template-columns: 1fr;
    margin-top: -80px;
  }

  .single-branch__hero-title {
    font-size: 32px;
  }

  .single-branch__hero-stats {
    gap: 20px;
  }

  .single-branch__hero-stat {
    font-size: 13px;
  }

  .single-branch__section-title {
    font-size: 28px;
  }

  .single-branch__facilities-grid {
    grid-template-columns: 1fr;
  }

  .single-branch__academics-grid {
    grid-template-columns: 1fr;
  }

  .single-branch__gallery-grid {
    grid-template-columns: 1fr;
  }

  .single-branch__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .single-branch__cta {
    padding: 30px 20px;
  }

  .single-branch__cta-content h3 {
    font-size: 24px;
  }

  .single-branch__about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .single-branch__hero-title {
    font-size: 28px;
  }

  .single-branch__hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .single-branch__section-title {
    font-size: 24px;
  }
}

.single-branch__gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  max-height: 260px;
  overflow: hidden;

  transition: max-height 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* default hidden items */
.single-branch__gallery-item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 1.5s ease;
}

/* first row visible initially */
.single-branch__gallery-item:nth-child(-n + 4) {
  opacity: 1;
  transform: translateY(0);
}

/* when expanded → animate all items */
.single-branch__gallery-grid.active .single-branch__gallery-item {
  opacity: 1;
  transform: translateY(0);
}

/* expanded height */
.single-branch__gallery-grid.active {
  max-height: 10000px;
}

/* Facilities Single Section */
.facilities-single {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  position: relative;
  overflow: hidden;
}

.facilities-single__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Section Header */
.facilities-single__header {
  text-align: center;
  margin-bottom: 60px;
}

.facilities-single__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(45, 49, 146, 0.08);
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 600;
  color: #2d3192;
}

.facilities-single__badge i {
  color: #ed1c25;
}

.facilities-single__title {
  font-size: 52px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.facilities-single__gradient {
  background: linear-gradient(135deg, #2d3192, #ed1c25);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.facilities-single__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
}

.facilities-single__divider-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #2d3192,
    #ed1c25,
    transparent
  );
}

.facilities-single__divider-dot {
  width: 8px;
  height: 8px;
  background: #ed1c25;
  border-radius: 50%;
  animation: facilitiesPulse 2s ease-in-out infinite;
}

@keyframes facilitiesPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.facilities-single__subtitle {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Facility Layout */
.facilities-single__facility {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  /* background: white; */
  /* border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
  transition: all 0.4s ease;
}

.facilities-single__facility--reverse {
  grid-template-columns: 1fr 1.5fr;
}

/* .facilities-single__facility:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(45, 49, 146, 0.12);
} */

/* Facility Content */
.facilities-single__facility-number {
  font-size: 80px;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    rgba(45, 49, 146, 0.08),
    rgba(237, 28, 37, 0.05)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  display: inline-block;
  margin-bottom: 15px;
  font-family: monospace;
}

.facilities-single__facility-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.facilities-single__facility-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2d3192, #ed1c25);
  margin-bottom: 20px;
}

.facilities-single__facility-description {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 5px;
}

.facilities-single__facility-list {
  list-style: none;
  padding: 0;
}

.facilities-single__facility-list li {
  padding: 10px 0;
  font-size: 15px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.facilities-single__facility-list li:hover {
  transform: translateX(8px);
  color: #2d3192;
}

.facilities-single__facility-list li i {
  color: #ed1c25;
  font-size: 18px;
}

/* Swiper Slider Styles - Simple structure */
.facilities-single__facility-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.facilities-single .swiper-container {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.facilities-single .swiper-slide {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.facilities-single .swiper-slide img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 0px !important;
}

.facilities-single .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Navigation Buttons - 40px */
.facilities-single .swiper-button-prev,
.facilities-single .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.facilities-single .swiper-button-prev {
  left: -20px;
}

.facilities-single .swiper-button-next {
  right: -20px;
}

.facilities-single .swiper-button-prev:hover,
.facilities-single .swiper-button-next:hover {
  background: linear-gradient(135deg, #2d3192, #ed1c25);
}

.facilities-single .swiper-button-prev i,
.facilities-single .swiper-button-next i {
  font-size: 16px;
  color: #2d3192;
  transition: color 0.3s ease;
}

.facilities-single .swiper-button-prev:hover i,
.facilities-single .swiper-button-next:hover i {
  color: white;
}

/* Pagination Dots */
.facilities-single .swiper-pagination {
  position: absolute;
  bottom: 30px !important;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.facilities-single .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: #cbd5e0;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.facilities-single .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 0px;
  background: linear-gradient(90deg, #2d3192, #ed1c25);
}

/* Responsive */
@media (max-width: 1200px) {
  .facilities-single__facility {
    padding: 40px;
    gap: 40px;
  }

  .facilities-single__facility-title {
    font-size: 30px;
  }

  .facilities-single__title {
    font-size: 44px;
  }

  .facilities-single__facility .swiper-slide img {
    height: 340px;
  }
}

@media (max-width: 992px) {
  .facilities-single {
    padding: 80px 0;
  }

  .facilities-single__facility {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px;
  }

  .facilities-single__facility-number {
    font-size: 60px;
  }

  .facilities-single__facility-title {
    font-size: 28px;
  }

  .facilities-single__title {
    font-size: 38px;
  }

  .facilities-single .swiper-slide img {
    height: 350px;
  }

  .facilities-single .swiper-button-prev {
    left: -10px;
  }

  .facilities-single .swiper-button-next {
    right: -10px;
  }
}

@media (max-width: 768px) {
  .facilities-single {
    padding: 60px 0;
  }

  .facilities-single__container {
    padding: 0 20px;
  }

  .facilities-single__facility {
    padding: 25px;
  }

  .facilities-single__facility-title {
    font-size: 24px;
  }

  .facilities-single__facility-description {
    font-size: 14px;
  }

  .facilities-single__facility-list li {
    font-size: 13px;
  }

  .facilities-single__title {
    font-size: 32px;
  }

  .facilities-single__subtitle {
    font-size: 16px;
  }

  .facilities-single .swiper-slide img {
    height: 280px;
  }

  .facilities-single .swiper-button-prev,
  .facilities-single .swiper-button-next {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .facilities-single {
    padding: 50px 0;
  }

  .facilities-single__facility {
    padding: 20px;
  }

  .facilities-single__facility-number {
    font-size: 50px;
  }

  .facilities-single__facility-title {
    font-size: 22px;
  }

  .facilities-single__title {
    font-size: 28px;
  }

  .facilities-single .swiper-slide img {
    height: 220px;
  }

  .facilities-single .swiper-button-prev,
  .swiper-button-next {
    width: 30px;
    height: 30px;
  }

  .facilities-single .swiper-button-prev {
    left: -5px;
  }

  .facilities-single .swiper-button-next {
    right: -5px;
  }
}

.facilities-single__facility-list {
  list-style: none;
  padding: 0;
}

.facilities-single__facility-list li {
  position: relative;
  padding-left: 20px;
  /* margin-bottom: 10px; */
}

.facilities-single__facility-list li::before {
  content: "\f058"; /* Font Awesome check-circle */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;

  position: absolute;
  left: 0;
  top: 10px;

  color: var(--passion-red); /* change color if needed */
  font-size: 16px;
}

.odd-facility {
  background-color: #e8e8ff63 !important;
  background-image: url(http://www.transparenttextures.com/patterns/asfalt-dark.png);
}

.even-facility {
  background-color: #decdcd52 !important;
  /* background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png"); */
  /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

.branches-inn {
  padding: 80px 0;
}
