:root {
  --color-primary: #25D366;
  --color-primary-hover: #019875;
  --color-secondary: #007bff;
  --color-tertiary: #0e0e0e;
  --color-text-secondary: #555;
  --color-background: #f4f4f4;
  --color-footer: #00b894;
  --color-footer-span: #585858;
  --color-text: #333;
  --color-text1: #ffffff;
  --font-family-base: 'Times New Roman', Times, serif;
  --border-radius: 8px;
  --box-shadow-light: 0 2px 4px rgba(0,0,0,0.1);
  --box-shadow-dropdown: 0 4px 6px rgba(0,0,0,0.1);
}

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

html, body {
  height: 100%;
}

body {
  font-family: var(--font-family-base);
  margin: 0;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  background-color: var(--color-background);
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #e3e1e1;
  box-shadow: var(--box-shadow-light);
  z-index: 1000;
  transition: all 0.3s ease;
}

.top-nav-container {
  margin: auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 60px;
}

.skillooprobd-logo {
  height: 45px;
}

.top-nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.top-nav-hamburger .bar {
  width: 100%;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
}

.top-nav-nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-nav-nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.top-nav-nav-links li a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
}

.top-nav-nav-links li a:hover {
  color: var(--color-secondary);
}

.top-nav-btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--border-radius);
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.top-nav-btn-outline:hover {
  background-color: var(--color-primary);
  color: white;
}

@media (max-width: 768px) {
  .top-nav-hamburger {
    display: flex;
  }

  .top-nav-nav-menu {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 2rem;
    display: none;
    box-shadow: var(--box-shadow-dropdown);
  }

  .top-nav-nav-menu.active {
    display: flex;
  }

  .top-nav-nav-links {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .top-nav-btn-outline {
    width: 100%;
    margin-top: 0.1rem;
    text-align: center;
  }
}
/* 🔹 Navbar Scroll Effect */
.top-nav.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

/* 🔹 Hamburger Animation (optional) */
.top-nav-hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.top-nav-hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.top-nav-hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
/* =============================
   OFFER BAR MODERN DESIGN
============================= */
.offer-bar{
  width:100%;
  background:linear-gradient(90deg,#0a66c2,#0047ab,#002f6c);
  color:#fff;
  padding:12px 0;
  font-size:14px;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.offer-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:0 20px;
  flex-wrap:wrap;
}

.offer-text{
  display:flex;
  align-items:center;
  gap:12px;
  flex:1;
  min-width:200px;
  overflow:hidden;
}

.offer-badge{
  background:linear-gradient(45deg,#ff3b3b,#ff0000);
  padding:4px 10px;
  border-radius:6px;
  font-weight:700;
  font-size:12px;
  white-space:nowrap;
  box-shadow:0 0 8px rgba(255,0,0,0.5);
}

.offer-ticker{
  overflow:hidden;
  position:relative;
  flex:1;
}

.ticker-move{
  display:inline-block;
  white-space:nowrap;
  padding-left:100%;
  animation: ticker 15s linear infinite;
}

.offer-ticker:hover .ticker-move{
  animation-play-state:paused;
}

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

.offer-timer{
  background:rgba(255,255,255,0.1);
  padding:6px 12px;
  border-radius:6px;
  font-weight:600;
  backdrop-filter:blur(6px);
  white-space:nowrap;
}

.offer-timer span{
  background:#ffcc00;
  color:#000;
  padding:3px 6px;
  border-radius:4px;
  margin:0 2px;
  font-weight:700;
}

.offer-btn{
  background:linear-gradient(45deg,#ffcc00,#ffd633);
  color:#000;
  padding:8px 16px;
  border-radius:6px;
  text-decoration:none;
  font-weight:700;
  transition:all .3s ease;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.offer-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,0.25);
  background:linear-gradient(45deg,#ffd633,#ffcc00);
}

/* =============================
   MOBILE DESIGN
============================= */
@media(max-width:992px){
  .offer-container{
    justify-content:center;
    text-align:center;
    gap:10px;
  }
  .offer-text{
    justify-content:center;
  }
  .offer-timer{
    font-size:13px;
  }
}

@media(max-width:600px){
  .offer-container{
    flex-direction:column; 
    align-items:center;
    text-align:center;
    gap:8px;
  }

  .offer-text{
    justify-content:center;
    width:100%; 
  }

  .offer-ticker .ticker-move{
    font-size:13px; 
  }

  .offer-timer{
    font-size:12px;
    padding:4px 8px;
  }

  .offer-btn{
    padding:6px 14px;
    font-size:13px;
    margin-top:5px; 
  }
}

/* ===============================
       Footer Section Styling
   =============================== */
footer {
  background-color: #eceaea;
  color: #0e0e0e;
  padding: 40px 20px 20px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
  gap: 30px;
}

.footer-container > div {
  flex: 1 1 220px;
}

footer img {
  max-width: 72px;
}

.footer-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
  color: var(--color-footer);
}

div span i {
  margin-right: 8px;
  color: var(--color-footer-span);
}

.footer-container p {
  margin-bottom: 8px;
  line-height: 1.5;
}

footer a {
  display: block;
  color: var(--color-tertiary);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #f0a500;
  text-decoration: underline;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-contact-item i {
  min-width: 20px;
  text-align: center;
}

.footer-highlight {
  font-weight: 600;
}

footer small {
  display: block;
  text-align: center;
  padding-top: 20px;
  color: #0e0e0e;
  font-size: 12px;
  border-top: 1px solid #ccc;
  margin-top: 30px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-links a {
  font-size: 24px;
  transition: color 0.3s, transform 0.3s;
  padding: 6px;
  border-radius: 50%;
}

.social-links a:hover { 
  transform: scale(1.2);
  background: rgba(0,0,0,0.05);
}

.social-links a:nth-child(1) { color: #3b5998; } 
.social-links a:nth-child(2) { color: #FF0000; } 
.social-links a:nth-child(3) { color: #0077b5; } 
.social-links a:nth-child(4) { color: #0088cc; }  
.social-links a:nth-child(5) { color: #25D366; }  

/* ===============================
        Footer Trust Section
   =============================== */
.footer-trust {
  list-style: none;       /* Remove bullets */
  padding: 0;
  margin: 15px 0;         /* spacing above and below */
  display: flex;
  flex-direction: column;
  gap: 10px;              /* space between items */
  font-weight: 600;
  font-size: 14px;
  color: #0e0e0e;         /* default text color */
}

.footer-trust li {
  display: flex;
  align-items: center;
  gap: 6px;               /* spacing between icon/emoji and text */
  white-space: nowrap;    /* prevent breaking line */
}

.footer-trust li:hover {
  color: #f0a500;         /* hover effect */
  transition: color 0.3s ease;
}

.footer-trust .verified {
  color: #1aa34a;
  font-weight: 700;
}

/* Responsive adjustments */

/* Tablets & small desktops */
@media (max-width: 1024px) {
  .footer-trust {
    font-size: 13px;
    gap: 15px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .footer-trust {
    flex-direction: column; /* stack vertically */
    font-size: 14px;
    gap: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}

/* ===============================
       Footer Media Queries & Dark Mode
   =============================== */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .footer-container > div {
    margin: 10px 0;
    text-align: center;
  }
}

/* Hero Section */
.hero-career {
  /* background: url('/assets/img/career-hero.jpg') center/cover no-repeat; */
  background: linear-gradient(135deg, #25D366, #007bff);
  padding: 120px 20px 80px;
  color: var(--color-text1);
  text-align: center;
  position: relative;
}
.hero-career::after {
  content: '';
  position: absolute;
  top:0; left:0;
  width: 100%; height:100%;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.hero-career .hero-content {
  position: relative;
  z-index: 2;
}
.hero-career h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero-career p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.hero-btn-primary {
  padding: 12px 28px;
  background: var(--color-primary);
  color: var(--color-text1);
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.hero-btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
}
.career-about{
  background-color: var(--color-footer-span);
  color: var(--color-text1);
}
.career-about .container1{
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}
.career-about .container1 h2{
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.career-cta{
  background-color: var(--color-primary);
}
.career-cta .career-cta-h2{
  color: white;
  font-size: 2rem;
}
/* Containers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
}

.container h2{
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--color-secondary);
}

/* Job Cards */
.job-card {
  background: var(--color-text1);
  padding: 25px 30px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.job-card h3 {
  font-size: 1.6rem;
  color: var(--color-secondary);
  margin-bottom: 12px;
}
.job-card h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  color: var(--color-text);
  font-weight: 500;
}
.job-card ul {
  list-style: disc inside;
  margin-bottom: 10px;
  color: var(--color-text-secondary);
}

.button_home {
  display: block;
  width: fit-content;
  margin: 10px auto 0;
  padding: 10px 25px;
  background: var(--color-secondary);
  opacity: 0.9;
  color: var(--color-text1);
  border-radius: var(--border-radius);
  text-decoration: none;
  margin-top: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.button_home:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

/* Features Cards */
.features-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}
.feature-card {
  flex: 1 1 30%;
  background: var(--color-background);
  padding: 25px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}
.feature-card i {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 2rem;
}
.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--color-tertiary);
}
.feature-card p {
  font-size: 1rem;
  color: var(--color-text-secondary);
}
@media (max-width: 480px) {
  .modal-content {
    margin: 30px 10px;
    padding: 15px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .features-cards {
    flex-direction: column;
    align-items: center;
  }
  .hero-career h1 {
    font-size: 2.2rem;
  }
  .hero-career p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-career h1 {
    font-size: 1.8rem;
  }
  .hero-career p {
    font-size: 1rem;
  }
  .job-card {
    padding: 15px 20px;
  }
  .feature-card {
    width: 100%;
  }
}

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

.modal-content {
  background-color: #fff;
  margin: 80px auto;
  padding: 25px;
  border-radius: 12px;
  max-width: 550px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.modal-content h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #0d6efd;
}

.modal-content fieldset {
  border: 1px solid #ccc;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 8px;
}

.modal-content legend {
  font-weight: bold;
  padding: 0 10px;
}

.modal-content label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.modal-content button {
  width: 100%;
  background: #0d6efd;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}
.modal-content button:hover {
  background: #084298;
}

.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}
/* ===============================
   JOB CARD READ MORE FIX
=============================== */
.read-more-btn:hover {
  text-decoration: underline;
}
/* শুরুতে সব লুকানো */
.job-card .job-details {
  display: none;
}

/* Read More চাপলে দেখা যাবে */
.job-card.expanded .job-details {
  display: block;
}

.read-more-btn {
  margin-top: 10px;
  display: inline-block;
  color: #007bff;
  font-weight: 600;
  cursor: pointer;
}
.job-card .job-details {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}