/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #f5f7fa, #eaf1f7);
  color: #2c3e50;
  line-height: 1.6;
}
.container {
  width: 90%;
  max-width: 1000px;
  margin: 2em auto;
}

/* Header */
header {
  background: linear-gradient(135deg, #4b6cb7, #182848);
  color: white;
  padding: 4em 1em;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
header h1 {
  font-size: 2.8em;
  margin-bottom: 0.3em;
}
header p {
  font-size: 1.2em;
  opacity: 0.9;
}

/* Navigation */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  text-align: center;
  background: linear-gradient(135deg, #4b6cb7, #182848);
  padding: 1.5em 0;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.main-nav.shrink {
  padding: 0.6em 0;
  font-size: 0.95em;
}
.main-nav a {
  color: white;
  text-decoration: none;
  margin: 0 1.2em;
  font-weight: 600;
  font-size: 1em;
  transition: color 0.3s ease;
}
.main-nav a:hover {
  color: #82cfff;
}
.cv-btn {
  background-color: #ffffff22;
  color: white !important;
  padding: 0.4em 0.8em;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.cv-btn:hover {
  background-color: #ffffff33;
}

/* Section Titles */
h2 {
  font-size: 2.4em;
  margin-bottom: 1em;
  text-align: center;
  color: #34495e;
}

/* About */
.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.about img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1em;
}
.about p {
  max-width: 800px;
  margin-bottom: 1em;
  text-align: left;
  line-height: 1.6;
}

/* Showreel */
.video-wrapper {
  display: flex;
  justify-content: center;
}
video {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Projects */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5em;
}
.project {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.project img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.project-content {
  padding: 1em;
}
.project-content h3 {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1.5em;
}
.testimonial {
  background: #3c4e78;
  color: white;
  padding: 2.5em 2em 2em;
  border-left: 6px solid #4b6cb7;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}
.testimonial:hover {
  transform: translateY(-5px);
}
.quote-icon {
  font-size: 3.5em;
  color: #82cfff;
  margin-bottom: 0.5em;
  font-family: serif;
  line-height: 1;
}
.testimonial-logo {
  width: 120px;
  height: auto;
  margin-top: 1.5em;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background: #182848;
  color: white;
  text-align: center;
  padding: 2em 1em;
}
footer a {
  color: #82cfff;
  text-decoration: none;
  margin: 0 0.5em;
}
footer i {
  margin-right: 0.4em;
  transition: color 0.3s ease, transform 0.3s ease;
}
footer a:hover i {
  color: #ffffff;
  transform: scale(1.2);
}
