@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap");

/*===========================
    01.COMMON css 
===========================*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #6b6f92;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a:hover {
  color: #4e6ef1;
}

a {
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Archivo Black", sans-serif;
  font-weight: 700;
  margin: 0px;
  color: #313450;
}

.section-title p {
  font-size: 18px;
  line-height: 28px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 35px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin: 0px;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.error {
  color: orangered;
}

.success {
  color: green;
}

/*===== All Button Style =====*/
.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  padding: 10px 30px;
  font-size: 1rem;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s ease-in-out;
  border: none;
  background: #4e6ef1;
  overflow: hidden;
}

.main-btn:hover {
  color: #fff;
}

.main-btn.border-btn {
  border: 2px solid #4e6ef1;
  background: transparent;
  color: #313450;
}

.btn-hover {
  position: relative;
  overflow: hidden;
}

.btn-hover::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  top: 50%;
  left: 50%;
  padding: 50%;
  z-index: -1;
  transition: all 0.3s ease-out 0s;
  transform: translate3d(-50%, -50%, 0) scale(0);
}

.btn-hover:hover::after {
  transform: translate3d(-50%, -50%, 0) scale(1.3);
}

.scroll-top {
  width: 45px;
  height: 45px;
  background: #4e6ef1;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  transition: all 0.3s ease-out 0s;
}

.scroll-top:hover {
  color: #fff;
  background: rgba(78, 110, 241, 0.8);
}

@keyframes animation1 {
  0% {
    transform: translateY(30px);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(30px);
  }
}

/*===== All Preloader Style =====*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.preloader .loader .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}

.preloader .loader .spinner .spinner-container {
  pointer-events: none;
  position: absolute;
  width: 100%;
  padding-bottom: 100%;
  top: 50%;
  left: 50%;
  margin-top: -50%;
  margin-left: -50%;
  animation: spinner-linspin 1568.2353ms linear infinite;
}

.preloader .loader .spinner .spinner-container .spinner-rotator {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: spinner-easespin 5332ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-left {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  right: 50%;
}

.preloader .loader .spinner .spinner-container .spinner-rotator .spinner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  left: 50%;
}

.preloader .loader .spinner-circle {
  box-sizing: border-box;
  position: absolute;
  width: 200%;
  height: 100%;
  border-style: solid;
  /* Spinner Color */
  border-color: #4e6ef1 #4e6ef1 #ddd;
  border-radius: 50%;
  border-width: 6px;
}

.preloader .loader .spinner-left .spinner-circle {
  left: 0;
  right: -100%;
  border-right-color: #ddd;
  animation: spinner-left-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

.preloader .loader .spinner-right .spinner-circle {
  left: -100%;
  right: 0;
  border-left-color: #ddd;
  animation: right-spin 1333ms cubic-bezier(0.4, 0, 0.2, 1) infinite both;
}

/* Preloader Animations */

@keyframes spinner-linspin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-easespin {
  12.5% {
    transform: rotate(135deg);
  }

  25% {
    transform: rotate(270deg);
  }

  37.5% {
    transform: rotate(405deg);
  }

  50% {
    transform: rotate(540deg);
  }

  62.5% {
    transform: rotate(675deg);
  }

  75% {
    transform: rotate(810deg);
  }

  87.5% {
    transform: rotate(945deg);
  }

  to {
    transform: rotate(1080deg);
  }
}

@keyframes spinner-left-spin {
  0% {
    transform: rotate(130deg);
  }

  50% {
    transform: rotate(-5deg);
  }

  to {
    transform: rotate(130deg);
  }
}

@keyframes right-spin {
  0% {
    transform: rotate(-130deg);
  }

  50% {
    transform: rotate(5deg);
  }

  to {
    transform: rotate(-130deg);
  }
}

/*===== Utility Classes =====*/

.pt-200 {
  padding-top: 200px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pt-220 {
  padding-top: 220px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-130 {
  padding-top: 130px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-180 {
  margin-top: 180px;
}

.mb-112 {
  margin-bottom: 112px;
}

.mt-112 {
  margin-top: 112px;
}

.pt-80 {
  padding-top: 80px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

/*===========================
    02.HEADER css 
===========================*/
/*===== NAVBAR =====*/
.navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-out 0s;
  background-color: #fff;
}

.sticky {
  position: fixed;
  z-index: 99;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .sticky .navbar {
    padding: 15px 0;
  }
}

.sticky .navbar .navbar-nav .nav-item a {
  color: #313450;
}

.sticky .navbar .navbar-toggler .toggler-icon {
  background: #313450;
}

.navbar {
  padding: 0;
  border-radius: 5px;
  position: relative;
  transition: all 0.3s ease-out 0s;
  padding: 6px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar {
    padding: 17px 0;
  }
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img {
  max-width: 180px;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #313450;
  display: block;
  margin: 5px 0;
  position: relative;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  margin-left: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item {
    margin-left: 20px;
  }
}

.navbar-nav .nav-item a {
  font-size: 18px;
  font-weight: 400;
  color: #6b6f92;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-nav .nav-item a {
    display: inline-block;
    padding: 6px 0px;
    color: #6b6f92;
  }
}

.navbar-nav .nav-item a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  width: 0;
  height: 2px;
  background: #4e6ef1;
  z-index: -1;
  opacity: 0;
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
  color: #4e6ef1;
}

.navbar-nav .nav-item a:hover::before,
.navbar-nav .nav-item a.active::before {
  right: auto;
  left: 0;
  opacity: 1;
  width: 100%;
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}

.navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}

.navbar-nav .nav-item .sub-menu li {
  display: block;
}

.navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #222;
}

.navbar-nav .nav-item .sub-menu li a.active,
.navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #4e6ef1;
}

.navbar-nav .sub-nav-toggler {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 767px) {
  .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #222;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}

.navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #222;
  border-bottom: 1px solid #222;
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

/* ============== hero-area ============ */
.hero-section {
  position: relative;
  z-index: 1;
  background-image: url("../img/hero/hero-bg.jpg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: cover;
}

.home-heading {
  font-size: 55px;
  color: #4e6ef1;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.hero-doctor {
  position: relative;
  z-index: 2;
}

.hero-doctor img {
  width: 35rem;
  right: -0.1rem;
  position: absolute;
}

@media only screen and (max-width: 1200px) {
  .hero-doctor img {
    width: 27rem;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section {
    padding: 180px 0 140px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section .hero-content {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-content {
    margin-bottom: 50px;
  }
}

.hero-section .hero-content span {
  font-family: "Archivo Black", sans-serif;
  font-size: 30px;
  color: #4e6ef1;
  margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section .hero-content span {
    font-size: 25px;
  }
}

.hero-section .hero-content h1 {
  font-size: 50px;
  margin-bottom: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section .hero-content h1 {
    font-size: 45px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section .hero-content h1 {
    font-size: 37px;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 36px;
  }

  .cta-section h1 {
    font-size: 29px;
  }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .hero-section .hero-content h1 {
    font-size: 43px;
  }
}

.hero-section .hero-content p {
  margin-bottom: 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section .hero-img img {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section .hero-img img {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section .hero-img img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-img img {
    width: 100%;
  }
}

/*hero-img float behind text on smaller screens */
@media (max-width: 991px) {
  .hero-section {
    position: relative;
    overflow: hidden;
  }

  .hero-section .hero-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    max-width: none;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
  }

  .hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
  }
}

.feature-image img {
  width: 600px;
  height: 400px;
  object-fit: cover;
}

.feature-tag {
  display: inline-block;
  background: #00beb4;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  animation: glowPulse 2s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(0, 190, 180, 0.4);
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 5px rgba(0, 190, 180, 0.5);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 15px rgba(0, 190, 180, 0.8);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 5px rgba(0, 190, 180, 0.5);
    transform: scale(1);
  }
}

.home-img {
  overflow: hidden;
  height: 400px;
}

.home-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*===========================
    ABOUT css 
===========================*/

/* Gradient Titles & Icons */
.text-gradient {
  background: linear-gradient(90deg, #4e6ef1, #8bb0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Styles */
.about-card {
  border-radius: 20px;
  transition: transform 0.5s ease, box-shadow 0.5s ease, background 0.5s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.about-card .card-icon i {
  transition: transform 0.5s ease, color 0.5s ease;
}

.about-card:hover {
  transform: translateY(-15px) rotateX(3deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  background: linear-gradient(145deg, #4e6ef1, #8bb0ff);
  color: #fff;
}

.about-card:hover .card-icon i {
  transform: scale(1.2);
  color: #fff;
}

.about-card ul li {
  margin-bottom: 12px;
  font-size: 15px;
  transition: color 0.3s ease;
}

.about-card:hover ul li {
  color: #f0f0f0;
}

/* Floating Animation for Images */
.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Mission Section Image Overlay Icon */
.mission-image {
  position: relative;
}

/* ============== service css ==============*/
.service-section {
  background-image: url("../img/service/service-bg.jpg");
  background-size: cover;
  background-position: center;
}

/* Base card style */
.single-service {
  text-align: center;
  padding: 50px 30px;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform-style: preserve-3d;
  perspective: 1000px;
  overflow: hidden;
}

/* 3D hover effect */
.single-service:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

/* Icon hover effects */
.single-service:hover .icon {
  color: #fff;
  transform: scale(1.1) translateZ(20px);
}

.single-service:hover .icon.color-1 {
  background: #fb32fb;
}

.single-service:hover .icon.color-2 {
  background: #4e6ef1;
}

.single-service:hover .icon.color-3 {
  background: #ff3b3b;
}

.single-service:hover .icon.color-4 {
  background: #5a37ff;
}

/* Icon base styles */
.single-service .icon {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
  font-size: 40px;
  color: #313450;
  transition: all 0.4s ease;
  backface-visibility: hidden;
}

.single-service .icon.color-1 {
  background: #ffe7ff;
}

.icon.color-2 {
  background: #e4e9ff;
}

.single-service .icon.color-3 {
  background: #ffeaea;
}

.single-service .icon.color-4 {
  background: #ece8ff;
}

/* Text content */
.single-service .content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  color: #4e6ef1;
}

.single-service .content p {
  transition: all 0.3s ease;
}

.hover-border::after,
.hover-border::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff0000, #00ffff);
  bottom: 0px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.hover-border::before {
  top: 0px;
  transform-origin: left;
}

.hover-border:hover::after,
.hover-border:hover::before {
  transform: scaleX(1);
}

.our-approach .single-service .content ul li {
  margin-block: 1rem;
}

/* =========== footer css =========== */
.footer {
  background-image: url("../img/footer/footer-bg.svg");
  background-size: cover;
  background-position: top center;
  padding-top: 150px;
}

.footer-widget img {
  width: 12rem;
}

.footer .widget-wrapper .footer-widget {
  margin-bottom: 40px;
}

.footer .widget-wrapper .footer-widget .desc {
  font-size: 18px;
  line-height: 28px;
}

.footer .widget-wrapper .footer-widget .socials {
  display: flex;
  align-items: center;
}

.footer .widget-wrapper .footer-widget .socials li {
  margin-right: 20px;
}

.footer .widget-wrapper .footer-widget .socials li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #6b6f92;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .widget-wrapper .footer-widget .socials li a:hover {
  padding-left: 0px;
}

.footer .widget-wrapper .footer-widget h3 {
  margin-bottom: 35px;
  color: #4e6ef1;
}

.footer .widget-wrapper .footer-widget ul li {
  line-height: 36px;
}

.footer .widget-wrapper .footer-widget ul li a {
  color: #6b6f92;
}

.footer .widget-wrapper .footer-widget ul li a:hover {
  color: #4e6ef1;
  padding-left: 7px;
}

.footer-link a {
  position: relative;
}

.footer-link a::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: #4e6ef1;
  position: absolute;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: right;
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.footer-link:hover a::before {
  transform: scaleX(1);
  transform-origin: left;
  opacity: 1;
}

.footer .copy-right {
  text-align: center;
  padding: 30px 0;
  border-top: 2px solid #fff;
}

@media only screen and (max-width: 1200px) {
  .footer {
    padding-top: 112px;
  }
  .hero-section {
    padding-top: 200px !important;
  }
}

@media (max-width: 767px) {
  .public-sector-headline {
    padding-top: 15rem;
  }
  .footer .widget-wrapper .footer-widget .desc {
    font-size: 1.1rem;
  }
  .footer {
    padding-top: 45px;
  }
}

/*===========================
    PUBLIC SECTOR 
===========================*/
.public-sector-card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 32px;
}

.public-sector-card ul li {
  line-height: 1.7;
}

.public-sector-card h3 {
  color: #4e6ef1;
  text-align: center;
}

.public-sector-wrapper {
  background-image: url("../img/publicsector/public-sector.jpg");
  background-repeat: no-repeat;
  background-position: center 35%;
  background-size: cover;
  height: 40vw;
  position: relative;
}

.public-sector-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(34 33 33 / 49%);
}

.public-sector-headline {
  padding-top: 20rem;
  color: white;
}

.public-sector-headline h1 {
  color: white;
  font-size: 3rem;
}

.public-sector-headline h1,
.public-sector-headline p {
  position: relative;
  z-index: 1;
}

@media (max-width: 1300px) {
  .public-sector-wrapper {
    height: 100vh;
  }
}

@media (max-width: 992px) {
  .footer {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .public-sector-headline {
    padding-top: 15rem;
  }

  .footer {
    padding-top: 45px;
  }
}

@media (max-width: 400px) {
  .public-sector-headline h1 {
    font-size: 2.5rem;
  }

  .public-sector-headline p {
    font-size: 1rem;
  }
}

.benefits-section {
  background-image: url("../img/service/service-bg.jpg");
  background-size: cover;
  background-position: center;
}

/* Hover Effects */
.shadow-hover {
  transition: all 0.3s ease;
}

.shadow-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 767px) {
  .section-title::after {
    width: 40px;
  }
}

/*===========================
  CONTACT
===========================*/

.form-wrapper {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  background-image: url("../img/contact/contact-img-1.jpg");
  border-radius: 1rem;
  overflow: hidden;
}

.form-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}

.contact-form {
  position: relative;
  z-index: 2;
}

.contact-form input::placeholder {
  color: white !important;
}

.label-i {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1rem;
  text-align: left;
  color: white;
}

.input-i {
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  background: rgb(255 255 255 / 37%);
  color: white;
  transition: all 0.3s ease;
}

.btn.btn-form {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary.btn-form {
  background: white;
  color: #4e6ef1;
}

.btn-primary.btn-form:hover {
  background: #4e6ef1;
  color: white;
}

.typing-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 10px 0;
  box-sizing: border-box;
}

.typing-heading,
.typing-subtext {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.typing-heading-inner {
  font-size: 3rem;
  color: #4e6ef1;
}

.typing-heading-inner,
.typing-subtext-inner {
  display: inline;
  white-space: normal;
  word-wrap: break-word;
}

.typing-heading-inner.cursor::after,
.typing-subtext-inner.cursor::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  vertical-align: middle;
  margin-left: 6px;
  background-color: #000;
  animation: blink 0.8s step-end infinite;
}

.typing-heading-inner.done::after,
.typing-subtext-inner.done::after {
  display: none;
}

/* blink */
@keyframes blink {
  50% {
    opacity: 0;
  }
}

.typing-subtext {
  margin-top: 10px;
  height: 10px;
}


.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: fadeIn 0.3s ease;
}

.popup-content h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

/* Icon styles */
.popup-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.popup-error {
  color: #e74c3c;
}

.popup-success {
  color: #27ae60;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-slide-track {
  display: flex;
  width: calc(250px * 10);
  animation: scroll 10s linear infinite;
}

.logo-slide {
  width: 250px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.logo-slide img {
  width: 100%;
  max-width: 180px;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-slide img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 5));
  }
}

.contact-section {
  padding-top: 236px;
  background-image: url("../img/contact/contact-img-1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 140%;
  margin-bottom: 6rem;
}

@media (max-width: 767px) {
  .contact-section {
    padding-top: 16rem;
    background-size: cover;
  }
}
