














  /* =============================
   General Styles
============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: white;
  color: #0a0a0a;
  
}

.container {
  width: 95%;
  max-width: 100%;
  margin: auto;
}

/* This is the KEY: logo is OUTSIDE blending context */
.logo-img-absolute {
  position: fixed;
  top: 1.2rem; /* Default for laptop */
  left: 1rem;
  z-index: 1001;
  pointer-events: none;
}

@media (max-width: 600px) {
  .logo-img-absolute {
    top: 0.7rem; /* Override for mobile */
  }
}




.logo-img-absolute img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  mix-blend-mode: normal;
  isolation: isolate;
}

/* Reserve space so text doesn’t clash with logo visually */
.logo-text-container {
  margin-left: 50px;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: inherit;
}
/* olakka */
/* =============================
   Navbar
============================= */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
   mix-blend-mode: difference; 
  color: white;
}



.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hamburger Icon */
.menu-icon {
  display: none;
  font-size: 1.8rem;
  margin-left: auto;
  cursor: pointer;
}

.menu-toggle,
.close-icon {
  display: none;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .close-icon {
    display: block;
    font-size: 1.8rem;
    text-align: right;
    padding: 0.5rem 1rem;
    cursor: pointer;
    color: white;
  }
}
/* =============================
   Hero Section
============================= */
.hero {
  padding: 60px 40px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 40px;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-text h5 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.hero-text h6 {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.explore-btn {
  background-color: black;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background-color: #fffefe;
  color: #000;
  border: 1px solid;
}

.hero-image {
  flex: 1 1 400px;
  max-width: 600px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* =============================
   Sections
============================= */
section {
  padding: 4rem 0;
}

section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* =============================
   Services
============================= */
.service-box {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.service {
  flex: 1 1 250px;
  background: #f4f4f4;
  padding: 1.5rem;
  text-align: center;
  border-radius: 10px;
}

/* =============================
   Portfolio
============================= */
.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.portfolio-gallery img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* =============================
   Testimonials
============================= */
.testimonials {
  background-color: #f9f9f9;
  padding: 4rem 0;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonial {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 100%;
  text-align: center;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial h4 {
  font-weight: bold;
  color: #555;
}

/* =============================
   FAQs
============================= */
.faqs {
  padding: 4rem 0;
}

.faq-item {
  background-color: #f4f4f4;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.faq-item h3 {
  margin-bottom: 0.5rem;
  color: #222;
}

.faq-item p {
  margin: 0;
  color: #555;
}

/* =============================
   Contact
============================= */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
  padding: 0 1rem;
}

form input,
form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #000;
  color: #fff;
  padding: 0.8rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

/* =============================
   Footer
============================= */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* =============================
   Job Listings
============================= */
.job-search {
  padding: 40px 10px;
  text-align: center;
  width: 100%;
}

.scroll-wrapper {
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  width: 100%;
}

.scroll-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  width: 100%;
  min-width: 0;
  flex-shrink: 0;
  flex-grow: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.job-listings {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
}


.job-card {
  flex: 0 0 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.job-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.job-card:hover {
  transform: scale(1.05);
}

.btn {
  background-color: #000;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
}

.btn:hover {
  background-color: #333;
}

.apply-btn {
  width: 100%;
  margin-top: 10px;
}

/* Scroll Buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 10px;
  border-radius: 50%;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}

/* =============================
   Responsive Design
============================= */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .hero-image {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h5 {
    font-size: 1.1rem;
  }

  .hero-text h6 {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .navbar {
    flex-direction: row;
    justify-content: space-between;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    display: none;
    flex-direction: column;
    width: max-content;
    border-radius: 0 0 10px 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 0.5rem 1rem;
    text-align: left;
  }

  .nav-links a {
    display: block;
    color: white;
    text-decoration: none;
  }

  .nav-links a:hover {
    text-decoration: underline;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .service-box {
    flex-direction: column;
    align-items: center;
  }

  .portfolio-gallery {
    grid-template-columns: 1fr;
  }

  .scroll-btn {
    display: none;
  }

  .job-card {
    flex: 0 0 80%;
    max-width: none;
  }
}

/* ✅ Fix: Show nav-links again for wider screens */
@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    gap: 1.5rem;
  }

  .nav-links li {
    display: block;
  }

  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
  }

  .mobile-menu,
  .menu-icon {
    display: none !important;
  }
}

/* =============================
   Mobile Slide Menu
============================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 100%;
  width: 75%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  mix-blend-mode: difference;
  z-index: 9999;
  padding: 2rem 1rem;
  transition: left 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  left: 0;
}

.close-icon {
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 1.5rem;
  align-self: flex-end;
}

.nav-links-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-links-list a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.nav-links-list a:hover {
  text-decoration: underline;
}








/*REGISTER Modal Styling */
.modal {
  display: none;
  position: fixed;
  z-index: 1004;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  position: relative;
}

.modal-content h2 {
  margin-bottom: 1rem;
  color: #e92063;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.registration-form input,
.registration-form select,
.registration-form textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.register-btn {
  padding: 15px 25px;
  background-color: #e92063;
  color: #fff;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.register-btn:hover {
  background-color: #c71854;
}










/* FEATURED BRANDS */

.brand-section {
  text-align: center;
  padding: 40px;
}

.brand-section h2 {
  font-size: 20px;
  margin-bottom: 30px;
  color: #444;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  justify-items: center;
}

.brand-card {
  width: 160px;
  height: 100px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: box-shadow 0.3s;
}

/* Normal hover for desktop */
.brand-card:hover {
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
}

.brand-card img {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
}

/* Animate hover effect on mobile */
@media (max-width: 768px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }

  .brand-card {
    animation: hoverEffect 3s ease-in-out infinite;
  }

  /* Stagger animations */
  .brand-card:nth-child(1) { animation-delay: 0s; }
  .brand-card:nth-child(2) { animation-delay: 0.5s; }
  .brand-card:nth-child(3) { animation-delay: 1s; }
  .brand-card:nth-child(4) { animation-delay: 1.5s; }
  .brand-card:nth-child(5) { animation-delay: 2s; }
  .brand-card:nth-child(6) { animation-delay: 2.5s; }
  .brand-card:nth-child(7) { animation-delay: 3s; }
  .brand-card:nth-child(8) { animation-delay: 3.5s; }
  .brand-card:nth-child(9) { animation-delay: 4s; }
  .brand-card:nth-child(10) { animation-delay: 4.5s; }
  .brand-card:nth-child(11) { animation-delay: 5s; }
  .brand-card:nth-child(12) { animation-delay: 5.5s; }
  .brand-card:nth-child(13) { animation-delay: 6s; }
  .brand-card:nth-child(14) { animation-delay: 6.5s; }
  .brand-card:nth-child(15) { animation-delay: 7s; }
  .brand-card:nth-child(16) { animation-delay: 7.5s; }
}

/* Define the animation */
@keyframes hoverEffect {
  0%, 100% {
    box-shadow: none;
  }
  50% {
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.2);
  }
}

/* job category */


/* job category */
.job-category-section {
  padding: 50px 20px;
  background: linear-gradient(to right, #f5f6f8, #e6f2f1);
  text-align: center;
}

.job-category-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #003a34;
}

.job-category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* Force 6 columns */
  gap: 20px;
  max-width: 1200px; /* Increased width to fit 6 cards neatly */
  margin: 0 auto;
}


.job-category-card {
  background: #f8f4f4;
  border: 2px solid #e92063;
  border-radius: 12px;
  padding: 20px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, background 0.3s;
  cursor: pointer;
}

.job-category-card:hover {
  transform: translateY(-8px);
  background: #e92063;
  color: #fff;
  border-color: #c51653;
}


@media (max-width: 768px) {
  .job-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}
