        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }





        body{
            background-color: #e0dede;

        }











.navbar-custom {
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 999;
            transition: background-color 0.3s ease, color 0.3s ease;
            background-color: transparent;
            padding: 16px 0;
        }

        .navbar-scrolled {
            background-color: white !important;
        }

        .navbar-nav .nav-link {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            color: black;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }

        .navbar-dark .nav-link {
            color: white !important;
        }

        .nav-link:not(.dropdown-toggle)::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background-color: limegreen;
            transition: width 0.3s ease-in-out;
        }

        .offcanvas-custom .nav-link::after {
            display: none;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-logo {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border-radius: 50%;
        }

        .get-started-btn {
            font-family: 'Manrope', sans-serif;
         
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 700;
            transition: all 0.3s ease;
            border: none;
         
            color: rgb(254, 253, 253);
            background-color: red;
        }

        .navbar-dark .get-started-btn {
            color: white;
          
        }

        .get-started-btn:hover {
            background-color: rgb(220, 15, 15);
            color: rgb(255, 255, 255);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
        }

      
        .dropdown-menu {
            display: none;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 0.4rem;
            min-width: 180px;
            z-index: 1000;
        }

        /* Show main dropdown on hover */
        @media (min-width: 992px) {
            .dropdown:hover > .dropdown-menu {
                display: block;
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
        }

        /* Submenu container */
        .dropdown-submenu {
            position: relative;
        }

        /* Nested submenu - hidden by default */
        .dropdown-submenu > .dropdown-menu {
            display: none !important;
            opacity: 0;
            visibility: hidden;
            position: absolute;
            left: 100%;
            top: 0;
            margin-top: 0;
            border-radius: 0.4rem;
            z-index: 1001;
            background-color: white;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            min-width: 180px;
            transition: all 0.3s ease;
        }

        @media (min-width: 992px) {
            .dropdown-submenu:hover > .dropdown-menu {
                display: block !important;
                opacity: 1;
                visibility: visible;
            }
        }


.dropdown-submenu > .dropdown-toggle::after {
    content: ">";
    float: right;
    margin-left: 8px;
    font-size: 0.7rem;
    border: none !important;     
    background: none !important; 
}

        

        .dropdown-item {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 500;
            color: #333;
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            border: none;
            background: none;
        }

        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: limegreen;
            transform: translateX(5px);
        }









        /* Mobile Offcanvas Styles */
        .offcanvas-custom {
            background-color: #000 !important;
            color: white;
            width: 250px;
        }

        .offcanvas-custom .nav-link {
            color: rgb(235, 229, 229);
            font-family: 'Plus Jakarta Sans';
            font-size: 1.5rem;
            transition: 0.5s;
        }

        .offcanvas-custom .nav-link:hover {
            color: rgb(254, 253, 253);
            font-family: 'Plus Jakarta Sans';
            font-size: 1.6rem;
        }

        .offcanvas-custom .get-started-btn {
            color: white;
            border-color: white;
        }

        .offcanvas-custom .get-started-btn:hover {
            background-color: rgb(13, 13, 13);
            color: rgb(250, 247, 247);
        }

        .mobile-dropdown {
            margin-top: 10px;
            margin-left: 0; 
        }

        .mobile-dropdown-item {
            color: rgb(200, 200, 200);
            font-size: 1.2rem;
            padding: 8px 0;
            display: block;
            text-decoration: none;
            transition: all 0.3s ease;
            padding-left: 0;
        }

        .mobile-dropdown-item:hover {
            color: limegreen;
            transform: translateX(10px);
        }
.mobile-dropdown-toggle {
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}


#mainDropdown .mobile-sub-dropdown {
    margin-left: 10px;
    margin-bottom: 10px;
    
}



.mobile-sub-dropdown .mobile-dropdown-toggle {
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.mobile-sub-dropdown .mobile-dropdown-content {
    margin-left: 15px;
    padding-left: 10px;
    border-left: 2px solid #b8b4b4;
        max-height: auto; 
    overflow-y: auto; 
}




        .mobile-dropdown-toggle i {
            transition: transform 0.3s ease;
        }

        .mobile-dropdown-toggle.active i {
            transform: rotate(180deg);
        }

        .mobile-dropdown-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-dropdown-content.active {
            max-height: none;
        }

        .btn-close {
            filter: invert(1);
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        @media (max-width: 768px) {
            .nav-logo {
                width: 60px;
                height: 60px;
                object-fit: contain;
                border-radius: 50%;
                margin-left: 10px;
            }
        }

















    .career-hero {

      padding: 150px 0;
      text-align: center;
    }

    .career-hero h1 {
      font-weight: 700;
      margin-bottom: 20px;
    }


    .apply-btn{
        background-color: red;
        color: white;
    }
    .culture-section {
      padding: 40px 0;


    }

    .positions-section {

      padding: 50px 0;
    }

    #applyModalLabel{
      color: black !important;
    }

    .position-card {
      background-color: #fff;
      border: 1px solid #ddd;
      padding: 20px;
      border-radius: 8px;
      transition: 0.3s;
    }

    .position-card:hover {
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .modal-header {
      background-color: #060606;
      color: white;
    }



























        

/* footeerrr? */




    footer {
      padding-top: 40px;
      background-color: #000000;
      
    }

    .footer-nav {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: end;
      gap: 50px;
      flex-wrap: wrap;
    }

    .footer-nav li a {
      text-decoration: none;
      color: #ccc;
      font-size: 0.95rem;
      transition: color 0.3s;
    }

    .footer-nav li a:hover {
      color: #fff;
    }

    .footer-line {
      border-top: 1px solid #444;
      margin: 60px 0;
    }

    .footer-text {
      font-size: 0.9rem;
      color: #ccc;
      text-align: left;
    }

    .footer-icons {
      text-align: right;
    }

    .footer-icons a {
      display: inline-block;
      margin-left: 15px;
      color: #ccc;
      font-size: 1rem;
      border: 1px solid #555;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      line-height: 36px;
      text-align: center;
      transition: all 0.3s;
    }

    .footer-icons a:hover {
      color: white;
      border-color: white;
    }

    .footer-copy {
      text-align: left;
      font-size: 0.85rem;
      color: #FFFFFF;
      margin-top: 10px;
      padding-bottom: 20px;
      font-weight: 400;
    }

    @media (max-width: 576px) {
      .footer-text,
      .footer-icons {
        text-align: center;
      }

      .footer-icons a {
        margin-left: 10px;
        margin-right: 10px;
      }
    }

    @media (max-width:769px) {
        .footer-nav{
            justify-content: center;
            gap: 20px;
        }

            .footer-nav li a {
      
      font-size: 0.80rem;
      transition: color 0.3s;
    }

    @media (max-width: 576px) {
  .footer-copy {
    text-align: center;
  }
    }}












    









    

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.service-pill {
  flex: 1 1 calc(50% - 10px); 
  padding: 10px 20px;
  border-radius: 999px;
  background-color: #f1f1f1;
  color: #333;
  border: 2px solid #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
}


.service-pill:hover {
  background-color: #e0e0e0;
}

.service-pill.selected {
  background-color: #000;
  color: #fff;
  border-color: #000;
}



@media (max-width: 575.98px) {
  .service-pill {
    flex: 1 1 calc(50% - 10px);
      padding: 10px 10px;
 
  }
}

.service-pill:hover {
  background-color: #e0e0e0;
}

.service-pill.selected {
  background-color: #000;
  color: #fff;
  border-color: #000;
}



.modal-header{
  background-color: rgb(249, 248, 248) !important;
}




.modal-header .btn-close {
  filter: none; 

  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
}








.contact-box {
  max-width: 550px; 
  margin: 40px auto; 
  padding: 40px 30px; 

 

  transition: all 0.3s ease-in-out;
  font-size: 1rem; 
  font-family: 'Montserrat', sans-serif;
}

.form-step h1 {
  text-align: center;
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 2rem;

}


.form-control,
.form-select {
  border-radius: 24px;
  padding: 12px 20px; 
  font-size: 0.95rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid #ccc;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}



textarea.form-control {
  resize: none;
}

.btn-custom {
  border-radius: 30px;
  padding: 18px 20px;
  font-weight: bold;
  font-size: 1.125rem; 
  background-color: #fb0303;
  color: white;
  border: none;

  width: 100%;
  transition: background-color 0.4s, color 0.4s, transform 0.3s;
  margin-top: 20px;
}

.btn-custom:hover {
  background-color: #fbf9f9;
  color: #000;
  transform: translateY(-2px);
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 4%;
  margin-top: 40px;
}

.single {
    display: flex;
  justify-content: center;
  flex-grow: 1;
  width: 100%;
}


@media (max-width: 413px) {
    .service-pill {
  
      padding: 7px 7px;
      font-size: 10px;
 
  }


}

@media (max-width: 576px) {
  .contact-box {
    padding: 30px 50px; 
    margin: 20px auto;
    border-radius: 12px;
    font-size: 0.9rem; 
  }

  .form-step h4 {
    font-size: 1.4rem; 
    margin-bottom: 20px;
  }

  .form-control,
  .form-select {
    padding: 10px 16px; 
    font-size: 0.9rem;
    border-radius: 20px;
  }

  textarea.form-control {
    height: 100px; 
  }

  .btn-custom {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
  }

  .btn-container {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

  .btn-container.single {
    justify-content: center;
  }
}

