@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#f4f7fb;
  color:#333;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

header{
  background:linear-gradient(135deg,#0a66c2,#004182);
  padding:20px 0;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:white;
}

.logo{
  font-size:22px;
  font-weight:700;
}

nav a{
  color:white;
  margin-left:25px;
  text-decoration:none;
  transition:0.3s;
}

nav a:hover{
  color:#ffcc00;
}

.hero{
  background:linear-gradient(135deg,#0a66c2,#004182);
  color:white;
  text-align:center;
  padding:80px 20px;
}

.hero h2{
  font-size:38px;
  margin-bottom:15px;
}

.hero input{
  padding:12px 15px;
  width:300px;
  border-radius:8px;
  border:none;
  margin-top:15px;
}

.section{
  margin:60px 0;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
  padding-left: 10%;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  padding-left: 5%;
}

.job-box{
  background:white;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
  overflow:hidden;
}

.box-header{
  background:#0a66c2;
  color:white;
  padding:14px;
  text-align:center;
  font-weight:600;
}

.job-box ul{
  list-style:none;
}

.job-box ul li{
  border-bottom:1px solid #eee;
}

.job-box ul li a{
  display:block;
  padding:15px;
  text-decoration:none;
  color:#333;
  font-weight:600;
  transition:all 0.3s;
}

.job-box ul li a:hover{
  background:#f0f7ff;
  color:#0a66c2;
  padding-left:25px;
}

#noResults{
  text-align:center;
  margin:20px;
  font-weight:600;
  display:none;
}

footer{
  background:#111;
  color:white;
  text-align:center;
  padding:25px;
}

@media(max-width:900px){
  .grid-2,
  .grid-3{
    grid-template-columns:1fr;
  }

  .hero input{
    width:100%;
  }
}
/* SEO SECTION */

.seo-section {
    background: #f9fbff;
    padding: 70px 0;
    margin-top: 50px;
  }
  
  .seo-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #0a66c2;
    font-weight: 700;
  }
  
  .seo-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid #ddd;
    background: white;
  }
  
  .seo-table a {
    padding: 16px;
    text-decoration: none;
    color: #333;
    border: 1px solid #eee;
    transition: 0.3s;
    font-weight: 500;
  }
  
  .seo-table a:hover {
    background: #0a66c2;
    color: white;
    transform: scale(1.02);
  }
  
  /* Responsive */
  @media(max-width: 768px) {
    .seo-table {
      grid-template-columns: 1fr;
    }
  }
  /* FOOTER */

.main-footer {
    background: #111;
    color: #ddd;
    padding: 60px 0 20px;
    margin-top: 60px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-grid h3,
  .footer-grid h4 {
    color: white;
    margin-bottom: 15px;
  }
  
  .footer-grid ul {
    list-style: none;
  }
  
  .footer-grid ul li {
    margin-bottom: 8px;
  }
  
  .footer-grid ul li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
  }
  
  .footer-grid ul li a:hover {
    color: #0a66c2;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 14px;
    border-top: 1px solid #333;
    margin-top: 30px;
  }
  
  /* Responsive */
  @media(max-width: 900px){
    .footer-grid{
      grid-template-columns:1fr;
    }
  }
  /* ==============================
   Layout Utilities
================================= */

/* Main width wrapper */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto; /* keeps content centered */
  padding: 0 15px; /* prevents edge sticking on mobile */
}

/* Section spacing */
.section {
  padding: 60px 0; /* vertical breathing space */
}

/* When both classes are used together */
.section.container {
  display: block;
}

/* Section headings */
.section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0d47a1;
}

/* Section paragraphs */
.section p {
  font-size: 16px;
  margin-bottom: 18px;
  color: #444;
  line-height: 1.7;
}

/* Section lists */
.section ul {
  margin-top: 10px;
  padding-left: 20px;
}

.section ul li {
  margin-bottom: 8px;
}
.join-community{
  background:#f1f6ff;
  padding:50px 20px;
  text-align:center;
  margin-top:40px;
  }
  
  .join-community h2{
  font-size:28px;
  margin-bottom:10px;
  }
  
  .join-community p{
  max-width:700px;
  margin:auto;
  margin-bottom:20px;
  color:#555;
  }
  
  .join-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
  }
  
  .whatsapp-btn{
  background:#25D366;
  color:white;
  padding:12px 20px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
  }
  
  .telegram-btn{
  background:#0088cc;
  color:white;
  padding:12px 20px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
  }
  
  .whatsapp-btn:hover{
  opacity:0.9;
  }
  
  .telegram-btn:hover{
  opacity:0.9;
  }
  .floating-social{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:999;
    }
    
    .floating-social a{
    background:#333;
    color:white;
    padding:10px 14px;
    border-radius:5px;
    text-decoration:none;
    font-size:14px;
    }
    
    .floating-social a:first-child{
    background:#25D366;
    }
    
    .floating-social a:last-child{
    background:#0088cc;
    }
    .hero{
      background-image:url("img/bg-img.jpg");
      background-size:cover;
      background-position:center;
      height:420px;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      color:white;
      position:relative;
      }
      
      .hero-overlay{
      background:rgba(0,0,0,0.55);
      width:100%;
      height:100%;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      padding:20px;
      }
      
      .hero h2{
      font-size:42px;
      margin-bottom:10px;
      }
      
      .hero p{
      font-size:18px;
      margin-bottom:20px;
      max-width:700px;
      }
      
      .hero input{
      padding:14px;
      width:320px;
      border-radius:6px;
      border:none;
      font-size:16px;
      }