@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --primary-color: #525fe2;
  --secondary-color: #2939d7;
  --default-color: #292929;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  /* font-family: "Open Sans", sans-serif; */
  font-family: "Inter", sans-serif;
  font-style: normal;
  pointer-events: auto; /* ensure clicks work */
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--default-color);
}

.container {
  position: relative;
}

main.main {
  position: relative; /* Ensure the parent has a relative position */
  overflow: hidden; /* This can help prevent the image from overflowing */
}
img {
  max-width: 100%;
  height: auto;
}

/* Remove white flash on hero load */
#hero {
  background-color: #000 !important; /* any dark color matching your hero */
  overflow: hidden;
}

#hero img,
#hero video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main.main::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: url(../gallery/page-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 1;
  z-index: -2;
  top: 0;
  left: 0;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: #fff;
  transition: all 0.5s;
  z-index: 997;
}

.header .topbar {
  background-color: var(--primary-color);
  color: var(--contrast-color);
  height: 40px;
  padding: 0;
  transition: all 0.5s;
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
  box-shadow: 0 0 20px #002d77;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 90px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--primary-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 5px 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--primary-color), transparent 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    margin-right: 35px;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    overflow: visible;
  }

  .navmenu li {
    position: relative;
  }
  .navmenu a.active {
    border: 1px solid;
    color: #ffffff;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background: var(--primary-color);
  }
  .navmenu a.active:hover {
    background-color: #fff;
    color: var(--primary-color);
  }
  .navmenu a,
  .navmenu a:focus {
    padding: 6px 15px;
    font-size: 16px;
    color: var(--default-color);
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    letter-spacing: 0.9px;
  }

  .navmenu a:hover {
    background-color: #fff;
    color: var(--primary-color) !important;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu .custom-width ul {
    width: 128px;
  }

  .navmenu .dropdown ul {
    border-top: 2px solid var(--primary-color);
    margin: 0;

    background: var(--secondary-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: #fff;
    font-weight: 300;
    border-bottom: 1px solid #ffffff36;
  }

  .navmenu .dropdown ul li:last-child a {
    border-bottom: none;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile Premium Glass Style (No Scrollbar) */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--primary-color);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-right: 27px;
  }

  .mobile-nav-toggle:hover {
    transform: scale(1.1);
    color: var(--secondary-color);
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 15px 20px 15px;
    padding: 15px 0;
    margin: 0;
    border-radius: 20px;
    background: #fff; /* primary-color glass */
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: visible;
    transition: all 0.35s ease-in-out;
    z-index: 9998;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    color: var(--accent-color);
    font-weight: 400;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--accent-color);
    padding: 14px 22px;
    font-family: var(--default-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background: rgb(82 95 226);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-left: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(248, 249, 250, 0.15);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--secondary-color);
    color: var(--accent-color);
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 12px 0;
    margin: 12px 20px;
    background: rgba(248, 249, 250, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.35s ease-in-out;
    color: var(--text-color);
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(16, 36, 76, 0.05);
    margin-left: 10px;
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
           background-color: rgb(82 95 226);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 36px;
    top: 16px;
    right: 16px;
    margin-right: 0;
    z-index: 9999;
    transition: transform 0.3s ease;
  }

  .mobile-nav-active .mobile-nav-toggle:hover {
    transform: rotate(90deg);
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    overflow: visible;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px) saturate(180%);
    transition: all 0.35s ease-in-out;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
      max-height: 80vh;
    overflow-y: auto;   /* Enable scroll */
    padding-right: 10px; /* Avoid cutoff */
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  color: #fff;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--primary-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero .carousel {
  width: 100%;
  min-height: 70vh;
  padding: 0;
  margin: 0;
  position: relative;
}

@media (max-height: 500px), (max-width: 580px) {
  .hero .carousel {
    min-height: 100vh;
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero .container {
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  position: relative;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-top: 4px solid var(--primary-color);
  z-index: 3;
}

@media (max-width: 1200px) {
  .hero .container {
    margin-left: 50px;
    margin-right: 50px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .btn-get-started {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.3s;
  margin: 10px;
  border-radius: 5px;
  color: var(--contrast-color);
  background: var(--primary-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--primary-color) 90%, white 15%);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--primary-color);
  color: var(--contrast-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--contrast-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--primary-color);
}

/* Show dropdown on hover */
.navmenu .dropdown:hover ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
  transition: opacity 0.3s ease, top 0.3s ease;
}

/* Default state of list items */
.navmenu .dropdown ul li {
  opacity: 0;
  transform: translateY(15px);
  transition: transform 0.5s ease, opacity 0.5s ease, rotate 0.5s ease;
}

/* On hover, reset transformations and fade in */
.navmenu .dropdown:hover ul li {
  opacity: 1;
  transform: translateY(0) rotate(0) scale(1) skewX(0);
}
/* Default state for <a> (No gradient initially) */
.navmenu .dropdown ul li a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #fff; /* Default text color */
  position: relative;
  background: none; /* No background initially */
  transition: color 0.3s ease-in-out, background 0.4s ease-in-out;
}

/* Hover effect: Gradient appears from left to right */
.navmenu .dropdown ul li a:hover {
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  color: #fff !important;
  transition: background-position 0.4s ease-in-out;
}

.header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: background 0.3s ease;
}

.header.sticky {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}

.banner-img.img1 {
  background-image: url("../gallery/banner1.jpg");
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.banner-img {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Text overlay */
.banner-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10; /* above image */
  pointer-events: auto; /* clickable */
}

.banner-text h2 {
  color: #fff;
  font-size: 4.5rem;
  font-family: "Inter", sans-serif;
  margin-bottom: 1rem;
  font-weight: 700;
}

.banner-text h3 {
  font-size: 2.5rem;
  color: #fff;
}

/* Animated word styling */
.animated-word {
  display: inline-block;
  min-width: 180px;
  background: #fff;
  color: var(--primary-color);
  font-weight: 600;
  padding: 6px 21px;
  margin-top: 10px;
  border-radius: 10px;
}

.about-sec {
  position: relative;
  min-height: 75vh;
}

.mouse_scroll {
  display: block;
  margin: 0 auto;
  width: 24px;
  height: 100px;
  margin-top: 125px;
}

.m_scroll_arrows {
  display: block;
  width: 5px;
  height: 5px;
  -ms-transform: rotate(45deg); /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);

  border-right: 2px solid white;
  border-bottom: 2px solid white;
  margin: 0 0 3px 4px;

  width: 16px;
  height: 16px;
}

.unu {
  margin-top: 1px;
}

.unu,
.doi,
.trei {
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite;
  animation: mouse-scroll 1s infinite;
}

.unu {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  -webkit-animation-direction: alternate;

  animation-direction: alternate;
  animation-delay: alternate;
}

.doi {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-direction: alternate;

  animation-delay: 0.2s;
  animation-direction: alternate;

  margin-top: -6px;
}

.trei {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  -webkit-animation-direction: alternate;

  animation-delay: 0.3s;
  animation-direction: alternate;

  margin-top: -6px;
}

.mouse {
  height: 42px;
  width: 24px;
  border-radius: 14px;
  transform: none;
  border: 2px solid white;
  top: 170px;
}

.wheel {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: white;
  position: relative;

  height: 4px;
  width: 4px;
  border: 2px solid #fff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.wheel {
  -webkit-animation: mouse-wheel 0.6s linear infinite;
  -moz-animation: mouse-wheel 0.6s linear infinite;
  animation: mouse-wheel 0.6s linear infinite;
}

@-webkit-keyframes mouse-wheel {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-moz-keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 2px;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 2px;
  }
  100% {
    top: 1px;
  }
}
@-o-keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 2px;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 2px;
  }
  100% {
    top: 1px;
  }
}
@keyframes mouse-wheel {
  0% {
    top: 1px;
  }
  25% {
    top: 2px;
  }
  50% {
    top: 3px;
  }
  75% {
    top: 2px;
  }
  100% {
    top: 1px;
  }
}

@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.about-sec {
  position: relative;
  padding-top: 85px;
  margin-bottom: 100px;
}

.abt-content {
  position: relative;
}

.abt-mtr h2 {
  font-size: 87px;
  font-weight: 600;
  color: var(--primary-color);
}

.abt-mtr p {
  line-height: 30px;
  font-size: 15px;
  padding-left: 25px;
}

.abt-mtr h3,
.title-with-dot {
  /* background-color: var(--primary-color); */
  background-color: #494949;
  display: inline-flex; /* FIX: keeps inline-block behavior + flex alignment */
  align-items: center; /* center the dot perfectly */
  gap: 10px;
  color: #fff;
  padding: 2px 10px;
  border-radius: 25px;
  font-size: 21px;
  /* border: 2px solid #dfdfdfe0; */
  font-weight: 400;
  margin-left: 65px;
  position: relative;
}

.title-with-dot::before {
  content: "";
  position: absolute;
  width: 75px;
  height: 1px;
  bottom: 0;
  left: -85px;
  top: 0;
  margin: auto;
  background-color: #494949;
  /* background-color: var(--primary-color); */
}
/* Blinking dot */
.blink-dot {
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  animation: dotBlink 1.2s infinite ease-in-out;
  display: inline-block;
}

@keyframes dotBlink {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.4);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.blu button {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.blu button {
  background: transparent;
  border-width: 1px;
  border-style: solid;

  position: relative;

  display: inline-block;
  padding: 3px 10px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  margin-right: 20px;
}

.blu button:before,
.blu button:after {
  content: "";
  display: block;
  position: absolute;

  box-sizing: border-box;
  border-style: solid;
  width: 1em;
  height: 1em;
  transition: all 0.3s ease-in-out;
}

.blu button:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
  z-index: 5;
}

.blu button:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
}

.blu button:before,
.blu button:after {
  border-color: var(--primary-color);
}

.blu button:hover {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.blu button:hover:before,
.blu button:hover:after {
  border-color: var(--primary-color);
}

button:hover:before,
button:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: #fff;
}

/* Arrow style */
.arrow-btn .arrow {
  display: inline-block;
  transform: rotate(-45deg); /* default: 45deg tilt */
  transition: transform 0.3s ease;
  font-size: 18px;
  font-weight: 600;
}

/* Hover → arrow comes back to original */
.arrow-btn:hover .arrow {
  transform: rotate(0deg);
}

/* Call button */
.call-btn {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 5px 20px;
  border-radius: 5px;
  font-weight: 500;
  text-decoration: none;

  transition: 0.3s ease;
  font-size: 25px;
}

.serv-sec {
  position: relative;

  background-color: var(--primary-color);
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  padding: 75px 0;
  margin-bottom: 100px;
}

.serv-sec .title-with-dot {
  color: var(--default-color);
  background-color: #fff;
}
.serv-sec .blink-dot {
  background: var(--primary-color);
}

.serv-sec .title-with-dot::before {
  background-color: #fff;
}
.serv-sec .ex-head h2 {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
}

.serv-mblk {
  position: relative;
  margin-top: 85px;
}

.serv-txt p {
  color: #fff;
  font-weight: 300;
  background: linear-gradient(to left, #3d4acd, #ffffff00);
  border-radius: 17px;
  padding: 8px 2px;
}

.serv-iblk {
  position: relative;
  margin-bottom: 55px;
  margin-right: 28px;
}

.serv-txt h2 {
  color: #fff;
  display: inline-block;

  position: relative;
  padding-bottom: 8px;
}

.serv-txt h2::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: linear-gradient(to left, #fff, #ffffff00);
  left: 0;
  bottom: 0;
}

.serv-iblk {
  perspective: 1000px;
}

.serv-img img {
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

/* Hover triggers the rotation animation */
.serv-iblk:hover .serv-img img {
  animation: oneFlip 0.9s ease forwards;
}

/* Keyframes: 1 full rotation + slight up movement */
@keyframes oneFlip {
  0% {
    transform: rotateY(0deg) translateY(0);
  }
  50% {
    transform: rotateY(180deg) translateY(-20px);
  }
  100% {
    transform: rotateY(360deg) translateY(0);
  }
}

.serv-txt {
  position: relative;
  padding: 10px;
}

.serv-sec::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  background-image: url(../gallery/serv-bg.jpg);
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  opacity: 0.5;
}

.serv-txt p a {
  color: #fff;
  background-color: #3843b5;
  border-radius: 5px;
  padding: 5px;
}

.abt-img {
  position: relative;
  overflow: visible;
}

.abt-img img {
  position: relative;
  animation: floatRandom 8s ease-in-out infinite;
}

/* Continuous random-like smooth movement */
@keyframes floatRandom {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-10px, -15px);
  }
  40% {
    transform: translate(12px, -8px);
  }
  60% {
    transform: translate(-8px, 10px);
  }
  80% {
    transform: translate(15px, 5px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.process-sec {
  position: relative;
}

.ex-head h2 {
  color: var(--primary-color);
  font-size: 60px;
  font-weight: 600;
}

.pro-img {
  position: relative;
  display: inline-block;
}

.pro-img img {
  width: 100%;
  height: auto;
}

/* Base image */
.pro-img .base-img {
  position: relative;
  z-index: 1;
}

/* Rotating image */
.pro-img .rotate-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  animation: rotateCircle 45s linear infinite;
}

/* Rotation animation */
@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

:root {
  --primary-color: #525fe2;
  --secondary-color: #2939d7;

  --text-color: #1a1a1a;
  --light-text: #555;
  --border-light: #e4e4e4;
}

/* Section layout */
.simple-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  padding: 50px 0;
}

/* Card */
.feature-item {
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  transition: 0.3s ease;
  position: relative;
}

/* Left border animation */
.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0%;
  background: var(--primary-color);
  border-radius: 4px;
  transition: height 0.35s ease;
}

.feature-item:hover::before {
  height: 100%;
}

/* Title */
.feature-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Number */
.feature-item h3 span {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
}

/* Description text */
.feature-item p {
  margin-top: 10px;
  color: var(--light-text);
  line-height: 1.6;
}

/* Hover effect – simple shift up */
.feature-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary-color);
}

.form-sec {
  position: relative;
  min-height: 75vh;
}

:root {
  --primary-color: #525fe2;
  --secondary-color: #2939d7;
}

/* Section */
.form-sec {
  padding: 60px 0;
}

/* Main wrapper */
.appointment-wrapper {
  width: 100%;
  padding: 40px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(82, 95, 226, 0.2);
  box-shadow: 0 0 60px rgba(82, 95, 226, 0.15);
  position: relative;
  overflow: hidden;
}

/* FLOATING GLOW – TOP LEFT */
.appointment-wrapper::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -15%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 95, 226, 0.35), transparent 70%);
  filter: blur(60px);
  animation: moveGlow 10s infinite linear;
}

/* FLOATING GLOW – BOTTOM RIGHT */
.appointment-wrapper::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -15%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 95, 226, 0.35), transparent 70%);
  filter: blur(60px);
  animation: moveGlow 12s infinite linear reverse;
}

@keyframes moveGlow {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(80px, 60px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* Title */
.form-title {
  text-align: center;

  color: var(--primary-color);
  font-size: 60px;
  font-weight: 600;
}

/* Grid layout */
.appointment-form {
  width: 100%;
}

.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.f-group {
  position: relative;
  margin-bottom: 25px;
}

.f-group.full {
  grid-column: 1 / -1;
}

/* Floating Inputs */
.f-group input,
.f-group textarea {
  width: 100%;
  padding: 16px 14px 8px;
  border: none;
  border-bottom: 2px solid #3a49db24;
  background: #3b49dc0d;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.f-group textarea {
  height: 120px;
  resize: none;
}

/* Label */
.f-group label {
  position: absolute;
  left: 14px;
  top: 16px;
  color: #7177a9;
  font-size: 14px;
  transition: 0.3s;
  pointer-events: none;
}

/* Focus effects */
.f-group input:focus,
.f-group textarea:focus {
  border-bottom-color: var(--primary-color);
}

.f-group input:focus + label,
.f-group input:valid + label,
.f-group textarea:focus + label,
.f-group textarea:valid + label {
  top: -8px;
  font-size: 12px;
  background: #fff;
  padding: 0 5px;
  color: var(--secondary-color);
}

/* Submit Button */
.app-btn {
  padding: 6px 22px;
  border: none;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(82, 95, 226, 0.35);
}

.form-p {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}

:root {
  --primary-color: #525fe2;
  --secondary-color: #2939d7;
}

.content-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bootstrap button override */
.btn-call {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color) !important;
  color: #fff !important;
  position: relative;
  box-shadow: 0 8px 20px rgba(82, 95, 226, 0.4);
}

/* Pulse animation ring */
.btn-call.pulse::before,
.btn-call.pulse::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseAnim 1.4s linear infinite;
  opacity: 0;
}

.btn-call.pulse::after {
  animation-delay: 0.4s;
}

@keyframes pulseAnim {
  0% {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

.testimonial-sec {
  position: relative;
  margin-bottom: 100px;
}

.testimonial-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 50px 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: scrollLeft 23s linear infinite;
}

.testimonial-card {
  min-width: 350px;
  max-width: 350px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  border-radius: 25px;
  padding: 30px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);

  transition: transform 0.3s ease;
  background: linear-gradient(45deg, transparent, #525fe226);
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.quote-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(82, 95, 226, 0.25);
  backdrop-filter: blur(6px);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon i {
  font-size: 20px;
  color: var(--primary-color, #525fe2);
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 40px;
  color: var(--default-color);
}

.testimonial-card h4 {
  margin: 12px 0 3px;
  font-weight: 600;
  font-size: 16px;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: #666;
}

.rating i {
  color: #f4c430; /* premium gold */
  font-size: 1rem;
  margin-right: 3px;
}

/* Infinite marquee scroll */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.blog-sec {
  position: relative;
  margin-bottom: 100px;
}

.fresh-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  padding: 10px;
}

/* Card Container */
.fresh-blog-card {
  position: relative;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 24px;
  overflow: hidden;
  padding: 18px;
  transition: 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);

  /* Premium floating effect */
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.fresh-blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(82, 95, 226, 0.08),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: 0.35s ease;
}

.fresh-blog-card:hover::before {
  opacity: 1;
}

.fresh-blog-card:hover {
  transform: translateY(-6px);
}

/* Image Frame */
.fresh-blog-img {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: #f7f8ff;
}

.fresh-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
  transform: scale(1.03);
}

/* Elegant zoom */
.fresh-blog-card:hover img {
  transform: scale(1.08);
}

/* Content */
.fresh-blog-content {
  padding: 18px 4px 10px;
}

.fresh-blog-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}

.fresh-blog-content p {
  font-size: 15px;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Read More Stylish Link */
.fresh-read {
  font-size: 15px;
  color: var(--default-color);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  position: relative;
  padding-bottom: 3px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 25px;
  box-shadow: 0 4px 10px #313ba5;
  font-weight: 500;
}

.fresh-read::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #525fe2;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
  border-radius: 4px;
}

.fresh-read:hover::after {
  width: 100%;
}

.footer {
  background: transparent !important; /* No background */
  color: #111;
  padding-top: 50px;
  padding-bottom: 30px;
}

.footer a {
  text-decoration: none;
  color: var(--default-color);
}

.footer a:hover {
  color: var(--secondary-color);
}

/* Top row */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  width: 250px;
}

.footer-social a {
  margin-left: 10px;
  font-size: 20px;
  color: var(--primary-color);
  transition: 0.3s;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;
  border-radius: 50%; /* makes it a circle */
  border: 1px solid var(--primary-color);
}

.footer-social a:hover {
  color: var(--primary-color);
}

/* Divider line */
.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--primary-color);
  margin: 25px 0;
}

/* Footer content blocks */
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
}

.footer-block h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffffff;
  background: var(--primary-color);
  display: inline-block;
  padding: 3px 9px;
  border-radius: 8px;
}

.footer-block ul {
  list-style: none;
  padding: 0;
}

.footer-block ul li {
  margin-bottom: 10px;
}

/* Reach Us items */
.reach-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.reach-item i {
  margin-right: 10px;
  font-size: 18px;
  color: var(--default-color);
}

/* Map box */
.map-box {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.map-box iframe {
  width: 100%;
  height: 100%;
}

/* Credits */
.footer-credits {
  text-align: center;
  font-size: 15px;
  margin-top: 10px;
  color: var(--default-color);
}

.footer-credits span {
  color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
  }

  .footer-social a {
    margin-left: 12px;
  }
}

.footer-block ul {
  list-style: none;
  padding-left: 0;
}

.footer-block ul li {
  position: relative;
  padding-left: 20px; /* fixed so content never shifts */
  margin-bottom: 6px;
}

.footer-block ul li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-size: 18px;

  transition: transform 0.3s ease; /* only arrow moves */
}

/* 🔥 Hover effect - only arrow moves */
.footer-block ul li:hover::before {
  transform: translateX(5px);
}

/* 🔥 Hover effect */
.footer-social a:hover {
  background: var(--primary-color);
  color: #fff; /* icon turns white */
  border-color: var(--primary-color);
}

.cer-blk {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px; /* space between cards */
  padding: 50px 0;
}

.cert-img {
  background: #ffffff; /* clean white card */
  border-radius: 22px; /* soft rounded edges */

  border: 1px solid rgba(0, 0, 0, 0.05); /* subtle premium border */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); /* soft elegant shadow */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.cert-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cer-blk {
    gap: 25px;
    padding: 40px 0;
  }

  .cert-img {
    border-radius: 18px;
    margin-bottom: 10px;
  }

  .cert-img img {
    border-radius: 12px;
  }
}

/*--------------------------------------------------------------
# Floating Phone Icon
--------------------------------------------------------------*/
.tel-icon {
  position: fixed;
  right: 15px;
  bottom: 75px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, background-color 0.3s;
}

.tel-icon img {
  width: 60%;
  height: 60%;
  pointer-events: none;
}

/*--------------------------------------------------------------
# Popup Chat Box
--------------------------------------------------------------*/
.tel-popup {
  position: fixed;
  bottom: 150px; /* above the icon */
  right: 15px;
  width: 320px;
  max-height: 400px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 99999;
  display: flex;
  flex-direction: column;
}

/* Show popup */
.tel-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Popup Header */
.popup-header {
  background-color: #525fe2; /* primary color */
  color: #fff;
  padding: 12px 15px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.4;
}

.popup-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s;
}

.popup-header button:hover {
  transform: rotate(90deg);
}

/* Popup Body */
.popup-body {
  padding: 12px 15px;
  display: flex;
  gap: 8px;
  flex-direction: row;
  align-items: center;
  border-top: 1px solid #eee;
  background-color: #f9f9f9;
}

.popup-body input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.popup-body input:focus {
  border-color: #525fe2;
}

.popup-body button {
  padding: 10px 16px;
  background-color: #525fe2;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s, transform 0.2s;
}

.popup-body button:hover {
  background-color: #414ecb;
  transform: scale(1.05);
}

/* Responsive for smaller screens */
@media (max-width: 400px) {
  .tel-popup {
    width: 90%;
    right: 5%;
    bottom: 150px;
  }
}

.breadcrumb-section {
  position: relative;
  background-image: url("../gallery/c-page.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 110px;
}

.breadcrumb-section h1 {
  font-size: 2.6rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
  margin-bottom: 10px;
}

/* Breadcrumb styles */
.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1px;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
}

.breadcrumb li::after {
  content: "|";
  margin: 0 6px;
  color: #fff;
}

.breadcrumb li:last-child::after {
  content: "";
  display: none;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-path a {
  color: #fff;
}

.breadcrumb-path {
  background: linear-gradient(
    to left,
    #fff00000,
    var(--secondary-color),
    #fff00000
  );
  padding: 3px 10px;
}

.ip-page {
  position: relative;
  padding-top: 85px;
}

.p-img {
  width: 120px;
  margin: auto;
}

.ip-p-blk {
  position: relative;
}

.ip-two::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 75px;
  background-color: var(--primary-color);
  left: 0;

  top: 35%;
  margin: auto;
}
.ip-two::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 75px;
  background-color: var(--primary-color);
  right: 0;

  top: 35%;
  margin: auto;
}

.p-txt {
  position: relative;
}

.p-txt p {
  margin-bottom: 0px;
  font-size: 19px;
}

.c-map {
  position: relative;
  padding-top: 65px;
}

.c-map iframe {
  border: 8px solid #ffffff82;
  box-shadow: 0 10px 10px #525fe242;
}

/* -----------------------------
   query Section
------------------------------*/
.query-section {
  width: 100%;
  padding: 70px 20px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.query-container {
  background: linear-gradient(45deg, #525fdb, transparent);
  width: 100%;
  max-width: 600px;
  padding: 40px 35px;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.7s ease;
}

.query-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
}

.query-subtitle {
  text-align: center;
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
}

/* -----------------------------
   Form Styles
------------------------------*/
.query-form {
  width: 100%;
}

.query-row {
  margin-bottom: 20px;
}

.query-form input,
.query-form select,
.query-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #d7dce5;
  background: #f9f9f9;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.query-form input:focus,
.query-form select:focus,
.query-form textarea:focus {
  background: #fff;
  border-color: #525fe2;
  box-shadow: 0 0 8px rgba(82, 95, 226, 0.2);
}

/* -----------------------------
   Button
------------------------------*/
.query-btn {
  margin: auto;
  padding: 14px 20px;
  background: linear-gradient(45deg, transparent, #3746d7);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(82, 95, 226, 0.3);
}

.query-btn:hover {
  background: #414ecb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(82, 95, 226, 0.35);
}

/* -----------------------------
   Animation
------------------------------*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -----------------------------
   Responsive
------------------------------*/
@media (max-width: 480px) {
  .query-container {
    padding: 25px 20px;
  }

  .query-title {
    font-size: 26px;
  }
}

.tp-blk {
  position: relative;
  margin-top: 25px;
}
.tp-blk a {
  font-size: 15px;
}

.ip-page-serv p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.ip-page-serv h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.ip-page-serv h3 {
  font-size: 22px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.ip-page-serv ul {
  margin-left: 20px;
  margin-bottom: 20px;
  list-style: none;
  padding-left: 0;
}

.ip-page-serv ul li {
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: #333;
}

.ip-page-serv ul li::before {
  content: "►";
  position: absolute;
  left: 0;
  top: 0;
  color: #4f46e5;
  font-weight: bold;
  font-size: 14px;
}

/* Disclaimer Row */
.disclaimer-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.disclaimer-text {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

.disclaimer-text a {
  color: #fff;
}

.disclaimer-text a:hover {
  color: var(--primary-color);
}

/* Compact checkbox style */
.sms-checkbox {
  width: 18px !important;
  height: 18px;
  cursor: pointer;
  accent-color: #4f46e5; /* Professional purple/blue tone */
  margin-top: 3px;
}

/* Error text */
.error-msg {
  color: #d9534f;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

/* Highlight invalid fields */
.input-error {
  border-color: #d9534f !important;
  background: #ffeaea !important;
}

/* Checkbox error placement */
#checkboxError {
  margin-left: 28px;
}

.mv-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;

  margin: 40px 0;
}

.mv-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  width: 330px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  border: 1px solid #f0f0f0;
}

.mv-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9fa7f9, var(--secondary-color));
  color: #fff;
  font-size: 40px;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.mv-card h3 {
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 12px;
  display: inline-block;
  border-bottom: 2px dashed var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
}

.mv-card p {
  font-size: 15px;
  color: var(--default-color);
  line-height: 1.6;
}

.staffing-sec {
  position: relative;
  margin-bottom: 100px;
}

.staff-blk {
  padding-top: 55px;
}

.staff-sol-blk {
  background: linear-gradient(to right, #6b78f9, #3843b5);
  text-align: center;
  padding: 25px 2px 2px;
  border-radius: 30px;

  text-align: center;
  padding: 25px 2px 2px;
  border-radius: 30px;
}
.staff-sol-blk .title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 10px 20px;
}
.staff-sol-blk .staff-content {
  background-color: #fff;
  padding: 35px 20px 20px;
  border-radius: 0 0 28px 28px;
  position: relative;
  z-index: 1;
}

.staff-sol-blk .staff-content:after {
  content: "";
  background: linear-gradient(
    to right bottom,
    var(--primary-color),
    var(--primary-color)
  );
  height: 15px;
  width: 30px;
  border-radius: 0 0 200px 200px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.staff-sol-blk .staff-content:after {
  background: #fff;
  height: 50px;
  width: auto;
  border-radius: 0;
  transform: translateX(0);
  left: -2px;
  right: -2px;
  z-index: -1;
}

.staff-sol-blk .description {
  color: var(--default-color);
  font-size: 14px;
  line-height: 24px;
  margin: 0;
}

@media only screen and (max-width: 990px) {
  .staff-sol-blk {
    margin: 0 0 30px;
  }
}

.serv-img {
  margin-bottom: 45px;
}

.serv-img {
  position: relative;
  text-align: center;
  padding-bottom: 40px; /* space for read more */
}

.serv-img h3 {
  font-size: 20px;
  margin-top: 19px;
  font-weight: 500;
  color: #fff;
}

.serv-img .read-more {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: fit-content;
  text-align: center;

  color: #fff;
  background-color: #3843b5;
  border-radius: 5px;
  padding: 5px;
  font-size: 14px;
  transition: all 0.4s ease;
  opacity: 0;
  display: inline-block;
  padding: 5px 10px;
  right: 0;
  margin: auto;
}

.serv-img:hover .read-more {
  bottom: 0;
  opacity: 1;
}

.serv-img:hover img {
  animation: oneFlip 0.9s ease forwards;
}

.serv-txt p a {
  color: #fff;
  background-color: #3843b5;
  border-radius: 5px;
  padding: 5px;
}

.counter {
  background: #3843b5;

  text-align: center;
  width: 267px;
  padding: 25px 20px;
  border-radius: 30px 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  padding-bottom: 15px;
}
.counter:before {
  content: "";
  background: #fff;
  /* border: 1px dashed #3843b5; */
  width: 100%;
  height: calc(100% - 10px);
  border-radius: 30px 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 10px;
  left: 0;
  z-index: -1;
  
}
.counter .counter-icon {
  font-size: 30px;
  line-height: 30px;
  margin: 0 0 15px;
}
.counter .counter-value {
  color: #3843b5;
  font-size: 33px;
  font-weight: 600;
}
.counter h3 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 25px;
  text-transform: capitalize;
  margin-bottom: 0px;
}

@media screen and (max-width: 990px) {
  .counter {
    margin-bottom: 40px;
  }
}

.serv-row {
  position: relative;
  margin-top: 45px;
}

/* Breadcrumb li items */
.breadcrumb li {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: #fff; /* keeps your white text */
}

/* Separator (keep your design) */
.breadcrumb li::after {
  content: "|";
  margin: 0 6px;
  color: #fff;
}

.breadcrumb li:last-child::after {
  content: "";
  display: none;
}

/* Links inside breadcrumb */
.breadcrumb li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, font-weight 0.3s ease;
  padding: 5px 10px;
}

.breadcrumb li a:hover {
  color: #fff;

  background-color: var(--secondary-color);
}

.counter:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to top, rgb(55 66 179), #3843b403);
  animation: riseUp 0.4s ease forwards;
  pointer-events: none;
  border-radius: 30px 30px;
  
}

/* Smooth rising animation */
@keyframes riseUp {
  from {
    height: 0%;
  }
  to {
    height: 40%;
  }
}



.footer-credits .footer-link {
    color: var(--secondary-color);     
    text-decoration: none; 
}