/* ========================
   Velsync Website Styling
   ======================== */

/* --- General Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #ffffff;
    color: #222;
    overflow-x: hidden;
  }
  
  /* --- Navbar --- */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0a66c2;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    color: #ffcc00;
  }
  
  /* --- Hero Section --- */
  .hero {
    background: url("assets/banner.jpg") no-repeat center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    animation: fadeIn 2s ease-in-out;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .btn {
    background: #ffcc00;
    color: #0a66c2;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: white;
    color: #0a66c2;
  }
  
  /* --- Section Headings --- */
  section {
    padding: 5rem 10%;
  }
  
  section h2 {
    text-align: center;
    font-size: 2rem;
    color: #0a66c2;
    margin-bottom: 2rem;
  }
  
  /* --- About Section --- */
  .about p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: auto;
    line-height: 1.6;
  }
  
  /* --- Internships Grid --- */
  .internship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-8px);
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .card h3 {
    margin-top: 1rem;
    color: #0a66c2;
  }
  
  .card p {
    font-size: 0.95rem;
    padding: 0.8rem;
    color: #555;
  }
  
  .apply-btn {
    display: inline-block;
    background: #0a66c2;
    color: white;
    padding: 0.7rem 1.2rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  
  .apply-btn:hover {
    background: #004c99;
  }
  
  /* --- FAQ Section --- */
  .faq-item {
    max-width: 700px;
    margin: 1rem auto;
    background: #f1f4f8;
    padding: 1rem 1.5rem;
    border-radius: 10px;
  }
  
  .faq-item h3 {
    color: #0a66c2;
    margin-bottom: 0.5rem;
  }
  
  /* --- Contact Section --- */
  .contact {
    text-align: center;
  }
  
  .contact a {
    color: #0a66c2;
    text-decoration: none;
    font-weight: 500;
  }
  
  .contact a:hover {
    text-decoration: underline;
  }
  
  /* --- Footer --- */
  .footer {
    background: #0a66c2;
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
  }
  
  /* --- Animations --- */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* --- Responsive Fixes --- */
  @media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-links { gap: 1rem; }
  }
  