/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    color: #333;
  }
  
  /* Header */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #444;
  }
  
  .logo img {
    width: 120px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    padding: 5px 10px;
    transition: background-color 0.3s;
  }
  
  nav ul li a.active, 
  nav ul li a:hover {
    background-color: #e89033;
    border-radius: 5px;
  }
  
  /* Hero Section */
  .hero-section {
    background: url('/myimages/maincareer-picaai.png') center/cover no-repeat;
    color: white;
    height: 100vh;
    text-align: center;
    padding: 100px 20px;
  }
  
  .hero-section .hero-content {
    background-color: rgba(0, 0, 0, 0.627);
    align-items: center;
    display: inline-block;
    margin-top: 30%;
    padding: 20px;
    border-radius: 10px;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    margin-top: 10px;
    font-size: 1.2rem;
  }
  
  /* Careers Grid */
  .careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .career-option {
    background-size: cover;
    background-position: center;
    height: 300px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .career-option .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
  }
  
  .career-option:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
  
  .career-option:hover .overlay {
    background: rgba(0, 0, 0, 0.2);
  }
  
  .career-option h2, .career-option p {
    position: relative;
    color: white;
    z-index: 1;
    text-align: center;
    margin: 0;
  }
  
  .career-option h2 {
    margin-top: 40%;
    font-size: 1.8rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  }
  
  .career-option p {
    font-size: 1rem;
    margin-top: 10px;
  }
  
  /* Footer */
  .footer {
    background-color: #1d3d5d;
    /* background-color: #c39176; */
    color: white;
    padding: 50px 0;
    text-align: center;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-columns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 50px;
  }
  
  .footer-column {
    width: 22%;
  }
  
  .footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
  }
  
  .footer-column ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .footer-column ul li a:hover {
    color: #025370;
    /* text-decoration: underline; */
  }
  
  .footer-column p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  footer {
    text-align: center;
    padding: 10px;
    background-color: white;
    color: #fff;
  }
  .footer-icons {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
  }
  
  .footer-icons a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
  }
  
  .footer-bottom {
    margin-top: 40px;
    border-top: 1px solid white;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #bbb;
  }
  
  .footer a i {
    font-size: 30px; /* Adjust size */
    color: white; 
    padding: 4px;
  }
  
  .footer a i:hover{
  color: #025370;
  }
  @media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
        align-items: center;
    }
  
    .footer-column {
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
  }
  /* Shining Text Animation */
  .shining-text {
    position: relative;
    color: #025370; /* Main color of the text */
    font-weight: bold;
    font-size: 80px;
    background: linear-gradient(45deg, #0066cc,#004d99, #ccc,#003366); /* Gradient for shine */
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 10s infinite linear;
  }
  
  /* Keyframes for shimmer effect */
  @keyframes shine {
    0% {
        background-position: -200%;
    }
    100% {
        background-position: 200%;
    }
  }
  
  