.hero-section {
  background: url('https://static.vecteezy.com/system/resources/thumbnails/039/304/148/small_2x/ai-generated-yellow-black-glossy-abstract-background-photo.jpg') 
              no-repeat center center / cover;
  padding: 100px 0;
  position: relative;
}

/* assets/css/style.css */

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #fff9f4;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  background-color: #ff7f50;
  padding: 1rem 2rem;
}

.navbar-brand {
  font-weight: 600;
  font-size: 1.5rem;
  color: white !important;
}

.navbar-nav .nav-link {
  color: white;
  margin-left: 1rem;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #fff0e5;
}
/* Hero Section */
.hero {
  position: relative;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), /* dark overlay */
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover; /* example image */
  overflow: hidden;
  min-height: 70vh; /* make hero taller */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure direct children stay above overlay */
.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* Primary Button */
.btn-primary {
  background-color: #ff5722;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
  text-decoration: none;
  user-select: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #e64a19;
  color: white;
  text-decoration: none;
  outline: none;
}


/* Section Styling */
section {
  padding: 4rem 2rem;
}

.section-title {
  font-size: 2rem;
  color: #ff7f50;
  margin-bottom: 2rem;
  text-align: center;
}

.section-light {
  background-color: #fff;
}

.section-orange {
  background-color: #fff3e0;
}

.card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

/* Footer */
footer {
  background-color: #ff7f50;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

footer a {
  color: white;
  text-decoration: underline;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}


/* Technologies Section Cards */
.tech-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgb(0 0 0 / 0.12);
  padding: 1.75rem 1.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: #333;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  user-select: none;

  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 70px;
  max-width: 280px;
  margin: auto;
  box-sizing: border-box;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.18);
}

.tech-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  /* Remove fill override so icons keep their official colors */
  fill: none !important;
  filter: drop-shadow(0 0 0.75px rgba(0,0,0,0.1));
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .tech-card {
    font-size: 1rem;
    padding: 1.25rem 1rem;
    min-height: 60px;
  }
  .tech-icon {
    width: 32px;
    height: 32px;
  }
}


  .text-orange {
    color: #FF6B00 !important;
  }

  .border-orange {
    border-color: #FF6B00 !important;
  }

  .team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.85em;
    letter-spacing: 0.03em;
    border-radius: 0.5rem;
  }


    /* Orange accent color */
  :root {
    --primary-orange: #ff6600;
  }

  #downloads h2 {
    font-weight: 700;
    color: var(--primary-orange);
  }

  #downloads .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #ddd;
    border-radius: 10px;
  }

  #downloads .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.3);
  }

  #downloads .card-header {
    background-color: var(--primary-orange);
    color: white;
    font-weight: 600;
    border-radius: 10px 10px 0 0;
  }

  #downloads .list-group-item a {
    color: var(--primary-orange);
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  #downloads .list-group-item a:hover {
    text-decoration: underline;
  }

  #downloads .list-group-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: var(--primary-orange);
  }



  #contact {
    background-color: #f9f9f9;
    padding: 60px 0;
  }

  #contact h2 {
    font-weight: 700;
    color: var(--primary-orange);
  }

  #contact p {
    font-size: 1.2rem;
    font-weight: 500;
  }

  #contact a {
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
  }

  #contact a:hover {
    text-decoration: underline;
  }

  footer {
    background-color: #222;
  }

  footer a {
    color: #ff6600;
    text-decoration: none;
  }

  footer a:hover {
    text-decoration: underline;
  }

  footer .social-icons a {
    color: white;
    margin: 0 10px;
    transition: color 0.2s ease;
  }

  footer .social-icons a:hover {
    color: var(--primary-orange);
  }

    .table-orange {
    background-color: #ff7a00;
  }