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

/* Base Styling */
body {
  font-family: 'Poppins', sans-serif;
  background-color: whitesmoke;
  color: #2e2e2f;
  line-height: 1.6;
  padding: 20px;
}

/* Header */
header {
  position: relative;
  background: linear-gradient(135deg, #6C63FF, #8a7dff);
  color: white;
  padding: 50px 20px 90px; /* Reduced top and bottom padding */
  text-align: center;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.profile-pic {
  width: 110px;  /* Smaller profile picture */
  height: 110px;
  border-radius: 100px;
  border: 3px solid white; /* Slightly thinner border */
  margin-bottom: 15px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

h1 {
  font-size: 2.2rem; /* Slightly smaller */
  margin: 6px 0;
}

.hero-sub {
  margin: 8px 0 15px;
  font-weight: 500;
  font-size: 1rem; /* Smaller subheading */
}

.hero-content p {
  font-size: 1rem; /* Smaller paragraph text */
  margin-top: 10px;
}

/* Buttons */
.btn {
  display: inline-block;
  margin-top: 20px;
  background: #ff6584;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s ease, transform .2s;
}

.btn:hover {
  background: #ff3b67;
  transform: translateY(-2px);
}

/* Fiverr variant */
.btn-fiverr {
  background: #1dbf73;
}
.btn-fiverr:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

/* Wave SVG Styling */
.header-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 1;
}

/* Section Styling */
main section {
  margin: 50px auto;
  max-width: 1000px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

h2 {
  color: #6C63FF;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 2em;
}

.small {
  font-size: 0.9rem;
  color: #555;
}

/* Lists */
ul {
  list-style-type: disc;
  margin-left: 20px;
  font-weight: 500;
  font-size: 1.1em;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 15px;
}
.service-item {
  flex: 1 1 280px;
  background: #f4f7fb;
  padding: 18px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.service-item h3 {
  margin-top: 0;
}
.service-image {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-image img {
  max-width: 100%;
  border-radius: 10px;
}

/* Portfolio Grid */
.filter-controls {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.filter-controls button {
  padding: 8px 16px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  background: #f0f4fa;
  transition: background .2s, color .2s;
}
.filter-controls button.active,
.filter-controls button:hover {
  background: #6C63FF;
  color: white;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 10px;
}
.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #eee;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}
.portfolio-item img:hover {
  transform: scale(1.05);
}

/* Brands */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.brand-item {
  flex: 0 1 120px;
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  margin-top: 15px;
}
.testimonial-card {
  background: white;
  padding: 20px 18px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.client-photo {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #6C63FF;
}
.client-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.client-meta {
  font-size: 0.9rem;
}
.client-name {
  margin: 0;
}
.client-role {
  margin: 2px 0 0;
  color: #666;
}
.quote {
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

/* Resume section */
.resume-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 10px;
}
.embed-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
}

/* Contact */
#contact p {
  margin: 6px 0;
}
#contact a {
  color: #6C63FF;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Footer */
footer {
  text-align: center;
  background-color: #e7eaf6;
  padding: 20px;
  font-size: 0.9em;
  margin-top: 40px;
  border-radius: 12px;
  color: #555;
}



