  body {
  font-family: "aAtmospheric.ttf" !important;
}

/* HERO */
.hero {
  background: url('../images/trainning-img.jpg') no-repeat center center/cover;
  opacity:01px;
  height: 80vh;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

/* STATS */
.stats {
  /* background: #111; */
  /* color: #fff; */
  padding: 40px 0;
}

.stats h2 {
  color: orange;
}

.footer-section {
    background: green;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-logo-img {
  width: 50px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  color: black;
}

.footer-line {
  border-top: 1px solid white(255,255,255,0.3);
  margin: 20px 0;
}

.footer-dropdown {
  background: black;
  color:black;
}

.footer-dropdown .dropdown-item:hover {
  background: green;
  color: black;

}

.social-icons a {
  color: white;
  margin-left: 15px;
}

/* INTRO SECTION */
.intro-section {
    background: #f8f9fc;
}

.image-box {
    position: relative;
}

.image-box img {
    width: 100%;
    border-radius: 12px;
}

/* Optional decorative shapes */
.image-box::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: green;
    top: -10px;
    right: -10px;
    z-index: -1;
    border-radius: 10px;
}

.image-box::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: #293399;
    bottom: -10px;
    left: -10px;
    z-index: -1;
    border-radius: 10%;
}

.intro-section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

/* STATS BAR */
.stats-bar {
    background: #0a0a0a;
    color: #fff;
    padding: 40px 0;
}

.stats-bar h3 {
    color: #ff6a00;
    font-weight: bold;
    margin-bottom: 5px;
}

.stats-bar p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

/* EDUCATION SECTION */
.education-section {
    padding: 80px 20px;
    background: #f8f9fc;
}

.education-section .title {
    font-size: 42px;
    font-weight: 700;
    color: #1c2b3a;
    margin-bottom: 20px;
}

.education-section .subtitle {
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    color: #6c757d;
    line-height: 1.7;
}

.team-section {
  background: #f8f9fa;
}

.profile-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.card {
  border: none;
  border-radius: 15px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.team-section .btn {
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
}

.team-section .btn:hover {
  background-color: green;
  border:green;
  color: #000;
}

 
/* road map section */
.roadmap-section {
  background:  #f8f9fa;
  color: #000;
}

.roadmap-wrapper {
  position: relative;
  width: 100%;
  margin: auto;
}

/* CENTER LINE */
.center-line {
  position: absolute;
  width: 3px;
  background: #000;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ITEM BASE */
.roadmap-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  height :100px;
}

/* LEFT SIDE */
.roadmap-item.left {
  left: 0;
  text-align: right;
}

/* RIGHT SIDE */
.roadmap-item.right {
  left: 50%;
}

/* CENTER BOTTOM */
.roadmap-item.center {
  width: 100%;
  text-align: center;
}

/* CONNECTOR DOTS */
.roadmap-item::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  z-index: 2;
}

.roadmap-item.left::before {
  right: -6px;
}

.roadmap-item.right::before {
  left: -6px;
}

/* COLORS (LEFT STRIP STYLE) */
.card-box { 
  
  position: relative;
  display: inline-block;
  padding: 18px 25px;
  border-radius: 10px;
  background: #fff;
  font-weight: 500;
  min-width: 250px;
  height: 60px;
  color: #333;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* TOP RIGHT CORNER */
.card-box::before {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 55px;
  height: 55px;
  border-top: 5px solid currentColor;
  border-right: 5px solid currentColor;
  border-radius: 8px;
}

/* BOTTOM LEFT CORNER */
.card-box::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: -8px;
  width: 55px;
  height: 55px;
  border-bottom: 5px solid currentColor;
  border-left: 5px solid currentColor;
  border-radius: 8px;
}
.green .card-box { color: #4CAF50; }
.orange .card-box { color: #FF9800; }
.blue .card-box { color: #2196F3; }
.red .card-box { color: #F44336; }
.purple .card-box { color: #673AB7; }
.pink .card-box { color: #E91E63; }
.teal .card-box { color: #009688; }
.yellow .card-box { color: #FFC107; }
.red-bottom .card-box { color: #F44336; }



/* MOBILE */
@media (max-width: 768px) {

  .roadmap-item,
  .roadmap-item.right,
  .roadmap-item.left {
    width: 100%;
    left: 0;
    text-align: center;
  }

  .center-line {
    left: 10px;
  }

  .roadmap-item::before {
    left: 4px;
  }

  .card-box {
    width: 100%;
  }
}

/* our clients */
/* SLIDER BASE */
.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* TRACK */
.logo-track {
  display: flex;
  width: calc(200%);
  animation: scroll 20s linear infinite;
}

/* REVERSE (bottom row) */
.logo-slider.reverse .logo-track {
  animation: scrollReverse 20s linear infinite;
}

/* LOGOS */
.logo-track img {
  width: 130px;
  height: 80px;
  object-fit: contain;
  margin: 0 25px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* SCROLL LEFT */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SCROLL RIGHT */
@keyframes scrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Placements */
/* MAIN SECTION BACKGROUND */
.placement-section {
  background: #1faa59; /* green background */
  padding: 80px 0;
  color: #fff;
}

.placement-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT CONTENT */
.placement-section .content {
  flex: 1;
}

.placement-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.placement-section p {
  font-size: 16px;
  line-height: 1.7;
}

/* HIGHLIGHT BADGE */
.highlight-badge {
  display: inline-block;
  background: #fff;
  color: #1faa59;
  font-weight: bold;
  padding: 10px 18px;
  border-radius: 25px;
  margin: 20px 0;
  font-size: 16px;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* CTA BUTTON */
.cta-btn {
  background: #ffcc00;
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

/* VIEW MORE BUTTON */
.view-more-btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.view-more-btn:hover {
  background: #fff;
  color: #1faa59;
}

/* IMAGE BOX */
.image-box {
  flex: 1;
  position: relative;
}

/* IMAGE */
.image-box img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

/* TOP RIGHT YELLOW CORNER */
.image-box::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  background: #ffcc00;
  border-radius: 9px;
  z-index: 1;
}

/* BOTTOM LEFT BLUE CORNER */
.image-box::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 120px;
  height: 120px;
  background: #1e90ff;
  border-radius: 15px;
  z-index: 1;
}

/* vision-mission */
.vm-section {
  background: #f2f2f2;
  padding: 60px 0;
}

/* Container */
.vm-container {
  width: 85%;
  margin: 0 auto 40px;
  display: flex;
}

.vm-container.left {
  justify-content: flex-start;
}

.vm-container.right {
  justify-content: flex-end;
}

/* COMMON BOX */
.vm-box {
  display: flex;
  align-items: center;
  width: 65%;
  color: #fff;
  padding: 30px 50px;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  gap: 20px;
}

/* VISION (LEFT ARROW) */
.vm-vision {
  background: #26b32d;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}

/* MISSION (RIGHT ARROW) */
.vm-mission {
  background: #165027;
  flex-direction: row-reverse; /* KEY FIX */
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%);
}

/* TEXT */
.vm-text {
  flex: 1;
}

.vm-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 600;
}

.vm-text p {
  font-size: 14px;
  line-height: 1.6;
}

/* ICON */
.vm-icon {
  font-size: 50px;
  min-width: 60px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vm-container {
    justify-content: center !important;
  }

  .vm-box {
    width: 100%;
    flex-direction: column;
    text-align: center;
    clip-path: none;
  }
}