* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.top-header {
  background-color: #2d3748;
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-small {
  width: 30px;
  height: 30px;
  background-color: #ff3907;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 20px;
  height: 20px;
  background-color: #4a5568;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 12px;
}

/* Main Navigation */
.main-nav {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-logo {
  font-size: 28px;
  font-weight: bold;
}

.main-logo .human {
  color: #2d3748;
}

.main-logo .hr {
  color: #ff3907;
  font-size: 36px;
}

.main-logo .resource {
  color: #2d3748;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #2d3748;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff3907;
}

.nav-#FCD116s {
  display: flex;
  gap: 10px;
}

.nav-link.active {
  color: green !important;
  font-weight: bold;
}

@media (max-width: 991.98px) {

  /* Bootstrap lg breakpoint */
  #navbarNav {
    background-color: #484848;
    /* light gray */
    /* display: flex; */
    /* flex-direction: column; */
    align-items: center;
    /* justify-content: center; */
    text-align: center;
    padding: 1rem 0;
  }

  #navbarNav .nav-item {
    margin: 10px 0;
  }

  .nav-link {
    color: white !important;
  }
}

.navbar-nav {
  gap: 10px;
}

@media (max-width: 1200px) {
  #navbarNav .navbar-nav {
    gap: 6px;

  }

  .navbar-expand-lg .navbar-nav .nav-link {
    font-size: smaller;
  }
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

.dropdown-menu {

  background-color: #575757 !important;
  /* light gray */
  border-radius: 0;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.dropdown-item {
  color: white !important;
  /* text-align: center !important; */
  border-bottom: 0.3px solid white !important;
}

.dropdown-item:hover {
  background-color: #ff3907 !important;
  color: #fff !important;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary {
  background-color: #ff3907;
  color: white;
}

.btn-primary:hover {
  background-color: #FCD116;
}

.btn-outline {
  background-color: transparent;
  color: #2d3748;
  border: 2px solid #2d3748;
}

.btn-outline:hover {
  background-color: #2d3748;
  color: white;
}

/* Hero Section */
/* .hero {
            height: 600px;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/placeholder.svg?height=600&width=1200');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        .hero-content {
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 20px;
    border-radius: 10px;
    color: white; 
} */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  background-image: url('../images/imgbg4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
}

.hero-content {
  position: relative;
  /* background-color: rgba(0, 0, 0, 0.6); */
  z-index: 1;
  color: white;
  text-align: center;
  top: 50%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(50px);
  opacity: 0;
  padding: 0 20px;
  /* Ensures padding on smaller screens */
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 800px;
}

.hero-icon {
  width: 60px;
  height: 60px;
  background-color: #f9dcd5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.hero-icon::before {
  content: '';
  width: 30px;
  height: 30px;
  border: 2px solid #ff3907;
  border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-icon {
    width: 50px;
    height: 50px;
  }

  .hero-icon::before {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 600px) {
  .hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero-content {
    top: 60px;
    height: auto;
    transform: none;
    padding: 40px 15px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
  }

  .hero-icon::before {
    width: 20px;
    height: 20px;
  }
}


/* Welcome Section */
.welcome {
  padding: 80px 0;
  background-color: #f7fafc;
}

.welcome-grid {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-image {
  text-align: center;
}

.welcome-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.welcome-content h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.welcome-content .hr-text {
  color: #ff3907;
}

.welcome-content p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #2d3748;
}

.feature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: #ff3907;
  border-radius: 50%;
  margin-right: 15px;
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* fixed typo: 2fr to 1fr for equal width */
  gap: 40px;
  position: relative;
}

.feature-card {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}

.question-mark {
  position: absolute;
  top: -280px;
  left: -137px;
  font-size: 410px;
  color: rgba(128, 128, 128, 0.336);
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    /* Stack on medium screens */
    gap: 30px;
  }

  .question-mark {
    top: -200px;
    left: -60px;
    font-size: 300px;
    display: none;
  }
}

@media (max-width: 600px) {
  .features {
    padding: 60px 20px;
  }

  .features-grid {
    gap: 20px;
  }

  .question-mark {
    top: -150px;
    left: -20px;
    font-size: 200px;
  }
}

.feature-card {
  text-align: center;
  padding: 40px 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #7cffc934;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2d3748;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* CV Section */
.cv-section {
  padding: 80px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/placeholder.svg?height=600&width=1200');
  background-size: cover;
  background-position: center;
}

.cv-form {
  max-width: 500px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cv-form h2 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #2d3748;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.form-group textarea {
  resize: vertical;
  height: 80px;
}

.upload-area {
  border: 2px dashed #ddd;
  border-radius: 5px;
  padding: 30px;
  text-align: center;
  color: #666;
  cursor: pointer;
  transition: border-color 0.3s;
}

.upload-area:hover {
  border-color: #ff3907;
}

.upload-icon {
  font-size: 24px;
  margin-bottom: 10px;
  color: #999;
}

/* Blog Section */
.blog {
  padding: 80px 0;
  background-color: #f7fafc;
}

.blog h2,
.our-client h2,
.features h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #ff3907;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  will-change: transform, opacity;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 25px;
}

.blog-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #2d3748;
}

.blog-card p {
  font-size: smaller;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: #999;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Job Offer Section */
.job-offer {
  padding: 80px 0;
  background-color: white;
}

.job-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.job-content h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #ff3907;
}

.job-#FCD116s {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.job-btn {
  padding: 15px 25px;
  background-color: #ff3907;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  text-align: left;
}

.job-btn:hover {
  background-color: #FCD116;
}

.job-content p {
  color: #666;
  line-height: 1.8;
}

/* Testimonial Section */
.testimonial {
  padding: 80px 0;
  background-color: white;
  text-align: center;
}

.testimonial h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  color: #ff3907;
}

.testimonial-content {
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2d3748;
}

.testimonial-content p {
  font-style: italic;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
}

.dot.active {
  background-color: #ff3907;
}

/* Footer */
.footer {
  background-color: white;
  color: black;
  padding: 50px 0 0 0;
  border-top: 2px solid #e0e0e0;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
  color: rgba(5, 5, 5, 0.9);
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
}

.footer-section a:hover {
  color: #ff3907;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-links-left,
.footer-links-right {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.footer-bottom {
  background-color: #f2f5f8;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px;
  text-align: center;
  color: #2e475d;
}

.subscribe-form {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 200px;
}

.subscribe-form #FCD116 {
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }

  .subscribe-form input,
  .subscribe-form #FCD116 {
    width: 100%;
  }
}

.btnSubmit,
.btnSubscribe {
  background-color: #FCD116 !important;

}

.btnSubmit:hover,
.btnSubscribe:hover {
  background-color: #198754 !important;

}

.about-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.nav-tabs .nav-item {
  margin-bottom: 1px;
}

.nav-tabs .nav-link {
  color: black !important;
  background: white;
  margin: 4px 5px !important;
  border-radius: 0;
  transition: background 0.3s ease;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  background: #FCD116 !important;
  font-weight: bold;
  color: #ff3907 !important;
}

@media (max-width: 525px) {
  .nav-tabs .nav-link {
    padding: 1px;
  }
}

.tab-pane.why_us {
  background: linear-gradient(to bottom right, #e9f6ff, #ffffff);
  padding: 40px 30px;
  border-radius: 12px;
  margin-top: 30px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.why-us-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}

.why-us-text {
  flex: 1 1 50%;
  min-width: 280px;
}

.why-us-text h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #004d66;
  /* border-left: 5px solid #00bfa5; */
  padding-left: 15px;
}

.why-us-text p {
  background-color: #ffffff;
  border-left: 4px solid #ff3907;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  color: #333;
  line-height: 1.6;
}

.why-us-image {
  flex: 1 1 45%;
  min-width: 250px;
  text-align: center;
}

.why-us-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.why-us-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
  .why-us-content {
    flex-direction: column;
  }

  .why-us-text,
  .why-us-image {
    flex: 1 1 100%;
  }
}

.info-card {
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 30px;
  transition: box-shadow 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  border-bottom: 2px solid #007bff;
  padding-bottom: 5px;
  color: #003c58;
  display: inline-block;
}

.info-card .spana {
  font-size: 14px;
  vertical-align: super;
}

.info-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.box {
  position: relative;
  margin-bottom: 20px;
  background: #FFF;
  max-width: 500px;
}

.ribbon {
  background: #FCD116;
  color: #FFF;
  padding: 4px;
  text-align: center;
  margin-left: -20px;
  margin-right: -20px;
  /*border-radius: 3px 3px 0 0;*/
  position: relative;
}

.ribbon.blue.crossed:before {
  top: -20px;
  left: 0;
  border-bottom: 20px solid #FCD116;
  border-left: 20px solid transparent;
}

.ribbon.blue.crossed:after {
  border-top: 20px solid #FCD116;
  border-right: 20px solid transparent;
  left: calc(100% - 20px);
}

.ribbon:before,
.ribbon:after {
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  top: 100%;
}

.ribbon.blue {
  background: #ff3907;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .info-card h3 {
    font-size: 20px;
  }

  .info-card {
    padding: 20px;
  }

  .info-card p {
    font-size: 15px;
  }
}

.services-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
}

.cert-card {
  text-align: center;
  margin: 15px;
}

.cert-card img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.cert-card p {
  margin-top: 10px;
  font-weight: 500;
  color: #333;
  font-size: 16px;
}

.services-gallery img {
  width: calc(33.333% - 14px);
  /* 3 images per row with spacing */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* Center the last image on its own row */
.services-gallery .center-image {
  width: 33.333%;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .services-gallery img,
  .services-gallery .center-image {
    width: 100%;
  }
}

.bg-about {
  background-image: url('../images/office.jpg');
  /* adjust the path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.bg-image-wrapper {
  will-change: transform;
  transform-origin: left center;
}

.bg-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* black with 50% opacity */
  z-index: 0;
}

.our-client {
  padding: 80px 0;
  background-color: #f7fafc;
  overflow: hidden;
  /* width: 100%; */
}

.image-line {
  overflow: hidden;
  white-space: nowrap;
  margin: 20px 0;
  position: relative;
  height: 80px;
}

.scroll-wrapper {
  display: inline-block;
  animation: scroll-left 30s linear infinite;
}

.image-line img {
  height: 60px;
  margin-right: 30px;
  vertical-align: middle;
  object-fit: contain;
  transition: transform 0.3s;
}

.image-line img:hover {
  transform: scale(1.1);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Optional: Responsive tweaks */
@media (max-width: 768px) {
  .image-line img {
    height: 40px;
    margin-right: 20px;
  }
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscribe-form-#FCD116 {
  background-color: #ff3907;
  border: none;

}

.subscribe-form-#FCD116:hover {
  background-color: #FCD116;
}

.head-post {
  padding: 200px;
  /* Default padding for larger screens */
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  /* Full width for responsiveness */
  height: 20vh;
  /* Full viewport height for better scaling */
  box-sizing: border-box;
  /* Ensure padding doesn't cause overflow */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .head-post {
    padding: 100px;
    /* Reduced padding for tablets */
    height: 50vh;
    /* Slightly shorter height for medium screens */
  }
}

@media (max-width: 768px) {
  .head-post {
    padding: 60px;
    /* Further reduced padding for smaller tablets */
    height: 40vh;
    /* Adjust height for smaller screens */
    background-origin: content-box;
  }
}

@media (max-width: 425px) {
  .head-post {
    padding: 30px;
    /* Minimal padding for mobile devices */
    height: 40vh;
    /* Shorter height for mobile */
    background-size: contain;
  }
}

.about-us {
  padding-top: 30px;
}

.about-us .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.about-us .left,
.about-us .right {
  flex: 1 1 45%;
  padding: 10px;
  box-sizing: border-box;
}

.about-us .left h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-us .left p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.about-us .right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .about-us .container {
    flex-direction: column;
  }

  .about-us .left,
  .about-us .right {
    flex: 1 1 100%;
    padding: 10px 0;
  }

  .about-us .left h2 {
    font-size: 24px;
  }
}

.our-Legacy {
  padding: 2rem 0;
  background-color: aliceblue;
}

.legacy-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Left section */
.left-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.left-image img {
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  /* Makes image round */
  border: 4px solid #ccc;
  object-position: 80% center;
}

.left-image h2 {
  margin-top: 1rem;
  font-size: 1.85rem;
  font-weight: 700;
  color: #333;
}

/* Right section */
.our-Legacy .container .right-text {
  flex: 2;
  min-width: 280px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.right p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .legacy-container {
    flex-direction: column;
    text-align: center;
  }

  .right {
    justify-content: center;
    padding: 0 1rem;
  }
}

.what-we-do-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section-block {
  margin-bottom: 40px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  /* subtle bottom shadow */
  transition: box-shadow 0.3s ease;
}

.section-block:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  /* elevate on hover */
}

.section-block h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #005b7f;
}

.section-block p {
  font-size: 16px;
  line-height: 1.7;
}

.section-block ul {
  padding-left: 20px;
}

.section-block li {
  margin-bottom: 10px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.highlight-grid div {
  background-color: #fff;
  border-left: 4px solid #FCD116;
  padding: 12px 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-weight: 500;
  font-size: 15px;
}

.call-to-action {
  background-color: #65786c;
  color: #fff;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
}

.call-to-action h2 {
  color: #fff;
  margin-bottom: 10px;
}

@media (max-width: 600px) {
  .section-block h2 {
    font-size: 22px;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

.job-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  justify-content: space-between;
  padding: 10px 10px;
  /* max-width: 1000px;
  margin: 0 auto; */
}

.job-images img {
  width: 100%;
  /* fills grid cell */
  height: 400px;
  object-fit: contain;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: scale(0.8);
}

.job-images img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .job-images {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .job-images {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .job-images {
    grid-template-columns: 1fr;
  }
}

.pdf-container {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.process-container {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  gap: 30px;
}


.option-list {
  flex: 1;
  border-right: 2px solid #ccc;
  padding-right: 20px;
}

.option-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.option-list li {
  margin-bottom: 15px;
  cursor: pointer;
  font-weight: bold;
  color: black;
  padding: 10px 20px;
  transition: color 0.3s;
  border: 1px solid #ff3907;
  border-radius: 20px;
  white-space: nowrap;
}

.option-list li:hover,
.option-list li.active {
  color: white;
  background-color: #ff3907;
}

@media (max-width: 992px) {
  .process-container {
    flex-direction: column;
  }

  .option-list {
    width: 100% !important;
    border-right: none;
    padding-right: 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
  }

  .option-list ul {
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .option-list li {
    margin: 0;
    flex: 0 0 auto;
  }
}

.values-panel {
  flex: 2;
  min-width: 300px;
}

.value-content {
  display: none;
}

.value-content.active {
  display: block;
}

@media (max-width: 768px) {
  .process-container {
    flex-direction: column;
    padding: 20px;
  }

  .option-list {
    border-right: none;
    border-bottom: 2px solid #ccc;
    padding-right: 0;
    padding-bottom: 20px;
  }
}

.process-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  /* two-column layout */
  gap: 16px;
}

.process-points li {
  background: #f9f9f9;
  border: 1px solid #ddd;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.process-points li:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .process-points {
    grid-template-columns: 1fr;
    /* one column on mobile */
  }
}

.screening-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.screening-points li {
  background: #fff;
  border-left: 5px solid #ff3907;
  /* Teal left border */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 15px 20px;
  border-radius: 6px;
  line-height: 1.6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.screening-points li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* Responsive: 1 column on smaller devices */
@media (max-width: 768px) {
  .screening-points {
    grid-template-columns: 1fr;
  }
}

.value-content {
  font-family: 'Segoe UI', sans-serif;
  color: #2d2d2d;
  padding: 2rem;
  background-color: #f9f9f9;
}

.value-content h3 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
  background: linear-gradient(to right, #ff3907, #a12000);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.value-content .value-ul-point {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1rem;
}

.value-content ul li {
  background-color: white;
  border-radius: 10px;
  padding: 1rem;
  font-weight: 500;
  color: #1c2e5c;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.value-content ul li strong {
  background: #1c2e5c;
  color: white;
  padding: 0.5rem 0.9rem;
  border-radius: 50%;
  font-size: 1rem;
}

.value-content p {
  background-color: white;
  padding: 1.2rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.value-content p strong {
  color: #1c2e5c;
}

.process-points li::before {
  content: "➤";
  color: #ff3907;
  margin-right: 8px;
  font-size: 1em;
}

.main-text {}

.second-text {
  display: flex;
}

.second-text .left,
.second-text .right {
  width: 50%;
  padding: 10px;

}

@media (max-width: 525px) {
  .second-text {
    /* grid-template-columns: 1fr; */
    display: block;
  }

  .second-text .left,
  .second-text .right {
    width: 100%;
    padding: 10px;

  }
}

.second-text .left p,
.second-text .right p {
  color: gray;
  line-height: 2rem;
  font-size: 1rem
}

.braj {
  color: #ff3907;
  text-decoration: none;

}

.braj:hover {
  color: #FCD116;
}

.contact-form form,
.main-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form form {
  padding: 20px;
}

.contact-form form input,
.contact-form form textarea {
  padding: 12px;
  font-size: 1rem;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact .contact-form form textarea {
  margin-bottom: 20px;
  height: 160px;
}

.section-bg {
  background-image: url("/images/slider-2.jpg");
  background-color: #FCD1165e;
  background-size: cover;
  background-position: left;
  overflow: hidden;
}

.overlay {
  background: linear-gradient(to right, rgb(241 255 253), rgba(255, 255, 255, 0.82));
  padding: 60px 20px;
}

.css-table-cell {
  font-size: 1rem;
  color: gray;
  font-weight: 700;
}

.contact-info li a {
  color: #FCD116;
  text-decoration: none;
}

.overlay .container {
  background-color: #151a18;
  color: white;
  border-radius: 8px;
  padding: 20px;
}

.uou-block-7b {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.has-bg {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.list-unstyled {
  border: 1px solid white;
  padding: 10px !important;
}

/* Responsive Tweaks */
@media (max-width: 767px) {
  .overlay .container {
    padding: 15px;
  }

  .uou-block-7b {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact .contact-form form textarea,
  .contact-form form input {
    font-size: 1rem;
  }
}

.organisational {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.organisational img {
  max-width: 100%;
  height: auto;
  width: 800px;
  /* default size for large screens */
}

@media (max-width: 992px) {
  .organisational img {
    width: 600px;
  }
}

@media (max-width: 768px) {
  .organisational img {
    width: 100%;
    padding: 0 15px;
  }
}

.padtop {
  padding-top: 120px;
}

blockquote {
  padding: 12px 24px;
  margin: 0 0 24px;
  font-size: 17px;
  font-family: 'Droid Serif', serif;
  font-style: italic;
  border-left: 5px solid #3c3d41;
  background: #e8fff7;
}

.subheader-v2 {
  position: relative;
  padding: 150px 0;
  text-align: center;
}

.subheader h3 {
  margin: 0;
  font-size: 40px;
}

.has-bg-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.has-bg-image.contain {
  background-size: contain;
}

.has-bg-image .background {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.has-bg-image .content {
  position: relative;
  z-index: 1;
}

.divider {
  display: flex;

  &:before,
  &:after {
    content: "";
    flex: 1;
  }
}

.spnsuc {
  color: forestgreen;
}

.spnerr {
  color: red;
}

.spnsucc {
  color: forestgreen;
}

.spnerrr {
  color: red;
}

.spnsuccess {
  color: forestgreen;
}

.spnerror {
  color: red;
}

.dn {
  display: none;
}

.db {
  display: block;
}


.donotcross {
  overflow: hidden;
  margin-top: 10px;
  align-items: center;
  background: radial-gradient(circle, #F7941D 0%, #ff3907 100%);
  color: white;
  height: 3rem;
  line-height: 1em;

  &:before,
  &:after {
    background: white;
    padding: 50px 0;
    height: 0;
    transform: rotate(45deg);
  }
}

@media (max-width: 920px) {
  .donotcross {
    font-size: larger;
  }
}

@media (max-width: 767px) {
  .donotcross {

    &:before,
    &:after {
      padding: 8px 0;
    }
  }
}

.btn-success {
  background-color: #fe5c35 !important;
  border-color: #ff3907 !important;
  color: #fff !important;
}

.btn-success:hover {
  background-color: #ff3907 !important;
  border-color: #fe5c35 !important;
  color: #fff !important;
}

.view-btn.active {
  background-color: #ff3907 !important;
}

@media (max-width: 768px) {

  .welcome-grid,
  .job-grid {
    flex-direction: column-reverse;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 992px) {

  .features-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.nav-link.active {
  color: #ff3907 !important;
  font-weight: bold;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #ff3907 !important;
}

.ebrocher {
  position: fixed;
  width: 44px;
  height: 220px;
  color: #fff;
  right: 0px;
  top: 250px;
  overflow: hidden;
  font-weight: bold;
  background-color: #333333;
  font-size: 16px;
  text-shadow: 1px 1px 0px #000;
  box-shadow: 0 0 10px #666;
  filter: alpha(opacity=70);
  border-radius: 5px;
  z-index: 9500;
}

.spanebroch {
  float: left;
  margin-left: 15px;
  margin-top: 2px;
  font-style: oblique;
  font-family: monospace;
}

.ebrocherhover {
  position: fixed;
  width: 150px;
  height: 230px;
  color: #fff;
  right: 0px;
  top: 250px;
  overflow: hidden;
  font-weight: bold;
  background-color: #333333;
  font-size: 16px;
  text-shadow: 1px 1px 0px #000;
  box-shadow: 0 0 10px #666;
  filter: alpha(opacity=70);
  border-radius: 5px;
  z-index: 9500;
}

.ebrocherimgdiv {
  position: relative;
  display: block;
  text-align: center;
}

.ebrocherimg {
  height: 50px !important;
  width: 200px !important;
}

.certificateimg {
  height: 50px !important;
  width: 45px !important;
  padding: 1px;
}