 
 
:root {
 
  --primary-color: #e60000;   
  --secondary-color: #000000; 
  --light-color: #ffffff;
  --dark-color: #111111;

  
  --font-family: 'Montserrat', sans-serif;

 
  --container-padding: 15px;

  
  --fs-xs: 0.75rem;   
  --fs-sm: 0.875rem;  
  --fs-md: 1rem;      
  --fs-lg: 1.25rem;   
  --fs-xl: 1.5rem;   
}


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

body {
  font-family: var(--font-family);
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}


a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: var(--primary-color);
}


img {
  max-width: 100%;
  height: 100%;
  display: block;
}

p{
  hyphens: auto;
}
.container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
  max-width: 1200px;
}


.btn {
  font-size: var(--fs-sm);
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.btn:hover {
  opacity: 0.9;
}




@media (max-width: 575.98px) {
  body {
    font-size: var(--fs-sm);
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  .btn {
    width: 100%; 
  }
  .navbar-nav {
    text-align: left;
  }
}


@media (min-width: 576px) and (max-width: 767.98px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
}


@media (min-width: 768px) and (max-width: 991.98px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
}


@media (min-width: 992px) and (max-width: 1199.98px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 2rem; }
}


@media (min-width: 1200px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2.25rem; }
}

 
 
 
 .navbar {
      background-color: #fff;
          z-index: 1030;

    }
    .navbar-nav .nav-link {
      color: #000 !important; 
      margin-right: 20px;
    }
    .navbar-nav .dropdown-menu {
      background-color: #111; 
    }
    .navbar-nav .dropdown-item {
      color: white !important;
    }
    .navbar-nav .dropdown-item:hover {
      background-color: #333;
    }
    .btn-red {
      background-color: red;
      color: white;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 600;
    }
    .btn-red:hover {
    background-color: red;
    color: white;
    border-radius: 6px;
}
    .btn-outline-light {
      border-radius: 6px;
      font-size: 16px;
      font-weight: 600;
    }
    .navbar-brand img {
      height: 120px; 
    }
@media(min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}




@media (min-width: 992px) {
  .dropdown-toggle-icon {
    display: none;
  }
}


@media (max-width: 991.98px) {
  .nav-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* align + and text */
    width: 100%;
  }

  .nav-link {
    flex-grow: 1;
    color: white !important;
    padding-left: 10px; /* spacing after + icon */
  }

  .dropdown-toggle-icon {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }
}



.dropdown-toggle-icon.active .plus-icon {
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.plus-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}





.carousel-inner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}


.carousel-item {
  position: absolute;
  inset: 0; 
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
}


.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  display: block;
}


.carousel-item-next { transform: translateX(100%); }  
.carousel-item-prev { transform: translateX(-100%); } 
.carousel-item.active { transform: translateX(0%); } 

.carousel-item.active.carousel-item-start { transform: translateX(-100%); }
.carousel-item-next.carousel-item-start { transform: translateX(0%); }

.carousel-item.active.carousel-item-end { transform: translateX(100%); }
.carousel-item-prev.carousel-item-end { transform: translateX(0%); }


.carousel-item { z-index: 1; }
.carousel-item.active { z-index: 2; }







      .hero-section {
      position: relative;
      height: 100vh;
      overflow: hidden;
 margin-top: 100px;
    }
       .hero-section-1{
           margin-top: 130px;

       }
    
    .carousel-item img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      filter: brightness(0.6); 
    }

    
    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      z-index: 10;
      width: 90%;
      max-width: 1000px;
    }

    .hero-content h1 {
      font-size: 3rem;
      font-weight: 700;
      
    }

    .hero-content h3 {
      font-size: 2rem;
      margin-bottom: 15px;
     
    }
    .hero-content p{
      font-size: 20px;
    }
    
    .search-box {
      background: #fff;
      border-radius: 8px;
      padding: 10px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-bottom: 80px;
    }
.search-box .job-input {
  flex: 2; /* this one is wider for long placeholder */
}
    .search-box input {
      flex: 1;
      min-width: 220px;
      border: 1px solid;
      padding: 10px;
      /* outline:auto; */
    }
    .btn-info{
      font-size: 20px;
      margin-top: 50px;
      font-weight: 600;
    }
     .btn-info-1{
      font-size: 20px;
      margin-top: 1px;
      font-weight: 600;
    }
    .search-box button {
      background: #00bfff;
      white-space: nowrap;
      border: none;
      color: rgb(0, 0, 0);
      font-size: 20px;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 6px;
    }

   
    @media (max-width: 768px) {
      .hero-content h1 
      { 
        font-size: 2rem;
       }
      .hero-content p 
      { 
        font-size: 1rem;
       }
      .search-box 
      { 
        flex-direction: column; 
      }
      .search-box input
       {
         width: 100%; 
      }
      .hero-content {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 90%;
    max-width: 1000px;
}
.search-box {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    display: flex
;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1px;
}
.btn-info {
    font-size: 15px;
    margin-top: 1px;
    font-weight: 600;
}
.hero-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
}
.about-section h5 {
    font-size: 29px;
    font-weight: bold;
    /* font-family: 'Montserrat'; */
    margin-top: 20px;
    margin-bottom: 20px;
}
    }
    
   .about-section .about-us img{
    height: 400px;
    width: 500px;
    object-fit: cover;
   }
    .about-section h5{
      font-size: 35px;
      font-weight: bold;
      /* font-family: 'Montserrat'; */
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .about-section h2{
      font-size: 40px;
      /* font-family: 'Montserrat'; */
      margin-bottom: 20px;
    }
    .about-section p{
      font-size: 20px;
    
      color: #000;
    }
    .btn-back{
      background-color: #1CB7FF;
      color: #000;
      font-size: 20px;
      font-weight: bold;
    }
    .btn-back:hover{
       background-color: #1CB7FF;
      color: #000;
    }


      .job-section {
      border-radius: 30px;
      background: #f8f9fa;
      padding: 30px;
      padding-left: 150px;
      padding-right: 150px;
    }

   
    .section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}
    .section-subtitle {
      font-weight: 600;
      color: white;
    }

   .scrolling-wrapper {
  display: flex;
  gap: 20px;
  overflow: hidden; 
  padding: 10px 0;
  position: relative;
}


.scrolling-content {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-left-to-right 35s linear infinite;
}


@keyframes scroll-left-to-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(100%);
  }
}
.scrolling-wrapper-1 {
  overflow: hidden; 
  position: relative;
  width: 100%;
}

.scrolling-content-1 {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-right-to-left 20s linear infinite;
}


@keyframes scroll-right-to-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-50%);
  }
}
 
   .job-card {
  position: relative; 
  flex: 0 0 auto;
  width: 250px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  transition: transform 0.3s ease;
}
    .job-card:hover {
      transform: translateY(-5px);
    }
    .job-card h5 {
      font-weight: 600;
    }
    .job-card p {
      font-size: 0.9rem;
      margin-bottom: 8px;
    }
    .job-card .arrow {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.2rem;
  color: #0d6efd;
}
.job-card h5 i {
  margin-right: 12px; 
  font-size: 1.2rem; 
}
    @media (max-width: 768px) {
     .job-card { min-width: 150px; max-width: 200px; padding: 15px; }
  .section-title { font-size: 1.3rem; }
  .section-subtitle { font-size: 1rem; }
  .scrolling-content,
  .scrolling-content-1 { gap: 10px; animation-duration: 15s; }
.job-section {
    border-radius: 30px;
    background: #f8f9fa;
    padding: 30px;
    padding-left: 0px; 
   padding-right: 0px;
}

    }
@media (max-width: 992px) {
  .job-card { min-width: 180px; max-width: 220px; }
  .section-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .job-card { min-width: 140px; max-width: 180px; padding: 10px; }
  .section-title { font-size: 1.1rem; }
  .section-subtitle { font-size: 0.9rem; }
}











.full-tile{
  color: #2CBB00;
  font-size: 14px;
 
}
.company-name{
  font-size: 20px;
}
.years{
  font-size: 14px;
 display: flex;
 gap: 10px;
}
.sub-para{
  font-size: 12px;
  margin-top: 10px;
}
.card img{
  background-color: gainsboro;
  padding: 10px;
  height: auto;
  width: auto;
}


.card {
  border-radius: 15px;       
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);            
  box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
}



.button-post {
    font-size: 17px;
    font-weight: bold;
}
.button-post:hover{
  background-color: white;
  color: #000;
}


.marquee-container {
  position: relative;
}

.marquee {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marquee-left 20s linear infinite;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.marquee img {
  max-height: 60px;
  object-fit: contain;
}
.job-head{
  color: #1CB7FF;
  font-size: 28px;
  font-weight:  600;
}
.see-more{
  font-size: 18px;
   color: #1CB7FF;
}
.para-job{
  font-size: 18px;
  font-weight: 600;
}


.logo-scroll-container {
  position: relative;
}

.logo-scroll {
  display: flex;
  gap: 150px;
 white-space: nowrap;
  animation: logo-marquee 20s linear infinite;
}

@keyframes logo-marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.logo-scroll img {
  max-height: auto;
  object-fit: contain;
 margin-right: 80px; 
}



footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #00bcd4; 
}

footer img {
  transition: transform 0.3s ease;
  height: auto;
  width: auto;
  object-fit: contain;
}

footer img:hover {
  transform: scale(1.05);
}

footer .social-icons a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  background: #222;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}

footer .social-icons a:hover {
  background: #444;
  transform: scale(1.1);
}
.footer-container {
  max-width: 1200px; 
  margin: 0 auto;    
  padding-left: 20px;  
  padding-right: 20px; 
  border-radius: 30px; 
  overflow: hidden;    
  background-color: #000; 
}
.footer-title{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;

}
.footer-list{
font-size: 18px;
}


.footer-unlist li{
  margin-bottom: 10px;
}


.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;      
  height: 40px;
  border-radius: 50%; 
  color: #fff;       
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}


.social-icons .facebook { background-color: #1877F2; }
.social-icons .instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-icons .youtube { background-color: #FF0000; }
.social-icons .x-twitter { background-color: #000000; }
.social-icons .linkedin { background-color: #0A66C2; }




.form-label {
    margin-bottom: .5rem;
    font-weight: 600;
}
.btn-primary-1{
  background-color: black;
  font-size: 18px;
  color: white;
}

.btn-primary-1:hover{
  background-color: black;
  font-size: 18px;
  color: white;
}


.process-step {
      text-align: center;
      position: relative;
    }
    .process-icon {
      width: 80px;
      height: 80px;
      background-color: #EAE7FF;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: 0 auto 15px;
      font-size: 32px;
      color: #000;
    }
    .process-arrow {
      position: absolute;
      right: 0px;
      top: 18px;
      font-size: 40px;
      color: #000;
    }
   
    @media (max-width: 767px) {
      .process-arrow {
        display: none;
      }
    }


     .accordion-item {
      border: none;
      margin-bottom: 10px;
    }
    .accordion-button {
      background-color: #e6f2ff; 
      border-radius: 12px !important;
      font-weight: 600;
      box-shadow: none;
      padding: 15px 20px;
    }
    .accordion-button:not(.collapsed) {
      background-color: #d4eaff;
      color: #000;
    }
    .accordion-button:focus {
      box-shadow: none;
    }
    
    .accordion-button::after {
      flex-shrink: 0;
      width: 1.25rem;
      height: 1.25rem;
      background-size: 1.25rem;
      background-image: none;
      content: "+";
      font-size: 20px;
      font-weight: bold;
      margin-left: auto;
    }
    .accordion-button:not(.collapsed)::after {
      content: "−"; 
      font-size: 22px;
       background-image: none;
       transform: var(--bs-accordion-btn-icon-transform);
    }
    
    .accordion-body {
      padding: 15px 20px;
      background: #f9f9f9;
      border-radius: 0 0 12px 12px;
    }


  
.subscription-container {
  background-color: #F1F4F8; 
  border-radius: 30px;
  padding: 50px 30px;
}


.subscription-container h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}


.subscription-card {
  background: #fff;
  border-radius: 30px;
  padding: 50px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.subscription-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.subscription-card h3 {
      font-size: 29px;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: left;
}


.subscription-card h4 {
     font-size: 40px;
    font-weight: 600;
    margin-bottom: 25px;
   
}

.subscription-card h4 small {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}


.subscription-card p {
 margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: left;
}


.subscription-card .btn {
  border-radius: 10px;
  font-weight: 600;
  font-size: 20px;
  padding: 10px 0;
  background: rgba(0, 174, 255, 0.50);


}
.subscription img{
  height: 350px;
  width: 100%;
  object-fit: cover;
}
.subscription p{
  font-size: 17px;
  text-align: justify;
}


.profile-section {
  background: #f0f0f0;  
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; 
}


.form-container {
  max-width:90%;
  width: 100%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}


.form-banner {
  /* background-image: url(../images/manage-profile-cover-1.png); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #333;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
   overflow: hidden;
}


.logo-wrapper {
  position: absolute;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
}

.logo-placeholder {
  width: 150px;
  height: 150px;
  object-fit: cover;
 
  background: #eef2f8;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}


.form-body {
  padding: 100px 120px 30px; 
}
.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 35px !important;
}

.form-group label {
  width: 175px;      
  font-weight: 600;
  margin-right: 10px;
}

.form-group input {
  flex: 1;           
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.form-group select {
  flex: 1;           
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.form-check{
  margin-left: 25%;
}
.btn-submit {
  padding: 10px;
  width: 100%;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 768px) {
  .form-group {
    flex-direction: column; 
    align-items: flex-start;
  }

  .form-group label {
    width: 100%; 
  }

  .form-group input {
    width: 100%; 
  }
  .form-body {
    padding: 100px 30px 30px;
}
.form-container {
    max-width: 100%;
    width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

}

.hero1 {
   position: relative;
      background: url('../images/explore.jpeg') no-repeat center center;
      background-size: cover;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      text-align: center;
    }

     .hero1::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); 
      z-index: 1;
    }

    .hero1 .container {
      position: relative;
      z-index: 2;
    }
    .hero1 h1 {
      font-size: 50px;
      font-weight: 600;
      margin-bottom: 1rem;
      text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);

    }
    .hero1 p {
      font-size: 27px;
      font-weight: 600;
      margin-bottom: 2rem;
      text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);

    }
    


.job-categories-section {
  background-color: #002244; 
  font-family: 'Montserrat', sans-serif;
}


.category-card {
  background-color: #ffffff;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
 flex-direction: column;
    justify-content: center;
    align-items: anchor-center;
    /*flex-wrap: wrap;*/
}


.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.category-icon {
  width: 50px;
  height: auto;
  object-fit: contain;
}


.category-title {
  font-weight: 600;
  font-size: 17px;
  color: #000000;
  margin: 0;
}

 .job-card1 {
      border-radius: 20px;
border: 1px solid rgba(0, 0, 0, 0.30);
background: #FFF;
      padding: 20px;
     
      width: 100%;
    }


    


.job-image-card
{
 width: 50px;
  height: 50px;
 
  background-color: #ebebeb;
    text-align: center;
    display: flex
;
    justify-content: center;
    align-items: center;
}


.job-image-card img
{
  width: 30px;
  height: 30px;
  object-fit: cover;
   
  text-align: center;
 
}

    .job-title {
      font-size: 22px;
      font-weight: 600;
    }

    .job-meta {
      font-size: 0.9rem;
      color: #6c757d;
    }

    .badge-green {
      background-color: #d4edda;
      color: #28a745;
      font-weight: 500;
    }

    .filter-box {
      
      padding: 20px;
      border-radius: 20px;
border: 1px solid rgba(0, 0, 0, 0.30);
background: #FFF;
box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    }

    .filter-box input,
    .filter-box select {
      font-size: 0.9rem;
    }

    .view-btn {
     border-radius: 5px;
background: #1CB7FF;
color: #fff;
font-weight: 600 !important;
    }

    .view-btn:hover {
      background-color: #1CB7FF;
    }


.text-green
{
  color: #2CBB00CC;
}


.why-choose
{
  padding: 50px 0px;
}

.why-choose h1
{
  color: #000;
  font-weight: 600 !important;
font-size: 40px !important;
margin-bottom: 20px;

}

.why-choose p
{
  color: #000;
 
font-size: 18px !important;


}


.why-choose img
{
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.benifits
{
  background: #F1F4F8B2;
  padding: 50px 0px;
}

.benifits h2
{
  font-size: 30px;
  font-weight: 600;
}

.benifits img
{
  border-radius: 20px;
width: 100%;
height: 270px;
object-fit: cover;
 object-position: top;
  box-shadow: 5px 5px 15px #0000;
}

.job-des
{
  padding: 20px 0px 150px 0px;
  background: #F1F4F8;
}

.job-des h1
{
  font-size: 46px !important;
    font-weight: 600;
    padding-top: 20px;
}

.similar-jobs
{
  padding: 50px 0px;
}

.similar-jobs h1
{
  font-size: 36px !important;
    font-weight: 600;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid #000;
    margin-bottom: 30px;

}


.job-app-form
{
  padding: 50px 0px 150px 0px;
  background: linear-gradient(90deg, #BAD8FF 32.69%, #FFF 100%);
}

.form-card {
     
      width: 100%;
      background-color: #fff;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      margin-top: -100px;
    }
    .form-title {
      text-align: center;
      margin-bottom: 30px;
    }
    .form-title img {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;
    }
    .form-title h4 {
      font-weight: 600;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .verify-link {
      font-size: 0.9rem;
      color: #0d6efd;
      cursor: pointer;
    }
    input[type="file"]::file-selector-button {
      padding: 6px 12px;
      border: none;
      background-color: #f1f1f1;
      border-radius: 5px;
    }

     .logo-text {
      display: flex;
      align-items: center;
      gap: 30px; 
    }
    .logo-text img {
     height: 80px; 
      width: 80px;
      object-fit: contain;
      border: 1px solid; 
      padding: 20px;
      border-radius: 20px;
    }
    .logo-text h1 {
      font-size: 1.5rem;
      margin: 0;
    }

    @media (max-width: 576px) {
      .logo-text h1 {
        font-size: 1.2rem; 
      }
      .logo-text img {
        max-height: 40px;
      }
    }
  

    .relocate-card {
  width: 80px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 10px;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #020202;
  border-radius: 8px;
font-size: 16px;
    font-weight: 600;
  transition: background 0.3s, color 0.3s;
  background-color: #fff;
  color: #030303;
}

.relocate-card:hover {
  background-color: #e7f1ff;
}

.active-card {
  background-color: #0d6efd;
  color: #fff;
}

  .thank-you-container {
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    .thank-you-box {
      background-color: #fff;
      padding: 100px 30px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      max-width: 800px;
      width: 100%;
    }
    .thank-you-box h1 {
      font-size: 2rem;
      margin-bottom: 35px;
    }
    .thank-you-box p {
      margin-bottom: 25px;
      margin-top: 15px;
      font-size: 17px;
      color: #000000cc;
    }
    .thank-you-box .btn {
      width: 250px;
      margin-top: 50px;
      background-color: #1CB7FF;
      color: white;
      font-size: 20px;
      font-weight: 600;
    }



     .steps-section {
      position: relative;
      padding: 60px 0;
      margin-top: 50px;
      margin-bottom: 50px;
    }

    .steps-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 100%;
      background-color: #e0e0e0;
    }

   
    .step {
      position: relative;
      margin-bottom: 60px;
    }

    
    .step-icon {
      position: absolute;
      left: 50%;
      top: 0;
      transform: translate(-50%, 0);
      background: #fff;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

   
    .step-content {
      width: 45%;
    }

    .step-left {
      text-align: right;
      margin-right: auto;
      padding-right: 90px;
    }

    .step-right {
      text-align: left;
      margin-left: auto;
      padding-left: 90px;
    }

   
    @media (max-width: 767px) {
      .steps-section::before {
        left: 20px;
      }
      .thank-you-box {
    background-color: #fff;
    padding: 95px 10px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    max-width: 629px;
    width: 100%;
}
      .step-icon {
    position: absolute;
    left: 6% !important;
    top: 0;
    transform: translate(-50%, 0);
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex
;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
      .step-content {
        width: 100%;
        text-align: left;
        padding-left: 70px;
      }
      .step-left, .step-right {
        padding: 0 0 0 70px;
      }
    }

    .step-box {
  width: 250px;
  padding: 15px;
  border-radius: 10px;
  border: 2px solid #024A38;
  background: #DFF3D2;
  color: #024A38;
  font-weight: 600;
  text-align: center;
}

.arrow i {
  font-size: 1.5rem;
  color: #024A38;
}

.tab-content {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
  color: white;
  background: black;
  display: flex
;
  gap: 20px;
  margin-left: 10px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: red;
}
  .form-label {
    font-weight: 600;
  }
  .nav-tabs .nav-link {
    border-radius: 50px;
    margin-right: 5px;
    font-weight: 500;
  }
 .upload-box {
display: inline-block;
text-align: center;
}
.upload-box img {
  border-radius: 6px;
}

.upload-box .btn {
  font-size: 14px;
  padding: 4px 10px;
}


@media (max-width: 768px) {
 

  #formTabs .nav-item {
    display: inline-block;
 
    margin-bottom: 5px;
  }

  #formTabs .nav-link {
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 14px;
  }
}


.prev-tab{
  background-color: black;
}
.next-tab{
  background-color: red;
  border: 1px solid red;
}
.next-tab:hover{
  background-color: red;
   border: 1px solid red;
}






  .terms-heading {
      color: #0d6efd;
      font-weight: 600;
      text-align: center;
      margin-bottom: 30px;
      font-size: 16px;
    }
    .terms-subtitle {
      font-size: 1.3rem;
      color: black;
      font-weight: 600;
      margin-top: 30px;
     
      padding-bottom: 8px;
    }
    .terms-para {
      margin-bottom: 15px;
      font-size: 17px;
          font-weight: 500;
              text-align: justify;

    }
    .terms-list {
      list-style-type: disc;
      padding-left: 25px;
      margin-bottom: 15px;
    }
   .terms-list-item {
    margin-bottom: 8px;
    color: black;
    font-weight: 500;
    font-size:17px;
        text-align: justify;

}
    .terms-link {
      color: #0d6efd;
      text-decoration: underline;
    }
    .terms-link:hover {
      color: #0056b3;
    }
    @media (max-width: 767px) {
      .terms-section {
        padding: 30px 20px;
      }
      .terms-heading {
        font-size: 1.6rem;
      }
      .terms-subtitle {
        font-size: 1.1rem;
      }
    }



