:root{
    --brand:oklch(0% 0 0);      
    --accent:#0663af;     
    --ink:#1f2937;        
  }

  body {
  padding-top: 80px; /* adjust to your navbar height */
}


html {
  scroll-behavior: smooth;       /* smooth scroll */
  scroll-padding-top: 80px;      /* adjust to your navbar height */
}
.scroll-icon {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #0d6efd;
      color: #fff;
      padding: 10px 12px;
      border-radius: 50%;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      transition: 0.3s;
      z-index: 999;
      animation: bounce 2s infinite; /* animation applied */
    }
    .scroll-icon:hover {
      background: #054db9;
    }

      @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-10px);
      }
      60% {
        transform: translateY(-5px);
      }
    }

  /* Base navbar */
  .simple-nav{
    background:#fff;
    /* box-shadow:0 4px 10px rgba(0,0,0,.06); */
    padding:.75rem 0;
  }

  .simple-nav.scrolled{
    box-shadow:0 4px 10px rgba(0, 0, 0, 0.137);
  }

  .simple-nav .navbar-brand{
    font-weight:800;
    color:var(--brand);
    letter-spacing:.5px;
  }
  .simple-nav .nav-link{
    color:var(--ink);
    font-weight:700;
    padding:.5rem 1rem;
  }
  .simple-nav .nav-link:hover{ color:var(--brand); }

  .btn-get{
    background:var(--accent);
    color:#fff;
    font-weight:700;
    border:none;
    border-radius:.6rem;
    padding:.55rem 1rem;
  }
  .btn-get:hover{ background: var(--accent)
    ; color:#fff; }

  /* Offcanvas (mobile menu) */
  .offcanvas-menu{
    width: 280px;
    background: var(--brand);
    color:#fff;
    /* smoother slide */
    transform: translateX(100%);
    transition: transform .4s ease-in-out;
  }
  .offcanvas-menu.show{ transform: translateX(0); }

  .offcanvas-menu .nav-link{
    color:#fff;
    font-size:1.05rem;
    padding:.75rem 0;
    border-bottom:1px solid rgba(255,255,255,.08);
  }
  .offcanvas-menu .nav-link:hover{ color:#ffd9cc; }

  /* Show center links only on ≥ lg */
  .main-links{ display:none; }
  @media (min-width: 992px){
    .main-links{ display:flex !important; }
    .mobile-controls{ display:none !important; }
  }


 /* carousel Section */
  /* Fullscreen carousel */
.carousel,
.carousel-item,
.carousel-item img {
  height: 85vh;
}
.carousel-item img {
  object-fit: cover;
  width: 100%;
}

/* Overlay for dark effect */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55); /* semi-dark overlay */
  z-index: 1;
}

/* Caption styling */
.carousel-caption {
  top: 40%;
  transform: translateY(-50%);
  bottom: auto;
  z-index: 2; /* show above overlay */
}
.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
}


/* about Section */


    /* About Section */
    .about-section {
      padding: 100px 0;
    }
    .about-section h1 {
      font-weight: 700;
      margin-bottom: 20px;
    }
    .about-section p {
      color: #555;
      font-size: 1rem;
    }
    .about-list {
      list-style: none;
      padding: 0;
      margin: 10px 0 0;
    }
    
    .about-list i{
        padding-right: 20px;
    }

/* features-section css */
.our-goal {
    background-blend-mode: overlay;
    padding: 44px 0px;
    height: 640px;
}
img.back-img {
    margin-top: -60px;
    position: absolute;
    overflow: hidden;
    object-fit: cover;
}
.goal-box {
  border-radius: 12px;
  transition: 0.3s ease;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;     
  text-align: center;     
}


.goal-box:hover {
  /* background: rgba(255, 255, 255, 0.1); */
  transform: translateY(-5px);
}
.our-goal h4 {
    margin-top: 10px;
    font-weight: 700;
}

.image-wrapper {
  position: relative;
  width: 120px; /* adjust to your image size */
  height: 120px; /* adjust to your image size */
  background-image: url('../images/shape-2.png'); /* your background image */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  max-width: 80px; /* smaller than wrapper */
  max-height: 80px;
  position: relative; /* just in case */
  z-index: 2; /* ensure on top */
}

/* how it work */

.connected-boxes-section {
    background: #ffffff;
    position: relative;
}
.section-heading {
  font-size: 2.5rem;
  font-weight: bold;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
    width: 100%;
    line-height: 28px;
}


.steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
    margin: 52px 0px 80px;
}

    .step {
      text-align: center;
      width: 23%;
      position: relative;
    }

    .step-icon {
      width: 120px;
      height: 120px;
      background: #e5f0ff;
      border: 2px dashed #f6b345;
      border-radius: 50%;
      margin: 0 auto 15px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .step-icon img {
      width: 60px;
      height: auto;
    }

    .step h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

   .step p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

    /* Green arrow between steps */
    .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 23%;
    right: -80px;
    width: 123px;
    height: 30px;
    background-image: url('../images/arrows12.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

    /* Responsive for smaller screens */
    @media (max-width: 768px) {
      .steps-wrapper {
        flex-direction: column;
        align-items: center;
      }

      .step {
        width: 90%;
        margin-bottom: 20px;
      }

      .step:not(:last-child)::after {
        display: none;
      }
    }


     /* service Section */

     .service-card {
      border: none;
      border-radius: 15px;
      transition: transform 0.3s ease-in-out;
      height: 350px;
    }
.service{
  padding: 3rem 0;
  background-color: #8eb6e22f;
}

.service h1{
  font-size: 35px;
  font-weight: 900;
}

.swiper-wrapper{
 padding: 2rem 0;  
}

    .service-card:hover {
      transform: translateY(-5px);
    }
    .service-card img {
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
      height: 240px;
      object-fit: cover;
    }
    .service-date {
      font-size: 14px;
      color: #666;
      margin-bottom: 8px;
    }
    .service-title {
      font-size: 18px;
      font-weight: 600;
      color: #222;
    }

    .swiper-button-next,
.swiper-button-prev {
  position: static;       
  margin-top: 20px;    
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  color: #333;
}

.swiper-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* =========================
   PRICING SECTION (CLEAN)
========================= */

.pricing-card {
  background: #fff;
  max-width: 350px;
  margin: auto;
  padding: 20px;
  border-radius: 12px;

  display: flex;
  flex-direction: column;

  height: 100%;      /* 🔥 KEY LINE */
}
/* Hover effect (optional but nice) */
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Title */
.pricing-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;

  min-height: 50px;     /* ✅ forces equal space */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Price / label */
.pricing-card span {
  display: inline-block;
  background: #e6f2ff;
  color: #0663af;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  white-space: nowrap;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;   /* keeps layout clean */
}

/* Feature items */
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;   /* tighter spacing */
  font-size: 0.9rem;
  color: #333;
}

/* Icon */
.feature-list i {
  color: var(--accent);
  font-size: 14px;
  margin-top: 3px;
}

/* Swiper fix (important) */
.swiper-slide {
  height: auto;
}

/* Contact section */
.contact {
  width: 100%;
  /* background-image: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQDRzxDxa-RR92mVzcTGwEwfwhXGN14RXIM0A&s); */
  background-size: cover;
  background-position: center;
  position: relative;
  align-items: center;
  background-color: #0077b6;
  padding: 3rem 0;
}

/* Overlay */
/* .contact::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(126, 102, 102, 0.3); 
  z-index: 1;
} */

/* Content should always stay above overlay */
.contact .container,
.section-header {
  position: relative;
  z-index: 2;
}

/* White contact box stays clean */
.contact-form {
  background-color: #fff;
  border-radius: 10px;
  z-index: 2;
  overflow: visible;
}

/* Contact text should be white */

.contact-info{
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    /* height: 500px; */
}

.section-header h2, 
.section-header p, 
.contact-info-content p {
  color: #000;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  height: 70px;
  width: 70px;
  background-color: #000;
  text-align: center;
  border-radius: 50%;
}

.contact-info-icon i {
  font-size: 30px;
  line-height: 70px;
  color: var(--accent);
}

.contact-info-content {
  margin-left: 20px;
}

.contact-info-content h4 {
  color: var(--accent);
  font-size: 1.4em;
  margin-bottom: 5px;
}

.contact-info-content p {
  color: #000;
  font-size: 1em;
}

.contact-form {
  background-color: #fff;
  padding: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  /* height: 500px; */
}

.contact-form h2 {
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 10px;
  color: #333;
}

/* .contact-form .input-box {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.contact-form .input-box input,
.contact-form .input-box textarea,
.contact-form .input-box select{
  width: 100%;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box textarea:focus ~ span,
.contact-form .input-box select:focus ~ span{
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
} */
.contact-form .input-box {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 10px;
}

.contact-form select {
  height: 38px;   /* consistent height */
}

.contact-form .input-box input,
.contact-form .input-box textarea,
.contact-form .input-box select {
  width: 100%;
  padding: 8px 0 4px; 
  margin-top: 10px;
  font-size: 15px;
  margin: 6px 0;
  border: none;
  border-bottom: 2px solid #333;
  outline: none;
  resize: none;
  background: transparent;
}

.contact-form .input-box select ~ span {
  top: -20px;
  font-size: 12px;
  color: #e91e63;
}

.contact-form .input-box {
  margin-bottom: 25px;   /* ? THIS IS THE MISSING PIECE */
}

.contact-form .row {
  margin-bottom: 10px;
}

.contact-form .input-box span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  font-size: 16px;
  margin: 10px 0;
  pointer-events: none;
  transition: 0.5s;
  color: #666;
}

.contact-form .input-box input:focus ~ span,
.contact-form .input-box textarea:focus ~ span,
.contact-form .input-box select:focus ~ span,
.contact-form .input-box input.filled ~ span,
.contact-form .input-box textarea.filled ~ span,
.contact-form .input-box select.filled ~ span {
  color: #e91e63;
  font-size: 12px;
  transform: translateY(-20px);
}
.contact-form .input-box input[type="submit"]
{
  width: 100%;
  background: var(--accent);
  color: #FFF;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  border: 1px solid var(--accent);
  transition: 0.5s;
}

.contact-form .input-box input[type="submit"]:hover
{
  background: #FFF;
  color: var(--accent);
}

/*
.social-icon {
  height: 40px;
  width: 40px;
  border-radius: 10px;
  background: #f1f1f1;   /* light color */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-icon a {
  color: #333;   /* default icon color */
  font-size: 18px;
  text-decoration: none;
}

/*
.social-icon:hover {
  background: #0d6efd;   /* hover background */
}
*/

.social-icon:hover a {
  color: #fff;  /* hover icon color */
}
*/

.social-icon {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

/* Remove square box completely */
.social-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-icon a {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 65px;
  height: 65px;
  border-radius: 50%;

  background: #25D366;
  color: #fff;

  font-size: 28px;
  text-decoration: none;

  transition: 0.3s;
}

.social-icon a:hover {
  background: #1ebe5d;   /* only circle changes */
  transform: scale(1.1);
}
/* Footer Section */

.footer {
  /* background: url('https://media.istockphoto.com/id/1178256295/photo/human-resources-management-and-recruitment-concept-magnifying-glass-is-searching-for-the.jpg?s=612x612&w=0&k=20&c=HkNjQ88K2Vng6-tBWkHt0nKrkLGJPAABydk7MPDuPh8=')
    no-repeat center center/cover; */
  position: relative;
  overflow: hidden;
  padding-top: 3rem;
  background-color: #011429;
}

.footer h6{
    font-size: 20px;
    margin-bottom: 10px;
}

.footer ul li{
    font-size: 15px;
}

.footer ul li:hover{
    transform: translateX(10px);
    font-size: 16px;
   
}


.footer-logo{
    height: 80px;
    width: 120px;
    background-color: white;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    /* margin-bottom: 1rem; */
    margin: 0 auto 1rem;
}

/* .footer-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.9); 
  z-index: 0;
} */

.footer .container {
  position: relative;
  z-index: 1; /* text above overlay */
}

/* Modal */

   .modal-content {
      border-radius: 15px;
      padding: 20px;
    }
    .modal-title {
      font-weight: 700;
      text-align: center;
    }
    .price {
      color: #00b894;
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
    }
    .price span {
      font-size: 1rem;
      color: #333;
      font-weight: 400;
    }
    ul.pricing-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }
    ul.pricing-list li {
      display: flex;
      align-items: start;
      margin-bottom: 12px;
      font-size: 15px;
    }
    ul.pricing-list li i {
      color: #00b894;
      margin-right: 10px;
      font-size: 18px;
    }

@media (max-width: 991px) {
    .about-section {
        padding: 50px 0;
}

.about-section img{
    margin-top: 2rem;
}
.contact-info-icon {
    height: 50px;
    width: 50px;
}

.contact-info-icon i{
    font-size: 25px;
    line-height: 50px;
}
.contact-info ,.contact-form{
    /* height: 600px; */
}
/* Equal height contact boxes fix */
.contact .row {
  align-items: stretch;
}

.contact-form,
.contact-info {
  height: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
}

@media (max-width: 767px){

.carousel-caption h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-form{
    margin-top: 20px;
}


}

@media (max-width: 425px){

.carousel-caption h1 {
    font-size: 2rem;
    font-weight: 700;
}
.carousel-item,.carousel{
    height: 60vh;
}


.carousel-caption{
    top: 25%;
}

.our-goal{
    height: auto;
}

.footer{
    padding-top: 1rem;
}

.steps-wrapper{
    margin: 0;
}
.service{
    padding: 1rem 0;
}

}

/* @media (max-width: 375px){
    .contact-info{
    padding: 30px;
    height: 650px;
}

}

@media (max-width: 320px){
    .contact-info{
    padding: 30px;
    height: 600px;
}
}

@media (max-width: 425px){
    .contact-info{
    padding: 30px;
    height: 600px;
}
} */

@media (max-width: 320px){
    .contact-info{
    padding: 30px;
    height: 600px;
}
}

/* Force equal height layout */
.Pricing .swiper-wrapper {
  display: flex;  
  align-items: stretch;
}

.Pricing .swiper-slide {
  display: flex; 
  height: auto;
}

/* Make list expand evenly */
.pricing-card .feature-list {
  flex-grow: 1;
}