/* ----- palette colors ----- */
:root {
  --color1: #0693fd; /* bright blue */
  --color2: #fc02c6; /* magenta */
  --color3: #f4f08f; /* light yellow */
  --color4: #000000; /* black */
  --color5: #f5cf54; /* golden */
  --color6: #ffffff; /* white */
}

/* ----- preloader (loader) ----- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
}
.loader-animation {
  display: flex;
  gap: 0.6rem;
}
.loader-animation span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  animation: bounce 1.2s infinite ease-in-out both;
}
.loader-animation span:nth-child(1) {
  background-color: var(--color1);
  animation-delay: -0.32s;
}
.loader-animation span:nth-child(2) {
  background-color: var(--color2);
  animation-delay: -0.16s;
}
.loader-animation span:nth-child(3) {
  background-color: var(--color5);
}
.loader-animation span:nth-child(4) {
  background-color: var(--color3);
  animation-delay: 0.16s;
}
.loader-animation span:nth-child(5) {
  background-color: var(--color4);
  animation-delay: 0.32s;
}
@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

/* ----- navbar / logo ----- */
.navbar-logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.navbar-logo img {
  height: 60px;
}
.logo-s {
  color: var(--color1);
}
.logo-r {
  color: var(--color2);
}
.logo-e {
  color: var(--color3);
}
.logo-e2 {
  color: var(--color5);
}
.logo-h {
  color: var(--color4);
}
.logo-a {
  color: var(--color1);
}
.logo-n {
  color: var(--color2);
}
.logo-tag {
  font-size: 0.7rem;
  display: block;
  color: #4b5563;
  letter-spacing: 1px;
}

/* desktop menu center */
.navbar-nav .nav-link {
  font-weight: 500;
  color: #1f2937;
  padding: 0.5rem 1.5rem !important;
}
.navbar-nav .nav-link:hover {
  color: var(--color1);
}
.navbar-nav .nav-link.active {
  color: var(--color1);
}
.dropdown-menu {
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

/* .dropdown-menu li {
  padding: 10px 20px;
} */

.dropdown-item:hover {
  background-color: var(--color3);
  color: #000;
}

/* offcanvas custom */
.offcanvas {
  background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
}
.offcanvas .nav-link {
  font-size: 1.2rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* section backgrounds alternate */
.section-light {
  background-color: var(--color6);
}
.section-dark {
  background-color: #1e1e2f; /* dark navy */
  color: #f0f0f0;
}
.section-dark h2,
.section-dark .text-muted {
  color: #ddd !important;
}

/* image loader wrapper (different loading animations) */
.img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 16px;
  background-color: #eef2f6;
}
.img-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  z-index: 4;
  transition: opacity 0.3s;
  border-radius: 16px;
}
.img-loader i {
  font-size: 2rem;
  animation: spin 1s linear infinite;
}
/* different colors for loaders – using nth-child palette */
.img-wrapper:nth-child(odd) .img-loader i {
  color: var(--color1);
}
.img-wrapper:nth-child(even) .img-loader i {
  color: var(--color2);
}
.img-wrapper:nth-child(3n) .img-loader i {
  color: var(--color5);
}
.img-wrapper:nth-child(5n) .img-loader i {
  color: var(--color3);
}
/* also different animation type for some */
.img-wrapper:nth-child(4n) .img-loader i {
  animation: pulse 1s infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
}

.img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 5;
  position: relative;
}
.img-wrapper.loaded .img-loader {
  opacity: 0;
  pointer-events: none;
}
.img-wrapper.loaded img {
  opacity: 1;
}

/* cards / buttons etc */
.btn-brand {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: white;
  border: none;
  padding: 10px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-brand:hover {
  background: linear-gradient(135deg, var(--color2), var(--color1));
  color: white;
  box-shadow: 0 8px 18px rgba(6, 147, 253, 0.3);
}
.btn-outline-brand {
  border: 2px solid var(--color1);
  color: var(--color1);
  border-radius: 40px;
  padding: 8px 28px;
  font-weight: 600;
}
.btn-outline-brand:hover {
  background: var(--color1);
  color: white;
}

/* .service-card {
  border-radius: 28px;
  background: white;
  padding: 1.8rem 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
  height: 100%;
}
.section-dark .service-card {
  background: #2d2d44;
  color: #eee;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
} */

.testimonial-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  margin: 1rem 0;
}
.section-dark .testimonial-card {
  background: #2d2d44;
  color: #eee;
}

.swiper-pagination-bullet-active {
  background: var(--color2) !important;
}

.cta-gradient {
  background: linear-gradient(
    120deg,
    var(--color1),
    var(--color2),
    var(--color5)
  );
  color: white;
  border-radius: 40px;
  padding: 3rem 2rem;
}

footer a {
  color: #bbb;
  text-decoration: none;
}
footer a:hover {
  color: var(--color3);
}

/* Custom styles for vertical slider and controls */
.heroSwiper {
  width: 100%;
  height: 90vh;
}

/* Vertical direction */
.heroSwiper .swiper-wrapper {
  flex-direction: column;
}

/* Hide default pagination and buttons */
/* .heroSwiper .swiper-pagination {
  display: none;
} */
.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
  display: none;
}

/* Custom pagination - left bottom corner, vertical column */
.custom-pagination-vertical {
  position: absolute;
  left: 10px !important;
  bottom: 30px !important;
  z-index: 10;
  transform: translate3d(0px, 62%, 0) !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: auto;
}

.custom-pagination-vertical .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: 50%;
  margin: 0 !important;
  transition: all 0.3s ease;
  display: block;
}

.custom-pagination-vertical .swiper-pagination-bullet-active {
  background: #fc02c6; /* Your magenta color */
  /* transform: scale(1.3); */
  height: 20px;
  width: 12px;
  border-radius: 50px;
  box-shadow: 0 0 10px rgba(252, 2, 198, 0.5);
}

/* Custom navigation - bottom right corner, stacked vertically */
.custom-nav-vertical {
  position: absolute;
  right: 10px;
  bottom: 30px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: #0693fd; /* Your blue color */
  border-color: #0693fd;
  transform: scale(1.1);
}

/* Disabled state */
.swiper-button-prev-custom.swiper-button-disabled,
.swiper-button-next-custom.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-pagination-vertical {
    left: 15px;
    bottom: 15px;
    gap: 8px;
  }

  .custom-nav-vertical {
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }

  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Optional: Disable any custom animations */
  .animate-left,
  .animate-right {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Slide content initial state (hidden below) */
.heroSwiper .swiper-slide .container > div {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Active slide content animates in */
.heroSwiper .swiper-slide-active .container > div {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for children */
.heroSwiper .swiper-slide-active h1 {
  animation: slideUpStagger 0.7s ease-out 1.1s both;
}

.heroSwiper .swiper-slide-active p {
  animation: slideUpStagger 0.7s ease-out 1.3s both;
}

.heroSwiper .swiper-slide-active .btn {
  animation: slideUpStagger 0.7s ease-out 1.5s both;
}

@keyframes slideUpStagger {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth transition between slides */
.heroSwiper .swiper-slide {
  transition: opacity 0.5s ease;
}

/* Ensure text remains visible during transition */
.heroSwiper .swiper-slide:not(.swiper-slide-active) .container > div {
  transition: all 0.5s ease;
}

:root {
  --color1: #0693fd;
  --color2: #fc02c6;
  --dark: #1a1f2e;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
}

.about-section {
  padding: 100px 0;
  background: white;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Image Column Styles */
.about-media {
  position: relative;
  /* padding-right: 20px; */
}

.media-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}

.main-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
  transition: transform 0.7s ease;
}

.media-wrapper:hover .main-image {
  transform: scale(1.05);
}

.experience-badge:hover {
  border-right: 5px solid var(--color2);
  border-left: none;
  animation: floatBadge 4s ease-in-out infinite;
}

/* Experience Badge - Fixed Position */
.experience-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: white;
  padding: 20px 25px;
  border-radius: 40px;
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 5px solid var(--color2);
  animation: floatBadge 4s ease-in-out infinite;
}

.years {
  font-size: 40px;
  font-weight: 800;
  color: var(--color1);
  line-height: 1;
}

.experience-badge .text {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* Floating Animation */
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Content Column Styles */
/* .about-content {
  max-width: 540px;
} */

.about-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Text Styles */
.about-text {
  margin-bottom: 35px;
}

.lead-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Read More Button */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 10px 25px -8px rgba(252, 2, 198, 0.3);
}

.read-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -8px rgba(252, 2, 198, 0.4);
  color: white;
}

.read-more-btn i {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.read-more-btn:hover i {
  transform: translateX(8px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-section {
    padding: 70px 0;
  }

  .about-media {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .experience-badge {
    right: 20px;
    bottom: 20px;
  }

  .about-heading {
    font-size: 40px;
  }

  .about-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .about-heading {
    font-size: 36px;
  }

  .experience-badge {
    padding: 15px 20px;
  }

  .years {
    font-size: 32px;
  }

  .experience-badge .text {
    font-size: 14px;
  }

  .lead-text {
    font-size: 17px;
  }

  .read-more-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 25px;
  }
}

@media (max-width: 575px) {
  .about-heading {
    font-size: 32px;
  }

  .experience-badge {
    padding: 12px 18px;
    bottom: 15px;
    right: 15px;
  }

  .years {
    font-size: 28px;
  }

  .experience-badge .text {
    font-size: 13px;
  }
}

/* Main Achievements Section */
.my-achivments {
  position: relative;
  padding: 100px 0;
  background-image: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2053&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  z-index: 1;
}

/* Overlay */
.my-achivments .achivments-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(34, 34, 34, 0.8),
    rgba(0, 0, 0, 0.9)
  );
  z-index: -1;
}

/* Container */
.my-achivments .container {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.my-achivments .achivments-header {
  text-align: center;
  margin-bottom: 60px;
}

.my-achivments .achivments-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  backdrop-filter: blur(5px);
}

.my-achivments .achivments-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Cards Row */
.my-achivments .achivments-row {
  justify-content: center;
}

/* Individual Card */
.my-achivments .achivments-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.my-achivments .achivments-card:hover {
  /* transform: translateY(-15px); */
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

/* Icon Styles */
.my-achivments .achivments-icon {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.my-achivments .achivments-card:hover .achivments-icon {
  background: white;
  border-color: white;
  transform: rotateY(180deg);
}

.my-achivments .achivments-icon i {
  font-size: 40px;
  color: white;
  color: #0693fd;
  transition: all 0.9s ease;
}

.my-achivments .achivments-card:hover .achivments-icon i {
  color: var(--color2);
}

/* Counter Wrapper - for number and plus sign */
.my-achivments .achivments-counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

/* Counter Number */
.my-achivments .achivments-counter {
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  font-family: "Poppins", sans-serif;
}

/* Plus Icon */
.my-achivments .achivments-plus {
  font-size: 42px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  display: inline-block;
  /* animation: pulsePlus 2s ease-in-out infinite; */
}

/* Pulse animation for plus icons */
@keyframes pulsePlus {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
    color: white;
  }
}

/* Label */
.my-achivments .achivments-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .my-achivments .achivments-title {
    font-size: 38px;
  }

  .my-achivments .achivments-counter {
    font-size: 46px;
  }

  .my-achivments .achivments-plus {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  .my-achivments {
    padding: 80px 0;
  }

  .my-achivments .achivments-title {
    font-size: 34px;
  }

  .my-achivments .achivments-icon {
    width: 80px;
    height: 80px;
  }

  .my-achivments .achivments-icon i {
    font-size: 35px;
  }

  .my-achivments .achivments-counter {
    font-size: 42px;
  }

  .my-achivments .achivments-plus {
    font-size: 34px;
  }

  .my-achivments .achivments-card {
    padding: 35px 15px;
  }
}

@media (max-width: 767px) {
  .my-achivments {
    padding: 60px 0;
    background-attachment: scroll; /* Better for mobile */
  }

  .my-achivments .achivments-header {
    margin-bottom: 40px;
  }

  .my-achivments .achivments-tag {
    font-size: 12px;
    padding: 6px 16px;
  }

  .my-achivments .achivments-title {
    font-size: 28px;
  }

  .my-achivments .achivments-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .my-achivments .achivments-icon i {
    font-size: 30px;
  }

  .my-achivments .achivments-counter {
    font-size: 36px;
  }

  .my-achivments .achivments-plus {
    font-size: 28px;
  }

  .my-achivments .achivments-label {
    font-size: 14px;
  }

  .my-achivments .achivments-card {
    padding: 30px 15px;
  }
}

@media (max-width: 575px) {
  .my-achivments .col-sm-6 {
    width: 50%;
  }

  .my-achivments .achivments-title {
    font-size: 24px;
  }

  .my-achivments .achivments-icon {
    width: 60px;
    height: 60px;
  }

  .my-achivments .achivments-icon i {
    font-size: 26px;
  }

  .my-achivments .achivments-counter {
    font-size: 30px;
  }

  .my-achivments .achivments-plus {
    font-size: 24px;
  }

  .my-achivments .achivments-label {
    font-size: 12px;
  }

  .my-achivments .achivments-card {
    padding: 20px 10px;
  }
}

/* Extra small devices */
@media (max-width: 380px) {
  .my-achivments .achivments-counter {
    font-size: 24px;
  }

  .my-achivments .achivments-plus {
    font-size: 20px;
  }

  .my-achivments .achivments-icon {
    width: 50px;
    height: 50px;
  }

  .my-achivments .achivments-icon i {
    font-size: 22px;
  }
}

/* Facilities Section */
.my-facilities-section {
  position: relative;
  padding: 80px 0 70px;
  background: #ffffff;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
}

/* Background Pattern */
.my-facilities-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(6, 147, 253, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.my-facilities-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(252, 2, 198, 0.03) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* Container */
.my-facilities-section .container {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.my-facilities-section .facilities-header {
  text-align: center;
  margin-bottom: 60px;
}

.my-facilities-section .facilities-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #0693fd;
  margin-bottom: 15px;
  text-transform: uppercase;
  background: rgba(6, 147, 253, 0.08);
  padding: 8px 25px;
  border-radius: 50px;
}

.my-facilities-section .facilities-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 15px;
  line-height: 1.2;
}

.my-facilities-section .facilities-subtitle {
  font-size: 18px;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Facilities Row */
.my-facilities-section .facilities-row {
  margin-bottom: 20px;
}

/* Facility Card */
.my-facilities-section .facilities-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.my-facilities-section .facilities-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px -15px rgba(6, 147, 253, 0.2);
}

/* Image Wrapper */
.my-facilities-section .facilities-image-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.my-facilities-section .facilities-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.my-facilities-section .facilities-card:hover .facilities-image {
  transform: scale(1.1);
}

/* Image Overlay */
.my-facilities-section .facilities-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 15px;
}

.my-facilities-section .facilities-count {
  /* background: linear-gradient(135deg, #0693fd, #fc02c6); */
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Content Area */
.my-facilities-section .facilities-content {
  padding: 25px 20px 30px;
  position: relative;
}

/* Icon */
.my-facilities-section .facilities-icon {
  width: 60px;
  height: 60px;
  /* background: linear-gradient(
          135deg,
          rgba(6, 147, 253, 0.1),
          rgba(252, 2, 198, 0.1)
        ); */
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -50px;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.my-facilities-section .facilities-card:hover .facilities-icon {
  background: linear-gradient(135deg, #0693fd, #fc02c6);
  transform: rotate(5deg) scale(1.05);
}

.my-facilities-section .facilities-icon i {
  font-size: 28px;
  background: linear-gradient(135deg, #0693fd, #fc02c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.my-facilities-section .facilities-card:hover .facilities-icon i {
  /* background: white; */
  -webkit-text-fill-color: white;
}

/* Card Title */
.my-facilities-section .facilities-title-card {
  font-size: 20px;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.my-facilities-section .facilities-card:hover .facilities-title-card {
  color: #0693fd;
}

/* Description */
.my-facilities-section .facilities-description {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Link */
.my-facilities-section .facilities-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0693fd;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.my-facilities-section .facilities-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.my-facilities-section .facilities-link:hover {
  color: #fc02c6;
  gap: 12px;
}

.my-facilities-section .facilities-link:hover i {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .my-facilities-section .facilities-title {
    font-size: 38px;
  }

  .my-facilities-section .facilities-image-wrapper {
    height: 220px;
  }
}

@media (max-width: 991px) {
  .my-facilities-section {
    padding: 80px 0;
  }

  .my-facilities-section .facilities-title {
    font-size: 34px;
  }

  .my-facilities-section .facilities-subtitle {
    font-size: 16px;
  }

  .my-facilities-section .facilities-image-wrapper {
    height: 200px;
  }

  .my-facilities-section .facilities-content {
    padding: 20px 15px 25px;
  }
}

@media (max-width: 767px) {
  .my-facilities-section {
    padding: 60px 0;
  }

  .my-facilities-section .facilities-header {
    margin-bottom: 40px;
  }

  .my-facilities-section .facilities-tag {
    font-size: 12px;
    padding: 6px 18px;
  }

  .my-facilities-section .facilities-title {
    font-size: 28px;
  }

  .my-facilities-section .facilities-subtitle {
    font-size: 15px;
    padding: 0 15px;
  }

  .my-facilities-section .facilities-image-wrapper {
    height: 200px;
  }

  .my-facilities-section .facilities-icon {
    width: 55px;
    height: 55px;
  }

  .my-facilities-section .facilities-icon i {
    font-size: 24px;
  }

  .my-facilities-section .facilities-title-card {
    font-size: 18px;
  }

  .my-facilities-section .facilities-description {
    font-size: 13px;
  }
}

@media (max-width: 575px) {
  .my-facilities-section .facilities-title {
    font-size: 24px;
  }

  .my-facilities-section .facilities-subtitle {
    font-size: 14px;
  }

  .my-facilities-section .facilities-image-wrapper {
    height: 180px;
  }

  .my-facilities-section .facilities-count {
    font-size: 14px;
    padding: 6px 12px;
  }

  .my-facilities-section .facilities-content {
    padding: 18px 12px 22px;
  }

  .my-facilities-section .facilities-icon {
    width: 50px;
    height: 50px;
    margin-top: -40px;
  }

  .my-facilities-section .facilities-icon i {
    font-size: 22px;
  }

  .my-facilities-section .facilities-title-card {
    font-size: 17px;
  }

  .my-facilities-section .facilities-link {
    font-size: 13px;
  }
}

/* Services Section - Dark Theme */
.my-services-section {
  position: relative;
  padding: 100px 0;
  /* background: #0a0f1a; */
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
}

/* Dark Theme Background Effects */
.my-services-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(6, 147, 253, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  animation: glowPulse 8s ease-in-out infinite;
}

.my-services-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(252, 2, 198, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  animation: glowPulse 8s ease-in-out infinite reverse;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Container */
.my-services-section .container {
  /* max-width: 1280px; */
  margin: 0 auto;
  /* padding: 0 24px; */
  position: relative;
  z-index: 2;
}

/* Header Styles */
.my-services-section .services-header {
  text-align: center;
  /* margin-bottom: 60px; */
}

.my-services-section .services-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #fc02c6;
  margin-bottom: 15px;
  text-transform: uppercase;
  background: rgba(252, 2, 198, 0.1);
  padding: 8px 25px;
  border-radius: 50px;
  border: 1px solid rgba(252, 2, 198, 0.2);
  backdrop-filter: blur(5px);
}

.my-services-section .services-title {
  font-size: 42px;
  font-weight: 700;
  color: #0793fe;
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.my-services-section .text-gradient {
  background: linear-gradient(135deg, #0693fd, #fc02c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.my-services-section .services-subtitle {
  font-size: 18px;
  color: #a0a5b5;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Swiper Container */
.my-services-section .services-swiper-container {
  position: relative;
  padding: 20px 10px 60px;
}

/* Service Card */
.my-services-section .service-card {
  background: rgba(20, 25, 36, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  overflow: hidden;
  /* border: 1px solid rgba(255, 255, 255, 0.05); */
  transition: all 0.4s ease;
  height: 100%;
  /* box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5); */
}

.my-services-section .service-card:hover {
  /* transform: translateY(-10px); */
  border-color: rgba(6, 147, 253, 0.3);
  /* box-shadow: 0 30px 60px -10px rgba(6, 147, 253, 0.3); */
}

/* Service Image */
.my-services-section .service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.my-services-section .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.8;
}

.my-services-section .service-card:hover .service-image img {
  transform: scale(1.1);
  opacity: 1;
}

/* Service Icon Overlay */
.my-services-section .service-icon {
  position: absolute;
  bottom: -25px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0693fd, #fc02c6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #0a0f1a;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  z-index: 3;
}

.my-services-section .service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
  border-radius: 50%;
}

.my-services-section .service-icon i {
  font-size: 28px;
  color: white;
}

/* Service Content */
.my-services-section .service-content {
  padding: 40px 20px 25px;
}

.my-services-section .service-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.my-services-section .service-card:hover .service-content h3 {
  background: linear-gradient(135deg, #0693fd, #fc02c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.my-services-section .service-content p {
  font-size: 14px;
  color: #a0a5b5;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Doctors Count */
.my-services-section .service-doctors {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.my-services-section .service-doctors i {
  color: #fc02c6;
  font-size: 14px;
}

.my-services-section .service-doctors span {
  color: #a0a5b5;
  font-size: 13px;
  font-weight: 500;
}

/* Service Link */
.my-services-section .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0693fd;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.my-services-section .service-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.my-services-section .service-link:hover {
  color: #fc02c6;
  gap: 12px;
}

.my-services-section .service-link:hover i {
  transform: translateX(5px);
}

/* Swiper Navigation */
.my-services-section .swiper-button-next,
.my-services-section .swiper-button-prev {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.my-services-section .swiper-button-next:hover,
.my-services-section .swiper-button-prev:hover {
  background: linear-gradient(135deg, #0693fd, #fc02c6);
  border-color: transparent;
}

.my-services-section .swiper-button-next:after,
.my-services-section .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.my-services-section .swiper-pagination-bullet {
  background: rgb(98, 98, 98) !important;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.my-services-section .swiper-pagination-bullet-active {
  background: linear-gradient(135deg, #0693fd, #fc02c6) !important;
  width: 25px;
  border-radius: 10px;
}

/* .my-services-section .swiper-slide {
  height: auto;
  padding: 10px;
  margin-right: 0px !important;
} */

/* Responsive Styles */
@media (max-width: 1199px) {
  .my-services-section .services-title {
    font-size: 38px;
  }

  .my-services-section .service-image {
    height: 180px;
  }
}

@media (max-width: 991px) {
  .my-services-section {
    padding: 80px 0;
  }

  .my-services-section .services-title {
    font-size: 34px;
  }

  .my-services-section .services-subtitle {
    font-size: 16px;
  }

  .my-services-section .swiper-button-next,
  .my-services-section .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 767px) {
  .my-services-section {
    padding: 60px 0;
  }

  .my-services-section .services-header {
    margin-bottom: 40px;
  }

  .my-services-section .services-tag {
    font-size: 12px;
    padding: 6px 18px;
  }

  .my-services-section .services-title {
    font-size: 28px;
  }

  .my-services-section .services-subtitle {
    font-size: 15px;
    padding: 0 15px;
  }

  .my-services-section .service-image {
    height: 160px;
  }

  .my-services-section .service-content h3 {
    font-size: 20px;
  }

  .my-services-section .service-icon {
    width: 50px;
    height: 50px;
  }

  .my-services-section .service-icon i {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .my-services-section .services-title {
    font-size: 24px;
  }

  .my-services-section .services-subtitle {
    font-size: 14px;
  }

  .my-services-section .service-image {
    height: 140px;
  }

  .my-services-section .service-content {
    padding: 35px 15px 20px;
  }

  .my-services-section .service-content h3 {
    font-size: 18px;
  }

  .my-services-section .service-content p {
    font-size: 13px;
  }

  .my-services-section .service-doctors {
    padding: 6px 10px;
  }

  .my-services-section .service-doctors span {
    font-size: 12px;
  }
}

/* New Card Style */
.my-services-section .service-card.new-style {
  position: relative;
  height: 420px;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5); */
  transition: transform 0.4s ease;
}

/* .my-services-section .service-card.new-style:hover {
  transform: translateY(-10px);
} */

/* Background Image */
.my-services-section .service-card.new-style img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.my-services-section .service-card.new-style:hover img {
  transform: scale(1.1);
}

/* Dark Gradient Overlay */
.my-services-section .service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.2) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* Content On Image */
.my-services-section .service-card.new-style .service-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 20px 10px;
  z-index: 2;
  color: white;
}

.my-services-section .service-card.new-style h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.my-services-section .service-card.new-style p {
  font-size: 14px;
  color: #d0d5e0;
  margin-bottom: 15px;
  max-width: 90%;
}

/* Badge Style */
.my-services-section .service-card.new-style .service-doctors {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 6px 14px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 15px;
  font-size: 13px;
}

.my-services-section .service-card.new-style .service-doctors i {
  color: #fc02c6;
}

/* Link */
.my-services-section .service-card.new-style .service-link {
  color: #0693fd;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.my-services-section .service-card.new-style .service-link:hover {
  color: #fc02c6;
}

/* Why Choose Us Section */
.my-choose-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  overflow: hidden;
}

/* Decorative Background Elements */
.my-choose-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(6, 147, 253, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.my-choose-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(252, 2, 198, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

/* Container */
.my-choose-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.my-choose-section .choose-header {
  text-align: center;
  margin-bottom: 60px;
}

.my-choose-section .choose-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #0693fd;
  margin-bottom: 15px;
  text-transform: uppercase;
  background: rgba(6, 147, 253, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
}

.my-choose-section .choose-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 15px;
  line-height: 1.2;
}

.my-choose-section .choose-subtitle {
  font-size: 18px;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards Row */
.my-choose-section .choose-row {
  margin-bottom: 50px;
}

/* Individual Card */
.my-choose-section .choose-card {
  /* background: white;
  padding: 40px 25px 30px;
  border-radius: 30px; */
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  /* box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5); */
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.my-choose-section .choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  /* background: linear-gradient(90deg, #0693fd, #fc02c6); */
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.my-choose-section .choose-card:hover {
  /* transform: translateY(-15px); */
  /* box-shadow: 0 30px 60px -15px rgba(6, 147, 253, 0.3); */
}

.my-choose-section .choose-card:hover::before {
  transform: scaleX(1);
}

/* Icon Wrapper */
.my-choose-section .choose-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-choose-section .choose-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0693fd, #fc02c6);
  /* border-radius: 30px; */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.9s ease;
  box-shadow: 0 10px 20px rgba(6, 147, 253, 0.2);
}

.my-choose-section .choose-card:hover .choose-icon {
  border-radius: 50%;
  transform: rotateY(180deg);
}

.my-choose-section .choose-icon i {
  font-size: 36px;
  color: white;
  transition: all 0.4s ease;
}

.my-choose-section .choose-card:hover .choose-icon i {
  transform: rotateY(180deg);
}

/* .my-choose-section .choose-icon-bg {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: rgba(252, 2, 198, 0.1);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s ease;
}

.my-choose-section .choose-card:hover .choose-icon-bg {
  top: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  background: rgba(6, 147, 253, 0.1);
} */

/* Card Title */
.my-choose-section .choose-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1f2e;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.my-choose-section .choose-card:hover .choose-card-title {
  background: linear-gradient(135deg, #0693fd, #fc02c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card Text */
.my-choose-section .choose-card-text {
  font-size: 15px;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Card Line */
.my-choose-section .choose-card-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0693fd, #fc02c6);
  margin: 0 auto;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.my-choose-section .choose-card:hover .choose-card-line {
  width: 80px;
}

/* CTA Section */
.my-choose-section .choose-cta {
  text-align: center;
  margin-top: 20px;
}

.my-choose-section .choose-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #0693fd, #fc02c6);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 15px 30px -8px rgba(252, 2, 198, 0.3);
}

.my-choose-section .choose-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -8px rgba(252, 2, 198, 0.4);
}

.my-choose-section .choose-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.my-choose-section .choose-btn:hover i {
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1199px) {
  .my-choose-section .choose-title {
    font-size: 38px;
  }

  .my-choose-section .choose-card-title {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .my-choose-section {
    padding: 80px 0;
  }

  .my-choose-section .choose-title {
    font-size: 34px;
  }

  .my-choose-section .choose-subtitle {
    font-size: 16px;
  }

  .my-choose-section .choose-icon-wrapper {
    width: 90px;
    height: 90px;
  }

  .my-choose-section .choose-icon {
    width: 70px;
    height: 70px;
  }

  .my-choose-section .choose-icon i {
    font-size: 32px;
  }

  .my-choose-section .choose-card {
    padding: 35px 20px 25px;
  }
}

@media (max-width: 767px) {
  .my-choose-section {
    padding: 60px 0;
  }

  .my-choose-section .choose-header {
    margin-bottom: 40px;
  }

  .my-choose-section .choose-tag {
    font-size: 12px;
    padding: 6px 16px;
  }

  .my-choose-section .choose-title {
    font-size: 28px;
  }

  .my-choose-section .choose-subtitle {
    font-size: 15px;
    padding: 0 15px;
  }

  .my-choose-section .choose-card {
    padding: 30px 15px 20px;
  }

  .my-choose-section .choose-card-title {
    font-size: 20px;
  }

  .my-choose-section .choose-card-text {
    font-size: 14px;
  }

  .my-choose-section .choose-btn {
    padding: 14px 30px;
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .my-choose-section .choose-title {
    font-size: 24px;
  }

  .my-choose-section .choose-subtitle {
    font-size: 14px;
  }

  .my-choose-section .choose-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .my-choose-section .choose-icon {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }

  .my-choose-section .choose-icon i {
    font-size: 28px;
  }

  .my-choose-section .choose-card-title {
    font-size: 18px;
  }

  .my-choose-section .choose-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.my-choose-section [data-aos="fade-up"] {
  animation: fadeInUp 0.6s ease forwards;
}

.my-cta-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-image: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  /* margin: 2rem 0; */
}

.my-cta-section .cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 51, 102, 0.95) 0%,
    rgba(0, 102, 153, 0.85) 100%
  );
  z-index: 1;
}

.my-cta-section .cta-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 6rem 5rem;
}

.my-cta-section .cta-content {
  max-width: 700px;
  color: white;
}

.my-cta-section .cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  /* margin-bottom: 1.5rem; */
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.my-cta-section .cta-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.my-cta-section .cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
  color: rgba(255, 255, 255, 0.9);
}

.my-cta-section .cta-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.my-cta-section .cta-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
}

.my-cta-section .cta-feature i {
  color: #4caf50;
  font-size: 1.3rem;
}

.my-cta-section .cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.my-cta-section .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.my-cta-section .cta-btn-primary {
  background: white;
  color: #003366;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.my-cta-section .cta-btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.my-cta-section .cta-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.my-cta-section .cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .my-cta-section .cta-title {
    font-size: 2.8rem;
  }

  .my-cta-section .cta-container {
    padding: 3rem 2rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .my-cta-section {
    min-height: 400px;
    background-attachment: scroll; /* remove fixed on mobile for better performance */
  }

  .my-cta-section .cta-title {
    font-size: 2.2rem;
  }

  .my-cta-section .cta-description {
    font-size: 1rem;
  }

  .my-cta-section .cta-features {
    gap: 1rem;
    flex-direction: column;
  }

  .my-cta-section .cta-feature {
    font-size: 1rem;
  }

  .my-cta-section .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .my-cta-section .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .my-cta-section .cta-container {
    padding: 2.5rem 1.5rem;
  }

  .my-cta-section .cta-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .my-cta-section .cta-title {
    font-size: 1.8rem;
  }

  .my-cta-section .cta-container {
    padding: 2rem 1rem;
  }

  .my-cta-section .cta-overlay {
    background: linear-gradient(
      135deg,
      rgba(0, 51, 102, 0.98) 0%,
      rgba(0, 102, 153, 0.95) 100%
    );
  }
}

/* Testimonials Section - using my-testimonials as parent class */
.my-testimonials {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  overflow: hidden;
}

.my-testimonials .testimonials-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.my-testimonials .testimonials-header {
  text-align: center;
  margin-bottom: 1rem;
}

.my-testimonials .testimonials-badge {
  display: inline-block;
  background: linear-gradient(135deg, #003366, #006699);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 51, 102, 0.2);
}

.my-testimonials .testimonials-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.my-testimonials .testimonials-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.my-testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.my-testimonials .testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 51, 102, 0.1);
}

.my-testimonials .testimonial-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15);
  border-color: rgba(0, 51, 102, 0.2); */
}

.my-testimonials .testimonial-quote {
  position: absolute;
  top: -5px;
  right: 10px;
  font-size: 4rem;
  color: rgba(0, 51, 102, 0.1);
  line-height: 1;
}

.my-testimonials .testimonial-rating {
  margin-bottom: 1rem;
  color: #ffc107;
  font-size: 1rem;
  display: flex;
  gap: 0.2rem;
}

.my-testimonials .testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #2d3748;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.my-testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0rem;
}

.my-testimonials .author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.my-testimonials .author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 0.2rem;
}

.my-testimonials .author-info p {
  font-size: 0.9rem;
  color: #718096;
}

.my-testimonials .testimonial-department {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: #f0f7ff;
  border-radius: 50px;
  color: #003366;
  font-size: 0.85rem;
  font-weight: 600;
}

.my-testimonials .testimonial-department i {
  font-size: 0.9rem;
}

.my-testimonials .testimonials-footer {
  margin-top: 3rem;
}

.my-testimonials .testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 2rem;
  background: white;
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}

.my-testimonials .stat-item {
  text-align: center;
}

.my-testimonials .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 0.3rem;
}

.my-testimonials .stat-label {
  font-size: 0.9rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .my-testimonials .testimonials-title {
    font-size: 2.2rem;
  }

  .my-testimonials .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .my-testimonials .testimonials-stats {
    gap: 2rem;
    padding: 1.5rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .my-testimonials {
    padding: 3rem 0;
  }

  .my-testimonials .testimonials-container {
    padding: 0 1.5rem;
  }

  .my-testimonials .testimonials-title {
    font-size: 1.8rem;
  }

  .my-testimonials .testimonials-subtitle {
    font-size: 1rem;
  }

  .my-testimonials .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .my-testimonials .testimonial-card {
    padding: 1.5rem;
  }

  .my-testimonials .testimonials-stats {
    flex-direction: column;
    gap: 1.5rem;
    border-radius: 30px;
    padding: 1.5rem;
  }

  .my-testimonials .stat-number {
    font-size: 1.5rem;
  }

  .my-testimonials .testimonials-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .my-testimonials .testimonials-title {
    font-size: 1.5rem;
  }

  .my-testimonials .testimonials-container {
    padding: 0 1rem;
  }

  .my-testimonials .testimonial-author {
    flex-wrap: wrap;
  }

  .my-testimonials .testimonials-stats {
    padding: 1.2rem;
  }
}

:root {
  --color1: #0693fd;
  --color2: #fc02c6;
  --color3: #f4f08f;
  --color4: #000000;
  --color5: #f5cf54;
  --color6: #ffffff;
}

/* Careers CTA Section - Dark Background */
.my-careers-cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-image: url("../images/car-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  /* margin: 2rem 0; */
}

.my-careers-cta .careers-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(10, 10, 20, 0.78) 100%
  );
  z-index: 1;
}

.my-careers-cta .careers-cta-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.my-careers-cta .careers-cta-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: var(--color6);
}

.my-careers-cta .careers-cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border: 1px solid;
}

.my-careers-cta .careers-cta-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.my-careers-cta .careers-cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: rgba(255, 255, 255, 0.9);
}

.my-careers-cta .careers-cta-features {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.my-careers-cta .careers-cta-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
}

.my-careers-cta .careers-cta-feature i {
  font-size: 1.3rem;
}

.my-careers-cta .careers-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.my-careers-cta .careers-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.my-careers-cta .careers-cta-btn-primary {
  box-shadow: 0 10px 20px rgba(252, 2, 198, 0.3);
}

.my-careers-cta .careers-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(252, 2, 198, 0.4);
}

.my-careers-cta .careers-cta-btn-secondary {
  background: transparent;
  border: 2px solid;
  backdrop-filter: blur(5px);
}

.my-careers-cta .careers-cta-btn-secondary:hover {
  background: rgba(6, 147, 253, 0.1);
  transform: translateY(-2px);
}

.my-careers-cta .careers-cta-departments {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.my-careers-cta .careers-cta-department {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .my-careers-cta .careers-cta-title {
    font-size: 2.8rem;
  }

  .my-careers-cta .careers-cta-container {
    padding: 3rem 2rem;
  }

  .my-careers-cta .careers-cta-features {
    gap: 2rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .my-careers-cta {
    min-height: 400px;
    background-attachment: scroll;
  }

  .my-careers-cta .careers-cta-title {
    font-size: 2.2rem;
  }

  .my-careers-cta .careers-cta-description {
    font-size: 1rem;
  }

  .my-careers-cta .careers-cta-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .my-careers-cta .careers-cta-feature {
    font-size: 1rem;
  }

  .my-careers-cta .careers-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .my-careers-cta .careers-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .my-careers-cta .careers-cta-container {
    padding: 2.5rem 1.5rem;
  }

  .my-careers-cta .careers-cta-departments {
    gap: 0.8rem;
  }

  .my-careers-cta .careers-cta-department {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .my-careers-cta .careers-cta-title {
    font-size: 1.8rem;
  }

  .my-careers-cta .careers-cta-container {
    padding: 2rem 1rem;
  }

  .my-careers-cta .careers-cta-departments {
    flex-direction: column;
    align-items: center;
  }

  .my-careers-cta .careers-cta-department {
    width: fit-content;
  }
}

.my-cta-section {
  position: relative !important;
  min-height: 600px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
}

/* #cta-particles {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 3 !important;
} */

.my-cta-section .cta-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(
    90deg,
    rgba(0, 51, 102, 0.85),
    rgba(0, 102, 153, 0.85)
  ) !important;
}

.my-cta-section .cta-container {
  position: relative !important;
  z-index: 3 !important;
}

.my-cta-section .cta-overlay {
  background: linear-gradient(
    90deg,
    rgba(0, 51, 102, 0.7),
    rgba(0, 102, 153, 0.6)
  );
}

:root {
  --color1: #0693fd;
  --color2: #fc02c6;
  --color3: #f4f08f;
  --color4: #000000;
  --color5: #f5cf54;
  --color6: #ffffff;
}

/* Blog Section - using home-blog as parent class */
.home-blog {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #f9fafb 0%, #f0f3f7 100%);
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  position: relative;
  overflow: hidden;
}

/* Subtle background pattern */
.home-blog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(6, 147, 253, 0.03) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(252, 2, 198, 0.03) 0%,
      transparent 30%
    );
  pointer-events: none;
}

.home-blog .blog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Header Styles */
.home-blog .blog-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.home-blog .blog-badge {
  display: inline-block;
  background: rgba(6, 147, 253, 0.1);
  color: var(--color1);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.home-blog .blog-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.home-blog .blog-title-highlight {
  color: var(--color2);
  position: relative;
  display: inline-block;
}

.home-blog .blog-title-highlight::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(252, 2, 198, 0.15);
  z-index: -1;
}

.home-blog .blog-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Blog Grid */
.home-blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Blog Card */
.home-blog .blog-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.home-blog .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(6, 147, 253, 0.2);
}

.home-blog .blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.home-blog .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-blog .blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.home-blog .blog-card-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.home-blog .blog-card-content {
  padding: 1rem 1rem 1.25rem;
}

.home-blog .blog-card-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #718096;
}

.home-blog .blog-card-meta i {
  margin-right: 0.3rem;
  font-size: 0.8rem;
}

.home-blog .blog-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.home-blog .blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 0.5rem;
}

.home-blog .blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color1);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.home-blog .blog-card-link:hover {
  gap: 1rem;
  color: var(--color2);
}

/* Blog Footer */
.home-blog .blog-footer {
  text-align: center;
}

.home-blog .blog-footer-button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(252, 2, 198, 0.2);
}

.home-blog .blog-footer-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(252, 2, 198, 0.3);
  gap: 1rem;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .home-blog .blog-title {
    font-size: 2.4rem;
  }

  .home-blog .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .home-blog {
    padding: 3rem 0;
  }

  .home-blog .blog-container {
    padding: 0 1.5rem;
  }

  .home-blog .blog-title {
    font-size: 2rem;
  }

  .home-blog .blog-subtitle {
    font-size: 1rem;
  }

  .home-blog .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-blog .blog-card-image {
    height: 200px;
  }

  .home-blog .blog-card-title {
    font-size: 1.2rem;
  }

  .home-blog .blog-footer-button {
    width: 100%;
    justify-content: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .home-blog .blog-container {
    padding: 0 1rem;
  }

  .home-blog .blog-title {
    font-size: 1.6rem;
  }

  .home-blog .blog-card-content {
    padding: 1.5rem;
  }

  .home-blog .blog-card-meta {
    flex-direction: column;
    gap: 0.3rem;
  }
}

:root {
  --color1: #0693fd;
  --color2: #fc02c6;
  --color3: #f4f08f;
  --color4: #000000;
  --color5: #f5cf54;
  --color6: #ffffff;
}

/* Footer Section - using home-footer as parent class */
.home-footer {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--color6);
}

.home-footer .footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(10, 10, 20, 0.85) 100%
  );
  z-index: 1;
}

.home-footer .footer-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 2rem 1rem;
}

/* Main Footer Grid */
.home-footer .footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Footer Columns */
.home-footer .footer-col {
  display: flex;
  flex-direction: column;
}

.home-footer .footer-col-about {
  max-width: 350px;
}

/* Logo */
.home-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.home-footer .footer-logo-icon {
  font-size: 2.5rem;
}

.home-footer .footer-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color1), var(--color2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About Text */
.home-footer .footer-about-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

/* Social Links */
.home-footer .footer-social {
  display: flex;
  gap: 1rem;
}

.home-footer .footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.home-footer .footer-social-link:hover {
  transform: translateY(-3px);
  filter: brightness(1.2);
}

/* Column Titles */
.home-footer .footer-col-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.home-footer .footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color1), var(--color2));
  border-radius: 2px;
}

/* Links Lists */
.home-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-footer .footer-links li {
  margin-bottom: 0.8rem;
}

.home-footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.home-footer .footer-links a i {
  font-size: 0.8rem;
  width: 20px;
  transition: transform 0.3s ease;
}

.home-footer .footer-links a:hover {
  color: var(--link-color, var(--color1));
  transform: translateX(5px);
}

.home-footer .footer-links a:hover i {
  transform: scale(1.1);
}

/* Contact List */
.home-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-footer .footer-contact li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.home-footer .footer-contact li i {
  font-size: 1.1rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

/* Newsletter Section */
.home-footer .footer-newsletter {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 60px;
  padding: 2rem 3rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.home-footer .newsletter-content {
  flex: 1;
  min-width: 280px;
}

.home-footer .newsletter-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color6);
}

.home-footer .newsletter-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.home-footer .newsletter-form {
  flex: 1;
  min-width: 320px;
}

.home-footer .newsletter-input-group {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-footer .newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.8rem 1.2rem;
  color: var(--color6);
  font-size: 0.95rem;
  outline: none;
}

.home-footer .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.home-footer .newsletter-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color6);
  white-space: nowrap;
}

.home-footer .newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(252, 2, 198, 0.3);
  gap: 1rem;
}

/* Bottom Footer */
.home-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.home-footer .footer-copyright p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.home-footer .footer-bottom-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.home-footer .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.home-footer .footer-bottom-links a:hover {
  color: var(--color1);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .home-footer .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .home-footer .footer-col-about {
    grid-column: span 2;
    max-width: 100%;
  }

  .home-footer .footer-newsletter {
    border-radius: 30px;
    padding: 1.5rem;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .home-footer .footer-container {
    padding: 3rem 1.5rem 1.5rem;
  }

  .home-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .home-footer .footer-col-about {
    grid-column: span 1;
  }

  .home-footer .footer-newsletter {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .home-footer .newsletter-input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
  }

  .home-footer .newsletter-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
  }

  .home-footer .newsletter-button {
    width: 100%;
    justify-content: center;
  }

  .home-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .home-footer .footer-bottom-links {
    justify-content: center;
    gap: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .home-footer .footer-container {
    padding: 2rem 1rem 1rem;
  }

  .home-footer .footer-logo-text {
    font-size: 1.5rem;
  }

  .home-footer .footer-contact li {
    flex-direction: column;
    gap: 0.3rem;
  }

  .home-footer .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.footer-logo img {
  height: 60px;
}

.dropdown-menu {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.services-dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .services-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Modal box */
.enquiry-clean {
  border-radius: 18px;
  border: none;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
  padding: 10px;
}

/* Header spacing */
.enquiry-clean .modal-header {
  border-bottom: 1px solid #f1f1f1;
  padding: 20px 25px;
}

.enquiry-clean .modal-title {
  font-weight: 600;
  font-size: 18px;
}

/* Body spacing */
.enquiry-clean .modal-body {
  padding: 25px;
}

/* Input container */
.input-icon {
  position: relative;
}

/* Icon styling */
.input-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9aa0a6;
  font-size: 14px;
  transition: 0.3s;
}

/* Input fields */
.input-icon input,
.input-icon select,
.input-icon textarea {
  padding-left: 45px;
  border-radius: 12px;
  border: 1px solid #e4e6eb;
  transition: all 0.3s ease;
  height: 48px;
}

/* Textarea height */
.input-icon textarea {
  height: auto;
  padding-top: 14px;
}

/* Hover effect */
.input-icon input:hover,
.input-icon select:hover,
.input-icon textarea:hover {
  border-color: #cfd4da;
}

/* Focus effect */
.input-icon input:focus,
.input-icon select:focus,
.input-icon textarea:focus {
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
  border-color: #0d6efd;
}

/* Change icon color on focus */
.input-icon input:focus + i,
.input-icon select:focus + i,
.input-icon textarea:focus + i {
  color: #0d6efd;
}

/* Submit button upgrade */
.enquiry-clean .btn-primary {
  border-radius: 12px;
  height: 50px;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
}

/* Button hover */
.enquiry-clean .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
}
.offcanvas-body {
  overflow: visible !important;
}

.offcanvas .dropdown-menu {
  position: static !important;
  transform: none !important;
}

#mobileServiceMenu {
  display: none;
  padding-left: 15px;
}

#mobileServiceMenu.show {
  display: block;
}

/* Fix dropdown inside offcanvas */
.offcanvas .dropdown-menu {
  position: static !important;
  transform: none !important;
  border: none;
  background: transparent;
  padding-left: 15px;
}

.offcanvas .dropdown-item {
  padding: 8px 0;
}

.offcanvas-body {
  overflow-y: auto;
  overflow-x: hidden;
}

:root {
  --color1: #0693fd;
  --color2: #fc02c6;
  --color3: #f4f08f;
  --color4: #000000;
  --color5: #f5cf54;
  --color6: #ffffff;
}

.breadcrumb-section {
  width: 100%;
  position: relative;
}

.breadcrumb-container {
  position: relative;
  background-image: url("../images/beasas.jpg");
  /* Team/About Us image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px;
  display: flex;
  align-items: center;
  background-color: #012f5f46;
  padding: 150px 20px;
}

/* .breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(6, 147, 253, 0.85) 0%,
    rgba(252, 2, 198, 0.85) 100%
  );
  z-index: 1;
} */

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(0 0 0 / 0%) 100%);
  z-index: 1;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 15px;
  /* text-align: center; */
}

.breadcrumb-content h2 {
  font-size: 50px;
  color: #0793fe;
  font-weight: 700;
  max-width: 500px;
}

.breadcrumb-heading {
  color: var(--color6);
  font-size: 42px;
  /* margin-bottom: 15px; */
  font-family: Arial, sans-serif;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

/* .breadcrumb-heading:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--color5);
  border-radius: 2px;
} */

.breadcrumb-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  /* margin: 20px 0 0; */
  padding: 0;
  font-family: Arial, sans-serif;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--color6);
  font-size: 16px;
}

.breadcrumb-link {
  color: var(--color3);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-link i {
  font-size: 14px;
}

.breadcrumb-link:hover {
  color: var(--color5);
  transform: translateY(-2px);
}

.breadcrumb-item.active {
  color: var(--color5);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-item.active i {
  color: var(--color5);
  font-size: 14px;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: var(--color3);
  display: flex;
  align-items: center;
}

.breadcrumb-separator i {
  font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .breadcrumb-container {
    min-height: 170px;
    padding: 40px 15px;
  }

  .breadcrumb-heading {
    font-size: 32px;
  }

  .breadcrumb-item,
  .breadcrumb-link {
    font-size: 14px !important;
  }
}

@media (max-width: 480px) {
  .breadcrumb-container {
    min-height: 150px;
    padding: 30px 10px;
  }

  .breadcrumb-heading {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .breadcrumb-heading:after {
    width: 60px;
    height: 2px;
    bottom: -8px;
  }

  .breadcrumb-item,
  .breadcrumb-link {
    font-size: 12px !important;
  }

  .breadcrumb-list {
    gap: 4px !important;
  }

  .breadcrumb-separator {
    margin: 0 4px !important;
  }

  .breadcrumb-link i,
  .breadcrumb-item.active i {
    font-size: 10px !important;
  }

  .breadcrumb-separator i {
    font-size: 8px !important;
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}

:root {
  --color1: #0693fd;
  /* bright blue */
  --color2: #fc02c6;
  /* magenta */
  --color3: #f4f08f;
  /* light yellow */
  --color4: #000000;
  /* black */
  --color5: #f5cf54;
  /* golden */
  --color6: #ffffff;
  /* white */
}

/* Mission Vision Values Section */
.my-mis-vis-val {
  width: 100%;
  background: linear-gradient(135deg, #014389 0%, #012e5f 100%);
  padding: 80px 0px;
  position: relative;
  overflow: hidden;
}

/* Optional subtle pattern overlay */
.my-mis-vis-val::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(6, 147, 253, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(252, 2, 198, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.misvisval-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.misvisval-header {
  text-align: center;
  margin-bottom: 30px;
}

.misvisval-title {
  font-size: 42px;
  color: var(--color6);
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

/* .misvisval-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color1),
    var(--color2),
    var(--color5)
  );
  border-radius: 2px;
} */

.misvisval-subtitle {
  font-size: 18px;
  color: #b0b0b0;
  font-family: Arial, sans-serif;
  /* margin-top: 25px; */
}

.misvisval-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.misvisval-card {
  background: rgb(228 228 228 / 0%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.misvisval-card:hover {
  transform: translateY(-10px);
  background-color: #000000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Card-specific gradient borders */
/* .mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color1), var(--color2));
} */

/* .vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color2), var(--color5));
} */

/* .values-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color5), var(--color1));
} */

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color1), var(--color2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}

.misvisval-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

.card-icon i {
  font-size: 35px;
  color: var(--color6);
}

.card-title {
  font-size: 28px;
  color: var(--color6);
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  font-weight: 600;
  text-align: center;
}

.card-text {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.8;
  text-align: center;
  font-family: Arial, sans-serif;
  margin-bottom: 25px;
}

/* Values list specific styles */
.values-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.values-list li {
  color: #d0d0d0;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, sans-serif;
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list li i {
  color: var(--color5);
  font-size: 18px;
}

.card-footer {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.footer-dot {
  width: 8px;
  height: 8px;
  background: var(--color1);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.footer-dot:nth-child(2) {
  background: var(--color2);
  animation-delay: 0.3s;
}

.footer-dot:nth-child(3) {
  background: var(--color5);
  animation-delay: 0.6s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .misvisval-grid {
    gap: 20px;
  }

  .misvisval-card {
    padding: 30px 20px;
  }

  .card-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .my-mis-vis-val {
    padding: 60px 20px;
  }

  .misvisval-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .misvisval-title {
    font-size: 36px;
  }

  .misvisval-subtitle {
    font-size: 16px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
  }

  .card-icon i {
    font-size: 30px;
  }
}

@media (max-width: 640px) {
  .misvisval-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .misvisval-title {
    font-size: 30px;
  }

  .misvisval-title::after {
    width: 80px;
    height: 3px;
  }

  .misvisval-card {
    padding: 35px 25px;
  }

  .card-title {
    font-size: 26px;
  }

  .card-text,
  .values-list li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .my-mis-vis-val {
    padding: 40px 15px;
  }

  .misvisval-header {
    margin-bottom: 40px;
  }

  .misvisval-title {
    font-size: 26px;
  }

  .misvisval-subtitle {
    font-size: 14px;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .card-icon i {
    font-size: 25px;
  }

  .card-title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .card-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .values-list li {
    font-size: 14px;
    padding: 8px 0;
  }

  .values-list li i {
    font-size: 16px;
  }
}

:root {
  --color1: #0693fd;
  /* bright blue */
  --color2: #fc02c6;
  /* magenta */
  --color3: #f4f08f;
  /* light yellow */
  --color4: #000000;
  /* black */
  --color5: #f5cf54;
  /* golden */
  --color6: #ffffff;
  /* white */
}

/* Our Team Section - Light Background */
.our-team-section-light {
  width: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.our-team-section-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(6, 147, 253, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(252, 2, 198, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.team-container-light {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.team-header-light {
  text-align: center;
  margin-bottom: 30px;
}

.team-title-light {
  font-size: 42px;
  color: #333333;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.team-subtitle-light {
  font-size: 18px;
  color: #666666;
  font-family: Arial, sans-serif;
  /* margin-top: 25px; */
}

.team-grid-light {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.team-card-light {
  background: var(--color6);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.team-card-light:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(6, 147, 253, 0.15);
}

/* .team-card-light::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color1),
    var(--color2),
    var(--color5)
  );
  z-index: 1;
} */

.card-image-wrapper-light {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.card-image-light {
  width: 100%;
  height: 100%;
}

.card-image-light img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.team-card-light:hover .card-image-light img {
  transform: scale(1.1);
}

.card-social-light {
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 15px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7)
  );
  backdrop-filter: blur(5px);
  transition: bottom 0.3s ease;
}

.team-card-light:hover .card-social-light {
  bottom: -1px;
}

.social-icon-light {
  width: 36px;
  height: 36px;
  background: var(--color6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color1);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(6, 147, 253, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.social-icon-light:hover {
  background: var(--color1);
  color: var(--color6);
  transform: translateY(-3px);
  border-color: var(--color1);
}

.social-icon-light:nth-child(2):hover {
  background: var(--color2);
  border-color: var(--color2);
}

.social-icon-light:nth-child(3):hover {
  background: var(--color5);
  border-color: var(--color5);
}

.social-icon-light:nth-child(4):hover {
  background: linear-gradient(45deg, var(--color1), var(--color2));
  border-color: transparent;
}

.card-content-light {
  padding: 25px 20px;
  text-align: center;
  background: var(--color6);
}

.doctor-name-light {
  font-size: 22px;
  color: #333333;
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
  font-weight: 600;
}

.doctor-specialty-light {
  font-size: 16px;
  color: var(--color2);
  margin-bottom: 0px;
  font-family: Arial, sans-serif;
  font-weight: 500;
}

.doctor-desc-light {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

.doctor-stats-light {
  display: flex;
  justify-content: space-around;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-light {
  text-align: center;
}

.stat-value-light {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--color1);
  font-family: Arial, sans-serif;
  margin-bottom: 4px;
}

.stat-light:nth-child(2) .stat-value-light {
  color: var(--color2);
}

.stat-light:nth-child(3) .stat-value-light {
  color: var(--color5);
}

.stat-label-light {
  font-size: 12px;
  color: #999999;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-cta-light {
  text-align: center;
  margin-top: 50px;
}

.cta-button-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: var(--color6);
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(6, 147, 253, 0.25);
}

.cta-button-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(252, 2, 198, 0.3);
}

.cta-button-light i {
  transition: transform 0.3s ease;
}

.cta-button-light:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .team-grid-light {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .our-team-section-light {
    padding: 60px 20px;
  }

  .team-title-light {
    font-size: 36px;
  }

  .team-subtitle-light {
    font-size: 16px;
  }

  .team-grid-light {
    grid-template-columns: repeat(2, 1fr);
  }

  .doctor-name-light {
    font-size: 20px;
  }

  .doctor-specialty-light {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .team-grid-light {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card-content-light {
    padding: 20px 15px;
  }

  .doctor-name-light {
    font-size: 18px;
  }

  .doctor-specialty-light {
    font-size: 14px;
  }

  .doctor-desc-light {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .stat-value-light {
    font-size: 18px;
  }

  .stat-label-light {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .our-team-section-light {
    padding: 40px 15px;
  }

  .team-header-light {
    margin-bottom: 40px;
  }

  .team-title-light {
    font-size: 28px;
  }

  .team-title-light::after {
    width: 80px;
    height: 3px;
    bottom: -10px;
  }

  .team-subtitle-light {
    font-size: 14px;
    margin-top: 20px;
  }

  .team-grid-light {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

  .card-social-light {
    gap: 8px;
  }

  .social-icon-light {
    width: 32px;
    height: 32px;
  }

  .cta-button-light {
    padding: 12px 30px;
    font-size: 16px;
  }
}

/* Animation for cards */
@keyframes fadeInUpLight {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card-light {
  animation: fadeInUpLight 0.6s ease forwards;
}

.team-card-light:nth-child(2) {
  animation-delay: 0.2s;
}

.team-card-light:nth-child(3) {
  animation-delay: 0.4s;
}

.team-card-light:nth-child(4) {
  animation-delay: 0.6s;
}

.services-view .service-card {
  margin-bottom: 30px;
}

.services-view .services-swiper-container {
  position: relative;
  padding: 0px 0px 0px;
}

.services-view {
  padding: 80px 0px 60px;
}

:root {
  --color1: #0693fd;
  /* bright blue */
  --color2: #fc02c6;
  /* magenta */
  --color3: #f4f08f;
  /* light yellow */
  --color4: #000000;
  /* black */
  --color5: #f5cf54;
  /* golden */
  --color6: #ffffff;
  /* white */
}

/* Career View Main Container */
.career-view {
  width: 100%;
  background: linear-gradient(135deg, #f0f7ff 0%, #f5f0ff 100%);
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.career-view::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M20,20 L30,30 M70,30 L80,40 M30,70 L40,80 M50,10 L50,20 M10,50 L20,50 M80,50 L90,50 M50,80 L50,90" stroke="%230693fd" stroke-width="2" fill="none"/><circle cx="50" cy="50" r="5" fill="%23fc02c6" opacity="0.2"/></svg>');
  background-repeat: repeat;
  pointer-events: none;
}

.career-view-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.career-view-header {
  text-align: center;
  margin-bottom: 30px;
}

.career-view-title {
  font-size: 38px;
  color: #333333;
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.career-view-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color1),
    var(--color2),
    var(--color5)
  );
  border-radius: 2px;
}

.career-view-subtitle {
  font-size: 16px;
  color: #666666;
  margin-top: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Filter Tags */
.career-view-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0 25px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.career-view-filter-title {
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  margin-right: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.career-view-filter-tag {
  padding: 6px 14px;
  border: none;
  background: transparent;
  border-radius: 30px;
  font-size: 13px;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.career-view-filter-tag:hover {
  border-color: var(--color1);
  color: var(--color1);
}

.career-view-filter-tag.active {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: white;
}

/* Job Grid - Column Layout */
.career-view-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Job Card - Row Layout */
.career-view-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 25px rgba(6, 147, 253, 0.1);
  transition: all 0.3s ease;
}

.career-view-card:hover {
  box-shadow: 0 15px 35px rgba(6, 147, 253, 0.15);
  border-color: var(--color1);
}

.career-view-card-row {
  display: flex;
  padding: 20px;
  gap: 20px;
}

/* Icon Column */
.career-view-card-col-icon {
  flex: 0 0 80px;
}

.career-view-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    rgba(6, 147, 253, 0.1),
    rgba(252, 2, 198, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.career-view-card:hover .career-view-card-icon {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: var(--color6);
  transform: scale(1.05);
  border-color: white;
}

/* Content Column */
.career-view-card-col-content {
  flex: 1;
}

.career-view-card-header {
  margin-bottom: 10px;
}

.career-view-card-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.career-view-card-title {
  font-size: 20px;
  color: #333333;
  font-weight: 600;
  margin: 0;
}

.career-view-card-badge {
  background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
  color: var(--color6);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: careerPulse 2s infinite;
  display: inline-block;
}

@keyframes careerPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }
}

.career-view-card-badge-green {
  background: linear-gradient(135deg, #28a745, #20c997);
  animation: none;
}

.career-view-card-location {
  font-size: 14px;
  color: #666666;
  margin-bottom: 8px;
}

.career-view-card-location i {
  color: var(--color2);
  margin-right: 5px;
}

.career-view-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.career-view-tag {
  background: rgba(6, 147, 253, 0.08);
  color: var(--color1);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.career-view-tag:nth-child(2) {
  background: rgba(252, 2, 198, 0.08);
  color: var(--color2);
}

.career-view-tag:nth-child(3) {
  background: rgba(245, 207, 84, 0.08);
  color: #b3861a;
}

/* Collapsible Details Section */
.career-view-card-details {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed rgba(6, 147, 253, 0.2);
  animation: careerSlideDown 0.3s ease;
}

.career-view-card-details.active {
  display: block;
}

@keyframes careerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.career-view-card-desc {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 12px;
}

.career-view-card-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #777777;
  margin-bottom: 15px;
  background: rgba(6, 147, 253, 0.05);
  padding: 10px 15px;
  border-radius: 8px;
  width: fit-content;
}

.career-view-card-meta i {
  margin-right: 5px;
  color: var(--color1);
}

.career-view-card-requirements h4 {
  font-size: 15px;
  color: #333333;
  margin-bottom: 8px;
  font-weight: 600;
}

.career-view-card-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.career-view-card-requirements li {
  font-size: 13px;
  color: #555555;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.career-view-card-requirements li i {
  color: var(--color5);
  font-size: 14px;
}

/* Card Footer */
.career-view-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

.career-view-details-btn {
  background: transparent;
  color: var(--color1);
  border: 1px solid var(--color1);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.career-view-details-btn:hover {
  background: var(--color1);
  color: white;
}

.career-view-details-btn i {
  transition: transform 0.3s ease;
}

.career-view-details-btn.active i {
  transform: rotate(180deg);
}

.career-view-apply-btn {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: var(--color6);
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  max-height: 40px;
  box-shadow: 0 4px 12px rgba(6, 147, 253, 0.2);
}

.career-view-apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(6, 147, 253, 0.3);
}

.career-view-apply-btn i {
  transition: transform 0.3s ease;
}

.career-view-apply-btn:hover i {
  transform: translateX(5px);
}

/* Popup Overlay */
.career-view-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.career-view-popup-overlay.active {
  display: flex;
  opacity: 1;
}

/* Popup Container */
.career-view-popup-container {
  background: linear-gradient(135deg, #ffffff, #f8f9ff);
  border-radius: 24px;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(6, 147, 253, 0.3);
  transform: translateY(30px);
  transition: transform 0.4s ease;
  animation: careerSlideUp 0.4s ease forwards;
  border: 1px solid rgba(6, 147, 253, 0.2);
}

@keyframes careerSlideUp {
  to {
    transform: translateY(0);
  }
}

.career-view-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(6, 147, 253, 0.1);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  color: var(--color1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.career-view-popup-close:hover {
  background: var(--color2);
  color: var(--color6);
  transform: rotate(90deg);
}

.career-view-popup-header {
  padding: 25px 30px 15px;
  text-align: center;
  border-bottom: 1px solid rgba(6, 147, 253, 0.1);
  background: linear-gradient(
    135deg,
    rgba(6, 147, 253, 0.02),
    rgba(252, 2, 198, 0.02)
  );
}

.career-view-popup-title {
  font-size: 24px;
  color: #333333;
  margin-bottom: 5px;
}

.career-view-popup-title span {
  color: var(--color1);
  position: relative;
  display: inline-block;
}

.career-view-popup-title span::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color1), var(--color2));
}

.career-view-popup-subtitle {
  font-size: 14px;
  color: var(--color2);
  font-weight: 500;
}

/* Popup Form */
.career-view-popup-form {
  padding: 20px 30px 30px;
  /* display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr; */
}
.career-view-form-group {
  margin-bottom: 18px;
}

.career-view-form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 5px;
}

.career-view-form-label i {
  color: var(--color1);
  font-size: 14px;
}

.career-view-form-input,
.career-view-form-select,
.career-view-form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid rgba(6, 147, 253, 0.1);
  border-radius: 10px;
  font-size: 13px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  font-family: Arial, sans-serif;
}

.career-view-form-input:focus,
.career-view-form-select:focus,
.career-view-form-textarea:focus {
  outline: none;
  border-color: var(--color1);
  background: white;
  box-shadow: 0 5px 15px rgba(6, 147, 253, 0.1);
}

.career-view-form-textarea {
  resize: vertical;
  min-height: 70px;
}

/* Checkbox Group */
.career-view-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 8px 0;
}

.career-view-checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #666666;
  cursor: pointer;
}

.career-view-checkbox input[type="checkbox"] {
  accent-color: var(--color1);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* File Upload */
.career-view-file-upload {
  position: relative;
}

.career-view-file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.career-view-file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 15px;
  background: rgba(6, 147, 253, 0.02);
  border: 2px dashed rgba(6, 147, 253, 0.3);
  border-radius: 10px;
  font-size: 13px;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.career-view-file-label i {
  font-size: 20px;
  color: var(--color1);
}

.career-view-file-upload:hover .career-view-file-label {
  border-color: var(--color1);
  background: rgba(6, 147, 253, 0.05);
}

.career-view-file-name {
  display: block;
  font-size: 11px;
  color: #999999;
  margin-top: 5px;
  text-align: center;
}

/* Submit Button */
.career-view-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: var(--color6);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 5px;
}

.career-view-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(6, 147, 253, 0.4);
}

.career-view-submit-btn i {
  transition: transform 0.3s ease;
}

.career-view-submit-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .career-view {
    padding: 40px 15px;
  }

  .career-view-title {
    font-size: 28px;
  }

  .career-view-title::after {
    width: 120px;
    height: 3px;
  }

  .career-view-subtitle {
    font-size: 14px;
  }

  .career-view-filter {
    border-radius: 30px;
    padding: 10px 12px;
    gap: 5px;
  }

  .career-view-filter-tag {
    padding: 4px 10px;
    font-size: 12px;
  }

  .career-view-card-row {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .career-view-card-col-icon {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
  }

  .career-view-card-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .career-view-card-footer {
    flex-direction: column;
    gap: 10px;
  }

  .career-view-details-btn,
  .career-view-apply-btn {
    width: 100%;
    justify-content: center;
  }

  .career-view-popup-container {
    width: 95%;
    max-height: 80vh;
  }

  .career-view-popup-header {
    padding: 20px 20px 12px;
  }

  .career-view-popup-form {
    padding: 15px 20px 25px;
  }
}

@media (max-width: 480px) {
  .career-view-title {
    font-size: 24px;
  }

  .career-view-filter {
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    gap: 8px;
  }

  .career-view-filter-title {
    text-align: center;
    margin-bottom: 5px;
  }

  .career-view-filter-tag {
    text-align: center;
  }

  .career-view-card-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .career-view-card-meta {
    flex-direction: column;
    gap: 8px;
  }

  .career-view-popup-container {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .career-view-checkbox-group {
    flex-direction: column;
    gap: 6px;
  }
}

/* Animation for cards */
@keyframes careerFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.career-view-card {
  animation: careerFadeIn 0.5s ease forwards;
  animation-fill-mode: both;
}

.career-view-card:nth-child(2) {
  animation-delay: 0.1s;
}

.career-view-card:nth-child(3) {
  animation-delay: 0.2s;
}

.career-view-card:nth-child(4) {
  animation-delay: 0.3s;
}

.career-view-card:nth-child(5) {
  animation-delay: 0.4s;
}

.career-view-card:nth-child(6) {
  animation-delay: 0.5s;
}

.career-view-card:nth-child(7) {
  animation-delay: 0.6s;
}

.career-view-card:nth-child(8) {
  animation-delay: 0.7s;
}

:root {
  --color1: #0693fd;
  /* bright blue */
  --color2: #fc02c6;
  /* magenta */
  --color3: #f4f08f;
  /* light yellow */
  --color4: #000000;
  /* black */
  --color5: #f5cf54;
  /* golden */
  --color6: #ffffff;
  /* white */
}

/* Contact View Main Container */
.contact-view {
  width: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 70px 20px 40px;
  position: relative;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.contact-view::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M20,20 L30,30 M70,30 L80,40 M30,70 L40,80 M50,10 L50,20 M10,50 L20,50 M80,50 L90,50 M50,80 L50,90" stroke="%230693fd" stroke-width="2" fill="none"/><circle cx="50" cy="50" r="5" fill="%23fc02c6" opacity="0.2"/></svg>');
  background-repeat: repeat;
  pointer-events: none;
}

.contact-view-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header Styles */
.contact-view-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-view-title {
  font-size: 42px;
  color: #333333;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.contact-view-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color1),
    var(--color2),
    var(--color5)
  );
  border-radius: 2px;
}

.contact-view-subtitle {
  font-size: 18px;
  color: #666666;
  margin-top: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Main Grid Layout */
.contact-view-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  margin-bottom: 40px;
}

/* Left Column - Contact Information */
.contact-view-info {
  background: white;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(6, 147, 253, 0.1);
  transition: all 0.3s ease;
}

.contact-view-info:hover {
  box-shadow: 0 20px 50px rgba(6, 147, 253, 0.1);
}

.contact-view-info-title {
  font-size: 28px;
  color: #333333;
  margin-bottom: 0px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
}

.contact-view-info-desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.contact-view-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0px;
}

.contact-view-info-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #f8faff;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-view-info-card:hover {
  border-color: var(--color1);
  background: white;
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(6, 147, 253, 0.1);
}

.contact-view-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    rgba(6, 147, 253, 0.1),
    rgba(252, 2, 198, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color1);
  flex-shrink: 0;
}

.contact-view-info-card:hover .contact-view-info-icon {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: white;
}

.contact-view-info-content h4 {
  font-size: 16px;
  color: #333333;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-view-info-content p {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 5px;
}

.contact-view-info-content a {
  color: var(--color1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-view-info-content a:hover {
  color: var(--color2);
  text-decoration: underline;
}

/* Social Media Links */
.contact-view-social {
  margin-bottom: 25px;
}

.contact-view-social h4 {
  font-size: 16px;
  color: #333333;
  margin-bottom: 15px;
  font-weight: 600;
}

.contact-view-social-links {
  display: flex;
  gap: 12px;
}

.contact-view-social-link {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color1);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-view-social-link:hover {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: white;
  transform: translateY(-3px);
}

/* Quick Response Guarantee */
.contact-view-guarantee {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 20px;
  background: linear-gradient(
    135deg,
    rgba(6, 147, 253, 0.05),
    rgba(252, 2, 198, 0.05)
  );
  border-radius: 16px;
  border-left: 4px solid var(--color5);
}

.contact-view-guarantee i {
  font-size: 32px;
  color: var(--color5);
}

.contact-view-guarantee h4 {
  font-size: 16px;
  color: #333333;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-view-guarantee p {
  font-size: 13px;
  color: #666666;
}

/* Right Column - Form Section */
.contact-view-form-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-view-form-container {
  background: white;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(6, 147, 253, 0.1);
}

.contact-view-form-title {
  font-size: 24px;
  color: #333333;
  margin-bottom: 8px;
  font-weight: 600;
}

.contact-view-form-subtitle {
  font-size: 14px;
  color: #666666;
  margin-bottom: 25px;
}

/* Form Styles */
.contact-view-form-group {
  margin-bottom: 20px;
}

.contact-view-form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 6px;
}

.contact-view-form-label i {
  color: var(--color1);
  font-size: 14px;
}

.contact-view-form-input,
.contact-view-form-select,
.contact-view-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

.contact-view-form-input:focus,
.contact-view-form-select:focus,
.contact-view-form-textarea:focus {
  outline: none;
  border-color: var(--color1);
  background: white;
  box-shadow: 0 5px 15px rgba(6, 147, 253, 0.1);
}

.contact-view-form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Radio Group */
.contact-view-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 8px 0;
}

.contact-view-radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666666;
  cursor: pointer;
}

.contact-view-radio input[type="radio"] {
  accent-color: var(--color1);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Submit Button */
.contact-view-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-view-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(6, 147, 253, 0.3);
}

.contact-view-submit-btn i {
  transition: transform 0.3s ease;
}

.contact-view-submit-btn:hover i {
  transform: translateX(5px);
}

/* Map Container */
/* .contact-view-map-container {
  background: white;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(6, 147, 253, 0.1);
} */

.contact-view-map-title {
  font-size: 20px;
  color: #333333;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.contact-view-map-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color1), var(--color2));
}

.contact-view-map {
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 0px;
}

.contact-view-map iframe {
  display: block;
}

.contact-view-map-directions {
  display: flex;
  gap: 15px;
}

.contact-view-directions-btn {
  flex: 1;
  padding: 12px;
  background: #f0f0f0;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  color: #333333;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-view-directions-btn:hover {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: white;
}

.contact-view-directions-btn i {
  color: var(--color1);
  transition: color 0.3s ease;
}

.contact-view-directions-btn:hover i {
  color: white;
}

/* Additional Info Bar */
.contact-view-additional {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-view-additional-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-view-additional-item i {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    rgba(6, 147, 253, 0.1),
    rgba(252, 2, 198, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color1);
  flex-shrink: 0;
}

.contact-view-additional-item h4 {
  font-size: 15px;
  color: #333333;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-view-additional-item p {
  font-size: 13px;
  color: #666666;
}

/* Success Popup */
.contact-view-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-view-popup-overlay.active {
  display: flex;
  opacity: 1;
}

.contact-view-popup-container {
  background: white;
  border-radius: 24px;
  padding: 40px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  animation: popupScale 0.3s ease forwards;
}

@keyframes popupScale {
  to {
    transform: scale(1);
  }
}

.contact-view-popup-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 35px;
  color: white;
}

.contact-view-popup-title {
  font-size: 24px;
  color: #333333;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-view-popup-message {
  font-size: 15px;
  color: #666666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-view-popup-btn {
  padding: 12px 35px;
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-view-popup-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(6, 147, 253, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-view-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-view-additional {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-view {
    padding: 50px 15px;
  }

  .contact-view-title {
    font-size: 32px;
  }

  .contact-view-subtitle {
    font-size: 16px;
    padding: 0 15px;
  }

  .contact-view-info,
  .contact-view-form-container,
  .contact-view-map-container {
    padding: 25px;
  }

  .contact-view-info-title {
    font-size: 24px;
  }

  .contact-view-info-card {
    padding: 12px;
  }

  .contact-view-additional {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .contact-view-additional-item {
    justify-content: center;
  }

  .contact-view-map-directions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .contact-view-title {
    font-size: 26px;
  }

  .contact-view-title::after {
    width: 80px;
    height: 3px;
    bottom: -10px;
  }

  .contact-view-info,
  .contact-view-form-container,
  .contact-view-map-container {
    padding: 20px;
  }

  .contact-view-info-title {
    font-size: 22px;
  }

  .contact-view-info-card {
    flex-direction: column;
    text-align: center;
  }

  .contact-view-info-icon {
    margin: 0 auto;
  }

  .contact-view-social-links {
    justify-content: center;
  }

  .contact-view-guarantee {
    flex-direction: column;
    text-align: center;
  }

  .contact-view-radio-group {
    flex-direction: column;
    gap: 10px;
  }

  .contact-view-popup-container {
    padding: 30px 20px;
  }

  .contact-view-popup-title {
    font-size: 22px;
  }
}

/* Animation for cards */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-view-info {
  animation: fadeInLeft 0.6s ease forwards;
}

.contact-view-form-section {
  animation: fadeInRight 0.6s ease forwards;
}

.contact-view-container p {
  margin-bottom: 5px;
}

.contact-view-map iframe {
  height: 500px;
}

/* Blog View Styles */
.my-blog-view-inn {
  margin: 0 auto;
}

/* Main Blog Content */
.my-blog-view-inn .blog-main {
  background: var(--color6); /* white */
  border-radius: 10px;
  margin-bottom: 30px;
}

.my-blog-view-inn .blog-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.my-blog-view-inn .blog-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color1); /* bright blue */
  margin-bottom: 20px;
  line-height: 1.3;
}

.my-blog-view-inn .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  color: #666;
  font-size: 0.9rem;
}

.my-blog-view-inn .blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.my-blog-view-inn .blog-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.my-blog-view-inn .blog-content p {
  margin-bottom: 20px;
}

/* Image Grid */
.my-blog-view-inn .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}

.my-blog-view-inn .grid-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

/* Sidebar */
.my-blog-view-inn .blog-sidebar {
  position: sticky;
  top: 130px;
}

.my-blog-view-inn .sidebar-widget {
  background: var(--color6); /* white */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.my-blog-view-inn .widget-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color1); /* bright blue */
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color2); /* magenta */
}

/* Recent Posts */
.my-blog-view-inn .recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* light border */
}

.my-blog-view-inn .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.my-blog-view-inn .recent-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.my-blog-view-inn .recent-content {
  flex: 1;
}

.my-blog-view-inn .recent-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color1); /* bright blue */
  margin-bottom: 8px;
  line-height: 1.3;
}

.my-blog-view-inn .recent-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.my-blog-view-inn .recent-title a:hover {
  color: var(--color2); /* magenta */
}

.my-blog-view-inn .recent-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/* Categories Widget */
.my-blog-view-inn .categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-blog-view-inn .category-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* light border */
}

.my-blog-view-inn .category-item:last-child {
  border-bottom: none;
}

.my-blog-view-inn .category-link {
  color: #333;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.my-blog-view-inn .category-link:hover {
  color: var(--color2); /* magenta */
}

.my-blog-view-inn .category-count {
  background: var(--color2); /* magenta */
  color: var(--color6); /* white */
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
}

.recent-post p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recent-post h4 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-padding {
  padding: 100px 0;
}

.my-blog-view-inn .blog-content {
  padding: 0px;
}

/* Service Details View Styles */
.service-details-view-inn {
  padding: 50px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  font-family: Arial, sans-serif;
}

/* .service-details-view-inn .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
} */

/* Breadcrumb */
.service-details-view-inn-breadcrumb {
  margin-bottom: 30px;
}

.service-details-view-inn-breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-details-view-inn-breadcrumb-list li {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.service-details-view-inn-breadcrumb-list li:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  color: #999;
}

.service-details-view-inn-breadcrumb-list li a {
  color: var(--color1);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-details-view-inn-breadcrumb-list li a:hover {
  color: var(--color2);
}

.service-details-view-inn-breadcrumb-list li.active {
  color: #666;
}

/* Main Content */
/* .service-details-view-inn-main {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
} */

.service-details-view-inn-main-img {
  width: 100%;
  height: auto;
  /* max-height: 700px; */
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 25px;
}

.service-details-view-inn-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color1);
  margin-bottom: 15px;
}

.service-details-view-inn-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-details-view-inn-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 15px;
}

.service-details-view-inn-meta span i {
  color: var(--color2);
  font-size: 18px;
}

.service-details-view-inn-content h2 {
  font-size: 26px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.service-details-view-inn-content h3 {
  font-size: 22px;
  color: #333;
  margin: 30px 0 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.service-details-view-inn-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color1), var(--color2));
}

.service-details-view-inn-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Highlight Box */
.service-details-view-inn-highlight {
  background: linear-gradient(
    135deg,
    rgba(6, 147, 253, 0.05),
    rgba(252, 2, 198, 0.05)
  );
  padding: 25px;
  border-radius: 12px;
  margin: 25px 0;
  position: relative;
  border-left: 4px solid var(--color2);
}

.service-details-view-inn-highlight i {
  font-size: 30px;
  color: var(--color1);
  margin-bottom: 10px;
  display: block;
}

.service-details-view-inn-highlight p {
  font-size: 16px;
  font-style: italic;
  color: #444;
  margin-bottom: 0;
}

/* Services Grid */
.service-details-view-inn-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.service-details-view-inn-service-item {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-details-view-inn-service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(6, 147, 253, 0.1);
  background: white;
}

.service-details-view-inn-service-item i {
  font-size: 28px;
  color: var(--color1);
  margin-bottom: 12px;
}

.service-details-view-inn-service-item h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-details-view-inn-service-item p {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Doctors Section */
.service-details-view-inn-doctors {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr); */
  gap: 20px;
  margin: 25px 0;
}

.service-details-view-inn-doctor {
  text-align: center;
  padding: 20px;
  background: #f8f9fa00;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.service-details-view-inn-doctor:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 10px 25px rgba(6, 147, 253, 0.1); */
  background: rgba(255, 255, 255, 0);
}

.service-details-view-inn-doctor img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--color1);
}

.service-details-view-inn-doctor h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.service-details-view-inn-doctor p {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

.service-details-view-inn-doctor-exp {
  font-size: 13px !important;
  color: var(--color2) !important;
  font-weight: 500;
}

/* Tech List */
.service-details-view-inn-tech-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-details-view-inn-tech-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-details-view-inn-tech-list li:last-child {
  border-bottom: none;
}

.service-details-view-inn-tech-list li i {
  color: var(--color5);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Procedures */
.service-details-view-inn-procedures {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

.service-details-view-inn-procedure-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.service-details-view-inn-procedure-item:last-child {
  border-bottom: none;
}

.service-details-view-inn-procedure-name {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.service-details-view-inn-procedure-price {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* CTA Section */
.service-details-view-inn-cta {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  padding: 30px;
  border-radius: 16px;
  margin-top: 40px;
  color: white;
  text-align: center;
}

.service-details-view-inn-cta h3 {
  color: white;
  margin-top: 0;
}

.service-details-view-inn-cta h3::after {
  background: white;
  left: 50%;
  transform: translateX(-50%);
}

.service-details-view-inn-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.service-details-view-inn-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.service-details-view-inn-btn {
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-details-view-inn-btn.primary {
  background: white;
  color: var(--color1);
}

.service-details-view-inn-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-details-view-inn-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.service-details-view-inn-btn.secondary:hover {
  background: white;
  color: var(--color1);
  transform: translateY(-3px);
}

/* Sidebar */
.service-details-view-inn-sidebar {
  position: sticky;
  top: 100px;
}

.service-details-view-inn-widget {
  background: white;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-details-view-inn-widget-title {
  font-size: 20px;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color1);
  font-weight: 600;
}

/* Quick Contact */
.service-details-view-inn-quick-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-details-view-inn-contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.service-details-view-inn-contact-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(6, 147, 253, 0.1),
    rgba(252, 2, 198, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color1);
  font-size: 16px;
}

.service-details-view-inn-contact-item h4 {
  font-size: 14px;
  color: #666;
  margin-bottom: 3px;
}

.service-details-view-inn-contact-item p,
.service-details-view-inn-contact-item a {
  font-size: 15px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-details-view-inn-contact-item a:hover {
  color: var(--color2);
}

/* Other Services */
.service-details-view-inn-other-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details-view-inn-other-services li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-details-view-inn-other-services li:last-child {
  border-bottom: none;
}

.service-details-view-inn-other-services li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details-view-inn-other-services li a i {
  color: var(--color1);
  width: 20px;
  font-size: 16px;
}

.service-details-view-inn-other-services li a:hover {
  color: var(--color2);
  transform: translateX(5px);
}

.service-details-view-inn-arrow {
  margin-left: auto;
  color: #999;
}

/* Appointment Form */
.service-details-view-inn-appointment-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-details-view-inn-form-group {
  width: 100%;
}

.service-details-view-inn-form-control {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.service-details-view-inn-form-control:focus {
  outline: none;
  border-color: var(--color1);
  background: white;
  box-shadow: 0 5px 15px rgba(6, 147, 253, 0.1);
}

.service-details-view-inn-btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--color1), var(--color2));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.service-details-view-inn-btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(6, 147, 253, 0.3);
}

/* Working Hours */
.service-details-view-inn-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-details-view-inn-hours li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-details-view-inn-hours li:last-child {
  border-bottom: none;
}

.service-details-view-inn-hours .emergency {
  background: rgba(252, 2, 198, 0.05);
  padding: 12px;
  border-radius: 8px;
  margin-top: 5px;
  font-weight: 600;
}

.service-details-view-inn-hours .emergency span:last-child {
  color: var(--color2);
}

/* Brochure Widget */
.brochure-widget {
  background: linear-gradient(
    135deg,
    rgba(6, 147, 253, 0.05),
    rgba(252, 2, 198, 0.05)
  );
}

.service-details-view-inn-brochure {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-details-view-inn-brochure i {
  font-size: 40px;
  color: var(--color2);
}

.service-details-view-inn-brochure h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
}

.service-details-view-inn-brochure p {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

.service-details-view-inn-download-link {
  color: var(--color1);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-details-view-inn-download-link:hover {
  color: var(--color2);
}

/* Responsive */
@media (max-width: 992px) {
  .service-details-view-inn-services-grid {
    grid-template-columns: 1fr;
  }

  .service-details-view-inn-doctors {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-details-view-inn {
    padding: 30px 0 60px;
  }

  .service-details-view-inn-title {
    font-size: 28px;
  }

  .service-details-view-inn-main-img {
    height: 250px;
  }

  .service-details-view-inn-meta {
    gap: 15px;
  }

  .service-details-view-inn-content h2 {
    font-size: 22px;
  }

  .service-details-view-inn-content h3 {
    font-size: 20px;
  }

  .service-details-view-inn-doctors {
    grid-template-columns: 1fr;
  }

  .service-details-view-inn-cta-buttons {
    flex-direction: column;
  }

  .service-details-view-inn-sidebar {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .service-details-view-inn-main {
    padding: 20px;
  }

  .service-details-view-inn-meta {
    flex-direction: column;
    gap: 8px;
  }

  .service-details-view-inn-procedure-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .service-details-view-inn-procedure-price {
    align-self: flex-start;
  }
}

.misvisval-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
}

.misvisval-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  z-index: 1;
}

/* .misvisval-card:hover {
  background: rgba(0, 0, 0, 0.85);
} */

.mvv-content {
  position: relative;
  z-index: 2;
}

.ser-doc-grid {
  display: grid;
  grid-template-columns: 70% 30%;
}

.services-testimonials {
  background-color: skyblue;
  padding: 5rem 1.5rem;
  font-family: "Segoe UI", Roboto, system-ui, sans-serif;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.services-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(6, 147, 253, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(252, 2, 198, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Swiper Styles */
.testimonial-swiper {
  width: 100%;
  padding: 1rem 0.5rem 3rem;
  position: relative;
}

/* .testimonial-card {
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.5rem;
  padding: 3rem 2.5rem;
  box-shadow:
    0 30px 50px -20px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition: all 0.3s ease;
  color: var(--color6);
  position: relative;
  width: 100%;
} */
/* 
.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow:
    0 40px 60px -20px black,
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
} */

.quote-icon {
  font-size: 8rem;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: Georgia, serif;
  font-weight: 700;
  z-index: 1;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.patient-info {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.patient-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.patient-details h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color6);
  margin-bottom: 0.2rem;
}

.patient-details p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.3rem;
}

.rating {
  color: var(--color5);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--color6);
  background: rgba(255, 255, 255, 0.1);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(252, 2, 198, 0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  width: 0.8rem;
  height: 0.8rem;
  transition: all 0.2s;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(135deg, var(--color1), var(--color2));
  width: 2rem;
  border-radius: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .services-testimonials {
    padding: 3rem 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .patient-info {
    flex-direction: column;
    text-align: center;
  }
}

.sptsap .testimonial-card {
  background-color: transparent;
  border: none;
  box-shadow: none;
  /* 
  max-width: 600px; */
}

.my-serv-test {
  background-color: #ffffff;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  width: 100%;
}

.my-serv-test-container {
  max-width: 1200px;
  margin: 0 auto;
}

.my-serv-test-header {
  text-align: center;
  margin-bottom: 40px;
}

.my-serv-test-tag {
  display: inline-block;
  background-color: #0693fd;
  color: white;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 15px;
}

.my-serv-test-header h2 {
  font-size: 32px;
  color: #000000;
  margin-bottom: 10px;
  font-weight: normal;
}

.my-serv-test-header p {
  font-size: 16px;
  color: #666666;
  margin: 0;
}

.my-serv-test-swiper {
  width: 100%;
  padding: 10px 0 10px 0;
}

.my-serv-test-card {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: all 0.2s;
}

.my-serv-test-card:hover {
  border-color: #0693fd;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.my-serv-test-logo {
  max-width: 180px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 0.8;
  transition: all 0.2s;
}

.my-serv-test-card:hover .my-serv-test-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.my-serv-test-footer {
  text-align: center;
  margin-top: 30px;
}

.my-serv-test-footer p {
  font-size: 16px;
  color: #0693fd;
  font-weight: bold;
  margin: 0;
}

/* Swiper styles - minimal */
.my-serv-test-next,
.my-serv-test-prev {
  color: #000000;
  background: #f0f0f0;
  width: 40px;
  height: 40px;
  border-radius: 20px;
}

.my-serv-test-next::after,
.my-serv-test-prev::after {
  font-size: 16px;
}

.my-serv-test-pagination .swiper-pagination-bullet {
  background: #cccccc;
  opacity: 1;
}

.my-serv-test-pagination .swiper-pagination-bullet-active {
  background: #0693fd;
}

@media (max-width: 768px) {
  .my-serv-test {
    padding: 40px 15px;
  }

  .my-serv-test-header h2 {
    font-size: 28px;
  }

  .my-serv-test-card {
    height: 100px;
    padding: 20px 15px;
  }

  .my-serv-test-logo {
    max-width: 140px;
    max-height: 40px;
  }

  .my-serv-test-next,
  .my-serv-test-prev {
    display: none;
  }
}

.sreehan-infra-insu-section {
  background: var(--color6);
  padding: 80px 0;
}

/* INFRASTRUCTURE */

.sreehan-infra-insu-section .sreehan-infra-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sreehan-infra-insu-section .sreehan-infra-content h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--color1);
  margin-bottom: 15px;
}

.sreehan-infra-insu-section .sreehan-infra-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* INSURANCE */

.sreehan-infra-insu-section .sreehan-insu-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color4);
}

.sreehan-infra-insu-section .sreehan-insu-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.sreehan-infra-insu-section .sreehan-insu-slider img {
  max-width: 120px;
  opacity: 0.8;
  transition: 0.3s;
}

.sreehan-infra-insu-section .sreehan-insu-slider img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .sreehan-infra-insu-section .sreehan-infra-content {
    margin-top: 0px;
  }

  .sreehan-infra-insu-section .sreehan-infra-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .sreehan-infra-insu-section .sreehan-infra-content h2 {
    font-size: 24px;
  }

  .sreehan-infra-insu-section .sreehan-insu-title {
    font-size: 24px;
  }
}

.insu-logo img {
  height: 70px;
  object-fit: contain;
  width: 100%;
}

.services-view-images img {
  max-height: 350px;
  object-fit: cover;
  width: 100%;
}
