/* General Body Styling */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to right, #e0f7fa, #fff);
}

/* Form Container */
.container {
  max-width: 650px;
  margin: 50px auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-top: 8px solid #007BFF;
  animation: fadeIn 0.5s ease-in-out;
}

h1 {
  text-align: center;
  margin-bottom: 25px;
  color: #007BFF;
  font-size: 2rem;
}

/* Form Elements */
form label {
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  background-color: #f9f9f9;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  border-color: #007BFF;
  outline: none;
}

/* Button Style */
button {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #007BFF, #00c6ff);
  color: white;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}

button:hover {
  background: linear-gradient(to right, #0056b3, #0096c7);
}

/* Resume Page Styling */
.resume-wrapper {
  background: #ffffff;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-left: 8px solid #00BCD4;
}

.resume-header {
  text-align: center;
  border-bottom: 2px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

.resume-header h1 {
  font-size: 2.2rem;
  color: #00ACC1;
}

.resume-header p {
  font-weight: bold;
  color: #555;
}

.resume-contact {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.resume-contact p {
  width: 48%;
  margin: 5px 0;
  color: #444;
}

.resume-section {
  margin-bottom: 30px;
}

.resume-section h2 {
  color: #00695C;
  border-bottom: 2px solid #B2DFDB;
  padding-bottom: 6px;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.resume-section p,
.resume-section li {
  color: #444;
  line-height: 1.5;
}

.resume-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

.resume-section li {
  margin-bottom: 6px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 600px) {
  .resume-contact {
    flex-direction: column;
  }

  .resume-contact p {
    width: 100%;
  }

  .resume-wrapper, .container {
    padding: 25px;
    margin: 20px;
  }
}
