.hero-section {
  position: relative;
  min-height: 500px;
  color: #fff;
  overflow: hidden;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  padding: 5rem;
  border-radius: 10px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://fhegarty.com/wp-content/uploads/2021/09/inner-banner.jpg') no-repeat center center/cover;
  filter: blur(2px);
  z-index: 1;
}

.card i {
  color: #0d6efd;
}

.lead {
  font-size: 1.6rem;
}







/* Keep nav items in a single row, collapse when not enough space, underline effect included */

/* Add a left margin to each navbar li item for spacing */
/* Gradient Background Animation */
.navbar.bg-primary {
  background: linear-gradient(120deg, #91e1fa, #35c9f7, #7bdff8);
  background-size: 300% 300%;
  animation: gradientFlow 8s ease infinite;
  position: relative;
  overflow: hidden;
   padding-top: 1.5rem;   /* Increase this value for more height */
  padding-bottom: 1.5rem;
}

/* Water Ripple Overlay */
.navbar.bg-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: url('https://www.transparenttextures.com/patterns/waves.png') repeat; /* Replace with your preferred wave texture */
  opacity: 0.1; /* Subtle water effect */
  animation: waveMove 12s linear infinite;
  pointer-events: none; /* Allow clicks to pass through */
}

/* Gradient Flow Animation */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Water Ripple Movement */
@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.navbar-nav .nav-item {
  margin-left: 12px;
  /* Adjust value as needed for desired spacing */
  white-space: nowrap;
  /* Prevent nav item text from wrapping */
}



/* Center-out underline animation, underline matches text width, sits directly below text */
.navbar-nav .nav-link {
  position: relative;
  overflow: visible;
  white-space: nowrap;
  color: #000000 !important;
  font-size: 1.1rem;
  /* Prevent link text from wrapping */
  text-overflow: ellipsis;
  /* Optionally add ellipsis if text is too long */
  max-width: 100%;
  /* Prevent link from overflowing container */
}

/* Pseudo-element for animated underline */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  /* Adjust if you want it closer/farther from text */
  margin: auto;
  height: 2px;
  width: 100%;
  /* Exactly as wide as the text */
  background: #000000;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.navbar-nav .nav-item:hover .nav-link::after,
.navbar-nav .nav-link:focus::after {
  transform: scaleX(1);
}













/* Simple attention-drawing animation for .navbar-brand */
/* Custom Navbar Brand with Centered Image Logo */
.navbar-brand {
  --logo-scale-hover: 1.15;
  --logo-scale-active: 0.95;
  --transition-curve: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glow-intensity: 0.3;
  --hover-transition-duration: 0.3s;
  --unhover-transition-duration: 0.5s;
  
  display: flex;
  align-items: center; /* This centers vertically */
  height: 100%; /* Take full height of navbar */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margins */
}

.navbar-brand img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: 
    transform var(--unhover-transition-duration) var(--transition-curve),
    filter var(--unhover-transition-duration) var(--transition-curve);
  
  animation: logoPopIn 0.8s var(--transition-curve) both;
}

/* Rest of your existing hover/active effects */
.navbar-brand:hover img {
  transition: 
    transform var(--hover-transition-duration) var(--transition-curve),
    filter var(--hover-transition-duration) var(--transition-curve);
  transform: scale(var(--logo-scale-hover)) translateY(-2px);
  filter: 
    drop-shadow(0 0 8px rgba(255, 255, 255, var(--glow-intensity)))
    drop-shadow(0 0 16px rgba(255, 255, 255, calc(var(--glow-intensity) - 0.15)));
  z-index: 1;
}

.navbar-brand:active img {
  transform: scale(var(--logo-scale-active)) translateY(1px);
  transition-duration: 0.1s;
}

/* Ensure navbar has consistent height */
.navbar {
  min-height: 60px; /* Adjust this to match your navbar height */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 36px;
  }
  
  .navbar {
    min-height: 56px; /* Slightly smaller on mobile */
  }
}


















/* Section fade-in from bottom */
@keyframes contactFadeInUp {
  from {
    opacity: 0;
    transform: translateY(48px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-animate {
  animation: contactFadeInUp 0.8s cubic-bezier(.4, 0, .2, 1) both;
}

/* Heading fade-in from top */
.contact-animate h2 {
  animation: contactFadeInDown 0.7s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes contactFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Input focus: gentle highlight effect */
.contact-animate .form-control:focus {
  border-color: #fff;
  background: #e3f2fd;
  box-shadow: 0 0 0 0.16rem #3fa4f780;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

/* Button hover: subtle lift and color */
.contact-animate .btn[type="submit"]:hover,
.contact-animate .btn[type="submit"]:focus {
  background: #4ab1f7 !important;
  color: #fff !important;
  box-shadow: 0 6px 22px 0 #1565c080;
  transform: translateY(-2px) scale(1.04);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}

/* Add margin-top for the contact form section */

.contact-section-anim {
  margin-top: 10rem;
  /* or use any value you prefer */
}

.contact-section-animmargintop {
  margin-top: 0.5rem !important;
}


.about-heading-container {
  width: 90%;
  color: #343a40;
  justify-content: center;
}

.about-heading-title {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .04em;
  color: #212529;
}

.about-heading-line {
  border: none;
  border-top: 2px solid #343a40;
  height: 0;
  opacity: 1;
}

@media (max-width: 575px) {
  .about-heading-title {
    font-size: 1.2rem;
  }

  .about-heading-line {
    margin-top: 0.3rem;
  }
}

.about-who-we-are-img {
  max-width: 50%;
  max-height: 60%;
  object-fit: cover;
  border: 1px solid #343a40;
  border-radius: 8px;
}

.about-who-we-are-card .card-text {
  margin-left: 3rem;
  margin-right: 3rem;
}

@media (max-width: 767.98px) {
  .about-who-we-are-card .card-text {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

@media (max-width: 575.98px) {
  .about-who-we-are-card .card-text {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.about-mission-card .card-text {
  margin-left: 2rem;
  margin-right: 2rem;
}

@media (max-width: 767.98px) {
  .about-mission-card .card-text {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

@media (max-width: 575.98px) {
  .about-mission-card .card-text {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-left: 10rem;
}

.feature-list li {
  margin-bottom: 1.1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: flex-start;
}

.feature-list .checkmark {
  color: #28a745;
  font-weight: bold;
  margin-right: 0.7rem;
  font-size: 1.25em;
  line-height: 1;
}

.service-container {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}

.service-list li {
  margin-bottom: 1.3rem;
  font-size: 1.08rem;
}

.service-list span {
  display: block;
  font-weight: bold;
  margin-bottom: 0.3rem;
  color: #1d3557;
}



.contact-card {
  border: 2px solid #acb5c2;
  max-width: 540px;
  margin: 0 auto;
  border-radius: 1rem;
}

.brand-highlight {
  color: #0d6efd;
}



.contact-card {
  border: 2px solid #b5b9be;
  max-width: 76%;
  margin: 0 auto;
  border-radius: 1rem;
}

.brand-highlight {
  color: #0d6efd;
}

.contact-list {

  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.contact-list li {
  margin-left: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-align: left;
}
@media (max-width: 576px) {
  .contact-list li {
    font-size: 0.7rem; /* adjust this size as needed */
  }
}

.contact-list a.link-primary {
  font-weight: 500;
}

html {
  scroll-behavior: smooth;
}



.testimonial-section {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(60, 72, 88, 0.08);
}

.section-title {
  color: #6c9ee7;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center !important;
}

.brand {
  color: #1c4076;
}



.section-title {
  color: #0d6efd;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 2rem;
  text-align: center !important;
}

.brand {
  color: #234;
  font-weight: 700;
}

.testimonials-row {
  margin-top: 1rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 1.2rem;
  border: 1.5px solid #e3eaf1;
  box-shadow: 0 6px 24px rgba(60, 72, 88, 0.07);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: box-shadow 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(13, 110, 253, 0.12);
  transform: translateY(-3px) scale(1.03);
}

.testimonial-text {
  font-size: 1.04rem;
  color: #2b2e3b;
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.testimonial-author {
  text-align: right;
  color: #02108f;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .01em;
}

@media (max-width: 991px) {
  .testimonial-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .testimonial-card {
    padding: 1.3rem 0.9rem;
  }

}


.about-card {
  background: #fff;
  border-radius: 1.2rem;
  border: 1.5px solid #e3eaf1;
  box-shadow: 0 6px 24px rgba(60, 72, 88, 0.08);
}

.about-title {
  color: #0d6efd;
  font-weight: 700;
  letter-spacing: .01em;
}

.about-highlight {
  color: #1c4076;
  font-weight: 600;
}



.about-card {
  background: #fff;
  border-radius: 1.2rem;
  border: 1.5px solid #e3eaf1;
  box-shadow: 0 6px 24px rgba(60, 72, 88, 0.08);
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(.4, 0, .2, 1), transform 0.25s;
  position: relative;
  opacity: 0;
  animation: fadeInLeft 1.1s cubic-bezier(.4, 0, .2, 1) 0.1s both;
}

.about-card:hover {
  box-shadow: 0 10px 36px rgba(13, 110, 253, 0.11), 0 1.5px 8px rgba(60, 72, 88, 0.07);
  transform: translateY(-4px) scale(1.01);
}

.about-title {
  color: #0d6efd;
  font-weight: 700;
  letter-spacing: .01em;
  position: relative;
  z-index: 1;
}

.about-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd 60%, #e3f0fc 100%);
  border-radius: 2px;
  margin-top: 8px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.about-highlight {
  color: #1c4076;
  font-weight: 600;
}

.about-p-12 {
  margin-left: 1.5rem;
  margin-top: 2rem;
  margin-right: 3.2rem;
  text-align: justify;

}

.about-mission-card {
  background: linear-gradient(135deg, #e3f0fc 0%, #f8fafb 100%);
  border-radius: 1.2rem;
  border: 1.5px solid #e3eaf1;
  box-shadow: 0 4px 16px rgba(13, 110, 253, 0.09);
  overflow: hidden;
  transition: box-shadow 0.4s cubic-bezier(.4, 0, .2, 1), transform 0.25s;
  position: relative;
  opacity: 0;
  animation: fadeInRight 1.1s cubic-bezier(.4, 0, .2, 1) 0.2s both;
}

.about-mission-card:hover {
  box-shadow: 0 12px 26px rgba(13, 110, 253, 0.15);
  transform: translateY(-2px) scale(1.015);
}

.mission-title {
  color: #1c4076;
  font-weight: 700;
  letter-spacing: .01em;
  position: relative;
  z-index: 1;
}

.mission-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #1c4076 60%, #e3f0fc 100%);
  border-radius: 2px;
  margin-top: 7px;
  margin-bottom: 15px;
  opacity: 0.7;
}

@media (max-width: 991px) {

  .about-card,
  .about-mission-card {
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 767px) {

  .about-card,
  .about-mission-card {
    padding: 1.2rem 0.9rem;
  }

  .about-title,
  .mission-title {
    font-size: 1.2rem;
  }
}

/* Fade-in animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}



.experts-title {
  color: #164b98;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-shadow: 0 2px 10px rgba(22, 75, 152, 0.06);
}

.experts-row {
  min-height: 420px;
}

.expert-card {
  background: #fff;
  border-radius: 1.3rem;
  border: 1.5px solid #e1e8f0;
  box-shadow: 0 8px 28px rgba(60, 72, 88, 0.13);
  padding: 2.2rem 1.6rem 1.6rem 1.6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s cubic-bezier(.4, 0, .2, 1), transform 0.18s;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.1s cubic-bezier(.4, 0, .2, 1) forwards;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.expert-card:hover {
  box-shadow: 0 16px 48px rgba(22, 75, 152, 0.13), 0 1.5px 8px rgba(60, 72, 88, 0.07);
  transform: translateY(-8px) scale(1.02);
}

.expert-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.6rem auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e3f0fc;
  box-shadow: 0 2px 8px rgba(13, 110, 253, 0.12);
  background: linear-gradient(135deg, #e3f0fc 0%, #164b98 120%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.expert-name {
  font-weight: 700;
  color: #164b98;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.expert-role {
  color: #0066cc;
  font-size: 1rem;
  font-weight: 600;
}

.expert-desc {
  font-size: 1.03rem;
  color: #2b2e3b;
  margin-top: 0.5rem;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .expert-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .expert-card {
    padding: 1.3rem 1rem;
    font-size: 0.99rem;
    height: auto;
  }

  .experts-title {
    font-size: 1.4rem;
  }
}

/* Animation keyframes and delays */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInDown {
  animation: fadeInDown 1s cubic-bezier(.4, 0, .2, 1) 0.05s both;
}

.animate-fadeInUp {
  animation: fadeInUp 1.1s cubic-bezier(.4, 0, .2, 1) both;
}

.delay-1 {
  animation-delay: 0.2s !important;
}

.delay-2 {
  animation-delay: 0.45s !important;
}

.delay-3 {
  animation-delay: 0.65s !important;
}


.services-title {
  color: #164b98;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-shadow: 0 2px 10px rgba(22, 75, 152, 0.06);
}

.services-row {
  min-height: 420px;
}

.service-card {
  background: #fff;
  border-radius: 1.3rem;
  border: 1.5px solid #e1e8f0;
  box-shadow: 0 8px 28px rgba(60, 72, 88, 0.13);
  padding: 2rem 1.3rem 1.5rem 1.3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s cubic-bezier(.4, 0, .2, 1), transform 0.18s;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.1s cubic-bezier(.4, 0, .2, 1) forwards;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 16px 48px rgba(22, 75, 152, 0.13), 0 1.5px 8px rgba(60, 72, 88, 0.07);
  transform: translateY(-8px) scale(1.02);
}

.service-icon-plain {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 2.05rem;
  color: #164b98;
  background: none;
  border: none;
}

.service-name {
  font-weight: 700;
  color: #164b98;
  font-size: 1.13rem;
  margin-bottom: 0.45rem;
}

.service-desc {
  font-size: 1.02rem;
  color: #2b2e3b;
  margin-top: 0.3rem;
  flex-grow: 1;
}

@media (max-width: 991px) {
  .service-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 767px) {
  .service-card {
    padding: 1.3rem 1rem;
    font-size: 0.99rem;
    height: auto;
  }

  .services-title {
    font-size: 1.4rem;
  }
}

/* Animation keyframes and delays */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInDown {
  animation: fadeInDown 1s cubic-bezier(.4, 0, .2, 1) 0.05s both;
}

.animate-fadeInUp {
  animation: fadeInUp 1.1s cubic-bezier(.4, 0, .2, 1) both;
}

.delay-1 {
  animation-delay: 0.16s !important;
}

.delay-2 {
  animation-delay: 0.32s !important;
}

.delay-3 {
  animation-delay: 0.48s !important;
}

.delay-4 {
  animation-delay: 0.64s !important;
}

.delay-5 {
  animation-delay: 0.80s !important;
}

.delay-6 {
  animation-delay: 0.96s !important;
}

.delay-7 {
  animation-delay: 1.12s !important;
}


.why-choose-card {
  background: #fff;
  border-radius: 1.6rem;
  padding: 2.6rem 0 2.3rem 0;
  max-width: 670px;
  border: 1.5px solid #e1e8f0;
  box-shadow: 0 8px 28px rgba(60, 72, 88, 0.13);
  transition: box-shadow 0.3s cubic-bezier(.4, 0, .2, 1);
}

.why-choose-title {
  color: #164b98;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-shadow: 0 2px 10px rgba(22, 75, 152, 0.06);
  margin-bottom: 1.3rem;
  font-size: 2rem;
}

.why-choose-list {
  margin: 0;
  padding: 0;
}

.why-choose-item {
  display: flex;
  align-items: left;
  font-size: 1.10rem;
  background: rgba(230, 239, 255, 0.28);
  border-radius: 0.8rem;
  margin-bottom: 1.1rem;
  padding: 1.05rem 1.1rem;
  color: #0b0d14;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(22, 75, 152, 0.04);
  opacity: 0;
  transform: translateX(-32px);
  animation: fadeInLeft 1s cubic-bezier(.4, 0, .2, 1) forwards;
}

.why-choose-item:last-child {
  margin-bottom: 0;
}



@media (max-width: 600px) {
  .why-choose-card {
    padding: 1.1rem 0.4rem 1.1rem 0.4rem;
  }

  .why-choose-title {
    font-size: 1.25rem;
  }

  .why-choose-item {
    font-size: 0.97rem;
    padding: 0.7rem 0.7rem;
  }


}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeInDown {
  animation: fadeInDown 1s cubic-bezier(.4, 0, .2, 1) 0.05s both;
}

.animate-fadeInUp {
  animation: fadeInUp 1.1s cubic-bezier(.4, 0, .2, 1) both;
}

.animate-fadeInLeft {
  animation: fadeInLeft 1s cubic-bezier(.4, 0, .2, 1) both;
}

.delay-1 {
  animation-delay: 0.22s !important;
}

.delay-2 {
  animation-delay: 0.34s !important;
}

.delay-3 {
  animation-delay: 0.46s !important;
}

.delay-4 {
  animation-delay: 0.58s !important;
}

.delay-5 {
  animation-delay: 0.70s !important;
}

.delay-6 {
  animation-delay: 0.82s !important;
}

.about-section {
 
  position: relative;
  overflow: hidden;
}

.about-heading-container {
  max-width:100%;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInDown 1.2s cubic-bezier(.4, 0, .2, 1) both;
}

.about-heading-line {
  border: none;
  border-top: 2.5px solid #164b98;
  opacity: 0.25;
  height: 0;
}

.about-heading-title {
  font-weight: 800;
  color: #164b98;
  letter-spacing: 0.02em;
  font-size: 2.2rem;
  padding: 0 0.6em;
  background: #f7fafc;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(22, 75, 152, 0.07);
}

.about-content {
  animation: fadeInLeft 1.3s cubic-bezier(.4, 0, .2, 1) both;
}

.about-list {
  margin-top: 1.2rem;
  padding-left: 0;
}

.about-list li {
  display: flex;
  align-items: center;
  font-size: 1.09rem;
  color: #22305d;
  margin-bottom: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.about-list-icon {
  color: #164b98;
  font-size: 1.2rem;
  margin-right: 0.7rem;
  flex-shrink: 0;
}

.about-img {
  max-width: 320px;
  min-width: 120px;
  border-radius: 1.2rem;
  box-shadow: 0 8px 24px rgba(22, 75, 152, 0.12);
  animation: fadeInRight 1.3s cubic-bezier(.4, 0, .2, 1) both;
}

@media (max-width: 991px) {
  .about-heading-title {
    font-size: 1.5rem;
    padding: 0 0.3em;
  }

  .about-img {
    max-width: 160px;
  }

  .about-content {
    padding: 1.1rem 0.9rem;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .about-heading-container {
    max-width: 95vw;
  }

  .about-img {
    max-width: 80vw;
    min-width: 90px;
    margin-top: 1.1rem;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fadeInDown {
  animation: fadeInDown 1.2s cubic-bezier(.4, 0, .2, 1) both;
}

.animate-fadeInLeft {
  animation: fadeInLeft 1.3s cubic-bezier(.4, 0, .2, 1) both;
}

.animate-fadeInRight {
  animation: fadeInRight 1.3s cubic-bezier(.4, 0, .2, 1) both;
}


/* Make the navbar sticky at the top */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  /* Above most content, below modals (Bootstrap uses 1050 for sticky navbars) */
}


/* Professional FAQ Animation and Customization */
.faq-animated {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12), 0 1.5px 2px rgba(44, 62, 80, 0.04);
  animation: faqFadeIn 1s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes faqFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    box-shadow: 0 0px 0px rgba(44, 62, 80, 0.04);
  }

  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 38px rgba(44, 62, 80, 0.18);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12), 0 1.5px 2px rgba(44, 62, 80, 0.04);
  }
}

.faq-animated .accordion-item {
  border-radius: 0.7rem;
  overflow: hidden;
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.05);
  transition: box-shadow 0.3s;
}

.faq-animated .accordion-item:focus-within,
.faq-animated .accordion-item.active,
.faq-animated .accordion-item.show {
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.13);
}

.faq-animated .accordion-button {
  background: linear-gradient(90deg, #f8fafc 0%, #e3ebf6 100%);
  color: #26547c;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, font-size 0.2s;
}

.faq-animated .accordion-button:not(.collapsed) {
  background: #e3ebf6;
  color: #1b2845;
  font-size: 1.18rem;
  box-shadow: 0 3px 18px rgba(44, 62, 80, 0.07);
}

.faq-animated .accordion-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #4fc3f7;
}

.faq-animated .accordion-body {
  
  font-size: 1rem;
  color: #2d3f54;
  border-top: 1px solid #e3ebf6;
  animation: accordionBodyFadeIn 0.45s cubic-bezier(0.3, 0.7, 0.4, 1);
}

@keyframes accordionBodyFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.faq-animated h2 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.02em;
}

@media (max-width: 576px) {
  .faq-animated {
    padding: 1.2rem 0.5rem;
  }

  .faq-animated .accordion-button {
    font-size: 0.98rem;
  }
}



@media (max-width: 991.98px) {
  .navbar>.container {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding-left: 0;
  }

  .navbar-brand {
    margin-left: 0 !important;
    margin-right: 0.5rem;
  }

  .navbar-toggler {
    margin-right: 0 !important;
    margin-left: auto;
    /* pushes toggler next to brand, then nav links to right */
    order: unset;
    width: auto !important;
    align-self: center !important;
  }
}














#pro-landing-content {
  background: #fff;
  border-top: 1px solid #eff3f7;
  border-bottom: 1px solid #eff3f7;
  margin-top: 1rem;
}

.pro-landing-box {
  border-radius: 1.5rem;
  background: #f8fafc;
  box-shadow: 0 6px 32px 0 rgba(30, 60, 114, 0.08);
  padding: 2rem 1rem;
  margin-bottom: 0;
  animation: proLandingFadeInUp 1.1s cubic-bezier(.21, .68, .43, 1.08) 0.15s both;
}

@keyframes proLandingFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pro-landing-card {
  border: none;
  border-radius: 1.1rem;
  box-shadow: 0 2px 18px 0 rgba(33, 147, 176, 0.06);
  background: #fff;
  transition: transform 0.18s, box-shadow 0.18s;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1rem;
}

.pro-landing-card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 24px 0 rgba(33, 147, 176, 0.13);
}

.pro-landing-card .display-6 {
  font-size: 2.3rem;
  line-height: 1;
}

.pro-landing-card h5 {
  color: #2186b0;
  font-size: 1.13rem;
  font-family: 'Montserrat', sans-serif;
}

.pro-landing-card ul li {
  margin-bottom: 0.38rem;
  font-size: 1.01rem;
  color: #3a3a3a;
}

.pro-landing-card .text-muted {
  font-size: 0.93rem;
  margin-bottom: 0.58rem;
}

@media (max-width: 991.98px) {
  .pro-landing-box {
    padding: 1rem 0.3rem;
  }

  .pro-landing-card {
    min-height: 330px;
  }
}

@media (max-width: 767.98px) {
  .pro-landing-card {
    min-height: unset;
  }

  #pro-landing-content .row.g-4>div[class*='col-'] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


























/* Pricing Plan Section Styles */
/* ------------------------------
   Unified Palette & Font Styles
------------------------------ */

/* ------------------------------
   Pricing Plan Section Styles
------------------------------ */
#pricing-plan-section {
  background: #f2f7fb;
  border-top: 1px solid #e3eaf5;
  border-bottom: 1px solid #e3eaf5;
}

.pricing-plan-box {
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(25, 118, 210, 0.09);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;

  position: relative;
  z-index: 2;
  animation: pricingFadeUp 1.2s cubic-bezier(.21, .68, .43, 1.08) 0.10s forwards;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
}

@keyframes pricingFadeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pricing-title {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #1976d2;
  letter-spacing: -1px;
  margin-bottom: 0.7rem;
}

.pricing-icon-burst {
  display: inline-block;
  background: #e3f2fd;
  border-radius: 50%;
  box-shadow: 0 0 0 8px #fff8, 0 2px 12px #1976d244;
  padding: 0.3em 0.45em;
  margin-bottom: 0.5rem;
}

.pricing-highlight {
  background: #e3f2fd;
  color: #1976d2;
  font-size: 2rem;
  font-family: 'Lato', Arial, sans-serif;
  border-radius: 1.4rem;
  display: inline-block;
  padding: 0.20em 1.2em;
  box-shadow: 0 2px 10px rgba(25, 118, 210, 0.06);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.pricing-subtitle {
  color: #34495e;
  font-size: 1.13rem;
  margin-bottom: 1.4rem;
  font-family: 'Lato', Arial, sans-serif;
}

.pricing-plan-card {
  background: #f7fafc;
  border-radius: 1rem;
  box-shadow: 0 2px 16px rgba(25, 118, 210, 0.07);
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1px solid #e3eaf5;
}

.pricing-plan-card:hover {
  box-shadow: 0 8px 24px 0 rgba(25, 118, 210, 0.13);
  transform: translateY(-4px) scale(1.015);
}

.pricing-included {
  color: #1976d2;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.13rem;
  letter-spacing: 0.2px;
}

.pricing-list li {
  font-size: 1.06rem;
  margin-bottom: 0.45rem;
  color: #222;
  font-family: 'Lato', Arial, sans-serif;
  position: relative;
  padding-left: 1.2em;
}

.pricing-list li::before {
  content: '';
  display: inline-block;
  background: #1976d2;
  border-radius: 50%;
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.5em;
  position: absolute;
  left: 0;
  top: 0.45em;
  opacity: 0.13;
}

.pricing-discuss {
  background: #fffbea;
  color: #b28704;
  font-weight: 700;
  font-size: 1.08rem;
  font-family: 'Lato', Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(197, 170, 0, 0.06);
  letter-spacing: 0.04em;
  border: 1px solid #ffe082;
}

.btn-gradient {
  background: #1976d2;
  color: #fff !important;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.13rem;
  letter-spacing: 0.6px;
  border: none;
  box-shadow: 0 4px 18px rgba(25, 118, 210, 0.13);
  transition: background 0.13s, transform 0.13s, box-shadow 0.13s;
  position: relative;
  overflow: hidden;
}

.btn-gradient:hover,
.btn-gradient:focus {
  background: #115293;
  color: #fff;
  box-shadow: 0 8px 32px rgba(17, 82, 147, 0.16);
  transform: translateY(-2px) scale(1.04);
}

.glow-on-hover {
  box-shadow: 0 0 0 0 #ffc10755;
  animation: glowPulse 2.1s infinite alternate;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 0 0 #ffc10733;
  }

  100% {
    box-shadow: 0 0 18px 4px #ffc10766;
  }
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .pricing-plan-box {
    padding: 1.1rem 0.4rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .pricing-plan-card {
    padding: 0.3rem;
  }
}

@media (max-width: 767.98px) {
  .pricing-plan-box {
    padding: 0.7rem 0.2rem;
  }

  .pricing-title {
    font-size: 1rem;
  }

  .pricing-highlight {
    font-size: 1.1rem;
    padding: 0.15em 0.7em;
  }
}







.custom-footer {
  background: #222c36;
  color: #e3f2fd;
  padding: 1rem 0.5rem 0.5rem 0.5rem;
  /* Reduced padding */
  text-align: center;
  position: relative;
  overflow: hidden;

  animation: slideUpFooter 1.2s cubic-bezier(.21, .68, .43, 1.08);
}

@keyframes slideUpFooter {
  from {
    opacity: 0;
    transform: translateY(80px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35em;
  /* Less gap */
}

.brand {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.13rem;
  /* Smaller */
  letter-spacing: 1.2px;
  color: #fff;
  margin-bottom: 0.2em;
  /* Less space */
  animation: fadeInBrand 1.1s 0.4s both;
}

@keyframes fadeInBrand {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-links {
  display: flex;
  gap: 1em;
  /* Less gap */
  margin-bottom: 0;
  /* Remove extra margin */
  animation: fadeInLinks 1.1s 0.7s both;
}

@keyframes fadeInLinks {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.footer-icon {
  color: #e3f2fd;
  font-size: 1.1rem;
  /* Smaller */
  transition: color 0.2s, transform 0.21s;
  border-radius: 50%;
  padding: 0.18em;
  /* Less padding */
  background: rgba(25, 118, 210, 0.08);
  box-shadow: 0 1px 8px #1976d211;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-icon:hover {
  color: #1976d2;
  background: #e3f2fd;
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 2px 12px #1976d244;
}

.footer-copy {
  font-size: 0.87rem;
  /* Smaller font */
  color: #b5cbe8;
  margin-top: 0.2em;
  /* Less space */
  letter-spacing: 0.3px;
  animation: fadeInCopy 1.1s 1s both;
}

@keyframes fadeInCopy {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Back to top button */
.back-to-top {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 2rem;
  /* Smaller */
  height: 2rem;
  /* Smaller */
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 2px 10px #1976d244;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  animation: bounceInBtn 1.1s 0.8s both;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover {
  background: #1561a8;
  transform: scale(1.1);
}

@keyframes bounceInBtn {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(30px);
  }

  70% {
    opacity: 1;
    transform: scale(1.1) translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .footer-links {
    gap: 0.7em;
  }

  .back-to-top {
    right: 0.3rem;
    bottom: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.82rem;
  }

  .brand {
    font-size: 0.98rem;
  }
}











.banner-container .main-line {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.banner-container .sub-line {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.banner-container .desc {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}













/* Unique, responsive 3D flip card with hover animation and no hidden text */

/* Unique, responsive cards without flip animation */

/* Container for the section (optional, for padding/background) */
/* Unique, responsive cards showing only the back card */

/* Container for the section (optional, for padding/background) */
#unique-cards-section {
  background: #fff;
  padding: 2.5rem 0;
}

/* Responsive container for cards */
.u-cards-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Box for card grid */
.u-cards-box {
  border-radius: 1.5rem;
  background: #f8fafc;
  box-shadow: 0 6px 32px 0 rgba(30, 60, 114, 0.08);
  padding: 2rem 1rem;
}

.u-row.u-g-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.u-col-md-6 {
  flex: 0 0 48%;
  max-width: 48%;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .u-col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Card setup - showing only back card */
.u-flip-card {
  width: 100%;
  height: auto;
  min-height: 350px;
  position: relative;
  background: transparent;
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  padding-bottom: 32px;
  box-sizing: border-box;
}

.u-flip-card-inner {
  width: 100%;
  min-height: 390px;
  position: relative;
  height: 100%;
}

/* Hide front card completely */
.u-flip-card-front {
  display: none !important;
}

/* Show only back card with full styling */
.u-flip-card-back {
  position: relative;
  width: 100%;
  min-height: 350px;
  border-radius: .5rem;
  background: linear-gradient(120deg, #f0faff 70%, #eaf3fa 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 2rem 2rem;
  box-sizing: border-box;
  box-shadow: 0 6px 32px rgba(21, 105, 224, 0.10);
  overflow: visible;
  word-break: break-word;
}

/* Typography */
.u-fw-bold {
  font-weight: 700;
}

.u-mb-0 {
  margin-bottom: 0;
}

.u-mb-2 {
  margin-bottom: 0.8rem;
}

.u-icon-large {
  font-size: 2.2rem;
}

.u-flip-card-back h5 {
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}

.u-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.05rem;
  width: 100%;
  max-width: 100%;
}

.u-list li {
  margin-bottom: 0.6em;
  color: #1976d2;
  font-weight: 500;
  padding-left: 0.5em;
  position: relative;
  word-break: break-word;
}

.u-list li::before {
  content: "•";
  color: #1569e0;
  font-weight: bold;
  margin-right: .6em;
  font-size: 1.1em;
}

/* Layout utility */
.u-text-start {
  text-align: left !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .u-flip-card,
  .u-flip-card-inner,
  .u-flip-card-back {
    min-height: 340px;
  }

  .u-flip-card-back {
    padding: 2rem 1rem 2rem 1rem;
  }
}

@media (max-width: 700px) {
  .u-cards-box {
    padding: 1rem 0.3rem;
  }

  .u-flip-card,
  .u-flip-card-inner,
  .u-flip-card-back {
    min-height: 255px;
  }

  .u-flip-card-back {
    padding: 1.4rem 0.5rem 1.4rem 0.5rem;
  }

  .u-icon-large {
    font-size: 1.4rem;
  }

  .u-flip-card-back h5 {
    font-size: 1rem;
  }

  .u-list {
    font-size: 0.91rem;
  }
}

/* Ultra-small screens */
@media (max-width: 400px) {
  .u-flip-card,
  .u-flip-card-inner,
  .u-flip-card-back {
    min-height: 175px;
  }

  .u-flip-card-back {
    padding: 1rem 0.2rem 1rem 0.2rem;
  }
}

/* Text styling for back card only */
.u-flip-card-back {
  color: hwb(214 1% 6%) !important;
  text-shadow: 0 1px 2px #fff9, 0 0 1px #fff8;
}

.u-flip-card-back h5,
.u-list,
.u-list li {
  color: hwb(214 1% 6%) !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.918);
}

.u-icon-large {
  color: hwb(214 1% 6%) !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.808);
}








#ppopup-backdrop {
  display: none;
  position: fixed;
  z-index: 99998;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(30, 30, 30, 0.55);
}

#ppopup-modal {
  display: none;
  position: fixed;
  z-index: 99999;

  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  max-width: 600px;
  width: 95vw;
  max-height: 90vh;
  overflow-y: scroll;
  /* allow scrolling */
  scrollbar-width: none;
  /* Firefox: hide scrollbar */
  -ms-overflow-style: none;
  /* IE and Edge: hide scrollbar */
  animation: ppopup-fade-in 0.3s;
  padding: 1.5rem;
}

#ppopup-modal::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera: hide scrollbar */
}

@keyframes ppopup-fade-in {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

#ppopup-close {
  position: sticky;
  /* changed from absolute */
  right: 0.5rem;
  /* or 8px */
  top: 0.5rem;
  /* or 8px */
  background: none;
  border: none;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  z-index: 100001;
  transition: color .15s;
  float: right;
  /* helps with layout in some cases */
  margin-left: auto;
  /* for flex layouts */
}

#ppopup-close:hover {
  color: #333;
}

.ppopup-glassy-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.ppopup-btn-gradient {
  background: linear-gradient(90deg, #1f8ef1 0%, #5e72e4 100%);
  color: #fff;
  border: none;
  transition: box-shadow .18s;
  box-shadow: 0 2px 16px rgba(94, 114, 228, .13);
  padding: 2px 4px 2px 4px;
}

.ppopup-btn-gradient:hover,
.ppopup-btn-gradient:focus {
  box-shadow: 0 4px 24px rgba(31, 142, 241, .17);
  color: #fff;
  padding: 2px 4px 2px 4px;
}

.ppopup-glow-on-hover {
  box-shadow: 0 0 6px 0 #5e72e4;
  transition: box-shadow .18s;
}

.ppopup-glow-on-hover:hover {
  box-shadow: 0 0 22px 0 #1f8ef1;
}

@media (max-width: 700px) {
  #ppopup-modal {
    max-width: 98vw;
    padding: 0.7rem;
  }

  #ppopup-close {
    right: 8px;
    top: 8px;
    font-size: 1.7rem;
  }
}

@media (max-width: 420px) {
  #ppopup-modal {
    padding: 0.2rem;
  }
}







.lato-heading {
  font-family: "Arial Rounded MT Bold", "Arial Rounded MT", Arial, sans-serif;
  color: #e9f5fa; /* Bootstrap Primary Blue */
}






 .custom-card {
      border: none;
      border-radius: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background-color: #ffffff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;

      /* Force square shape */
      aspect-ratio: 1 / 1;

      /* Optional min width/height to maintain shape on smaller screens */
      min-width: 200px;
      min-height: 200px;
    }

    .custom-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .card-title-custom {
      font-weight: bold;
      color: #006efe;
      text-align: center;
    }

    .card-list {
      padding-left: 1.2rem;
    }

    .card-list li {
      margin-bottom: 0.5rem;
      font-size: 1rem;
    }

    .service-section {
      padding: 60px 0;
    }

    @media (min-width: 992px) {
      .card-container {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 20px;
      }
    }

    


body {
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 0;
}

/* Single, faded background image */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('207421aa24c828e73a45954b42ef4e22.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  opacity: 0.115; /* adjust from 0.1 to 0.3 as needed */
  z-index: -1;
}