:root {
  --primary-color: #003054;
  --accent-color: #E5B20A;
  --bg-color: #E8F2FC;
}

html,
body {
  font-family: 'Roboto', sans-serif;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, and Edge */
}

.heading-effect1 {
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.heading-effect1::after {
  content: "";
  width: 50%;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  left: 44px;
  bottom: 262px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-in-out;
}

.heading-effect1:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.heading-effect {
  display: inline-block;
  /* Ensures the effect applies properly */
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-bottom: 5px;
  /* Adds space for underline */
  text-align: center !important;
  font-weight: bold;
}

.heading-effect::after {
  content: "";
  width: 50%;
  height: 2px;
  background: var(--primary-color);
  position: absolute;
  left: 25%;
  /* Centers the underline */
  bottom: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease-in-out;
}

.heading-effect:hover::after {
  transform: scaleX(1);
}



/* Sticky Navbar */
.sticky-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgb(0 48 84 / 22%);
  /* Slight transparency */
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sticky-navbar.scrolled {
  background: var(--primary-color);
  /* Solid background when scrolled */
}

/* Brand Styling */
.navbar-brand {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

/* Navbar Links */
.navbar-nav {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

.navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 500;
  color: white;
  transition: 0.3s ease;
  padding: 10px 15px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  color: var(--accent-color);
}

/* Call Button */
.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  position: relative;
  transition: background 0.3s ease;
}

.call-btn:hover {
  background: var(--accent-color);
}

/* Get A Quote Button */
.btn-custom {
  background: white;
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  border: 2px solid white;
  transition: 0.3s;
}

.btn-custom:hover {
  background: var(--accent-color);
  color: white;
}

.call-btn .wave {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(55, 145, 242, 0.4);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  z-index: -1;
}

.call-btn .wave:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes vibrate {
  0% {
    transform: translateX(-2px) rotate(-2deg);
  }

  100% {
    transform: translateX(2px) rotate(2deg);
  }
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .navbar {
    padding: 8px 0;
    /* Reduce navbar padding on mobile */
    background-color: var(--primary-color);
    /* Ensure clear background for mobile */
  }

  .navbar-toggler {
    background-color: white;
  }

  .navbar-collapse {
    text-align: left;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    text-align: left;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 12px;
  }
}

/* Mobile-specific styles */
@media (max-width: 767px) {
  .navbar-brand {
    max-width: 25%;
    /* Adjust logo size for smaller screens */
  }

  .navbar-nav {
    text-align: center;
    /* Center menu items on mobile */
  }

  .navbar-right {
    margin-top: 10px;
    /* Adjust button spacing on smaller screens */
  }

  /* Ensure navbar doesn't overlap with content */
  .navbar {
    position: relative;
    z-index: 10;
    /* Ensure navbar stays above content */
  }


  /* Adjust button styling for better mobile appearance */
  .navbar-right .btn-custom {
    padding: 10px 20px;
    /* Adjust button size */
    font-size: 14px;
    /* Adjust font size */
  }

  /* Ensure navbar links have some space between them on mobile */
  .navbar-nav .nav-link {
    margin-bottom: 10px;
    /* Space between links on mobile */
  }
}



/* hero-section */
.container {
  max-width: 1200px;
}

/* Left Side - Image Section */
.image-wrapper {
  position: relative;
}

.main-image {
  width: 70% !important;
  border-radius: 10px;
}

/* Small Image Animation */
.small-image {
  position: absolute;
  bottom: -30px;
  left: 19%;
  width: 198px;
  height: 199px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.small-image:hover {
  transform: scale(1.1);
}

/* Right Side - Text Section */
.section-title {
  padding-left: 20px;
}

/* Highlight Badge
.highlight-badge {
  display: inline-block;
  background: #E8F5E9;
  color: #388E3C;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 14px;
} */

/* List Items */
.section-title ul {
  margin-top: 15px;
  padding-left: 0;
  list-style: none;
}

.section-title ul li {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.section-title ul li i {
  margin-right: 8px;
}

/* Get a Quote Button */
.quote-btn {
  background: var(--accent-color);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  animation: pulse 2.5s infinite;
}

.quote-btn:hover {
  background: var(--primary-color);

}

@media (max-width: 991px) {
  .hero-section {
    text-align: center;
  }

  .image-wrapper {
    margin-bottom: 30px;
  }

  .small-image {
    width: 90px;
    height: 90px;
    bottom: -20px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-content {
    text-align: center;
    padding: 20px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .license-info {
    font-size: 0.85rem;
  }

  .section-title {
    text-align: center;
    /* Center align text on mobile */
  }
}

a {
  text-decoration: none;
}

/* Hero Section with Background Image */
.hero-section {
  position: relative;
  background-color: var(--bg-color);
  display: flex;
  color: white;
  padding: 40px;
  padding-top: 40px;
}

/* Dark Overlay for Better Readability */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Centered Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  /* Light glass effect */
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

/* Form Container */
.hero-section .form-container {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--bg-color);
  background: rgba(255, 255, 255, 0.2);
  /* Slight transparency */
  padding: 20px;
  border-radius: 10px;
}

/* Register Button */
.hero-section .register-btn {
  width: 100%;
  padding: 10px;
  border: none;
  background: var(--primary-color);
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease-in-out;
}

.hero-section .register-btn:hover {
  background: #5635a1;
}

/* Quote Section */
.hero-section .quote-section {
  padding: 50px;
  border-radius: 15px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

/* License Info */
.hero-section .license-info {
  background: rgba(206, 207, 250, 0.2);
  display: inline-block;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 18px;
  color: var(--accent-color);
  font-weight: bold;
}

/* Contact Button with Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.hero-section .contact-btn {
  background: var(--primary-color);
  color: white;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  animation: pulse 2.5s infinite;
  margin-top: 10px;
}

/* Hover Effect */
.hero-section .contact-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0px 5px 15px rgba(255, 102, 0, 0.4);
}

.hero-section h5 {
  font-size: 22px;
  color: var(--accent-color);
  text-transform: uppercase;
  font-weight: bold;
}

@media (max-width: 991px) {
  .hero-section .row {
    flex-direction: column;
    /* Show image first */
    padding-top: 80px;
  }

  .hero-content {
    text-align: center;
    /* margin-top: 30px; */
  }

  .hero-content ul {
    padding-left: 0;
    display: inline-block;
    text-align: left;
  }

  .hero-content .contact-btn {
    width: 50%;
  }

  .hero-section .image-wrapper {
    order: -1;
    /* Ensures image appears first */
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 576px) {
  /* .hero-section {
      padding: 120px 0;
  } */

  .hero-section .main-image {
    max-width: 280px;
  }

  .hero-section .small-image {
    width: 80px;
    height: 80px;
    bottom: -5px;
    right: -5px;
  }

  .hero-content h2 {
    font-size: 22px;
  }

  .hero-content ul li {
    font-size: 16px;
  }

  .hero-content .contact-btn {
    font-size: 16px;
    padding: 10px;
  }
}



/* popup */

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  /* Initially hidden */
  visibility: hidden;
  /* Initially not visible */
  transition: opacity 0.3s ease-in-out, visibility 0s 0.3s;
  /* Delay visibility change */
}

/* When active, show overlay */
.popup-overlay.active {
  opacity: 1;
  /* Make visible */
  visibility: visible;
  /* Ensure element is visible */
  transition: opacity 0.3s ease-in-out;
}

/* Popup Form */
.popup-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background-color: var(--primary-color);
  backdrop-filter: blur(15px);
  padding: 30px;
  width: 90%;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  /* Initially hidden */
  visibility: hidden;
  /* Initially not visible */
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0s 0.3s;
  /* Delay visibility change */
}

/* When active, show popup smoothly */
.popup-form.active {
  opacity: 1;
  visibility: visible;
  /* Ensure the form is visible */
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Close Button - Modern Circular Style */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  background: #ff4d4d;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: #cc0000;
}

/* Form Container Styling */
.popup-form .form-container1 {
  text-align: center;
}

/* Form Inputs - Glassmorphism Style */
.popup-form .form-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Input Icons */
.popup-form .form-group i {
  font-size: 1rem;
  color: #fff;
}

/* Inputs */
.popup-form .form-control {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  padding-left: 12px;
  font-size: 1rem;
  color: white;
}

.popup-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Button with Gradient Effect */
.popup-form .btn {
  background: linear-gradient(90deg, var(--accent-color), #00c6ff);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease-in-out, transform 0.2s;
}

.popup-form .btn:hover {
  background: linear-gradient(90deg, #0056b3, #0096d6);
  transform: scale(1.05);
}



/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -55%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}



/* counter */
/* Section Background Animation */
.counter-section {
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  padding: 35px 0 10px 0;
}

/* Gradient Animation */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Counter Box */
.counter-box {
  background: white;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Lift Effect */
.counter-box:hover {
  transform: translateY(-8px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

/* Floating Icons */
.counter-icon img {
  width: 60px;
  animation: float 3s infinite ease-in-out;
}

/* Floating Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Counter Numbers */
.counter-box h2 {
  font-size: 28px;
  font-weight: bold;
  color: black;
  margin: 10px 0;
}

.counter-box p {
  font-size: 16px;
  color: black;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .counter-box {
    margin-bottom: 20px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .col-lg-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


.experience-badge {
  position: absolute;
  top: 10%;
  left: 10%;
  background: #f7931e;
  color: black;
  padding: 15px 20px;
  border-radius: 5px;
  text-align: center;
}

.experience-badge h3 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
}

.experience-badge p {
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .experience-badge {
    top: 5%;
    left: 5%;
    padding: 10px 15px;
  }

  .experience-badge h3 {
    font-size: 1.5rem;
  }

  .experience-badge p {
    font-size: 0.8rem;
  }
}

@media (max-width: 991px) {

  /* .counter-section{
    margin-top: 80px;
  } */
  .counter-box {
    padding: 10px;
  }

  .counter-box h2 {
    font-size: 1.8rem;
  }

  .counter-box p {
    font-size: 0.9rem;
  }

  .counter-section {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 767px) {
  .counter-box h2 {
    font-size: 1.6rem;
  }

  .counter-box p {
    font-size: 0.85rem;
  }
}

/* about */

/* About Section */
.about4-section-area {
  padding: 80px 0;
  background-color: var(--bg-color);
}

.about-header-area h5 {
  font-size: 18px;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-header-area h3 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.about-header-area p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Icon Boxes */
.icon-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-box i {
  font-size: 28px;
  color: var(--accent-color);
}

.icon-box p {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Hover Effect */
.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Right Side Images */
.about-images-area {

  text-align: center;
}

.about-images-area img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Floating Animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.img1 img,
.img2 img {
  animation: float 4s infinite ease-in-out;
}

/* Experience Counter */
.content-experiance {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.content-experiance h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.content-experiance h2 {
  font-size: 40px;
  font-weight: 700;
}

.content-experiance p {
  font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .about-header-area h3 {
    font-size: 28px;
  }

  .about-header-area p {
    font-size: 16px;
  }

  .icon-box p {
    font-size: 16px;
  }

  .content-experiance h2 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .hero-section .row {
    padding-top: 0 !important;
  }

  .about4-section-area {
    padding: 20px 0;
  }
}

.about4-section-area {
  padding: 40px 0;
  padding-bottom: 100px;
  background-color: var(--bg-color);
}

.about-header-area h5 {
  font-size: 18px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.about-header-area h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 15px;
}

.about-header-area p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.icon-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 12px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.icon-box i {
  font-size: 20px;
  color: var(--accent-color);
}

.icon-box p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

.about-images-area {
  position: relative;
  text-align: center;
  display: inline-block;
}

.about-images-area .img1 img {
  width: 100%;
  border-radius: 10px;
}

.about-images-area .img2 {
  position: absolute;
  bottom: -86px;
  left: 267px;
  width: 38%;
}

.about-images-area .img2 img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.content-experiance {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  color: white;
}

.content-experiance h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 5px 0;
}

.content-experiance p {
  font-size: 16px;
  margin: 0;
}

.about-images-area .elements2 {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 50px;
}

.content-experiance {
  position: absolute;
  bottom: -17%;
  left: 32%;
  transform: translateX(-50%);
  background: var(--accent-color);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  color: white;
}

.content-experiance h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 5px 0;
}

.content-experiance p {
  font-size: 16px;
  margin: 0;
}

/*============= ABOUT CSS AREA ENDS ===============*/

/* we provide */
.manpower {
  text-align: center;

  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-in-out forwards;
  animation-delay: 0.3s;
}

.manpower .manpower-card h3 {

  font-weight: 600;
  font-size: 20px;
}

.manpower h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Card Layout - 3 Per Row */
.manpower .card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 Cards Per Row */
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

/* Ensure Cards are Square */
.manpower .card {
  position: relative;
  width: 100%;
  background: var(--bg-color);
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: 0.5s ease-in-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-in-out forwards;
}

.manpower .card i {
  background: var(--primary-color);
  color: white;
  padding: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.8rem;
  margin-bottom: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .manpower .card-container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 Cards Per Row */
  }
}

@media (max-width: 768px) {
  .manpower .card-container {
    grid-template-columns: repeat(1, 1fr);
    /* 1 Card Per Row */
  }
}

/* Card Hover Effects */
.manpower .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.manpower .card:hover i {
  transform: rotateY(360deg);
  color: var(--accent-color);
  background: white;
}

/* Job List Styling */
.manpower .job-list {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: 20px;
}

.job-points {
  width: 50%;
  font-size: 13px;
  padding: 4px 0;
  font-weight: 600;
}

.job-points::before {
  content: "•";
  font-size: 20px;
  padding-right: 10px;
  transform: translateY(-50%);
  /* color: #fff !important; */
}

/* Button Styling */
.manpower .btn1 {
  width: 60%;
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  text-align: center;
  margin: 10px auto 0;
}

.manpower .btn1:hover {
  background: var(--accent-color);
}

/* Fade-In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply Staggered Animation Delay for Each Card */
.manpower .card:nth-child(1) {
  animation-delay: 0.5s;
}

.manpower .card:nth-child(2) {
  animation-delay: 0.7s;
}

.manpower .card:nth-child(3) {
  animation-delay: 0.9s;
}

.manpower .card:nth-child(4) {
  animation-delay: 1.1s;
}

.manpower .card:nth-child(5) {
  animation-delay: 1.3s;
}

.manpower .card:nth-child(6) {
  animation-delay: 1.5s;
}

.card .bg {
  position: absolute;
  top: 84%;
  left: 80%;
  width: 208px;
  height: 242px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Show background shape on hover */
.manpower .card:hover .bg {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 767px) {
  h2.mobile-no-padding {
    padding-top: 0 !important;
  }
}



/* we serve */
.we-serve {
  text-align: center;
  padding: 18px 0px;
  background-color: var(--bg-color);
}

.certificate {
  background-color: var(--bg-color);
}

.we-serve h2 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.we-serve .swiper-container {
  max-width: 90%;

  margin: auto;
  padding: 20px 0;
}

.we-serve .swiper-container {
  visibility: visible !important;
  opacity: 1 !important;
}

.we-serve .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.we-serve .icon-box {
  width: 140px;
  height: 140px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.we-serve .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.we-serve .icon-box i {
  font-size: 40px;
  color: var(--accent-color);
  transition: color 0.3s ease, transform 0.3s ease;
}

.we-serve .icon-box:hover i {
  color: var(--primary-color);
  transform: scale(1.2);
}

.we-serve .title {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

/* Swiper Navigation */
.we-serve .swiper-button-next,
.swiper-button-prev {
  color: var(--accent-color);
}

.we-serve .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  h2.industries-title {
    padding-top: 0 !important;
  }
}



/* Client */
.client-section {
  padding: 30px 20px;
  background-color: #f4f4f4;
}

.client-section h3 {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
}

.client-section h2 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.client-section p {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

/* Swiper Container */
.client-section .swiper {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 50px;
}

.client-section .swiper-wrapper {
  display: flex;
  align-items: center;
}

.client-section .swiper-slide {
  transition: filter 0.3s ease-in-out;
}

/* Blur effect on non-hovered logos */
.client-section .swiper-wrapper:hover .swiper-slide {
  filter: blur(5px);
}

/* Remove blur on hovered logo */
.client-section .swiper-wrapper .swiper-slide:hover {
  filter: blur(0);
}

.client-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.client-logo {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 100px;
  position: relative;
}

.client-logo img {
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .client-logo {
    width: 140px;
    height: 80px;
  }
}

/* certificate */

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Ensures 3 columns */
  gap: 15px;
  padding: 10px;
  justify-content: center;
}

/* Responsive for Smaller Screens */
@media (max-width: 768px) {
  .certificate-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablets */
  }
}

@media (max-width: 480px) {
  .certificate-grid {
    grid-template-columns: repeat(1, 1fr);
    /* 1 column on mobile */
  }
}

/* Certificate Images */
.certificate h3 {
  font-weight: bold;
  /* padding-bottom: 20px; */
  font-size: 2rem;
  margin-top: 30px;
}

.certificate-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  border-radius: 8px;
  cursor: pointer;
  filter: grayscale(70%);
}

/* Hover Effects */
.certificate-grid img:hover {
  transform: scale(1.1) rotate(2deg);
  filter: grayscale(0%);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Lightbox Background */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Lightbox Image */
.lightbox img {
  max-width: 90%;
  max-height: 75%;
  border-radius: 10px;
}

/* Lightbox Active */
.lightbox.active {
  visibility: visible;
  opacity: 1;
}

/* Close Button */
.lightbox .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}


.certificate-grid img {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply Different Delays */
.certificate-grid img:nth-child(1) {
  animation-delay: 0.2s;
}

.certificate-grid img:nth-child(2) {
  animation-delay: 0.4s;
}

.certificate-grid img:nth-child(3) {
  animation-delay: 0.6s;
}

.certificate-grid img:nth-child(4) {
  animation-delay: 0.8s;
}

.certificate-grid img:nth-child(5) {
  animation-delay: 1s;
}

.certificate-grid img:nth-child(6) {
  animation-delay: 1.2s;
}

.certificate-grid img:nth-child(7) {
  animation-delay: 1.4s;
}

.certificate-grid img:nth-child(8) {
  animation-delay: 1.6s;
}

/* Responsive */
@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .col-6 {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .row {
    padding-top: 0 !important;
  }
}


/* staff*/
.staff h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}

.staff .sectionWrapper {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staff .swiper {
  width: 100%;
  height: auto;
  padding: 30px 20px 50px 20px;
}

.staff .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  border-radius: 7px;
  padding: 5px;
  cursor: grab;
}

.staff .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.staff .swiper-scrollbar {
  --swiper-scrollbar-size: 10px;
}



/* map */
#map {
  height: 500px;
  width: 100%;
}


/* consult */
/* General Consult Section */
.consult {
  background: linear-gradient(#003054, #024980);
  background-size: 120% auto;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 50px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  color: white;
  border-top-left-radius: 130px;
  animation: backgroundMove 5s infinite alternate linear;
  
}

.consult h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.consult .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Left Side - Call Button */
.consult .col-4 {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 25%;
  height: 374px;
  backdrop-filter: blur(5px);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* Right Side - Team Section */
.consult .col-8 {
  width: 65%;
}

.consult .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.consult .team-grid img {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  opacity: 0.9;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.consult .team-grid img:hover {
  transform: scale(1.1);
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
  opacity: 1;
}

/* Social Icons Styling */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  font-size: 18px;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

/* Mobile-specific styles */
@media (max-width: 767px) {

  /* Full width for col-4 and col-8 on mobile */
  .consult .col-4,
  .consult .col-8 {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }

  /* Stack columns vertically */
  .consult .row {
    flex-direction: column;
    gap: 20px;
  }

  /* Ensure button spans full width */
  .consult button {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
  }

  /* Make social icons centered */
  .social-icons {
    justify-content: center;
  }

  /* Adjust team images grid layout */
  .consult .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
  }

  .consult .team-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    opacity: 1 !important;
    /* Force full opacity on mobile */
  }

  .consult .team-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
    opacity: 1;
  }

  /* Heading and text adjustments for mobile */
  .consult h4 {
    font-size: 16px;
  }

  .consult p {
    font-size: 16px;
  }

  /* Adjust quote button on mobile */
  .consult .quote-btn {
    padding: 12px 25px;
    width: 100%;
    font-size: 16px;
  }
}


/* Animation */
.consult [data-aos] {
  opacity: 1 !important;
  transition: all 0.6s ease-in-out;
}

.consult [data-aos].aos-animate {
  opacity: 1 !important;
}


/* why choose us  */
.support-cards {
  text-align: center;
  padding: 50px 20px;
  /* background: linear-gradient(135deg, #f8f9fa, #e3e4e5); */
}

.support-header h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

/* Cards Grid Layout */
.support-cards .cards-container {
  flex-wrap: wrap;
  justify-content: center;
  grid-template-columns: repeat(4, 1fr);
  /* Ensures 4 cards in a row */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .support-cards .cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Adjust as needed */
    gap: 20px;
    /* Space between grid items */
  }
}

/* Card Styling */
.support-cards .card {
  background: white;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
}

/* Hover Effect */
.support-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.support-cards .icon {
  background: linear-gradient(45deg, var(--accent-color), #0056b3);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.8rem;
  transition: background 0.3s ease;
}

.support-cards .card:hover .icon {
  background: linear-gradient(45deg, #6a11cb, #2575fc);

}

/* Highlighted Numbers */
.support-cards .highlight {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
}

/* Bottom Line Animation */
.support-cards .card-line {
  width: 0;
  height: 4px;
  background: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out;
}

.support-cards .card:hover .card-line {
  width: 100%;
}

/* Scroll Animation */
.support-cards .card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.support-cards .card.show {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 767px) {
  .support-cards .cards-container {
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center the cards */
  }

  .support-cards .card {
    width: 100%;
    /* Full width */
    max-width: 90%;
    /* Ensures it doesn’t stretch too much */
    margin: 10px 0;
    /* Adds spacing between cards */
  }
}


/* Contact Form Section */

@keyframes bgZoom {
  0% {
    background-size: 100%;
  }

  100% {
    background-size: 150%;
  }
}

/* Section Styling */
.contact-section1 {
  background: linear-gradient(#003054, #00305465);
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

/* Layout */
.contact-section1 .container {
  max-width: 1100px;
  margin: auto;
}

.contact-section1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

/* Left Side Styling */
.contact-section1 .left-side {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-section1 .left-side h2 {
  font-size: 2rem;
  padding-bottom: 60px;
  font-weight: 600;
}

/* Contact Info */
.contact-section1 .contact-info {
  font-size: 1rem;
  display: flex;

  gap: 15px;
  margin-bottom: 28px;
}

.contact-section1 .contact-info i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

/* Form Container */
.contact-section1 .form-container {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  color: #fff;

  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Contact Form Styles */
.contact-section1 .input-group {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}

/* Input & Textarea Styling */
.contact-section1 .input-group input,
.contact-section1 .input-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 16px;
  outline: none;
  transition: border 0.3s ease-in-out, background 0.3s ease-in-out;
}

/* Placeholder Support for Floating Label Effect */
.contact-section1 .input-group input::placeholder,
.contact-section1 .input-group textarea::placeholder {
  color: transparent;
}

/* Label Styling */
.contact-section1 .input-group label {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #ddd;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

/* Floating Label Effect */
.contact-section1 .input-group input:focus+label,
.contact-section1 .input-group textarea:focus+label,
.contact-section1 .input-group input:not(:placeholder-shown)+label,
.contact-section1 .input-group textarea:not(:placeholder-shown)+label {
  top: 8px;
  font-size: 12px;
  color: white;
}

/* Adjusting Form Layout */
.contact-section1 .form-container .row {
  display: flex;
  flex-wrap: wrap;
}



/* Button Styling */
.contact-section1 .btn1 {
  display: inline-block;
  padding: 12px 24px;
  background: #ff7f50;
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.contact-section1 .btn1:hover {
  background: #ff6347;
}

/* Submit Button */
.contact-section1 .btn1 {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  width: 60%;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
}

.contact-section1 .btn1:hover {
  background: linear-gradient(135deg, #00c6ff, var(--accent-color));
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.contact-section1 .btn1:active {
  transform: scale(0.98);
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-section1 .row {
    flex-direction: column;
    /* Stack elements vertically */
    align-items: center;
    text-align: center;
  }

  .contact-section1 .left-side,
  .contact-section1 .form-container {
    width: 100%;
    /* Make both elements take full width */
    max-width: 500px;
    /* Prevents overly stretched look on larger phones */
    opacity: 1 !important;
  }

  .contact-section1 .left-side {
    margin-bottom: 16px;
  }

  .contact-section1 .form-container {
    height: auto;
    /* Adjusts height dynamically */
  }

  .contact-section1 .btn1 {
    width: 100%;
    /* Full-width button for better tap experience */
  }
}

@media (max-width: 767px) {
  .contact-section1 {
    animation: none !important;
  }
}



@media (max-width: 576px) {
  .contact-section1 {
    padding: 40px 15px;
    /* Less padding for small screens */
  }

  .contact-section1 .left-side h2 {
    font-size: 1.6rem;
    /* Slightly smaller text */
  }

  .contact-section1 .input-group input,
  .contact-section1 .input-group textarea {
    font-size: 14px;
    /* Readable size for mobile users */
  }
}





/* footer */
.new_footer_area {
  background-color: var(--primary-color);
  /* Light gray background */
  padding: 10px 0;
}

.footer_bottom {
  padding: 10px 0;
  text-align: center;
}

.footer_bottom p {
  font-size: 16px;
  font-weight: 400;
  color: white;
  /* Darker text for better visibility */
}

@media (max-width: 768px) {
  .footer_bottom p {
    font-size: 14px;
    /* Adjust for mobile */
  }
}

.map img {
  max-width: 95vw;
  max-height: 80vh;
}

/* Hero section */

/* Base styles */
.hero_main {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__cnt {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 40%;
  z-index: 10;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  animation: fade-in 0.75s 1.5s linear forwards;
}

.hero__cnt img {
  max-width: 400px;
  /* Adjust logo size */
  width: 100%;
}

.hero__cnt h1 {
  margin-top: 20px;
  font-size: 3vw;
  font-weight: bold;
  line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero__cnt h1 {
    font-size: 4vw;
  }

  .hero__cnt img {
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .hero__cnt {
    top: 35%;
  }

  .hero__cnt h1 {
    font-size: 5vw;
  }

  .hero__cnt img {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .hero__cnt {
    top: 30%;
  }

  .hero__cnt h1 {
    font-size: 6vw;
  }

  .hero__cnt img {
    max-width: 300px;
  }
}

/* Fade-in animation */
@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaling-hero-anim {
  from {
    transform: scale(1.25);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes clip-hero-anim {
  from {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}


/* career page */
a {
  text-decoration: none !important;
}

/* Image Styling */
.career-section img {
  max-width: 100%;
  height: 72%;
  /* Adjust the height to make the image smaller */
  object-fit: cover;
  /* Ensures the image is properly cropped */
  border-radius: 10px;
  /* Adds smooth edges */
  margin-top: 38px;
}

/* Heading Styling */
.ot-heading span {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--primary-color) !important;
  display: block;
  margin-bottom: 8px;
}

.ot-heading h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* Paragraph Styling */
.ot-heading p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* List Styling */
.ot-heading ul {
  padding-left: 20px;
}

.ot-heading ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .career-section img {
    height: 200px;
    /* Smaller image on mobile */
  }

  .ot-heading h2 {
    font-size: 1.8rem;
  }

  .ot-heading p,
  .ot-heading ul li {
    font-size: 0.95rem;
  }
}


.job-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: white;
}

.job-card:hover {
  transform: translateY(-10px);
  background-color: var(--primary-color)5e;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.job-card .card-body {
  padding: 22px;
}

.job-card .card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

.job-card .card-text {
  color: #555;
}

.job-card .btn-outline-primary {
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.job-card .btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Custom Modal Width */
.custom-modal .modal-dialog {
  width: 90%;
  /* Set the width to 90% of the screen */
  max-width: 1250px;
  /* Max width for larger screens */
}

.modal-header {
  background-color: var(--primary-color);
  color: white;
  padding: 10px;
  text-align: center;
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
}

.modal-body {
  padding: 2rem;
}

.modal-body h4 {
  color: var(--primary-color);
  font-weight: 600;
}

.jobdesc {
  border-bottom: 1px solid var(--primary-color);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(13, 110, 253, 0.3);
}

.career-btn {
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
}

.career-btn:hover {
  background-color: var(--primary-color);
}

.modal-footer {
  padding: 1.5rem;
  text-align: center;
}


.benefits-icon {
  font-size: 3rem;
  color: var(--primary-color);
}

.benefits-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px;
}

.benefits-card:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 10px;

  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.benefits-section {
  padding: 80px 0;
}

.benefits-card h4 {
  font-weight: bold;
}

.benefits-section {
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefits-section :hover {
  transform: translateY(-10px);
}

/* From Uiverse.io by alexmaracinaru */
.cta {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.cta:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  border-radius: 50px;
  background: #BFC8EE;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.cta span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--primary-color);
}

.cta svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: var(--primary-color);
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.cta:hover:before {
  width: 100%;
  background: var(--primary-color)5e;
}

.cta:hover svg {
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

.section-title1 h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}

.section-title1 p {
  justify-content: center;
}


@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }

  .job-card .card-body {
    padding: 20px;
  }

  .section-title1 {
    font-size: 2rem;
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto, sans-serif
}

#header,
#topbar,
.counts .count-box a:hover,
.departments .nav-link.active h4,
.departments .nav-link:hover h4,
.doctors .member .social a:hover,
.faq .faq-list a.collapse,
.faq .faq-list a.collapsed:hover,
.services .title a:hover,
a {
  color: #4f6a7d
}

#header.header-scrolled,
#topbar {
  border-bottom: 1px solid #4f6a7d
}

#intro,
.nav-menu a,
.nav-menu>ul>li {
  position: relative
}

.mobile-nav,
.nav-menu .drop-down ul {
  left: 15px;
  visibility: hidden;
  opacity: 0
}

#hero,
#intro {
  width: 100%;
  height: 100vh
}

#header .logo,
.nav-menu a,
.section-title1 h2,
.style-card-header {
  text-transform: uppercase;
  text-transform: uppercase
}

body {
  color: #444
}

.main-content {
  text-align: justify
}

a:hover {
  color: var(--primary-color);
  text-decoration: none
}

#intro {
  background: url(../img/test/Hmpage.jpg) center top/cover no-repeat #f5f8fd
}

#intro .intro-info h1 {
  margin-top: 200px;
  vertical-align: center;
  color: #4f6a7d;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700
}

#accordionExample .btn-link:hover,
#categories-reports-title a:hover,
#footer .footer-top .footer-links ul a:hover,
#intro .intro-info h1 span,
.categories-indutries a:hover,
.footer-credits:hover,
.nav-menu .active>a,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul li:hover>a,
.nav-menu a:hover,
.nav-menu li:hover>a,
.section-title1 h2 span {
  color: var(--primary-color)
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 4px;
  transition: .5s;
  background: #1bb1dc;
  color: #fff
}

#intro .intro-info .btn-get-started:hover,
#intro .intro-info .btn-services:hover {
  background: #0a98c0
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

::-webkit-scrollbar {
  width: 10px
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 5px
}

::-webkit-scrollbar-thumb {
  background: #4f6a7d;
  border-radius: 10px
}

.appointment-btn,
.back-to-top i {
  background: #4f6a7d;
  color: #fff;
  border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color)
}

.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  transition: .4s
}

.appointment-btn:hover,
.back-to-top i:hover {
  background: var(--primary-color);
  color: #fff
}

#header,
#topbar {
  background: #fff
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important
  }
}

#topbar {
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  transition: .5s
}

#topbar.topbar-scrolled {
  top: -40px
}

#topbar i {
  padding-right: 6px
}

#header {
  transition: .5s;
  z-index: 997;
  padding: 20px 0;
  top: 40px;
  font-weight: 650
}

#header.header-scrolled {
  top: 0;
  background-color: #fff
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .5px
}

#hero .btn-get-started,
.cta .cta-btn {
  letter-spacing: 1px;
  font-family: Roboto, sans-serif
}

#header .logo a,
.mobile-nav-toggle i {
  color: #555
}

#header .logo img {
  max-height: 60px;
  width: 60%
}

.mobile-nav *,
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.nav-menu>ul {
  display: flex
}

.nav-menu>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px
}

.nav-menu a {
  display: block;
  color: #4f6a7d;
  transition: .3s;
  font-size: 15px;
  font-family: Roboto, sans-serif;
  font-weight: 500
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  top: calc(100% + 30px);
  z-index: 99;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0 0 30px rgba(127, 137, 161, .25);
  transition: .3s
}

.nav-menu .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #194b4d
}

.nav-menu .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px)
}

.nav-menu .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%
}

.mobile-nav .drop-down>a,
.nav-menu .drop-down .drop-down>a {
  padding-right: 35px
}

.nav-menu .drop-down .drop-down>a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%
  }

  .nav-menu .drop-down .drop-down:hover>ul {
    left: -100%
  }

  .nav-menu .drop-down .drop-down>a:after {
    content: "\ea9d"
  }
}

.appointment-btn {
  margin-left: 25px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: .3s;
  font-size: 14px;
  display: inline-block
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: 0 0;
  font-size: 24px;
  transition: .4s;
  outline: 0 !important;
  line-height: 1;
  cursor: pointer;
  text-align: right
}

.mobile-nav,
.mobile-nav-overly {
  position: fixed;
  transition: .2s ease-in-out
}

.mobile-nav {
  top: 55px;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0
}

#hero .container,
.section-title1 {
  padding-bottom: 30px;
  text-align: center
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #555;
  padding: 10px 20px;
  font-weight: 500;
  outline: 0
}

#hero h2,
.section-title1 h2 {
  font-weight: 700;
  margin-bottom: 20px
}

.mobile-nav .active>a,
.mobile-nav a:hover,
.mobile-nav li:hover>a {
  color: #4f6a7d;
  text-decoration: none
}

.mobile-nav .drop-down>a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px
}

.mobile-nav .active.drop-down>a:after {
  content: "\eaa1"
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden
}

.mobile-nav .drop-down li {
  padding-left: 20px
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  background: rgba(60, 60, 60, .6);
  overflow: hidden;
  display: none
}

.gallery,
.mobile-nav-active {
  overflow: hidden
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible
}

.featured-services .icon-box:hover .description,
.featured-services .icon-box:hover .icon i,
.featured-services .icon-box:hover .title a,
.footer-credits,
.mobile-nav-active .mobile-nav-toggle i {
  color: #fff
}

#hero {
  background-color: rgba(60, 60, 60, .8);
  overflow: hidden;
  position: relative
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0
}

#hero .carousel-item {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end
}

#hero .container {
  background: rgba(255, 255, 255, .9);
  padding-top: 30px;
  margin-bottom: 50px;
  border-top: 4px solid #4f6a7d
}

@media (max-width: 1200px) {
  #hero .container {
    margin-left: 50px;
    margin-right: 50px
  }
}

#hero h2 {
  color: #2f2f2f;
  font-size: 36px
}

#hero p {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
  margin: 0 auto 30px;
  color: #555
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top
}

#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right,
#hero .carousel-inner .carousel-item {
  opacity: 0
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-left,
#hero .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: .5s
}

#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right,
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev {
  left: 0;
  transform: translate3d(0, 0, 0)
}

#hero .carousel-control-next,
#hero .carousel-control-prev {
  width: 10%;
  top: 112px
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: rgba(63, 187, 192, .4);
  font-size: 36px;
  line-height: 1;
  width: auto;
  height: auto;
  border-radius: 50px;
  padding: 10px;
  transition: .3s;
  color: rgba(255, 255, 255, .5)
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(63, 187, 192, .6);
  color: rgba(255, 255, 255, .8)
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: .3s
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #4f6a7d
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: .5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: .8s;
  animation-delay: .8s;
  background: #4f6a7d
}

#hero .btn-get-started:hover,
.contact .php-email-form button[type=submit]:hover,
.pricing .btn-buy:hover {
  background: var(--primary-color)
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
    top: 0;
    background-color: #fff
  }

  #header .logo {
    font-size: 28px
  }

  #hero .carousel-control-next,
  #hero .carousel-control-prev {
    top: 66px
  }

  #hero {
    height: 100vh
  }

  #hero .container {
    margin-top: 100px
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-next,
  #hero .carousel-control-prev {
    width: 5%
  }
}

@media (max-height: 500px) {
  #hero {
    height: 160vh
  }
}

/* section {
padding: 60px 0;
overflow: hidden;
} */

.section-bg {
  background-color: #f7fcfc
}

.section-title1 h2 {
  font-size: 32px;
  padding-bottom: 20px;
  position: relative
}

.about .content ul,
.breadcrumbs ol {
  padding: 0;
  list-style: none
}

.section-title1 h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #4f6a7d;
  bottom: 0;
  left: calc(50% - 25px)
}

.about .content p:last-child,
.departments .tab-pane p:last-child,
.section-title1 p {
  margin-bottom: 0
}

.breadcrumbs {
  padding: 20px 0;
  min-height: 40px;
  margin-top: 120px
}

/* 
.cta,.faq {
padding: 60px 0
} */

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 90px
  }

  .breadcrumbs h2 {
    margin: 0 0 10px
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  font-size: 14px
}

.breadcrumbs ol li+li {
  padding-left: 10px
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/"
}

.featured-services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, .12);
  transition: .3s ease-in-out;
  border-radius: 8px;
  z-index: 1
}

.featured-services .icon-box::before {
  content: '';
  position: absolute;
  background: #d9f1f2;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: .3s;
  z-index: -1
}

.featured-services .icon-box:hover::before {
  background: #4f6a7d;
  top: 0;
  border-radius: 0
}

.featured-services .icon {
  margin-bottom: 15px
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: var(--primary-color);
  transition: .3s ease-in-out
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px
}

.featured-services .title a {
  color: #111
}

.featured-services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0
}

.cta {
  /* background: 0 0/cover #4f6a7d; */
  color: #fff
}

.cta h3 {
  font-size: 28px;
  font-weight: 700
}

.cta .cta-btn {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 25px;
  transition: .5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff
}

.cta .cta-btn:hover {
  background: #fff;
  color: #4f6a7d
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px
}

.about .content ul li {
  padding-bottom: 10px
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #4f6a7d
}

.counts {
  background-image: url('../img/test/bg_layout_3.png');
  background-position: bottom center !important;
  background-repeat: no-repeat !important;
  color: #fff;
  z-index: 10000
}

.counts .card {
  margin-top: 60px;
  background: rgba(255, 255, 255, .9);
  color: #000;
  z-index: 100000000000000
}

.counts .card h2 span {
  color: #4f6a7d;
  font-size: 2em;
  letter-spacing: 3px
}

.counts .card h3 {
  margin-top: 5%;
  color: var(--primary-color);
  font-size: 1.6em
}

.counts .card p {
  font-size: 1.1em
}

.counts .card .counts-img {
  padding: 5%
}

.counts .count-box {
  background-color: #4f6a7d;
  padding: 30px;
  width: 100%;
  border: 1px solid #fff
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #fff;
  float: left
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #fff;
  margin-left: 50px
}

.counts .count-box p {
  padding: 30px 0 0;
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: 14px
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #7b7b7b;
  font-size: 15px;
  font-family: Poppins, sans-serif;
  transition: .3s ease-in-out
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #4f6a7d
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px
}

.services .icon-box {
  margin-bottom: 20px;
  text-align: center
}

.services .icon {
  display: flex;
  justify-content: center
}

.services .icon i {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 50%;
  transition: .5s;
  color: #4f6a7d;
  font-size: 40px;
  overflow: hidden;
  padding-top: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, .15)
}

.services .icon-box:hover .icon i {
  box-shadow: 0 0 25px rgba(63, 187, 192, .3)
}

.services .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  position: relative;
  padding-bottom: 15px
}

.services .title a {
  color: #444;
  transition: .3s
}

.services .title::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #4f6a7d;
  bottom: 0;
  left: calc(50% - 25px)
}

.services .description {
  line-height: 24px;
  font-size: 14px
}

#accordionExample .card,
.appointment .php-email-form,
.nav {
  width: 100%
}

.appointment .php-email-form .form-group {
  padding-bottom: 8px
}

.appointment .php-email-form .validate,
.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px;
  font-weight: 400;
  font-size: 13px
}

.appointment .php-email-form .error-message,
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: var(--primary-color);
  text-align: left;
  padding: 15px;
  font-weight: 600
}

.appointment .php-email-form .error-message br+br,
.contact .php-email-form .error-message br+br {
  margin-top: 25px
}

.appointment .php-email-form .sent-message,
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600
}

.appointment .php-email-form .loading,
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px
}

.appointment .php-email-form .loading:before,
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: 1s linear infinite animate-loading;
  animation: 1s linear infinite animate-loading
}

.appointment .php-email-form input,
.appointment .php-email-form select,
.appointment .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important
}

.appointment .php-email-form input:focus,
.appointment .php-email-form select:focus,
.appointment .php-email-form textarea:focus {
  border-color: #4f6a7d
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px
}

.appointment .php-email-form textarea {
  padding: 10px 12px
}

.appointment .php-email-form button[type=submit] {
  background: #4f6a7d;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: .4s;
  border-radius: 50px
}

.appointment .php-email-form button[type=submit]:hover {
  background: #52c2c6
}

.departments {
  background: #588eb0;
  background: linear-gradient(63deg, #588eb0 0, #afbabe 0, #fff 100%)
}

.departments h3 a {
  color: #4f6a7d;
  font-weight: 700;
  font-size: 1em
}

.departments h5 {
  font-size: .9em;
  color: #4f6a7d;
  font-weight: 700
}

.departments p {
  font-size: .9em
}

.departments .btn {
  background-color: #4f6a7d;
  color: #fff;
  transition: .4s ease-in-out
}

.departments .btn:hover {
  background-color: #fff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color)
}

.departments .nav-tabs {
  border: 0
}

.departments .nav-link {
  border: 0;
  padding: 20px;
  color: #555;
  border-radius: 0;
  border-left: 5px solid #fff
}

.departments .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  transition: .3s
}

.departments .nav-link p {
  font-size: 14px;
  margin-bottom: 0
}

.departments .nav-link.active {
  background: #f7fcfc;
  border-color: #4f6a7d
}

.departments .tab-pane.active {
  -webkit-animation: .5s ease-out slide-down;
  animation: .5s ease-out slide-down
}

.departments .tab-pane img {
  float: left;
  max-width: 300px;
  padding: 0 15px 15px 0
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px
  }

  #hero h2 {
    font-size: 28px
  }

  .breadcrumbs .d-flex {
    display: block !important
  }

  .breadcrumbs ol {
    display: block
  }

  .breadcrumbs ol li {
    display: inline-block
  }

  .departments .tab-pane img {
    float: none;
    padding: 0 0 15px;
    max-width: 100%
  }
}

.departments .tab-pane h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #4f6a7d
}

.departments .tab-pane p {
  color: #777
}

@-webkit-keyframes slide-down {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@keyframes slide-down {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid #fff
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 5px 45px;
  color: #111
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 45px
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #b2e4e6;
  font-size: 26px
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px;
  padding: 20px 20px 60px;
  background: #f0fafa;
  border-radius: 6px;
  position: relative;
  z-index: 1
}

.testimonials .owl-dots,
.testimonials .owl-nav {
  margin-top: 5px;
  text-align: center
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important
}

.gallery .owl-dot.active,
.testimonials .owl-dot.active {
  background-color: #4f6a7d !important
}

@media (max-width: 767px) {
  .testimonials {
    margin: 30px 10px
  }
}

.doctors .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 15px rgba(63, 187, 192, .1)
}

.doctors .member .member-img {
  position: relative;
  overflow: hidden
}

.doctors .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: .3s ease-in-out;
  text-align: center;
  background: rgba(255, 255, 255, .85)
}

.doctors .member .social a {
  transition: color .3s;
  color: #555;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block
}

.doctors .member .social i {
  font-size: 18px;
  margin: 0 2px
}

.doctors .member .member-info {
  padding: 25px 15px
}

.doctors .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #555
}

.doctors .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaa
}

.doctors .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777
}

.doctors .member:hover .social {
  opacity: 1
}

.gallery .owl-dots,
.gallery .owl-nav {
  margin-top: 25px;
  text-align: center
}

.gallery .owl-item {
  border-left: 2px solid #fff;
  border-right: 2px solid #fff
}

.gallery .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #e0f4f5 !important
}

.gallery .gallery-carousel .owl-stage-outer {
  overflow: visible
}

.gallery .gallery-carousel .center {
  border: 6px solid #4f6a7d;
  margin: -10px;
  box-sizing: content-box;
  padding: 4px;
  background: #fff;
  z-index: 1
}

.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, .12);
  border-radius: 4px;
  position: relative;
  overflow: hidden
}

.pricing .btn-wrap,
.pricing h3 {
  padding: 20px 15px;
  background: #f8f8f8
}

.pricing h3 {
  margin: -20px -20px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #777
}

.pricing h4 {
  font-size: 36px;
  color: #4f6a7d;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  margin-bottom: 20px
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444;
  text-align: center;
  line-height: 20px;
  font-size: 14px
}

.pricing ul li {
  padding-bottom: 16px
}

.pricing ul i {
  color: #4f6a7d;
  font-size: 18px;
  padding-right: 4px
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through
}

.pricing .btn-wrap {
  margin: 20px -20px -20px;
  text-align: center
}

.pricing .btn-buy {
  background: #4f6a7d;
  display: inline-block;
  padding: 8px 35px 10px;
  border-radius: 4px;
  color: #fff;
  transition: .3s;
  font-size: 14px;
  font-family: Roboto, sans-serif;
  font-weight: 600
}

.pricing .featured h3 {
  color: #fff;
  background: #4f6a7d
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px;
  background: #4f6a7d;
  color: #fff
}

.faq .faq-list {
  padding: 0;
  list-style: none
}

.faq .faq-list li {
  padding: 0 0 20px 25px
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #4F6A7D;
  font-size: 18px;
  font-weight: 500
}

.faq .faq-list i {
  font-size: 18px;
  position: absolute;
  left: -25px;
  top: 6px
}

.faq .faq-list p {
  margin-bottom: 20px;
  font-size: 15px
}

.faq .faq-list a.collapsed {
  color: #343a40
}

.faq .faq-list a.collapsed i::before {
  content: "\eab2" !important
}

.contact .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, .5);
  padding: 20px 0 30px
}

.contact .info-box i {
  font-size: 32px;
  color: #4f6a7d;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #c5ebec
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777;
  font-weight: 700;
  margin: 10px 0
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0
}

.contact .php-email-form {
  box-shadow: 0 0 20px rgba(214, 215, 216, .5);
  padding: 30px
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px
}

.contact .php-email-form input::focus,
.contact .php-email-form textarea::focus {
  background-color: #4f6a7d
}

.contact .php-email-form input {
  padding: 20px 15px
}

.contact .php-email-form textarea {
  padding: 12px 15px
}

.contact .php-email-form button[type=submit] {
  background: #4f6a7d;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: .4s;
  border-radius: 4px
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0)
  }

  100% {
    transform: rotate(360deg)
  }
}

#footer {
  background: #eee;
  padding: 0;
  color: #fff;
  font-size: 14px
}

#footer .footer-top {
  background: #4f6a7d;
  padding: 60px 0 30px
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px;
  padding: 2px 0;
  line-height: 1;
  font-weight: 700
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: Roboto, sans-serif
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #4f6a7d;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: .3s
}

#footer .footer-top .social-links a:hover {
  background: var(--primary-color);
  text-decoration: none
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px
}

#footer .footer-top .footer-links {
  margin-bottom: 30px
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 18px;
  line-height: 1
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: .3s;
  display: inline-block;
  line-height: 1
}

#footer .copyright {
  text-align: center;
  padding-top: 30px
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px
}

.categories-btn {
  background-color: #4f6a7d;
  color: #fff;
  border: 1px solid #fff
}

.categories-btn:hover {
  background-color: #fff;
  color: #4f6a7d;
  border: 1px solid #4f6a7d
}

.style-card-header {
  position: inherit
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 10000000;
  top: 0;
  left: 0;
  background-color: rgba(43, 62, 75, .99);
  transition: .5s
}

.overlay-content {
  position: relative;
  top: 35%;
  width: 80%;
  text-align: center;
  margin: auto
}

.license,
.related-reports {
  margin-left: 5%;
  margin-right: 5%
}

.overlay-content h3 {
  font-size: 3em;
  color: #fff
}

.overlay button,
.overlay input[type=text] {
  padding: 15px;
  background: 0 0;
  font-size: 40px;
  border: none;
  float: left
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
  cursor: pointer;
  color: #fff
}

.overlay .closebtn:hover {
  color: #ccc
}

.overlay input[type=text] {
  width: 80%;
  border-bottom: 1px solid #fff
}

.overlay input[type=text]::-webkit-input-placeholder {
  color: #fff
}

.overlay input[type=text]:focus {
  color: #fff;
  border: 0
}

.overlay button {
  width: 20%;
  cursor: pointer;
  color: #fff;
  border-bottom: 1px solid #fff
}

.openBtn {
  background: rgba(255, 255, 255, 0);
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: .5s;
  font-weight: 800
}

.openBtn:hover {
  transform: scale(1.5)
}

.categories-reports {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, .75);
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, .75);
  -moz-box-shadow: 0 0 6px 0 rgba(0, 0, 0, .75);
  margin-bottom: 1em
}

.categories-reports h3 {
  font-size: 1.4em
}

.categories-reports ul {
  margin: 0;
  padding: 0
}

.categories-reports ul li {
  display: inline;
  font-weight: 800;
  font-size: .8em
}

#categories-reports-title a {
  font-weight: 650;
  transition: .25s ease-in-out
}

#shorten-para {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1;
  max-height: 1*N
}

#categories-img img {
  width: 100%;
  max-height: 200px
}

.categories-indutries {
  background: #f5f0f0
}

.categories-indutries a {
  color: #222;
  transition: .5s ease-in-out
}

.categories-indutries ul {
  padding: 5%;
  list-style-type: none
}

.categories-indutries ul li {
  margin-bottom: 10px;
  border-bottom: 1px dashed #bbb
}

.contact-card {
  margin-top: 5%
}

.custom_btn_buy {
  width: 100%;
  padding: 2%;
  font-weight: 600;
  background: #4f6a7d;
  color: #fff;
  border: 1px solid #4f6a7d;
  transition: .5s ease-in-out
}

.custom_btn_request,
.custom_btn_request:hover,
.request-btn,
.request-btn:hover {
  width: 100%;
  padding: 2%;
  font-weight: 600;
  border: 1px solid var(--primary-color);
  transition: .5s ease-in-out
}

.custom_btn_request,
.request-btn {
  background: var(--primary-color);
  color: #fff
}

.custom_btn_request:hover,
.request-btn:hover {
  background: #fff;
  color: var(--primary-color)
}

@keyframes blink {
  50% {
    background: var(--primary-color)
  }
}

@-webkit-keyframes blink {
  50% {
    opacity: 0
  }
}

#contact-tab {
  animation: 2s step-start infinite blink;
  -webkit-animation: 2s step-start infinite blink
}

.report-header h1 {
  font-size: 1.8em;
  font-weight: 700;
  color: #4f6a7d
}

.report-header .table td,
.table th {
  padding: 0;
  font-size: .9em;
  color: #4f6a7d
}

.nav-item {
  /* width: 33%; */
  text-align: center;
  /* background: #4f6a7d */
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background: #0e96ce
}

#myTabContent {
  border: 1px solid #dee2e6;
  width: 99%;
  padding: 5%;
  border-top: none;
  color: #333;
  text-align: justify !important
}

#myTabContent h2 {
  font-size: 1.1em;
  color: #4f6a7d;
  font-weight: 650
}

#myTabContent h3 {
  font-size: 1em;
  color: #4f6a7d;
  font-weight: 650
}

.custom_btn_buy:hover {
  color: #4f6a7d;
  border: 1px solid #4f6a7d;
  background: #fff
}

.style-card-header {
  overflow: hidden;
  position: inherit;
  float: left;
  font-weight: 700;
  background: var(--primary-color);
  color: #fff;
  text-align: center
}

.list-group-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0
}

.license {
  width: 90%;
  position: inherit;
  top: 0
}

.license .card-body {
  padding: 5%;
  margin: 0
}

.license ul {
  padding: 0;
  list-style-type: none
}

.license ul li {
  border: none;
  font-weight: 600;
  font-size: 95%
}

.checkmark {
  position: absolute;
  bottom: 15px;
  left: 4px;
  height: 18px;
  width: 18px;
  background-color: #eee;
  border-radius: 50%
}

.list-group-item:hover input~.checkmark {
  background-color: #ccc
}

.list-group-item input:checked~.checkmark {
  background-color: #2196f3
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none
}

.list-group-item input:checked~.checkmark:after {
  display: block
}

.list-group-item .checkmark:after {
  top: 7px;
  left: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff
}

.related-reports {
  width: 90%;
  margin-top: 5%
}

#related-link {
  color: #4f6a7d;
  transition: .5s ease-in-out
}

#related-link:hover {
  color: #7b7b7b
}

.report-contact {
  width: 99%;
  margin: 5% 0 0
}

.report-contact .request-card {
  border: 1px solid #fff;
  border-radius: none;
  text-align: center;
  background-color: var(--primary-color);
  font-weight: 700;
  padding: 5%;
  color: #fff
}

.report-contact .buy-now-card {
  border: 1px solid #fff;
  border-radius: none;
  text-align: center;
  background-color: #4f6a7d;
  padding: 5%;
  color: #fff
}

.buy-now-card h4,
.request-card h4 {
  font-style: italic
}

.buy-now-card .btn,
.request-card .btn {
  background: rgba(236, 248, 249, 0);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  transition: .5s ease-in-out
}

.request-card .btn:hover {
  background: #fff;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 10px
}

.buy-now-card .btn:hover {
  background: #fff;
  border: 1px solid #0087ad;
  color: #0087ad;
  border-radius: 10px
}

#accordionExample .btn-link,
.breadcrumbs a,
.nav-link {
  color: #fff
}

.nav-link:hover {
  color: #000
}

.request-privacy {
  font-size: .6em;
  color: #aaa;
  padding: 2%
}

.breadcrumbs,
.summary-btn {
  background: #4f6a7d;
  color: #fff
}

.summary-btn {
  width: 90%;
  margin-left: 1%;
  padding: 2%;
  font-weight: 600;
  border: 1px solid #4f6a7d;
  transition: .5s ease-in-out
}

.disclaimer h6 {
  font-size: 1.2em
}

.disclaimer ol {
  padding: 2%;
  font-size: .8em;
  color: #bbb;
  line-height: 1.6;
  text-align: justify
}

.key-questions h5 {
  font-weight: 650
}

.key-questions ul {
  padding: 2%;
  font-size: 1em;
  line-height: 2
}

#accordionExample .card-header {
  background-color: #4f6a7d
}

.breadcrumbs {
  padding-top: 3%;
  background: linear-gradient(63deg, #4f6a7d 0, var(--primary-color) 100%)
}


.manpower-card {
  border: none;
  border-radius: 10px;
  padding: 0 20px 20px 20px;
}

.yellow-bg {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.blue-bg {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

.yellow-bg:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.blue-bg:hover {
  background-color: #fff;
  color: var(--primary-color);
}

.manpower-icon-box {
  background-color: var(--primary-color);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yellow-bg .manpower-icon-box {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

.blue-bg .manpower-icon-box {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.yellow-bg h3 {
  color: var(--primary-color);
}

.blue-bg h3 {
  color: var(--accent-color);
}

.manpower-btn-custom {
  background-color: var(--accent-color);
  border: none;
  color: var(--primary-color);
  font-weight: bold;
}

.blue-bg .manpower-btn-custom {
  background-color: var(--primary-color);
  color: #ffffff;
  border: 1px solid #ffffff;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 20px;
}

/* For tablets (less than 1024px) */
@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* For mobile devices (less than 768px) */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* For very small screens (less than 480px) */
@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 40px;
  font-size: 18px;
  font-weight: bold;
  height: 150px;
}

.light-bg {
  background-color: #f9f9f9;
  color: var(--primary-color);
}

.dark-bg {
  background-color: #a7c2d2;
  color: var(--primary-color);
}

.light-bg:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.dark-bg:hover {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

.grid-item i {
  font-size: 24px;
  margin-bottom: 10px;
}

.license-info {
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.license-number {
  color: #007bff;
  font-weight: bold;
  display: inline-block;
  word-break: break-word;
}


@media (max-width: 768px) {
  .jobWrapper {
    flex-direction: column;
  }

  .lftJobPanel,
  .rgtJobPanel {
    min-width: 100%;
    height: auto;
    padding: 40px 20px;
  }
  
}
@media (max-width: 768px) {
  .jobContent {
    padding: 20px;  /* Reduce padding for small screens */
    width: 405px !important;  /* Make it take most of the screen width */
    right: 0;  /* Align it properly */
    left: 0;  /* Center it */
    height: auto;  /* Allow it to adjust */
    position: relative;  /* Change from absolute to relative */
    font-size: 12px;  /* Slightly smaller text */
    border-radius: 10px;  /* Optional: rounded corners for better UI */
  }
  .jobContent.uploadResume {
    left: 0 !important;
    right: inherit;
  }
}
.jobWrapper {
  display: flex;
  flex-wrap: wrap;
}

.jobWrapper h4 {
  position: relative;
  font-weight: 700;
  color: #fff;
}

.jobWrapper h4 .fa {
  margin: 0 15px 0 0;
}

.jobWrapper h4:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 1px;
  background: #ffffff;
  bottom: 10px;
  margin-left: 15px;
}

.lftJobPanel,
.rgtJobPanel {
  width: 50%;
  float: left;
  height: 235px;
  overflow: hidden;
  position: relative;
}

.lftJobPanel{
  background-color: var(--accent-color);
}
.rgtJobPanel{
  background-color: var(--primary-color);
}


.lftJobPanel:after,
.rgtJobPanel:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(83, 83, 83, 0.466);
}




.jobContent.uploadResume {
  left: 0;
}

.jobContent {
  padding: 28px 25px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  width: 600px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
}

.jobContent p {
  color: #fff;
}

.jobContent.uploadResume {
  left: 50px;
  right: inherit;
}

.jobSearchButton {
  background: var(--primary-color);
  padding: 0 15px 0 0;
  float: left;
  margin: 19px 0 19px 15px;
  color: #ffffff;
}

.jobSearchButton .btnicon {
  background: var(--accent-color);
  padding: 17px;
  margin: 0 15px 0 0;
  border-right: 1px solid var(--accent-color);
}

.jobSearchButton:hover {
  color: #ffffff;
  background: var(--accent-color);
}

.jobSearchButton:focus {
  color: #ffffff;
}

.jobSearchButton:hover .fa {
  border-right: 1px solid #ffffff;
}

/* sideform style start */
.sidebar-contact {
  position: fixed;
  top: 50%;
  right: -350px;
  transform: translateY(-50%);
  width: 350px;
  height: auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  transition: .5s;
  z-index: 1114;
  border-radius: 20px 0 0 20px
  }
  .sidebar-contact.active {
  right: 0
  }
  .toggle {
  position: absolute;
  text-align: center;
  cursor: pointer;
  background: var(--accent-color);
  color: #fff;
  top: 65%;
  left: -74px;
  transform: rotate(90deg);
  padding: 15px;
  border-radius: 0 0 10px 10px
  }
  .toggle h6 {
  margin-bottom: .5px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-family: Overpass,sans-serif
  }
  .toggle h2 {
  margin-bottom: .5px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-family: Overpass,sans-serif
  }
  .toggle h6 i {
  margin-right: 5px
  }
  .toggle h2 i {
  margin-right: 5px
  }
  .sidebar-contact input,.sidebar-contact textarea {
  width: 100%;
  height: 36px;
  padding: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border: 1px solid rgba(0,0,0,.5);
  outline: 0;
  border-radius: 5px
  }
  .sidebar-contact .btn {
  border: 1px solid var(--accent-color);
  font-size: 14px;
  min-width:127px;
  padding:8px;
  margin-top: 12px;
  }
  .sidebar-contact .btn span{
  font-size: 14px;
  padding: 13px 10px;
  }
  /* sideform end */

  /* floating btn */
.float {
  position: fixed;
  width: 50px;
  line-height: 50px;
  height: 50px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1113;
  animation: pulse 2s infinite;
  }


    @keyframes pulse {
      0% {
          transform: scale(1);
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      70% {
          transform: scale(1.1);
          box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
      }
      100% {
          transform: scale(1);
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }
    

  /* end floating btn */

  .current-opening-button {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 15px 8px;
    font-weight: bold;
    writing-mode: vertical-rl;
    text-align: center;
    border-radius: 10px 0 0 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.current-opening-button a {
    color: white;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.current-opening-button img {
    width: 20px;
    margin-top: 5px;
}


/* career job application */
.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}
.tab {
  /* background: #003054; */
  border: 1px solid  #003054;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 15px;
}
.tab i {
  font-size: 18px;
  color: #003054;
}
.tab:hover, .tab.active {
  background: #E5B20A;
  transform: scale(1.05);
  color: #003054;
}
.job-container {
  display: none;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.job-container.active {
  display: flex;
}
.job-card1 {
  background: linear-gradient(135deg, #ffffff, #f9f9f9);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
  padding: 10px;
  width: 350px;
  text-align: center;
  border-top: 5px solid #003054;
  transition: transform 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.job-card1:hover {
  transform: scale(1.05);
}
.job-title {
  font-size: 22px;
  font-weight: 600;
  color: #003054;
  margin-bottom: 5px;
}
.company-name {
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
  font-weight: bold;
  color: #E5B20A;
}
.job-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}
.job-info {
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  font-weight: 500;
}
.job-info i {
  margin-right: 6px;
  font-size: 16px;
}
.separator {
  color: #003054;
  font-weight: bold;
}
.job-description {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
  padding: 0 10px;
  line-height: 1.5;
}
.apply-btn1 {
  background: #003054;
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.apply-btn1:hover {
  background: #d49c08;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.job-info{
  text-transform: capitalize;
}
