/*
Theme Name: Gentec Theme
Theme URI: https://example.com/
Author: Your Name
Author URI: https://example.com/
Description: Custom theme for Gentec Engineering
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Roboto&display=swap');
/* Base styles */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f8fafd;
    color: #222;
  }

  a {
    color: #00baff;
    text-decoration: none;
  }
  
  /* Navigation */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: white;
  }
  
  .navbar .logo img {
    height: 50px;
  }
  
  .nav-links a {
    color: black;
    margin-left: 20px;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #ffcc00;
  }
  
  .hero-slideshow {
    position: relative;
    height: 65vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  .hero-slideshow::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    animation: slideShow 20s infinite;
    opacity: 0.8;
  }
  
  .hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
  }
  
  @keyframes slideShow {
    0%    { background-image: url('images/hero1.jpg'); }
    25%   { background-image: url('images/hero2.jpg'); }
    50%   { background-image: url('images/hero3.jpg'); }
    75%   { background-image: url('images/hero4.jpg'); }
    100%  { background-image: url('images/hero1.jpg'); }
  }
  
  .hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
  }

  #intro_title {
    color: #ffcc00; /* golden yellow or your preferred brand accent */
    font-size: 3rem;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 20px;
  }

  
  /* Section layout */
  section {
    padding: 60px 20px;
  }
  
  h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    color: #003366;
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  /* About & Who We Are */
  .who-content,
  .about-grid {
    max-width: 1000px;
    margin: auto;
    font-size: 1.1rem;
    line-height: 1.8;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }
  
  /* Services */

  .services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
  }
  
  .service-box {
    flex: 1 1 250px;
    max-width: 300px;
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  }
  
  .service-box img {
    height: 80px;
    margin-bottom: 15px;
  }
  
  .service-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .service-desc {
    opacity: 0;
    max-height: 0;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.4s ease;
    overflow: hidden;
  }
  
  .service-box:hover .service-desc {
    opacity: 1;
    max-height: 150px;
    margin-top: 10px;
  }
  
  /* Footer & Contact */
  footer {
    background: #002244;
    color: white;
    text-align: center;
    padding: 40px 20px;
  }
  
  .contact-box {
    max-width: 600px;
    margin: 0 auto 20px;
  }
  
  .contact-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
  }

  #intro {
    background: linear-gradient(135deg, #f0f6ff, #e0eafc);
    padding: 80px 20px;
  }
  
  .intro-container {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
    font-size: 1.2rem;
    line-height: 2;
    font-family: 'Roboto', sans-serif;
  }
  
  .intro-container h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #003366;
    text-align: center;
    margin-bottom: 30px;
  }