/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 18 Jul, 2025, 6:48:32 PM
    Author     : aditya.k
*/

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

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f8f8f8;
    line-height: 1.5;
}

/* Navbar */
/*.navbar {
    background: white;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}*/

/*.nav-left {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}*/

/*.logo {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.brand {
    font-weight: bold;
    font-size: 18px;
}*/

/*.nav-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 8px;
}

.nav-menu a.active {
    font-weight: bold;
    color: #007e6a;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}*/

.recruiter-btn {
    background-color: #004c3f;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.user-info {
    font-weight: 500;
    font-size: 14px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #236c5f, #1e4b44);
    color: white;
    padding: 60px 300px; /* Add left/right padding for better spacing */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; /* vertically align both sides */
    gap: 100px; /* Maintain consistent spacing */
}


.hero-text {
    flex: 1 1 300px;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-text .highlight {
    color: #ffc107;
}

.hero-text p {
    font-size: 18px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.get-started {
    background: white;
    color: #004c3f;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.secondary-btn {
    background: white;
    opacity: 0.5;
    width: 180px;
    border-radius: 6px;
    border: none;
}

/* Stats Box */
.stats-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    flex: 1 1 300px;
    min-width: 280px;
    max-width: 400px; /* Slightly narrower */
}



.stat {
    text-align: center;
}

.stat i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
}

.stat h2 {
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.stat p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* Services Section */
.services-section {
    text-align: center;
    padding: 60px 20px;
    background: white;
}

.services-section h2 {
    font-size: 28px;
    color: #001f3f;
}

.services-section p {
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

/* ------------------ Responsive ------------------ */

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .stats-box {
        grid-template-columns: 1fr 1fr;
        margin-top: 30px;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-right {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
    }

    .nav-menu {
        justify-content: flex-start;
    }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .get-started {
        width: 100%;
        justify-content: center;
    }

    .secondary-btn {
        display: none;
    }

    .stats-box {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        flex-direction: column;
        gap: 8px;
    }

    .navbar {
        padding: 12px 16px;
    }

    .recruiter-btn {
        padding: 8px 12px;
    }

    .services-section h2 {
        font-size: 22px;
    }
}

/* === Recruitment Services Cards === */
.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 60px 20px;
  background: #f9fafa;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  max-width: 350px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
  background: #e6f0ee;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #004c3f;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 14px;
}

.service-card ul li {
  margin-bottom: 8px;
  color: #234;
}

.service-card ul li i {
  color: #4caf50;
  margin-right: 8px;
}

/* === Industries Section === */
.industries-section {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
}

.industries-section h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.industries-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px; /* control vertical & horizontal spacing */
  max-width: 1200px;
  margin: 0 auto; /* center the whole grid */
}

.industry-card {
  width: 100%; /* take full width of the grid cell */
  max-width: none; /* remove max limit */
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: 0.2s ease;
}

.industry-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.industry-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111;
}

.industry-card p {
  font-size: 13px;
  color: #555;
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #333;
}

.badge-blue { background: #dbeafe; color: #2563eb; }
.badge-green { background: #d1fae5; color: #059669; }
.badge-red { background: #fee2e2; color: #dc2626; }
.badge-purple { background: #f3e8ff; color: #9333ea; }
.badge-orange { background: #ffedd5; color: #ea580c; }
.badge-teal { background: #ccfbf1; color: #0d9488; }

/* === Responsive === */
@media (max-width: 768px) {
  .services-cards {
    padding: 40px 15px;
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr); /* force 3 cards per row */
    gap: 12px; /* tighter spacing on mobile */
  }

  .industry-card {
    max-width: 100%; /* make sure they fit */
    padding: 12px 16px; /* reduce card padding */
  }

  .industry-card h4 {
    font-size: 15px;
  }

  .service-card {
    max-width: 100%;
  }
}

/* Common */
section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #111;
}

.subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

/* How It Works */
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.step {
  width: 200px;
  padding: 10px;
}

.circle {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  background-color: #1e5c51;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 50px;
  border-radius: 50%;
}

.icon {
  font-size: 28px;
  color: #1e5c51;
  margin: 12px 0;
  display: block;
}


.step h3 {
  font-size: 1.1rem;
  margin: 8px 0;
}

.step p {
  font-size: 0.9rem;
  color: #555;
}

/* Testimonials */
.testimonial-section {
  background-color: #ffffff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background-color: #fff;
  padding: 24px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  border-color: #ccc;
}

.stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.quote {
  font-style: italic;
  color: #333;
  margin-bottom: 20px;
}

.client strong {
  color: #111;
}

.client span {
  color: #555;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 600px) {
  .step {
    width: 100%;
  }
}

.services-wrapper {
  background-color: #f9fafa; /* light non-white background */
  padding: 60px 20px;
  text-align: center;
}

.services-wrapper h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.services-wrapper p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: #fff; /* white cards */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 2.5rem;
  color: #0f5c4c;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.service-card p {
  color: #444;
  margin-bottom: 15px;
}

.service-card ul {
  padding-left: 0;
  list-style: none;
}

.service-card ul li {
  margin-bottom: 8px;
  color: #333;
}

.service-card ul li i {
  color: #0f5c4c;
  margin-right: 8px;
}

.site-footer {
  background-color: #0c1220;
  color: #ccc;
  padding: 50px 20px 30px;
  text-align: center;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 70px; /* slightly wider for balance */
  max-width: 1000px;
  margin: 0 auto 40px;
  text-align: left;
}

.footer-column {
  min-width: 160px;
  max-width: 300px;
}

.footer-divider {
  border: none;
  border-top: 1px solid #ffffff33; /* subtle white line */
  margin: 20px auto;
  max-width: 800px;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: #fff;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  color: #ccc;
  margin-right: 10px;
  text-decoration: none;
  font-size: 14px;
}

.social-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-buttons a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-enroll {
  background-color: #b64700;
}

.btn-chat {
  background-color: #205e4e;
}

.btn-enroll:hover,
.btn-chat:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
}

.hire-banner-section {
  background: linear-gradient(135deg, #236c5f, #1e4b44);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.hire-banner-container h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #fff;
}

.hire-banner-container p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.hire-banner-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #2e7b70;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.hire-banner-btn:hover {
  background-color: #f1f1f1;
}

@media (max-width: 600px) {
  .hire-banner-container h2 {
    font-size: 24px;
  }

  .hire-banner-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

