/* General Styles */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Navigation */
.navigation {
  background-color: #f8f9fa;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.navigation-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
}

.navigation-wrap {
  display: flex;
}

.navigation-items nav {
  display: flex;
  gap: 20px;
}

.navigation-item {
  padding: 10px 15px;
  font-weight: 500;
  color: #555;
  transition: color 0.3s ease;
}

.navigation-item:hover,
.navigation-item.w--current {
  color: #007bff;
}

/* Section */
.section {
  padding: 60px 0;
}

.section:nth-child(odd) {
  background-color: #f9f9f9;
}

/* Intro Section */
.intro-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.name-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.paragraph-light {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.heading-jumbo {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Expertise Section */
.carrer-headline-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.carrer-headline-wrap h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.work-experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.work-position-wrap {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-position-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.position-name-text {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.cc-position-name {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.cc-paragraph-tiny-light {
  font-size: 0.9rem;
  color: #777;
}

/* Contact Section */
.cc-contact {
  background-color: #f0f4f8;
}

.contact {
  text-align: center;
}

.contact-headline h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.contact-form-wrap {
  margin-top: 20px;
}

.text-field {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 10px;
}

.button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #0056b3;
}

/* Form Styles */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form-fields {
  display: flex;
  flex-direction: column;
}

.contact-form-fields>div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #555;
}

.text-field {
  max-width: 50%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  color: #333;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.text-field:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  outline: none;
}

.cc-textarea {
  height: 100px;
  resize: vertical;
}

.contact-form input[type="submit"] {
  grid-column: span 2;
  padding: 12px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form input[type="submit"]:hover {
  background-color: #0056b3;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-form input[type="submit"] {
    grid-column: span 1;
  }
}


/* Footer */
.footer-wrap {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-wrap a {
  color: #fff;
  font-size: 0.9rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-wrap a:hover {
  color: #007bff;
}

.footer-links {
  margin-top: 10px;
}