@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Poppins&display=swap");
:root {
  --color-1: #121212;
  --color-2: #eff0e8;
  --color-3: #4f81bd;
}

a {
  text-decoration: none !important;
}
li {
  list-style-type: none !important;
}
.heading1 {
  font-size: 2.5rem;
}
.heading2 {
  font-size: 2rem;
}
.heading3 {
  font-size: 1.75rem;
}
.heading4 {
  font-size: 1.5rem;
}
.heading5 {
  font-size: 1.25rem;
}
.heading6 {
  font-size: 1rem;
}
.pad {
  padding: 90px 0;
}
.wrdbrk {
  white-space: pre;
}
.fullpad {
  padding: 0 !important;
  margin: 0 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900 !important;
  font-family: "Montserrat", sans-serif !important;
}
body,
p,
a,
li,
span {
  font-weight: 400 !important;
  font-family: "Poppins", sans-serif !important;
}

/* custom css starts */
/* Header Section Styles */
.header-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-section.hidden {
  transform: translateY(-100%);
}

.header-section.scrolled {
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
/* Add a new class for when showing the header while scrolling up */
.header-section.scrolled.show-on-scroll-up {
  animation: headerSlideDown 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-section .navbar {
  background-color: var(--color-2);
  padding: 1.2rem 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-section.scrolled .navbar {
  padding: 0.8rem 0;
}

.header-section .navbar-brand {
  display: flex;
  align-items: center;
  line-height: 1.2;
  color: #f5f5f5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-section .header-logo {
  width: 50px;
  height: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-section.scrolled .header-logo {
  width: 40px;
  height: 40px;
}

.header-section .header-brand-text {
  margin-left: 12px;
  margin-bottom: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-section.scrolled .header-brand-text {
  font-size: 1rem;
}

.header-section .navbar-nav .nav-link {
  color: var(--color-1);
  font-weight: 700 !important;
  margin: 0 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.header-section .navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4f81bd;
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header-section .navbar-nav .nav-link:focus {
  color: rgb(0, 0, 0) !important;
}
.header-section .navbar-dark .navbar-nav .show > .nav-link {
  color: #fff !important;
  background-color: var(--color-1);
}

.header-section .navbar-nav .nav-link:hover::before {
  width: 100%;
}

.header-section .navbar-nav .nav-link:hover {
  color: var(--color-2);
  background-color: var(--color-1);
  transform: translateY(-2px);
}

.header-section .navbar-nav .nav-item.active .nav-link {
  color: #4f81bd;
  background-color: rgba(245, 245, 245, 0.1);
}

.header-section .navbar-nav .nav-item.active .nav-link::before {
  width: 100%;
}

.header-section .navbar-toggler {
  border: 1px solid #f5f5f5;
  padding: 0.4rem 0.6rem;
  transition: all 0.3s ease;
}

.header-section .navbar-toggler:hover {
  border-color: #4f81bd;
  background-color: rgba(79, 129, 189, 0.1);
}

.header-section .navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(79, 129, 189, 0.25);
}

/* Keyframe Animations */
@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes navLinkFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .header-section .navbar {
    padding: 1rem 0;
  }

  .header-section.scrolled .navbar {
    padding: 0.7rem 0;
  }

  .header-section .header-logo {
    width: 45px;
    height: 45px;
  }

  .header-section.scrolled .header-logo {
    width: 35px;
    height: 35px;
  }

  .header-section .header-brand-text {
    font-size: 1rem;
  }

  .header-section.scrolled .header-brand-text {
    font-size: 0.9rem;
  }

  .header-section .navbar-nav .nav-link {
    margin: 0.3rem 0;
    text-align: center;
    padding: 0.8rem 1rem;
    color: white;
  }

  .header-section .navbar-collapse {
    margin-top: 1rem;
    background-color: rgba(18, 18, 18, 0.95);
    padding: 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .header-section .header-brand-text {
    font-size: 1rem;
  }

  .header-section.scrolled .header-brand-text {
    font-size: 0.9rem;
  }

  .header-section .navbar-nav .nav-link {
    margin: 0 0.3rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.95rem;
  }
}
/* Single Image Carousel Styles */
.single-image-carousel {
  margin-top: 6em;
}
.single-image-carousel .carousel {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

.single-image-carousel .carousel-inner {
  position: relative;
}

.single-image-carousel .carousel-item {
  position: relative;
}

.single-image-carousel .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 18, 18, 0.7) 0%,
    rgba(18, 18, 18, 0.4) 50%,
    rgba(18, 18, 18, 0.6) 100%
  );
  z-index: 1;
}

.single-image-carousel .carousel-image {
  height: 500px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.single-image-carousel .carousel-text-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  background: none;
  padding: 2rem;
  border-radius: 0;
  right: auto;
  bottom: auto;
  max-width: 80%;
}

.single-image-carousel .carousel-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: goldenrod;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

.single-image-carousel .carousel-description {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-2);
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  line-height: 1.4;
  opacity: 0.9;
}

/* Text Animation Effects */
.single-image-carousel .slide-text-animation {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  animation: slideInText 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.single-image-carousel .carousel-item.active .slide-text-animation {
  animation-delay: 0.4s;
}

.single-image-carousel .carousel-item.active .carousel-heading {
  animation-delay: 0.2s;
}

.single-image-carousel .carousel-item.active .carousel-description {
  animation-delay: 0.6s;
}

@keyframes slideInText {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  50% {
    opacity: 0.5;
    transform: translateY(20px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.single-image-carousel .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-2);
  opacity: 0.7;
}

.single-image-carousel .carousel-indicators .active {
  background-color: var(--color-1);
  opacity: 1;
}

.single-image-carousel .carousel-control-prev,
.single-image-carousel .carousel-control-next {
  width: 8%;
  transition: background-color 0.3s;
  z-index: 3;
}

.single-image-carousel .carousel-control-prev:hover,
.single-image-carousel .carousel-control-next:hover {
  background-color: rgba(18, 18, 18, 0.3);
}

.single-image-carousel .carousel-control-prev-icon,
.single-image-carousel .carousel-control-next-icon {
  background-size: 20px 20px;
}

/* Tablet (md) breakpoint */
@media (min-width: 768px) and (max-width: 991.98px) {
  .single-image-carousel .carousel-image {
    height: 400px;
  }

  .single-image-carousel .carousel-text-content {
    max-width: 85%;
    padding: 1.5rem;
  }

  .single-image-carousel .carousel-heading {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .single-image-carousel .carousel-description {
    font-size: 1rem;
  }

  .single-image-carousel .carousel-control-prev,
  .single-image-carousel .carousel-control-next {
    width: 10%;
  }
}

/* Mobile breakpoint */
@media (min-width: 1px) and (max-width: 767.98px) {
  .single-image-carousel .carousel-image {
    height: 350px;
  }

  .single-image-carousel .carousel-text-content {
    max-width: 90%;
    padding: 1rem;
  }

  .single-image-carousel .carousel-heading {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .single-image-carousel .carousel-description {
    font-size: 0.9rem;
  }

  .single-image-carousel .carousel-indicators {
    bottom: 10px;
  }

  .single-image-carousel .carousel-control-prev,
  .single-image-carousel .carousel-control-next {
    width: 15%;
  }

  .single-image-carousel .carousel {
    margin-bottom: 0;
  }

  .single-image-carousel .carousel-control-prev-icon,
  .single-image-carousel .carousel-control-next-icon {
    background-size: 16px 16px;
  }
}
/* index welcome section */
/* Welcome Section Styles */
.welcome-section {
  padding: 80px 0;
  background-color: var(--color-2);
  position: relative;
}

.welcome-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-3) 50%,
    transparent 100%
  );
}

.welcome-section .welcome-content {
  padding-right: 2rem;
}

.welcome-section .welcome-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-3);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.welcome-section .welcome-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-1);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.welcome-section .welcome-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-1);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.welcome-section .welcome-features {
  margin: 2rem 0;
}

.welcome-section .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.welcome-section .feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.welcome-section .feature-icon i {
  font-size: 1.5rem;
  color: var(--color-2);
}

.welcome-section .feature-text {
  flex: 1;
}

.welcome-section .feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-3);
  margin-bottom: 0.25rem;
}

.welcome-section .feature-desc {
  font-size: 0.9rem;
  color: var(--color-1);
  margin-bottom: 0;
  opacity: 0.7;
}

.welcome-section .welcome-buttons {
  margin-top: 2rem;
}

.welcome-section .welcome-btn {
  padding: 0.75rem 2rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.welcome-section .btn-primary {
  background-color: var(--color-3);
  border-color: var(--color-3);
  color: var(--color-2);
}

.welcome-section .btn-primary:hover {
  background-color: transparent;
  border-color: var(--color-3);
  color: var(--color-3);
}

.welcome-section .btn-outline-dark {
  background-color: transparent;
  border-color: var(--color-1);
  color: var(--color-1);
}

.welcome-section .btn-outline-dark:hover {
  background-color: var(--color-1);
  border-color: var(--color-1);
  color: var(--color-2);
}

.welcome-section .welcome-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(79, 129, 189, 0.15);
}

.welcome-section .welcome-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.welcome-section .welcome-image:hover .welcome-img {
  transform: scale(1.05);
}

.welcome-section .image-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 1rem;
}

.welcome-section .stats-item {
  background-color: rgba(79, 129, 189, 0.95);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  min-width: 80px;
  backdrop-filter: blur(5px);
}

.welcome-section .stats-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-2);
  margin-bottom: 0.25rem;
}

.welcome-section .stats-label {
  font-size: 0.8rem;
  color: var(--color-2);
  margin-bottom: 0;
  opacity: 0.9;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .welcome-section {
    padding: 60px 0;
  }

  .welcome-section .welcome-content {
    padding-right: 1rem;
    margin-bottom: 2rem;
  }

  .welcome-section .welcome-title {
    font-size: 2rem;
  }

  .welcome-section .welcome-subtitle {
    font-size: 1.1rem;
  }

  .welcome-section .feature-icon {
    width: 50px;
    height: 50px;
  }

  .welcome-section .feature-icon i {
    font-size: 1.2rem;
  }

  .welcome-section .welcome-img {
    height: 350px;
  }

  .welcome-section .stats-item {
    min-width: 70px;
    padding: 0.8rem;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .welcome-section {
    padding: 40px 0;
  }

  .welcome-section .welcome-content {
    padding-right: 0;
    margin-bottom: 2rem;
    text-align: center;
  }

  .welcome-section .welcome-title {
    font-size: 1.8rem;
  }

  .welcome-section .welcome-subtitle {
    font-size: 1rem;
  }

  .welcome-section .welcome-description {
    font-size: 0.9rem;
  }

  .welcome-section .feature-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 1rem;
  }

  .welcome-section .feature-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
    width: 45px;
    height: 45px;
  }

  .welcome-section .feature-icon i {
    font-size: 1rem;
  }

  .welcome-section .welcome-btn {
    display: block;
    text-align: center;
    margin-right: 0;
    margin-bottom: 0.75rem;
  }

  .welcome-section .welcome-img {
    height: 300px;
  }

  .welcome-section .image-overlay {
    bottom: 15px;
    right: 15px;
    gap: 0.5rem;
  }

  .welcome-section .stats-item {
    min-width: 60px;
    padding: 0.6rem;
  }

  .welcome-section .stats-number {
    font-size: 1.2rem;
  }

  .welcome-section .stats-label {
    font-size: 0.7rem;
  }
}
/* services overview section */
/* Services Overview Section Styles */
.services-overview {
  padding: 80px 0;
  background-color: #12121269;
  background-image: url("../images/index-services-bg.webp");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  background-attachment: fixed;
  position: relative;
}

.services-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-3) 50%,
    transparent 100%
  );
}

.services-overview .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-2);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 5px black;
}

.services-overview .section-subtitle {
  font-size: 1.2rem;
  color: var(--color-2);
  margin-bottom: 3rem;
  opacity: 0.8;
  text-shadow: 2px 2px 5px black;
}

.services-overview .service-card {
  background-color: var(--color-2);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-overview .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(79, 129, 189, 0.2);
}

.services-overview .service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.services-overview .service-card:hover .service-icon {
  transform: scale(1.1);
  background-color: var(--color-1);
}

.services-overview .service-icon i {
  font-size: 2rem;
  color: var(--color-2);
}

.services-overview .service-card:hover .service-icon i {
  color: var(--color-3);
}

.services-overview .service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-3);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.services-overview .service-description {
  font-size: 0.95rem;
  color: var(--color-1);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.8;
  flex-grow: 1;
}

.services-overview .service-link {
  color: var(--color-3);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.services-overview .service-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-3);
  transition: width 0.3s ease;
}

.services-overview .service-link:hover {
  color: var(--color-1);
  text-decoration: none;
}

.services-overview .service-card:hover .service-link::after {
  width: 100%;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .services-overview {
    padding: 60px 0;
  }

  .services-overview .section-title {
    font-size: 2rem;
  }

  .services-overview .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  .services-overview .service-card {
    padding: 1.8rem 1.3rem;
    margin-bottom: 1.5rem;
  }

  .services-overview .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.2rem;
  }

  .services-overview .service-icon i {
    font-size: 1.8rem;
  }

  .services-overview .service-title {
    font-size: 1.2rem;
  }

  .services-overview .service-description {
    font-size: 0.9rem;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .services-overview {
    padding: 50px 0;
  }

  .services-overview .section-title {
    font-size: 1.8rem;
  }

  .services-overview .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .services-overview .service-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .services-overview .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .services-overview .service-icon i {
    font-size: 1.5rem;
  }

  .services-overview .service-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .services-overview .service-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .services-overview .service-link {
    font-size: 0.85rem;
  }
}
/* our process styles */
/* How We Work Section Styles */
.how-we-work {
  padding: 80px 0;
  background-color: var(--color-2);
  position: relative;
}

.how-we-work::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-3) 50%,
    transparent 100%
  );
}

.how-we-work .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-3);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.how-we-work .section-subtitle {
  font-size: 1.2rem;
  color: var(--color-1);
  margin-bottom: 3rem;
  opacity: 0.8;
}

.how-we-work .process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  margin-bottom: 2rem;
  box-shadow: 2px 3px 5px 5px var(--color-3);
  height: 100%;
}

.how-we-work .step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-3);
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.how-we-work .step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-3), #6ba3e0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(79, 129, 189, 0.3);
}

.how-we-work .process-step:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(79, 129, 189, 0.4);
}

.how-we-work .step-icon i {
  font-size: 2rem;
  color: var(--color-2);
}

.how-we-work .step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-3);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.how-we-work .step-description {
  font-size: 0.95rem;
  color: var(--color-1);
  line-height: 1.6;
  opacity: 0.9;
}

.how-we-work .process-cta {
  background-color: var(--color-1);
  padding: 3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.how-we-work .cta-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-2);
  margin-bottom: 1rem;
}

.how-we-work .cta-description {
  font-size: 1.1rem;
  color: var(--color-2);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.how-we-work .process-btn {
  padding: 0.75rem 2rem;
  margin: 0 0.5rem 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.how-we-work .btn-primary {
  background-color: var(--color-3);
  border-color: var(--color-3);
  color: var(--color-2);
}

.how-we-work .btn-primary:hover {
  background-color: transparent;
  border-color: var(--color-3);
  color: var(--color-3);
}

.how-we-work .btn-outline-primary {
  background-color: transparent;
  border-color: var(--color-2);
  color: var(--color-2);
}

.how-we-work .btn-outline-primary:hover {
  background-color: var(--color-2);
  border-color: var(--color-2);
  color: var(--color-1);
}

/* Process Flow Line (Desktop Only) */
.how-we-work .process-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-3), transparent);
  z-index: 1;
  transform: translateY(-50%);
}

.how-we-work .process-step:last-child::after {
  display: none;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .how-we-work {
    padding: 60px 0;
  }

  .how-we-work .section-title {
    font-size: 2rem;
  }

  .how-we-work .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  .how-we-work .process-step {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }

  .how-we-work .step-number {
    font-size: 2.5rem;
  }

  .how-we-work .step-icon {
    width: 70px;
    height: 70px;
    margin: 1.5rem auto 1.2rem;
  }

  .how-we-work .step-icon i {
    font-size: 1.8rem;
  }

  .how-we-work .step-title {
    font-size: 1.2rem;
  }

  .how-we-work .step-description {
    font-size: 0.9rem;
  }

  .how-we-work .process-cta {
    padding: 2.5rem 1.5rem;
  }

  .how-we-work .cta-title {
    font-size: 1.6rem;
  }

  .how-we-work .cta-description {
    font-size: 1rem;
  }

  .how-we-work .process-step::after {
    display: none;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .how-we-work {
    padding: 50px 0;
  }

  .how-we-work .section-title {
    font-size: 1.8rem;
  }

  .how-we-work .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .how-we-work .process-step {
    padding: 1.5rem 0.5rem;
    margin-bottom: 1.5rem;
  }

  .how-we-work .step-number {
    font-size: 2rem;
  }

  .how-we-work .step-icon {
    width: 60px;
    height: 60px;
    margin: 1.2rem auto 1rem;
  }

  .how-we-work .step-icon i {
    font-size: 1.5rem;
  }

  .how-we-work .step-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .how-we-work .step-description {
    font-size: 0.85rem;
  }

  .how-we-work .process-cta {
    padding: 2rem 1rem;
    margin-top: 1rem;
  }

  .how-we-work .cta-title {
    font-size: 1.4rem;
  }

  .how-we-work .cta-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .how-we-work .process-btn {
    display: block;
    width: 100%;
    margin: 0 0 0.75rem 0;
    text-align: center;
  }

  .how-we-work .process-step::after {
    display: none;
  }
}
/* Why Choose Us Section Styles */
.why-choose-us {
  background-color: #121212; /* Using your --color-2 variable value */
  padding: 80px 0;
}

.why-choose-us-heading {
  color: #f5f5f5; /* Using your --color-1 variable value */
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
}

.why-choose-us-card {
  background-color: rgba(
    79,
    129,
    189,
    0.1
  ); /* Using --color-3 with transparency */
  border: 1px solid rgba(79, 129, 189, 0.2); /* Using --color-3 with transparency */
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.why-choose-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(79, 129, 189, 0.15); /* Using --color-3 with transparency */
  background-color: rgba(
    79,
    129,
    189,
    0.15
  ); /* Using --color-3 with transparency */
}

.why-choose-us-icon {
  color: #4f81bd; /* Using your --color-3 variable value */
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.why-choose-us-title {
  color: #f5f5f5; /* Using your --color-1 variable value */
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.why-choose-us-description {
  color: #f5f5f5; /* Using your --color-1 variable value */
  opacity: 0.8;
  line-height: 1.6;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .why-choose-us {
    padding: 60px 0;
  }

  .why-choose-us-heading {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .why-choose-us-icon {
    font-size: 2.2rem;
  }

  .why-choose-us-title {
    font-size: 1.3rem;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .why-choose-us {
    padding: 40px 0;
  }

  .why-choose-us-heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .why-choose-us-card {
    margin-bottom: 20px;
    padding: 20px 15px;
  }

  .why-choose-us-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .why-choose-us-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}
/* projects handled */
/* Projects Handled Section Styles */
.projects-handled {
  background-color: #f5f5f591;
  padding: 80px 0;
  background-image: url("../images/white-bg-1.webp");
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: cover;
}

.projects-handled-heading {
  color: #121212;
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: 700;
}

.projects-handled-subheading {
  color: #4f81bd;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.2rem;
}

.projects-handled-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}

.projects-handled-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.projects-handled-card-header {
  background-color: #4f81bd;
  color: #ffffff;
  padding: 20px;
}

.projects-handled-header-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.projects-handled-number {
  background-color: #121212;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 3px;
}

.projects-handled-company {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.projects-handled-period {
  margin-bottom: 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

.projects-handled-card-body {
  padding: 20px;
}

.projects-handled-detail {
  color: #121212;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.projects-handled-detail:last-child {
  margin-bottom: 0;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .projects-handled {
    padding: 60px 0;
  }

  .projects-handled-heading {
    font-size: 2.2rem;
  }

  .projects-handled-subheading {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .projects-handled-company {
    font-size: 1.1rem;
  }

  .projects-handled-header-content {
    gap: 12px;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .projects-handled {
    padding: 40px 0;
  }

  .projects-handled-heading {
    font-size: 1.8rem;
  }

  .projects-handled-subheading {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .projects-handled-card {
    margin-bottom: 20px;
  }

  .projects-handled-card-header {
    padding: 15px;
  }

  .projects-handled-header-content {
    gap: 10px;
  }

  .projects-handled-number {
    width: 25px;
    height: 25px;
    font-size: 0.9rem;
  }

  .projects-handled-card-body {
    padding: 15px;
  }

  .projects-handled-company {
    font-size: 1.1rem;
  }

  .projects-handled-detail {
    font-size: 0.9rem;
  }
}
/* testimonial section */
/* customer testimonial section */
/* Testimonial Section Styles */
.testimonial-section {
  background-color: var(--color-2);
  padding: 80px 0;
}
.testimonial-section .image-container img:hover {
  transform: scale(1.05);
  transition: transform 3s ease;
  transition: transform 3s ease-out;
}

.testimonial-section .testimonial-section-heading {
  color: #121212;
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: 700;
}

.testimonial-section .testimonial-section-subheading {
  color: #4f81bd;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.2rem;
  font-weight: 500;
}

.testimonial-section .testimonial-section-card {
  background-color: #f1f2f3;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-section .testimonial-section-content {
  position: relative;
  margin-bottom: 30px;
}

.testimonial-section .testimonial-section-quote {
  position: absolute;
  top: -20px;
  left: -15px;
  color: #4f81bd;
  font-size: 4rem;
  opacity: 0.2;
}

.testimonial-section .testimonial-section-text {
  color: #121212;
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-section .testimonial-section-client {
  border-top: 2px solid #4f81bd;
  padding-top: 25px;
  text-align: center;
}

.testimonial-section .testimonial-section-client-name {
  color: #121212;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial-section .testimonial-section-client-details {
  color: #4f81bd;
  font-weight: 500;
  margin-bottom: 5px;
}

.testimonial-section .testimonial-section-client-project {
  color: #121212;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 0;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-section .testimonial-section-heading {
    font-size: 2.2rem;
  }

  .testimonial-section .testimonial-section-subheading {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .testimonial-section .testimonial-section-card {
    padding: 30px 25px;
  }

  .testimonial-section .testimonial-section-text {
    font-size: 1.05rem;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .testimonial-section {
    padding: 40px 0;
  }

  .testimonial-section .testimonial-section-heading {
    font-size: 1.8rem;
  }

  .testimonial-section .testimonial-section-subheading {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .testimonial-section .testimonial-section-card {
    padding: 25px 20px;
  }

  .testimonial-section .testimonial-section-quote {
    font-size: 3rem;
    left: -10px;
  }

  .testimonial-section .testimonial-section-text {
    font-size: 1rem;
  }

  .testimonial-section .testimonial-section-client-name {
    font-size: 1.2rem;
  }
}
/* index page ends */
/* about section */
/* about banner */
/* About Banner Section Styles */
.about-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 6em;
}

.about-banner-container {
  position: relative;
  width: 100%;
}

.about-banner-image {
  display: block;
  height: 500px;
  object-fit: cover;
}

.about-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-banner-heading {
  color: #f5f5f5;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.about-banner-subheading {
  color: #4f81bd;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-banner-image {
    height: 400px;
  }

  .about-banner-heading {
    font-size: 2.8rem;
  }

  .about-banner-subheading {
    font-size: 1.3rem;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .about-banner-image {
    height: 350px;
  }

  .about-banner-heading {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .about-banner-subheading {
    font-size: 1.1rem;
  }
}
/* About Section Styles */
.about-section {
  padding: 80px 0;
  background-color: var(--color-2);
}

.about-section-heading {
  color: #121212;
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: 700;
}

.about-section-subheading {
  color: #4f81bd;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.2rem;
  font-weight: 500;
}

.about-section-founder-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
}

.about-section-founder-image {
  height: 300px;
  overflow: hidden;
  margin-top: 1.5em;
}

.about-section-founder-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-section-founder-info {
  padding: 25px 20px;
}

.about-section-founder-name {
  color: #121212;
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.about-section-founder-title {
  color: #4f81bd;
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.about-section-founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-section-founder-credential {
  background-color: #f5f5f5;
  color: #121212;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  text-align: center;
}

.about-section-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-section-text {
  color: #121212;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-section-highlight {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.about-section-highlight i {
  color: #4f81bd;
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 3px;
}

.about-section-highlight p {
  color: #121212;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-section {
    padding: 60px 0;
  }

  .about-section-heading {
    font-size: 2.2rem;
  }

  .about-section-subheading {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .about-section-founder-image {
    height: 280px;
  }

  .about-section-founder-name {
    font-size: 1.3rem;
  }

  .about-section-text {
    font-size: 1rem;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .about-section {
    padding: 40px 0;
  }

  .about-section-heading {
    font-size: 1.8rem;
  }

  .about-section-subheading {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .about-section-founder-card {
    margin-bottom: 30px;
  }

  .about-section-founder-image {
    height: 250px;
  }

  .about-section-founder-info {
    padding: 20px 15px;
  }

  .about-section-founder-name {
    font-size: 1.3rem;
  }

  .about-section-founder-credentials {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-section-founder-credential {
    font-size: 0.8rem;
    padding: 4px 8px;
  }

  .about-section-text {
    font-size: 1rem;
  }

  .about-section-highlight i {
    font-size: 1.3rem;
    margin-right: 12px;
  }
}
/* counter section */
/* Counter Section Styles */
.counter-section {
  background-color: #121212;
  padding: 80px 0;
  color: #f5f5f5;
}

.counter-section-heading {
  color: #f5f5f5;
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.counter-section-subheading {
  color: #4f81bd;
  font-size: 1.2rem;
  margin-bottom: 40px;
  font-weight: 500;
}

.counter-section-counter {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 15px;
  background-color: rgba(79, 129, 189, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.counter-section-counter:hover {
  background-color: rgba(79, 129, 189, 0.2);
  transform: translateY(-5px);
}

.counter-section-number {
  color: #4f81bd;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: "Arial", sans-serif;
}

.counter-section-label {
  color: #f5f5f5;
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 500;
}

.counter-section-certificate {
  border: 2px solid #4f81bd;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: rgba(245, 245, 245, 0.05);
}

.counter-section-certificate img {
  border-radius: 20px;
  width: auto;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .counter-section {
    padding: 60px 0;
  }

  .counter-section-heading {
    font-size: 2rem;
  }

  .counter-section-subheading {
    font-size: 1.1rem;
    margin-bottom: 35px;
  }

  .counter-section-number {
    font-size: 2.2rem;
  }

  .counter-section-certificate {
    margin-top: 40px;
    padding: 15px;
  }

  .counter-section-certificate img {
    max-height: 350px;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .counter-section {
    padding: 40px 0;
  }

  .counter-section-heading {
    font-size: 1.8rem;
    text-align: center;
  }

  .counter-section-subheading {
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
  }

  .counter-section-number {
    font-size: 2rem;
  }

  .counter-section-label {
    font-size: 0.9rem;
  }

  .counter-section-certificate {
    margin-top: 30px;
    padding: 10px;
  }

  .counter-section-certificate img {
    max-height: 300px;
  }
}
/* vision mission values */
/* Vision Mission Section Styles */
.vision-mission-section {
  padding: 80px 0;
  background-color: var(--color-2);
}

.vision-mission-section .vision-mission-section-heading {
  color: #121212;
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: 700;
}

.vision-mission-section .vision-mission-section-subheading {
  color: #4f81bd;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.2rem;
  font-weight: 500;
}

.vision-mission-section .vision-mission-section-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
  border-top: 4px solid #4f81bd;
}

.vision-mission-section .vision-mission-section-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vision-mission-section .vision-mission-section-icon {
  color: #4f81bd;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.vision-mission-section .vision-mission-section-title {
  color: #121212;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.vision-mission-section .vision-mission-section-text {
  color: #121212;
  line-height: 1.6;
  margin-bottom: 15px;
}

.vision-mission-section .vision-mission-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vision-mission-section .vision-mission-section-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.vision-mission-section .vision-mission-section-item i {
  color: #4f81bd;
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.vision-mission-section .vision-mission-section-item span {
  color: #121212;
  line-height: 1.5;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .vision-mission-section {
    padding: 60px 0;
  }

  .vision-mission-section .vision-mission-section-heading {
    font-size: 2.2rem;
  }

  .vision-mission-section .vision-mission-section-subheading {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .vision-mission-section .vision-mission-section-card {
    margin-bottom: 20px;
    padding: 25px 20px;
  }

  .vision-mission-section .vision-mission-section-icon {
    font-size: 2.2rem;
  }

  .vision-mission-section .vision-mission-section-title {
    font-size: 1.3rem;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .vision-mission-section {
    padding: 40px 0;
  }

  .vision-mission-section .vision-mission-section-heading {
    font-size: 1.8rem;
  }

  .vision-mission-section .vision-mission-section-subheading {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .vision-mission-section .vision-mission-section-card {
    margin-bottom: 20px;
    padding: 20px 15px;
  }

  .vision-mission-section .vision-mission-section-icon {
    font-size: 2rem;
  }

  .vision-mission-section .vision-mission-section-title {
    font-size: 1.2rem;
  }

  .vision-mission-section .vision-mission-section-text {
    font-size: 0.95rem;
  }

  .vision-mission-section .vision-mission-section-item {
    margin-bottom: 12px;
  }

  .vision-mission-section .vision-mission-section-item i {
    font-size: 1.1rem;
    margin-right: 10px;
  }

  .vision-mission-section .vision-mission-section-item span {
    font-size: 0.95rem;
  }
}
/* infra section */
/* Infrastructure Section Styles */
.about-infrastructure-section {
  padding: 80px 0;
  background-color: var(--color-2);
}

.about-infrastructure-section .about-infrastructure-section-heading {
  color: #121212;
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: 700;
}

.about-infrastructure-section .about-infrastructure-section-subheading {
  color: #4f81bd;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.2rem;
  font-weight: 500;
}

.about-infrastructure-section .about-infrastructure-section-item {
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.about-infrastructure-section .about-infrastructure-section-item:hover {
  transform: translateY(-5px);
}

.about-infrastructure-section .about-infrastructure-section-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 540px;
  height: 100%;
}

.about-infrastructure-section
  .about-infrastructure-section-item:hover
  .about-infrastructure-section-image {
  box-shadow: 0 10px 25px rgba(79, 129, 189, 0.2);
}

.about-infrastructure-section .about-infrastructure-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.about-infrastructure-section
  .about-infrastructure-section-item:hover
  .about-infrastructure-section-image
  img {
  transform: scale(1.05);
}

.about-infrastructure-section .about-infrastructure-section-title {
  color: #121212;
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.about-infrastructure-section .about-infrastructure-section-description {
  color: #121212;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .about-infrastructure-section {
    padding: 60px 0;
  }

  .about-infrastructure-section .about-infrastructure-section-heading {
    font-size: 2.2rem;
  }

  .about-infrastructure-section .about-infrastructure-section-subheading {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .about-infrastructure-section .about-infrastructure-section-image img {
    height: 180px;
  }

  .about-infrastructure-section .about-infrastructure-section-title {
    font-size: 1.2rem;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .about-infrastructure-section {
    padding: 40px 0;
  }

  .about-infrastructure-section .about-infrastructure-section-heading {
    font-size: 1.8rem;
  }

  .about-infrastructure-section .about-infrastructure-section-subheading {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .about-infrastructure-section .about-infrastructure-section-image img {
    height: 160px;
  }

  .about-infrastructure-section .about-infrastructure-section-title {
    font-size: 1.1rem;
  }

  .about-infrastructure-section .about-infrastructure-section-description {
    font-size: 0.9rem;
  }
}
/* about page ends */
/* portfolio page */
/* Portfolio Section Styles */
.portfolio-section {
  padding-top: 80px;
  background-color: #f9f9f9;
}

.portfolio-section .portfolio-section-heading {
  color: #121212;
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  font-weight: 700;
}

.portfolio-section .portfolio-section-subheading {
  color: #4f81bd;
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.2rem;
  font-weight: 500;
}

.portfolio-section .portfolio-section-tile {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-section .portfolio-section-tile::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 20%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(30deg);
  z-index: 2;
}

.portfolio-section .portfolio-section-tile:hover {
  box-shadow: 0 15px 30px rgba(79, 129, 189, 0.4);
  transform: translateY(-8px);
}

.portfolio-section .portfolio-section-tile:hover::before {
  animation: portfolio-section-shine 1s forwards;
}

@keyframes portfolio-section-shine {
  0% {
    left: -60%;
  }
  100% {
    left: 120%;
  }
}

.portfolio-section .portfolio-section-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.portfolio-section .portfolio-section-tile:hover .portfolio-section-image {
  transform: scale(1.05);
}

.portfolio-section .portfolio-section-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.9), transparent);
  padding: 20px;
  color: #ffffff;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.portfolio-section .portfolio-section-tile:hover .portfolio-section-overlay {
  transform: translateY(0);
}

.portfolio-section .portfolio-section-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.portfolio-section .portfolio-section-desc {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .portfolio-section {
    padding: 60px 0;
  }

  .portfolio-section .portfolio-section-heading {
    font-size: 2.2rem;
  }

  .portfolio-section .portfolio-section-subheading {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .portfolio-section .portfolio-section-image {
    height: 220px;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .portfolio-section {
    padding: 40px 0;
  }

  .portfolio-section .portfolio-section-heading {
    font-size: 1.8rem;
  }

  .portfolio-section .portfolio-section-subheading {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .portfolio-section .portfolio-section-image {
    height: 200px;
  }

  .portfolio-section .portfolio-section-overlay {
    padding: 15px;
  }

  .portfolio-section .portfolio-section-title {
    font-size: 1.1rem;
  }

  .portfolio-section .portfolio-section-desc {
    font-size: 0.85rem;
  }
}
/* supply chain section in portfolio page */
/* Sourcing Products Section Styles */
.supplychain-management .sourcing-products-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-1);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.supplychain-management .sourcing-product-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.supplychain-management .content-container {
  background-color: antiquewhite;
  padding: 20px;
  border-radius: 10px;
}

.supplychain-management .sourcing-product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(1, 53, 116, 0.82);
}

.supplychain-management .sourcing-product-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.supplychain-management .sourcing-product-item a {
  display: block;
  text-decoration: none;
}

.supplychain-management .sourcing-product-item a:hover {
  text-decoration: none;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .supplychain-management .sourcing-products-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .supplychain-management .sourcing-product-item {
    margin-bottom: 1.5rem;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .supplychain-management .sourcing-products-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .supplychain-management .sourcing-product-item {
    margin-bottom: 1rem;
  }
}

/* services page */
/* Services Banner Section Styles */
.services-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 6em;
}

.services-banner-container {
  position: relative;
  width: 100%;
}

.services-banner-image {
  display: block;
  height: 500px;
  object-fit: cover;
}

.services-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-banner-heading {
  color: #f5f5f5;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.services-banner-subheading {
  color: #4f81bd;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
/* infrastructure page */
/* infra banner */
/* infra banner */
/* infra Banner Section Styles */
.infra-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 6em;
}

.infra-banner-container {
  position: relative;
  width: 100%;
}

.infra-banner-image {
  display: block;
  height: 500px;
  object-fit: cover;
}

.infra-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.infra-banner-heading {
  color: #f5f5f5;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.infra-banner-subheading {
  color: #4f81bd;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .infra-banner-image {
    height: 400px;
  }

  .infra-banner-heading {
    font-size: 2.8rem;
  }

  .infra-banner-subheading {
    font-size: 1.3rem;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .infra-banner-image {
    height: 350px;
  }

  .infra-banner-heading {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .infra-banner-subheading {
    font-size: 1.1rem;
  }
}
/* Infrastructure Section Styles */
.infrastructure-section {
  padding: 80px 0;
  background-color: var(--color-2);
  position: relative;
}

.infrastructure-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-3) 50%,
    transparent 100%
  );
}

.infrastructure-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-3);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.infrastructure-section .section-subtitle {
  font-size: 1.2rem;
  color: var(--color-1);
  margin-bottom: 3rem;
  opacity: 0.8;
}

.infrastructure-section .infrastructure-card {
  background-color: var(--color-2);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.infrastructure-section .infrastructure-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(79, 129, 189, 0.2);
}

.infrastructure-section .infrastructure-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.infrastructure-section .infrastructure-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.infrastructure-section .infrastructure-card:hover .infrastructure-img {
  transform: scale(1.1);
}

.infrastructure-section .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(18, 18, 18, 0.6), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.infrastructure-section .infrastructure-card:hover .image-overlay {
  opacity: 1;
}

.infrastructure-section .overlay-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.infrastructure-section .infrastructure-card:hover .overlay-icon {
  transform: scale(1);
}

.infrastructure-section .overlay-icon i {
  font-size: 1.5rem;
  color: var(--color-2);
}

.infrastructure-section .infrastructure-content {
  padding: 1.5rem;
}

.infrastructure-section .infrastructure-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-3);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.infrastructure-section .infrastructure-description {
  font-size: 0.95rem;
  color: var(--color-1);
  line-height: 1.6;
  margin-bottom: 0;
  opacity: 0.9;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .infrastructure-section {
    padding: 60px 0;
  }

  .infrastructure-section .section-title {
    font-size: 2rem;
  }

  .infrastructure-section .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  .infrastructure-section .infrastructure-image {
    height: 220px;
  }

  .infrastructure-section .infrastructure-content {
    padding: 1.3rem;
  }

  .infrastructure-section .infrastructure-title {
    font-size: 1.2rem;
  }

  .infrastructure-section .infrastructure-description {
    font-size: 0.9rem;
  }

  .infrastructure-section .overlay-icon {
    width: 55px;
    height: 55px;
  }

  .infrastructure-section .overlay-icon i {
    font-size: 1.3rem;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .infrastructure-section {
    padding: 50px 0;
  }

  .infrastructure-section .section-title {
    font-size: 1.8rem;
  }

  .infrastructure-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .infrastructure-section .infrastructure-card {
    margin-bottom: 1.5rem;
  }

  .infrastructure-section .infrastructure-image {
    height: 200px;
  }

  .infrastructure-section .infrastructure-content {
    padding: 1rem;
  }

  .infrastructure-section .infrastructure-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .infrastructure-section .infrastructure-description {
    font-size: 0.85rem;
  }

  .infrastructure-section .overlay-icon {
    width: 50px;
    height: 50px;
  }

  .infrastructure-section .overlay-icon i {
    font-size: 1.2rem;
  }
}

/* Portfolio Banner Section Styles */
.portfolio-banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 6em;
}

.portfolio-banner-container {
  position: relative;
  width: 100%;
}

.portfolio-banner-image {
  display: block;
  height: 500px;
  object-fit: cover;
}

.portfolio-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.portfolio-banner-heading {
  color: #f5f5f5;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.portfolio-banner-subheading {
  color: #4f81bd;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .services-banner-image,
  .portfolio-banner-image {
    height: 400px;
  }

  .services-banner-heading,
  .portfolio-banner-heading {
    font-size: 2.8rem;
  }

  .services-banner-subheading,
  .portfolio-banner-subheading {
    font-size: 1.3rem;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .services-banner-image,
  .portfolio-banner-image {
    height: 350px;
  }

  .services-banner-heading,
  .portfolio-banner-heading {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .services-banner-subheading,
  .portfolio-banner-subheading {
    font-size: 1.1rem;
  }
}
/* services main section */
/* Services Main Section Styles */
.services-main-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.services-main-sidebar {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 100px;
  margin-bottom: 30px;
}

.services-main-sidebar-title {
  color: #121212;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid #4f81bd;
}

.services-main-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-main-sidebar-item {
  margin-bottom: 12px;
}

.services-main-sidebar-link {
  color: #121212;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.services-main-sidebar-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: #4f81bd;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services-main-sidebar-link:hover,
.services-main-sidebar-link:focus {
  background-color: rgba(79, 129, 189, 0.1);
  color: #4f81bd;
}

.services-main-sidebar-link:hover::before,
.services-main-sidebar-link:focus::before {
  opacity: 1;
}

.services-main-content {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.services-main-service {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eaeaea;
}

.services-main-service:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.services-main-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.services-main-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.services-main-image:hover img {
  transform: scale(1.05);
}

.services-main-title {
  color: #121212;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 2px solid #4f81bd;
  display: inline-block;
}

.services-main-description {
  color: #121212;
  line-height: 1.7;
  font-size: 1.05rem;
}
/* Active state for sidebar links */
.services-main-sidebar-link.active {
  background-color: rgba(79, 129, 189, 0.15);
  color: #4f81bd;
  font-weight: 600;
}

.services-main-sidebar-link.active::before {
  opacity: 1;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .services-main-section {
    padding: 60px 0;
  }

  .services-main-sidebar {
    padding: 20px 15px;
    margin-bottom: 25px;
  }

  .services-main-sidebar-title {
    font-size: 1.3rem;
  }

  .services-main-content {
    padding: 25px 20px;
  }

  .services-main-service {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .services-main-title {
    font-size: 1.6rem;
  }

  .services-main-image img {
    height: 180px;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .services-main-section {
    padding: 40px 0;
  }

  .services-main-sidebar {
    position: static;
    margin-bottom: 25px;
    padding: 20px 15px;
  }

  .services-main-sidebar-title {
    font-size: 1.2rem;
  }

  .services-main-content {
    padding: 20px 15px;
  }

  .services-main-service {
    margin-bottom: 35px;
    padding-bottom: 25px;
  }

  .services-main-title {
    font-size: 1.4rem;
  }

  .services-main-description {
    font-size: 1rem;
  }

  .services-main-image {
    margin-bottom: 15px;
  }

  .services-main-image img {
    height: 160px;
  }
}
/* service page ends */
/* contact page */
/* Contact Section Styles */
.contact-banner {
  margin-top: 6em;
}
.contact-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.contact-section-subtitle {
  color: #121212;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.contact-section-underline {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #4f81bd;
}

.contact-section-title {
  color: #121212;
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 700;
}

.contact-section-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-section-icon-box {
  background-color: #4f81bd;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-section-icon-box i {
  font-size: 1.2rem;
}

.contact-section-info-label {
  color: #121212;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1rem;
}

.contact-section-info-link {
  color: #4f81bd;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-section-info-link:hover {
  color: #121212;
  text-decoration: underline;
}

.contact-section-address {
  color: #121212;
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

.contact-section-gstin {
  color: #121212;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-section-form {
  background-color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-section-form-group {
  margin-bottom: 20px;
}

.contact-section-form-control {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-section-form-control:focus {
  border-color: #4f81bd;
  box-shadow: 0 0 0 0.2rem rgba(79, 129, 189, 0.25);
}

.contact-section-btn {
  background-color: #4f81bd;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-section-btn:hover {
  background-color: #3a6ea5;
  transform: translateY(-2px);
}

/* Call to Action Section Styles */
.contact-cta-section {
  padding: 60px 0;
  background-color: #121212;
  color: #ffffff;
  text-align: center;
}

.contact-cta-section-subtitle {
  color: #f5f5f5;
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.contact-cta-section-underline {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #4f81bd;
}

.contact-cta-section-title {
  color: #f5f5f5;
  font-size: 2rem;
  margin-bottom: 0;
  font-weight: 700;
}

.contact-cta-section-btn {
  background-color: #4f81bd;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact-cta-section-btn:hover {
  background-color: #3a6ea5;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Map Section Styles */
.contact-map-section {
  padding: 0;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-section-title {
    font-size: 2rem;
  }

  .contact-cta-section {
    padding: 50px 0;
  }

  .contact-cta-section-title {
    font-size: 1.8rem;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-section-title {
    font-size: 1.8rem;
  }

  .contact-section-info-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .contact-section-icon-box {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .contact-section-form {
    margin-top: 30px;
    padding: 20px 15px !important;
  }

  .contact-cta-section {
    padding: 40px 0;
  }

  .contact-cta-section-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .contact-cta-section-btn {
    margin-top: 15px;
  }
}
/* footer styles */
/* Footer Section Styles */
.site-footer {
  background-color: #121212;
  color: #f5f5f5;
  padding: 60px 0 20px;
}

.footer-logo-img {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-catchphrase {
  color: #4f81bd;
  font-size: 1.2rem;
  font-weight: bold !important;
  margin-bottom: 10px;
  font-style: italic;
}

.footer-description {
  opacity: 0.8;
  line-height: 1.6;
}

.footer-heading {
  color: #f5f5f5;
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #4f81bd;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-item {
  margin-bottom: 12px;
}

.footer-link {
  color: #f5f5f5;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.footer-link i {
  margin-right: 10px;
  color: #4f81bd;
  transition: all 0.3s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #4f81bd;
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: #4f81bd;
}

.footer-link:hover i {
  transform: translateX(3px);
}

.footer-link:hover::after {
  width: 100%;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-item {
  display: flex;
  margin-bottom: 20px;
}

.footer-contact-item i {
  color: #4f81bd;
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-text {
  line-height: 1.5;
  opacity: 0.9;
}

.footer-contact-link {
  color: #f5f5f5;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-contact-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #4f81bd;
  transition: width 0.3s ease;
}

.footer-contact-link:hover {
  color: #4f81bd;
}

.footer-contact-link:hover::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 245, 245, 0.1);
  padding-top: 20px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copyright,
.footer-credit {
  margin-bottom: 0;
  opacity: 0.7;
  font-size: 0.9rem;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  .site-footer {
    padding: 50px 0 20px;
  }

  .footer-logo-img {
    max-width: 150px;
  }

  .footer-catchphrase {
    font-size: 1.1rem;
  }

  .footer-heading {
    font-size: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Mobile Styles */
@media (min-width: 1px) and (max-width: 767.98px) {
  .site-footer {
    padding: 40px 0 20px;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-logo-img {
    max-width: 130px;
    margin: 0 auto 15px;
  }

  .footer-catchphrase,
  .footer-description {
    text-align: center;
  }

  .footer-heading {
    text-align: center;
    font-size: 1.2rem;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-contact-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 25px;
  }

  .footer-contact-item i {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .site-footer .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
/* custom css ends */
.w0 {
  width: 0%;
}
.fixed {
  position: fixed;
  z-index: 2;
}
.priceicn {
  width: 50px;
}
.priceicn2 {
  width: 120px;
}
.point {
  bottom: 10px;
  left: 10px;
}
.point1 {
  bottom: 70px;
  left: 10px;
}
.point2 {
  bottom: 15px;
  right: 60px;
}
.blink {
  -webkit-animation: blink 1s;
  animation: blink 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (min-width: 1px) and (max-width: 767.98px) {
  .pad {
    padding: 40px 0;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .pad {
    padding: 40px 0;
  }
}

#notfound {
  position: relative;
  height: 100vh;
}
#notfound .notfound {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.notfound {
  max-width: 410px;
  width: 100%;
  text-align: center;
}
.oopslogo {
  width: 350px;
}
.notfound h2 {
  color: #000;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
}
.notfound p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 5px;
}
.notfound a {
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  background: #0046d5;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0px 4px 15px -5px #0046d5;
}

@media only screen and (max-width: 767px) {
  .notfound .notfound-404 {
    height: 142px;
  }
}

.time-of-year {
  margin: 100px 75px 10px 75px;
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.time-of-year .tooltip {
  background: #db2a1b;
  border-radius: 3px;
  bottom: -49px;
  font-size: 20px;
  display: block;
  left: -67px;
  padding: 15px;
  pointer-events: none;
  position: absolute;
  width: 320px;
  height: 100px;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}
.time-of-year .tooltip::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #db2a1b;
  bottom: 58px;
  content: " ";
  position: absolute;
  left: 0%;
  margin-left: -13px;
  transform: rotate(92deg);
}
.time-of-year:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
span.infos {
	font-size: 14px;
	line-height: 15px;
	display: inline-block;
	color: #d93025;
	font-weight: bold;
}