/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 5px;
  text-align: center;
}

.tagline {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 20px;
  opacity: 0.95;
}

/* Navigation Styles */
nav {
  position: relative;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 2px solid white;
  color: white;
  font-size: 1.5rem;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-links li {
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 20px;
  display: block;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Main Content */
main {
  min-height: calc(100vh - 300px);
  padding-bottom: 60px;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #e0f7ff, #ffffff);
}

.hero-section h2 {
  font-size: 2.5rem;
  color: #0077b6;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.cta-button {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 119, 182, 0.4);
}

.secondary-button {
  background-color: #0077b6;
  color: white;
  border: none;
  padding: 10px 25px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: #00b4d8;
  transform: translateY(-2px);
}

/* Features Section */
.features-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.features-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #0077b6;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 119, 182, 0.2);
  border-color: #00b4d8;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.feature-card h3 {
  color: #0077b6;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Content Sections */
.content-section {
  padding: 60px 20px;
}

.alt-bg {
  background-color: #f0f8ff;
}

.content-section h2 {
  text-align: center;
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 40px;
}

/* Items Grid */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.item-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.item-placeholder {
  font-size: 4rem;
  margin-bottom: 15px;
}

.item-card h3 {
  color: #0077b6;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.item-card p {
  color: #666;
}

/* Jobs List */
.jobs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.job-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #0077b6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.job-card h3 {
  color: #0077b6;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.job-meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.job-card p {
  color: #555;
  margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Footer Styles */
footer {
  background-color: #0077b6;
  color: white;
  padding: 40px 20px 20px;
  margin-top: 60px;
}

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

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section p {
  opacity: 0.9;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
  font-size: 1.5rem;
}

.social-links a {
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  opacity: 0.9;
}

/* Tablet Styles (768px - 1024px) */
@media screen and (max-width: 1024px) {
  header h1 {
    font-size: 1.8rem;
  }

  .hero-section h2 {
    font-size: 2rem;
  }

  .intro-text {
    font-size: 1.1rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Styles (max-width: 767px) */
@media screen and (max-width: 767px) {
  header h1 {
    font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.9rem;
  }

  /* Mobile Navigation */
  .menu-toggle {
    display: block;
    margin: 0 auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 15px;
    gap: 0;
  }

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

  .nav-links li {
    width: 100%;
  }

  nav a {
    text-align: center;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Hero Section */
  .hero-section {
    padding: 40px 20px;
  }

  .hero-section h2 {
    font-size: 1.8rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  /* Features */
  .features-section {
    padding: 40px 20px;
  }

  .features-section h2 {
    font-size: 1.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Content Sections */
  .content-section {
    padding: 40px 20px;
  }

  .content-section h2 {
    font-size: 1.6rem;
  }

  .items-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .jobs-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* CTA Section */
  .cta-section {
    padding: 50px 20px;
  }

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* Small Mobile Styles (max-width: 480px) */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  header h1 {
    font-size: 1.3rem;
  }

  .hero-section h2 {
    font-size: 1.5rem;
  }

  .features-section h2,
  .content-section h2 {
    font-size: 1.5rem;
  }

  .feature-card,
  .item-card,
  .job-card {
    padding: 20px;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }
}

/* Animation for page load */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section,
.features-section,
.content-section {
  animation: fadeIn 0.8s ease-out;
}
