:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: #e41779;
  --bs-secondary: #1a1a1a;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #a0a0a0;
  --bs-dark: #0d0d0d;
  --bs-font-sans-serif:
    system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace:
    SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #a0a0a0;
  background-color: #0d0d0d;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
  border-radius: 50px;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: inherit;
}

.btn-primary {
  color: var(--bs-white);
}

/*** Navbar ***/
/* .navbar {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link {
  margin-right: 25px;
  padding: 40px 0;
  color: var(--bs-white);
  font-size: 17px;
  text-transform: uppercase;
  outline: none;
  transition: 0.5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link,
  .navbar.bg-dark .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    margin-top: 8px;
    border-top: 1px solid var(--bs-light);
  }
}

@media (min-width: 992px) {
  .navbar.bg-dark .navbar-nav .nav-link {
    padding: 20px 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
} */

/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 100px;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 550px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  padding-top: 200px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url(../img/carousel1.png) top center no-repeat;
  background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--bs-white);
}

/*** Title ***/
.title {
  margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
  display: inline-block;
  text-transform: uppercase;
  overflow: hidden;
}

.title .title-center h5,
.title .title-center h1 {
  color: var(--bs-white);
}

.title .title-center {
  text-align: center;
}

.title .title-right {
  text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
  position: absolute;
  content: "";
  width: 500%;
  height: 0;
  top: 9px;
  border-bottom: 1px solid var(--bs-white);
}

.title .title-left h5::after,
.title .title-center h5::after {
  left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
  right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
  border-bottom: 1px solid var(--bs-white);
}

/*** Service ***/
.service-item {
  position: relative;
  margin-top: 2.5rem;
  overflow: hidden;
}

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

/* .service-item .service-img::before {
  position: absolute;
  content: "";
  width: calc(100% - 12rem);
  height: calc(100% - 12rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3rem solid rgba(0, 0, 0, 0.5);
  border-radius: 300px;
  z-index: 1;
} */
/* 
.service-item .service-img::before {
  position: absolute;
  content: "";
  width: calc(100% - 20rem);
  height: calc(100% - 5rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3rem solid rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  z-index: 1;
} */
.service-item.service-item-left {
  border-radius: 500px 0 0 500px;
  background: linear-gradient(to right, var(--bs-secondary), var(--bs-dark));
}

.service-item.service-item-right {
  border-radius: 0 500px 500px 0;
  background: linear-gradient(to left, var(--bs-secondary), var(--bs-dark));
}

@media (max-width: 767.98px) {
  .service-item.service-item-left,
  .service-item.service-item-right {
    border-radius: 500px 500px 0 0;
    background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
    text-align: center;
  }
}

/*** Team ***/
.team-item {
  position: relative;
}

.team-item .team-name {
  position: absolute;
  width: 100%;
  height: 60px;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
}

.team-item .team-body {
  position: relative;
  overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
  position: absolute;
  content: "";
  width: 0;
  height: calc(100% - 60px);
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.5s;
}

.team-item .team-body .team-after {
  left: auto;
  right: 0;
}

.team-item .team-body .team-before {
  text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
  width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
  margin: 5px;
  color: var(--bs-white);
  opacity: 0;
  transition: 0.5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
  opacity: 1;
  transition-delay: 0.2s;
}

/*** Testimonial ***/
.testimonial-carousel {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-carousel .owl-dots {
  margin-top: 35px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 60px;
  height: 60px;
  margin: 0 5px;
  padding: 10px;
  background: var(--bs-dark);
  border-radius: 100px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 100px;
  height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
  opacity: 0.1;
  transition: 0.5s;
  border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
  opacity: 1;
}

/*** Footer ***/
@keyframes footerAnimatedBg {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -1000px 0;
  }
}

.footer {
  /* background-image: url(../img/footer-bg.png); */
  background-position: 0px 0px;
  background-repeat: repeat-x;
  animation: footerAnimatedBg 50s linear infinite;
}
.bg-secondary {
  background-color: #f6f6f6 !important;
}
.service-item.service-item-left {
  border-radius: 500px 0 0 500px;
  background: linear-gradient(to right, #cccccc, #f0f0f0);
}
.service-item.service-item-right {
  border-radius: 0 500px 500px 0;
  background: linear-gradient(to left, #cccccc, #f0f0f0);
}
body {
  background-color: #f0f0f0;
  color: #333333;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  color: #000000;
}

/* Header Top */
.header-top {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 10px;
}

.contact-info span {
  font-size: 14px;
  color: #333;
}

.contact-info i {
  color: #0b5ed7;
  margin-right: 5px;
}

/* Get Button */
.get-btn {
  background: linear-gradient(45deg, #0b5ed7, #28a745);
  color: #fff;
  border-radius: 5px;
  padding: 8px 18px;
  font-weight: 500;
}

/* Social */
.social-icons a {
  background: #1e73be;
  color: #fff;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-left: 5px;
  text-decoration: none;
}

/* Center Menu Style */
.menu-wrapper {
  padding-top: 5px;
  background: #ffffff;
  padding-bottom: 5px;
}

.menu-wrapper .navbar {
  /* background: linear-gradient(90deg, #0b5ed7, #28a745); */
  border-radius: 12px;
  padding: 0 0 10px 0;
}

/* Menu Links */
.navbar-expand-lg .navbar-nav .nav-link {
  color: #000000 !important;
  font-weight: 500;
  padding: 5px 18px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #0b5ed7 !important;
  /* background: white; */
  border-radius: 6px;
}

img.logo_headermain {
  max-height: 120px;
  position: absolute;
  top: 0;
}

.logo-primary {
  background: #b8860b;
}
.logo-secondary {
  background: #1e3a8a;
}

/* About Section Styles */
.text-gold {
  color: #b8860b !important;
}

.text-blue {
  color: #1e3a8a !important;
}

.btn-blue {
  background: #1e3a8a;
  color: white;
  border: none;
}

.btn-blue:hover {
  background: #152d6b;
  color: white;
}

.btn-outline-gold {
  border: 2px solid #b8860b;
  color: #b8860b;
  background: transparent;
}

.btn-outline-gold:hover {
  background: #b8860b;
  color: white;
}
.text-gold-border {
  border-color: #b8860b !important;
}
.about-img {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  box-shadow: 0 10px 40px rgba(184, 134, 11, 0.2);
}

/* Vision Mission Values Section */
.vmv-card {
  background: white;
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-top: 4px solid #b8860b;
}

.vmv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vmv-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: white;
}

.vmv-card h4 {
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 15px;
}

.vmv-card p {
  color: #666;
  line-height: 1.8;
}

.services_section .title .title-center h1,
.growth-section .title .title-center h1 {
  color: #000000;
}

.services_section .title .title-left h5::after,
.services_section .title .title-center h5::before,
.services_section .title .title-center h5::after,
.services_section .title .title-right h5::before,
.growth-section .title .title-left h5::after,
.growth-section .title .title-center h5::before,
.growth-section .title .title-center h5::after,
.growth-section .title .title-right h5::before {
  border-bottom: 1px solid #b8860b;
}

.title .title-center .smallheading {
  font-weight: 600;
}

/* Enhanced Service Section */
.services_section {
  background: #f0f0f0;
}

.service-item {
  margin-bottom: 2rem;
  border-radius: 25px;
  background: white;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); */
  transition: all 0.4s ease;
  overflow: visible;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(184, 134, 11, 0.15);
}

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

.service-item .service-img img {
  width: 100%;
  max-width: 350px;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
}

.service-item:hover .service-img img {
  transform: scale(1.08) rotate(3deg);
}

.service-icon {
  display: inline-block;
}

.service-text h3 {
  color: #1e3a8a;
  font-weight: 700;
  font-size: 26px;
  position: relative;
  padding-bottom: 15px;
}

.service-text h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #b8860b, #1e3a8a);
  transition: width 0.3s ease;
}

.service-item-right .service-text h3::after {
  left: auto;
  right: 0;
}

.service-item:hover .service-text h3::after {
  width: 100px;
}

.service-text p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  color: #b8860b;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.service-btn:hover {
  color: #1e3a8a;
  padding-left: 10px;
}

.service-btn i {
  transition: transform 0.3s ease;
}

.service-btn:hover i {
  transform: translateX(8px);
}

@media (max-width: 767.98px) {
  .service-item {
    text-align: center;
  }

  .service-text h3::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }
}

/* Vision Mission Values Enhanced Background */
.vmv-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  position: relative;
  overflow: hidden;
}

.vmv-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 50%,
      rgba(184, 134, 11, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.vmv-section .title .title-center h5,
.vmv-section .title .title-center h1 {
  color: #ffffff;
}

.vmv-section .title .title-center h5::before,
.vmv-section .title .title-center h5::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.vmv-section .title .title-center h1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.vmv-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

/* Growth Plan Section */
.growth-section {
  /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
  position: relative;
}

.timeline {
  position: relative;
  /* max-width: 900px; */
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #b8860b, #1e3a8a);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 10px;
  width: 100%;
}

.timeline-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(184, 134, 11, 0.2);
}

.timeline-text {
  flex: 1;
  padding-right: 30px;
}

.timeline-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.timeline-content:hover .timeline-icon {
  transform: rotate(360deg);
}

.timeline_icon {
  position: absolute;
  left: 50%;
  top: 55px;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: linear-gradient(135deg, #b8860b, #ffd700);
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(184, 134, 11, 0.4);
  transition: all 0.3s ease;
  margin-left: 40px;
}

.timeline_icon:hover {
  transform: translateY(-50%) scale(1.1) rotate(10deg);
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.6);
}

.timeline_icon i {
  color: white;
}

.timeline-item:nth-child(odd) .timeline_icon {
  left: 50%;
  right: auto;
}

.timeline-item:nth-child(even) .timeline_icon {
  right: 50%;
  left: auto;
  margin-right: 40px;
}

.timeline-item:nth-child(odd) .timeline-card {
  margin-left: 0;
  margin-right: auto;
  padding-right: 60px;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-card {
  margin-left: auto;
  margin-right: 0;
  padding-left: 60px;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: 24px;
  height: 24px;
  background: white;
  border: 4px solid #b8860b;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 8px rgba(184, 134, 11, 0.1);
}

.timeline-card {
  width: 50%;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(184, 134, 11, 0.2);
}

.timeline-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.timeline-card h3 {
  color: #1e3a8a;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 15px;
}

.timeline-card p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 767.98px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    width: 100%;
    margin-left: 0;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left;
  }
}

.stats-item {
  color: #ffffff;
}

.timline_icon {
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: 55px;
  font-size: 60px;
}

/* Core Solutions Section */
.solutions-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.solutions-section .title .title-center h1,
.solutions-section .title .title-center h5 {
  color: #ffffff;
}

.solutions-section .title .title-center h5::before,
.solutions-section .title .title-center h5::after {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.solutions-section .title .title-center h1 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 4px solid #b8860b;
}

.solution-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-left-color: #ffd700;
}

.solution-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #b8860b, #ffd700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.solution-icon-wrap i {
  font-size: 28px;
  color: white;
}

.solution-item:hover .solution-icon-wrap {
  transform: rotate(360deg);
}

.solution-content {
  flex: 1;
}

.solution-content h4 {
  color: #1e3a8a;
  font-weight: 600;
  margin: 0 0 10px 0;
  font-size: 18px;
}

.solution-content p {
  color: #666;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* About Page Styles */
.about-feature-box {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border-top: 3px solid transparent;
}

.about-feature-box:hover {
  transform: translateY(-10px);
  border-top-color: #b8860b;
  box-shadow: 0 15px 40px rgba(184, 134, 11, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: white;
  transition: all 0.3s ease;
}

.about-feature-box:hover .feature-icon {
  background: linear-gradient(135deg, #b8860b, #ffd700);
  transform: rotateY(360deg);
}

.about-feature-box h5 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-feature-box p {
  color: #666;
  margin: 0;
  font-size: 14px;
}

.vm-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  height: 100%;
  border-left: 5px solid #b8860b;
  transition: all 0.3s ease;
}

.vm-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vm-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #b8860b, #ffd700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: white;
  margin-bottom: 20px;
}

.vm-card h3 {
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 15px;
}

.vm-card p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.why-choose-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.why-choose-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #b8860b, #ffd700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-choose-box:hover .why-icon {
  transform: rotate(360deg);
}

.why-content h4 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 14px;
}

.why-tag {
  display: inline-block;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}


/* Mobile Responsive Fixes */
@media (max-width: 991.98px) {
  img.logo_headermain {
    position: relative !important;
    max-height: 60px !important;
  }
  
  .contact-info {
    font-size: 11px;
  }
  
  .contact-info span {
    display: block;
    margin: 2px 0;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .timeline_icon {
    left: 30px;
    margin-left: 0;
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  
  .timeline-item:nth-child(odd) .timeline_icon,
  .timeline-item:nth-child(even) .timeline_icon {
    left: 30px;
    right: auto;
    margin-right: 0;
  }
  
  .timeline-item:nth-child(odd) .timeline-card,
  .timeline-item:nth-child(even) .timeline-card {
    width: calc(100% - 100px);
    margin-left: 100px;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .header-top {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  .service-item .service-img img {
    max-width: 250px;
  }
  
  .service-text h3 {
    font-size: 22px;
  }
  
  .vmv-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .stats-item h1 {
    font-size: 2.5rem;
  }
}

/* WOW Animation Fixes */
.wow {
  visibility: hidden;
}

.wow.animated {
  visibility: visible;
}

/* Ensure animations are smooth */
.fadeInLeft,
.fadeInRight,
.fadeInUp,
.fadeInDown {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animated.fadeInLeft {
  animation-name: fadeInLeft;
}

.animated.fadeInRight {
  animation-name: fadeInRight;
}

.animated.fadeInUp {
  animation-name: fadeInUp;
}

.animated.fadeInDown {
  animation-name: fadeInDown;
}

/* Industries Page Styles */
.industry-card {
  position: relative;
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  overflow: hidden;
  transition: all 0.4s ease;
  border-top: 4px solid #b8860b;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.industry-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(184, 134, 11, 0.25);
  border-top-color: #1e3a8a;
}

.industry-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 40px;
  color: white;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, #b8860b, #ffd700);
  transform: rotateY(360deg) scale(1.1);
}

.industry-card h4 {
  color: #1e3a8a;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.industry-card:hover h4 {
  color: #b8860b;
}

.industry-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 2;
}

.industry-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  color: rgba(184, 134, 11, 0.03);
  transition: all 0.4s ease;
  z-index: 1;
}

.industry-card:hover .industry-overlay {
  font-size: 220px;
  color: rgba(30, 58, 138, 0.05);
  transform: translate(-50%, -50%) rotate(15deg);
}
