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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5faff;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.5rem;
  gap: 10px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links a:hover {
  color: #007bff;
}

/* Hero */
#hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: white;
}

#hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background: #fff;
  color: #007bff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background: #f0f0f0;
}

/* Sections */
section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 30px;
  text-align: center;
}

/* Internship Cards */
.internship-card {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #007bff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.internship-card h3 {
  margin-bottom: 8px;
}

/* Google Form */
iframe {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: white;
}

/* Footer */
footer {
  background: #002744;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
  margin-top: 50px;
}

.btn-resume {
    background: linear-gradient(135deg, #00c6ff, #007bff);
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 40px;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
    display: inline-block;
  }
  
  .btn-resume:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    box-shadow: 0 8px 24px rgba(0, 123, 255, 0.5);
    transform: translateY(-3px);
  }
  