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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  line-height: 1.6;
  color: #1f2937;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  background-color: #f3f4f6;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo svg {
  display: block;
}

/* Added hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #1f2937;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0 auto;
}

.nav-menu a {
  text-decoration: none;
  color: #6b7280;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #1f2937;
}

.btn-primary {
  background-color: #4f46e5;
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #4338ca;
}

.btn-secondary {
  background-color: transparent;
  color: #4f46e5;
  border: 2px solid #4f46e5;
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: #4f46e5;
  color: white;
}

/* Hero Section */
.hero {
  background-color: #f3f4f6;
  padding: 80px 0;
  position: relative;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.hero-text {
  flex: 1;
  position: relative;
}

/* Fixed decorative dashes z-index to prevent covering text */
.decorative-dashes {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 0;
}

.decorative-dashes.top-left {
  top: -40px;
  left: -20px;
  background-image: repeating-linear-gradient(45deg, #1f2937 0, #1f2937 3px, transparent 3px, transparent 8px);
}

.decorative-dashes.top-right {
  top: 40px;
  right: -40px;
  background-image: repeating-linear-gradient(45deg, #3b82f6 0, #3b82f6 3px, transparent 3px, transparent 8px);
}

.intro-text {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  color: #312e81;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero-description {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.profile-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: cover;
  border-radius: 50% 50% 0 0;
}

.badge {
  position: absolute;
  background-color: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-badge {
  top: 80px;
  left: 20px;
}

.stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 4px;
}

.review-badge p {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
}

.shield-badge {
  top: 200px;
  left: -20px;
  padding: 16px;
}

.social-icons {
  position: absolute;
  bottom: 120px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}

.social-icon.facebook {
  color: #1877f2;
}

.social-icon.twitter {
  color: #1da1f2;
}

.social-icon.linkedin {
  color: #0a66c2;
}

/* About Section */
.about {
  background-color: white;
  padding: 80px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
}

.circle-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #4f46e5;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.profile-image-about {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 50% 50% 0 0;
  position: relative;
  z-index: 1;
}

.about-text {
  flex: 1;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: #9ca3af;
  margin-bottom: 40px;
  line-height: 1.6;
}

.skills {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.skill {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.skill-name {
  font-weight: 600;
  color: #1f2937;
  font-size: 16px;
}

.skill-bar {
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.skill-progress {
  height: 100%;
  border-radius: 6px;
  position: relative;
  transition: width 1s ease-out;
}

.skill-progress::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.skill:nth-child(1) .skill-progress {
  background: #991b1b;
}

.skill:nth-child(2) .skill-progress {
  background: linear-gradient(to right, #d97706, #f59e0b);
}

.skill:nth-child(3) .skill-progress {
  background: #6b7280;
}

.skill:nth-child(4) .skill-progress {
  background: #1e3a8a;
}

/* Services Section */
.services {
  background-color: #e0e7ff;
  padding: 80px 0;
}

.services .section-title {
  text-align: center;
}

.services .section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 32px;
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 20px;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.service-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.read-more {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

/* Portfolio Section */
.portfolio {
  background-color: white;
  padding: 80px 0;
}

.portfolio .section-title {
  text-align: center;
}

.portfolio .section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 24px;
  background-color: transparent;
  color: #6b7280;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #4f46e5;
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.portfolio-card {
  background-color: #4b5563;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-info {
  padding: 24px;
}

.portfolio-category {
  display: inline-block;
  color: #f59e0b;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.portfolio-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

/* Footer Styles */
.footer {
  background-color: #1f2937;
  color: #e5e7eb;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #9ca3af;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #9ca3af;
}

/* Page Hero Styles */
.page-hero {
  background-color: #f3f4f6;
  padding: 80px 0 60px;
  text-align: center;
}

.page-title {
  font-size: 56px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Service Features */
.service-features {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 14px;
  color: #4b5563;
  padding-left: 24px;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  background-color: #4f46e5;
  padding: 80px 0;
  text-align: center;
}

.cta-title {
  font-size: 42px;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-description {
  font-size: 18px;
  color: #e0e7ff;
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background-color: white;
  color: #4f46e5;
}

.cta-section .btn-primary:hover {
  background-color: #f3f4f6;
}

/* About Page Styles */
.about-paragraph {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Experience Section */
.experience-section {
  background-color: #f3f4f6;
  padding: 80px 0;
}

.experience-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #4f46e5;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -46px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #4f46e5;
  border: 4px solid #f3f4f6;
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.timeline-company {
  font-size: 16px;
  color: #4f46e5;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-date {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Blog Section */
.blog-section {
  background-color: white;
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.blog-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-date {
  display: inline-block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}

.blog-link:hover {
  color: #4338ca;
}

/* Contact Section */
.contact-section {
  background-color: white;
  padding: 80px 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f46e5;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: #6b7280;
}

.contact-form-wrapper {
  background-color: #f9fafb;
  padding: 40px;
  border-radius: 16px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4f46e5;
}

.form-group textarea {
  resize: vertical;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #f3f4f6;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 40px 0;
    gap: 24px;
    transition: left 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu a {
    display: block;
    padding: 12px 24px;
    font-size: 18px;
  }

  .nav-cta {
    display: none;
  }

  .hero-content,
  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .section-title {
    font-size: 36px;
  }

  .page-title {
    font-size: 40px;
  }

  .services-grid,
  .portfolio-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .social-icons {
    flex-direction: row;
    bottom: -60px;
    right: 50%;
    transform: translateX(50%);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline-dot {
    left: -36px;
  }

  .decorative-dashes.top-left {
    top: -20px;
    left: 0;
    width: 40px;
    height: 40px;
  }

  .decorative-dashes.top-right {
    display: none;
  }

  .badge {
    transform: scale(0.85);
  }

  .review-badge {
    top: 40px;
    left: 10px;
  }

  .shield-badge {
    top: 120px;
    left: -10px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .page-title {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons button {
    width: 100%;
  }

  .portfolio-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}
