@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Dancing+Script:wght@400..700&family=Pacifico&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Saira+Stencil:ital,wght@0,100..900;1,100..900&display=swap');

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    scrollbar-width: thin; 
    scrollbar-color: #888888 #f1f1f1;
    scroll-behavior: smooth;
}

hr
{
    border: none;
    height: 1px;
    background-color: #cccccc;
    margin: 10px 0;
    margin-left: 5vw;
    margin-right: 5vw;
}

.comfortaa
{
    font-family: 'Comfortaa', cursive;
}

.margin-top
{
    margin-top: 30px;
}

body
{
  overflow-x: hidden;
}

.top-strip 
{
  position: fixed;
  width: 100%;
  background: linear-gradient(to right, #a1a1a1, #535353);
  color: rgb(255, 255, 255);
  height: 4vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  top: 0;
  z-index: 20;
  font-family: Poppins, sans-serif;
}

.text-rotator 
{
  display: flex;
  flex-direction: column;
  animation: slideText 14s infinite;
}

.text-rotator div 
{
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes slideText 
{
  0%   { transform: translateY(0); }
  20%  { transform: translateY(-32px); }
  40%  { transform: translateY(-64px); }
  60%  { transform: translateY(-96px); }
  80%  { transform: translateY(-128px); }
  100% { transform: translateY(0); }    
}

nav
{
    background-color: #ffffff;
    position: fixed;
    height: 8vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    width: 100%;
    margin-top: -8vh;
}

.nav-container
{
    display: flex;
    align-items: center;
    width: 35vw;
}

nav ul
{
    display: flex;
    align-items: center;
    height: 100%;
    list-style-type: none;
    width: 60vw;
    justify-content: space-between;
    gap: 20px;
    margin-right: 5vw;
}

a
{
    text-decoration: none;
    color: rgb(106, 106, 106);
    transition: all 0.3s ease-in-out;
}

ul li
{
  width: fit-content;
}

li a:hover
{
    color: rgb(255, 107, 1);
    padding: 5px;
    border-radius: 5px;
}

.hamburger
{
    display: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    filter: invert(0.5);
    transition: all 0.3s ease-in-out;
}

.hamburger:hover
{
    scale: 1.1;
}

.logo
{
    height: 100%;
    margin-left: 5vw;
}

.slider 
{
  width: 100%;
  overflow: hidden;
  margin-top: 12vh;
}

.slides 
{
  display: flex;
  filter: brightness(1.2);
}

.slides img 
{
  width: 100%;
  flex-shrink: 0;
}

h1
{
  margin-left: 5vw;
  margin-top: 30px;
  font-weight: 700;
  font-size: 34px;
  color: rgb(106, 106, 106);
  font-family: playfair,sans-serif;
}

.para
{
  width: 90vw;
  justify-self: center;
  font-weight: 400;
  font-size: 18px;
  color: rgb(106, 106, 106);
  line-height: 2;
}

.animate-up 
{
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease-out;
}

.animate-up.show 
{
  opacity: 1;
  transform: translateY(0);
}

.cards
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 2fr));
  width: 90vw;
  gap: 20px;
  margin-right: 5vw;
  margin-left: 5vw;
  margin-top: 30px;
  margin-bottom: 30px;
}

.card
{
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.5);
  padding: 20px;
  cursor: pointer;
}

.card:hover
{
  transition: all 0.3s ease-in-out;
  box-shadow: 
    0 0 10px rgba(0, 149, 255, 0.834),
    0 0 20px rgba(0, 149, 255, 0.647),
    0 0 40px rgba(0, 149, 255, 0.448);
    transition: 0.3s;
}

.tag
{
  display: inline-block;
  color: #0014a9;
  background-color: rgb(194, 207, 255);
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card h3
{
  background: linear-gradient(to right, #352bff, #ff2a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card ul
{
  color: rgb(70, 70, 70);
  list-style-type:circle;
  padding-left: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.form-btn
{
  display: inline-block;
  border: 2px solid #6779ff;
  padding: 7px 14px;
  border-radius: 10px;
  color: #6779ff;
}

.form-btn:hover
{
  background-color: #6779ff;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.tag2
{
  display: inline-block;
  color: #ff6200;
  background-color: rgb(255, 219, 168);
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.form-btn2
{
  display: inline-block;
  border: 2px solid #ff8e48;
  padding: 7px 14px;
  border-radius: 10px;
  color: #ff8e48;
}

.form-btn2:hover
{
  background-color: #ff8e48;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}

.serve-h
{
  font-family: poppins,sans-serif;
  font-weight: 700;
  color: #001499;
}

.dots::after {
  content: '';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}

.industries
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-left: 5vw;
  margin-right: 5vw;
  margin-top: 20px;
}

.industry
{
  display: inline-block;
  color: #000e69;
  background-color: rgba(159, 180, 255, 0.325);
  padding: 8px 15px;
  border-radius: 5px;
}

#head1
{
  margin-top: 10px;
  margin-left: 5vw;
  color: #6779ff;
  font-weight: 700;
  margin-bottom: 10px;
}

#how-it-works
{
  font-family: playfair,poppins;
}

.qa
{
  display: flex;
  margin-left: 5vw;
  margin-right: 5vw;
  align-items: center;
}

.num
{
  font-size: 24px;
  font-weight: 700;
  color: #8e8e8e;
}

.ques
{
  font-size: 18px;
  font-weight: 400;
  color: #2f2f2f;
  margin-left: 10px
}

.ans
{
  font-size: 14px;
  font-weight: 600;
  color: #515151;
  margin-left: 5vw;
  margin-right: 5vw;
  margin-bottom: 10px;
}

#head2
{
  margin-top: 20px;
  margin-left: 5vw;
  color: #ff8e48;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer
{
  width: 100%;
  background-color: #222222;
}

.contact
{
  background: linear-gradient(
  90deg,
  oklab(30.919% 0 -0.00004)0%,
  oklab(25.375999999999998% 0.00387 -0.06418) 100%
);
  height: fit-content;
}

.contact h3
{
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding-top: 20px;
  margin-left: 5vw;
}

.icon
{
  display: flex;
  justify-content: space-around;
  align-items: center;
  justify-self: center;
  margin-top: 30px;
  width: 80vw;
}

.iconn
{
  height: 50px;
  padding: 10px;
  border-radius: 15px;
  transition: box-shadow 0.3s ease, transform 0.03s ease;
    box-shadow: 
    0 0 10px rgba(0, 149, 255, 0.068),
    0 0 20px rgba(0, 149, 255, 0.204),
    0 0 40px rgba(0, 149, 255, 0.296);
}

.iconn:hover
{
    box-shadow: 
    0 0 10px rgba(0, 149, 255, 0.834),
    0 0 20px rgba(0, 149, 255, 0.647),
    0 0 40px rgba(0, 149, 255, 0.448);
    transition: 0.3s;
}

.b-preposition
{
  font-family: poppins, sans-serif;
  font-size: 14px;
  font-weight: 300;
  margin-top: 10px;
  margin-left: 5vw;
  margin-right: 5vw;
  padding-bottom: 20px;
  color: #ffffff;
}

#copyright
{
  font-family: poppins, sans-serif;
  height: 4vh;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  padding-bottom: 5px;
  padding-top: 3px;
  background: linear-gradient(to right, #5b5b5b,#c6c6c6);
}

.mail
{
  color: #ffffff;
  margin-left: 5vw;
  margin-top: 30px;
  font-size: 14px;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 1000;
  padding: 20px;
}
.popup-overlay.active { opacity: 1; visibility: visible; }

.popup-card {
  background: #ffffff;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 14px;
  padding: 32px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.popup-overlay.active .popup-card { transform: translateY(0) scale(1); }

.popup-card.talent { border-top: 5px solid #5B4FCF; }
.popup-card.employer { border-top: 5px solid #E8821E; }

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
}
.popup-close:hover { color: #1f2937; }

.popup-card h2.form-title {
  margin: 0 0 4px 0;
  font-size: 22px;
  color: #5A3FA0;
}
.popup-card .subtitle {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 20px;
}

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1f2937;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}
.popup-card.talent .form-group input:focus,
.popup-card.talent .form-group select:focus,
.popup-card.talent .form-group textarea:focus {
  outline: none;
  border-color: #5B4FCF;
}
.popup-card.employer .form-group input:focus,
.popup-card.employer .form-group select:focus,
.popup-card.employer .form-group textarea:focus {
  outline: none;
  border-color: #E8821E;
}

.form-group textarea { resize: vertical; min-height: 70px; }
.error-text {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: #dc2626; }
.form-group.invalid .error-text { display: block; }

.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.submit-btn {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.15s ease;
}
.popup-card.talent .submit-btn { background: #5B4FCF; }
.popup-card.employer .submit-btn { background: #E8821E; }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.status-msg {
  text-align: center;
  font-size: 14px;
  margin-top: 14px;
  display: none;
}
.status-msg.success { color: #059669; display: block; }
.status-msg.error { color: #dc2626; display: block; }

.toggle-btn {
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid rgb(0, 0, 0);
    font-weight: 500;
    color: rgb(0, 0, 0);
  display: block;
  margin: auto;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: ease-in-out 0.3s;
  margin-bottom: 10px;
}

.toggle-btn:hover
{
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.faq
{
    display: flex;
    flex-direction: column;
    height: auto;
    padding-bottom: 50px;
  font-family: poppins, sans-serif;
}

.qaf
{
  display: flex;
  flex-direction: column;
    align-self: center;
    color: rgb(100, 100, 100);
    width: 90vw;
    font-size: 14px;
    margin-top: 20px;
}

.qaf p
{
  margin-top: 10px;
  color: rgb(141, 141, 141);
}

.vh-wrapper {
  max-height: 80vh;
  overflow: hidden;
  transition: max-height 0.6s ease;
  background-color:#fcfcfc
}

.vh-wrapper.expanded {
  max-height: none;
}

@media screen and (max-width: 768px)
{
  .nav-container
  {
    width: auto;
    position: relative;
  }

  .hamburger
  {
    display: block;
    margin-right: 5vw;
  }

    .hamburger.active
  {
    transform: rotate(90deg);
  }
   
  nav ul
  {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 5vh;
    right: 0;
    width: 100vw;
    z-index: 15;
    transition: max-height 0.4s ease-in-out;
    gap: 0px;
    margin-right: 3vw;
  }

  nav ul.active
  {
    display: flex;
    max-height: 100vh;
  }

  nav ul li
  {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    background-color: #ffffff;
    margin-left: 5vw;
  }

  h1
  {
    font-size: 24px;
    margin-top: 10px;
  }  

  .para
  {
    font-size: 14px;
  }

  .cards
  {
    margin-top: 20px;
    margin-bottom: 20px;
  }  
}

