/* ============================================
   Büşra Özçakır Portfolio - Ana Stil Dosyası
   ============================================ */

/* CSS Değişkenleri */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #34495e;
  --pink-primary: #ff4785;
  --text-dark: #333;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --section-gradient: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Genel Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================
   HEADER STİLLERİ
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

main {
  margin-top: 80px;
}

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

.header .nav .logo {
  display: flex;
  flex-direction: column;
}

.header .nav .logo a {
  text-decoration: none;
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  cursor: pointer;
}

.header .nav .logo a .firstname {
  font-size: 1.4rem;
  font-weight: 400;
  color: #2c3e50;
}

.header .nav .logo a .lastname {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: 0.5px;
}

.header .nav .logo a:hover .firstname,
.header .nav .logo a:hover .lastname {
  color: #34495e;
}

.header .nav .logo .profession {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}

.header .nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .nav .nav-links .nav-link {
  color: #2c3e50;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
}

.header .nav .nav-links .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2c3e50;
  transition: width 0.3s ease;
}

.header .nav .nav-links .nav-link:hover,
.header .nav .nav-links .nav-link.active {
  color: #34495e;
}

.header .nav .nav-links .nav-link:hover::after,
.header .nav .nav-links .nav-link.active::after {
  width: 100%;
}

.header .nav .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #2c3e50;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.header .nav .mobile-menu-btn:hover {
  color: #34495e;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  background: var(--section-gradient);
  min-height: calc(100vh - 80px);
  padding: 6rem 0 4rem;
  display: flex;
  align-items: center;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero .hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.hero .hero-content {
  flex: 1;
}

.hero .hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
  animation: slideDown 0.8s ease forwards;
  opacity: 0;
}

.hero .hero-content .title {
  font-size: 1.5rem;
  color: #34495e;
  margin-bottom: 1.5rem;
  font-weight: 500;
  animation: slideDown 0.8s ease forwards 0.2s;
  opacity: 0;
}

.hero .hero-content .description {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
  animation: slideDown 0.8s ease forwards 0.4s;
  opacity: 0;
}

.hero .hero-content .cta-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: slideDown 0.8s ease forwards 0.6s;
  opacity: 0;
}

.hero .hero-content .cta-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.hero .hero-content .cta-button.primary {
  background-color: #2c3e50;
  color: white;
}

.hero .hero-content .cta-button.primary:hover {
  background-color: #34495e;
  transform: translateY(-2px);
}

.hero .hero-content .cta-button.secondary {
  background-color: transparent;
  border: 2px solid #2c3e50;
  color: #2c3e50;
}

.hero .hero-content .cta-button.secondary:hover {
  background-color: #2c3e50;
  color: white;
  transform: translateY(-2px);
}

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

.hero .hero-image img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 5px solid white;
}

@keyframes slideDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 6rem 0;
  background: var(--section-gradient);
  width: 100%;
}

.about .about-content .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.about .about-content .section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
}

.about .about-content .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #2c3e50;
}

.about .about-content .section-header .lead {
  font-size: 1.25rem;
  color: #34495e;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

.about .about-content .about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about .about-content .about-grid .about-info,
.about .about-content .about-grid .about-approach,
.about .about-content .about-grid .skills-section {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.about .about-content .about-grid .about-info:hover,
.about .about-content .about-grid .about-approach:hover,
.about .about-content .about-grid .skills-section:hover {
  transform: translateY(-5px);
}

.about .about-content .about-grid h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.about .about-content .about-grid h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #2c3e50;
}

.about .about-content .about-grid p {
  color: #6c757d;
  line-height: 1.8;
  font-size: 1rem;
}

.about .about-content .about-grid .about-approach .approach-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .about-content .about-grid .about-approach .approach-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  color: #2c3e50;
}

.about .about-content .about-grid .about-approach .approach-list li i {
  font-size: 1.2rem;
  margin-right: 1rem;
  color: #34495e;
  width: 24px;
  text-align: center;
}

.about .about-content .about-grid .about-approach .approach-list li span {
  font-size: 1rem;
  line-height: 1.4;
}

.about .about-content .about-grid .skills-section .skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.about .about-content .about-grid .skills-section .skill-tag {
  background-color: #2c3e50;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.about .about-content .about-grid .skills-section .skill-tag:hover {
  background-color: #34495e;
  transform: translateY(-2px);
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects {
  padding: 6rem 0;
  background: var(--section-gradient);
  width: 100%;
}

.projects .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.projects .section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
}

.projects .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #2c3e50;
}

.projects .project-type-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.projects .project-type-tabs .type-btn {
  padding: 1rem 2rem;
  border: 2px solid #2c3e50;
  border-radius: 30px;
  background: none;
  color: #2c3e50;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.projects .project-type-tabs .type-btn i {
  font-size: 1.2rem;
}

.projects .project-type-tabs .type-btn:hover,
.projects .project-type-tabs .type-btn.active {
  background-color: #2c3e50;
  color: white;
}

.projects .project-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.projects .project-filters .filter-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  background: none;
  color: #6c757d;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.projects .project-filters .filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: #2c3e50;
  transition: width 0.3s ease;
}

.projects .project-filters .filter-btn:hover,
.projects .project-filters .filter-btn.active {
  color: #2c3e50;
}

.projects .project-filters .filter-btn:hover::after,
.projects .project-filters .filter-btn.active::after {
  width: 80%;
}

.projects .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.projects .projects-grid .project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.projects .projects-grid .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.projects .projects-grid .project-card .card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.projects .projects-grid .project-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.projects .projects-grid .project-card:hover .card-image img {
  transform: scale(1.1);
}

.projects .projects-grid .project-card .card-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.projects .projects-grid .project-card:hover .card-image .image-overlay {
  opacity: 1;
}

.projects .projects-grid .project-card .card-image .image-overlay .view-project {
  color: white;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.projects .projects-grid .project-card .card-image .image-overlay .view-project i {
  font-size: 1.5rem;
}

.projects .projects-grid .project-card .card-content {
  padding: 1.5rem;
}

.projects .projects-grid .project-card .card-content .project-category {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: #f8f9fa;
  color: #2c3e50;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.projects .projects-grid .project-card .card-content .project-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.projects .projects-grid .project-card .card-content .project-description {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.projects .projects-grid .project-card .card-content .project-meta {
  display: flex;
  gap: 1.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.projects .projects-grid .project-card .card-content .project-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.projects .projects-grid .project-card .card-content .project-meta span i {
  color: #2c3e50;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.about-hero-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.about-hero-image {
  text-align: center;
}

.about-hero-image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 5px solid white;
}

.about-hero-text h1 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about-hero-text .subtitle {
  font-size: 1.5rem;
  color: #34495e;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-hero-text .lead {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.8;
  max-width: 600px;
}

.about-page {
  padding: 6rem 0;
  background: #ffffff;
}

.about-page-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-section {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #e9ecef;
}

.about-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.5rem;
}

.section-icon i {
  font-size: 2.5rem;
  color: #2c3e50;
  background: #f8f9fa;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.about-section:hover .section-icon i {
  background: #2c3e50;
  color: white;
  transform: scale(1.1);
}

.section-content h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

.section-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #2c3e50;
}

.content-text {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.9;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.approach-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.approach-item:hover {
  background: #ffffff;
  border-color: #2c3e50;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-icon {
  margin-bottom: 1rem;
}

.approach-icon i {
  font-size: 2.5rem;
  color: #2c3e50;
}

.approach-item h3 {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 500;
  margin: 0;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.skill-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8f9fa;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  color: #2c3e50;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.skill-badge:hover {
  background: #2c3e50;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skill-badge i {
  color: #2c3e50;
  transition: color 0.3s ease;
}

.skill-badge:hover i {
  color: white;
}

.about-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-content .cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cta-content .cta-button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-hero-image img {
    width: 250px;
    height: 250px;
  }

  .about-hero-text h1 {
    font-size: 2rem;
  }

  .about-hero-text .subtitle {
    font-size: 1.2rem;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .section-icon {
    justify-content: center;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

/* ============================================
   EXPERIENCE PAGE
   ============================================ */
.experience-page {
  padding: 4rem 0;
  background: #ffffff;
}

.experience-page .page-header {
  text-align: center;
  margin-bottom: 4rem;
}

.experience-page .page-header h1 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.experience-page .page-header .lead {
  font-size: 1.25rem;
  color: #6c757d;
}

.experience-page .empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: #6c757d;
}

.experience-page .empty-state i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #adb5bd;
}

.experience-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.experience-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.experience-item:last-child {
  margin-bottom: 0;
}

.experience-item:last-child .timeline-connector {
  display: none;
}

.timeline-connector {
  position: absolute;
  left: -1.5rem;
  top: 4rem;
  bottom: -3rem;
  width: 2px;
  background: linear-gradient(to bottom, #667eea, #e9ecef);
}

.experience-content {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.experience-content:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: #667eea;
}

.experience-item[style*="cursor: pointer"] .experience-content {
  cursor: pointer;
}

.experience-item[style*="cursor: pointer"]:hover .experience-content {
  border-color: #667eea;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  gap: 2rem;
}

.company-info {
  display: flex;
  gap: 1.5rem;
  flex: 1;
}

.company-logo,
.company-logo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e9ecef;
}

.company-logo-placeholder {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-size: 2rem;
}

.company-details {
  flex: 1;
}

.company-name {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.position {
  font-size: 1.1rem;
  color: #34495e;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}

.location {
  color: #6c757d;
  margin: 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.experience-meta {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.date-range {
  font-size: 1rem;
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 0;
}

.duration {
  font-size: 0.875rem;
  color: #6c757d;
  margin-bottom: 0;
}

.experience-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.badge-current {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #28a745;
  color: white;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.badge-projects {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  background: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.badge-projects:hover {
  background: #34495e;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
}

.badge-projects i {
  font-size: 0.7rem;
}

.experience-description {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.experience-description p {
  color: #6c757d;
  line-height: 1.8;
  margin: 0;
}

.experience-actions {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}

.btn-experience-projects {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-experience-projects:hover {
  background: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

.btn-experience-projects i {
  font-size: 0.9rem;
}

/* Timeline dot */
.experience-item::before {
  content: '';
  position: absolute;
  left: -1.75rem;
  top: 1rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #667eea;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 3px #667eea;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .experience-timeline {
    padding-left: 2rem;
  }

  .experience-item {
    padding-left: 1.5rem;
  }

  .experience-header {
    flex-direction: column;
    gap: 1rem;
  }

  .experience-meta {
    text-align: left;
    width: 100%;
  }

  .company-info {
    flex-direction: column;
    gap: 1rem;
  }

  .company-logo,
  .company-logo-placeholder {
    width: 60px;
    height: 60px;
  }

  .experience-page .page-header h1 {
    font-size: 2rem;
  }
}

/* ============================================
   ABOUT PAGE - EXPERIENCE LIST
   ============================================ */
.about-page .experience-list {
  margin-top: 1.5rem;
}

.about-page .experience-item-compact {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.about-page .experience-item-compact:hover {
  background: #ffffff;
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.about-page .experience-item-compact[style*="cursor: pointer"] {
  cursor: pointer;
}

/* ============================================
   SERVICES SECTION (HOMEPAGE)
   ============================================ */
.services {
  padding: 6rem 0;
  background: var(--section-gradient);
  width: 100%;
}

.services .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services .section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
}

.services .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #2c3e50;
}

.services .section-subtitle {
  font-size: 1.25rem;
  color: #34495e;
  max-width: 700px;
  margin: 2rem auto 0;
  line-height: 1.6;
  font-weight: 500;
}

.services-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-card-home {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.service-card-home:hover {
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c3e50;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-card-home:hover .service-icon {
  background: #2c3e50;
  color: white;
  transform: scale(1.1);
}

.service-title-home {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.service-title-home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #2c3e50;
}

.service-title-home a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-title-home a:hover {
  color: #34495e;
}

.service-description-home {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  flex: 1;
}


.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  margin-top: auto;
}

.service-link:hover {
  color: #34495e;
  gap: 0.75rem;
}

.service-link i {
  transition: transform 0.3s ease;
  color: #2c3e50;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page {
  padding: 8rem 0 6rem;
  background-color: #ffffff;
  width: 100%;
}

.services-page .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-page .section-header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
}

.services-page .section-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #2c3e50;
}

.services-page .section-subtitle {
  font-size: 1.25rem;
  color: #34495e;
  max-width: 700px;
  margin: 2rem auto 0;
  line-height: 1.6;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card-header {
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 0;
  flex: 1;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.service-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #2c3e50;
}

.service-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-title a:hover {
  color: #34495e;
}

.service-project-count {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #2c3e50;
  color: white;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.service-project-count:hover {
  background-color: #34495e;
  transform: translateY(-2px);
}

.service-description {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  flex: 1;
}

.service-card-footer {
  margin-top: auto;
}

.btn-service-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-service-detail:hover {
  background-color: #34495e;
  transform: translateY(-2px);
}

.btn-service-detail i {
  transition: transform 0.3s ease;
}

.btn-service-detail:hover i {
  transform: translateX(5px);
}

/* Service Detail Page Styles */
/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail {
  padding: 6rem 0 3rem;
  background-color: #ffffff;
  width: 100%;
}

.service-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e9ecef;
}

.service-header h1 {
  font-size: 3rem;
  color: #2c3e50;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

.service-content {
  max-width: 1000px;
  margin: 0 auto;
}

.service-content .description {
  margin-bottom: 4rem;
}

.service-content .description h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

.service-content .description h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #2c3e50;
}

.service-content .description>div {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.9;
}

.service-content .description>div p {
  margin-bottom: 1.5rem;
}

.service-content .description>div h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-content .description>div h4 {
  font-size: 1.25rem;
  color: #34495e;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.service-content .description>div ul,
.service-content .description>div ol {
  margin: 1rem 0;
  padding-left: 2rem;
  color: #6c757d;
}

.service-content .description>div li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.service-projects-section {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 2px solid #e9ecef;
}

.service-projects-section h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

.service-projects-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #2c3e50;
}

.service-projects-section .section-intro {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  margin-top: 1rem;
}

.service-detail .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-detail .project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-detail .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-detail .project-card .card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #f8f9fa;
}

.service-detail .project-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-detail .project-card:hover .card-image img {
  transform: scale(1.1);
}

.service-detail .project-card .card-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-detail .project-card:hover .card-image .image-overlay {
  opacity: 1;
}

.service-detail .project-card .card-image .image-overlay .view-project {
  color: white;
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.service-detail .project-card .card-image .image-overlay .view-project i {
  font-size: 1.5rem;
}

.service-detail .project-card .card-content {
  padding: 1.5rem;
}

.service-detail .project-card .card-content .project-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #f8f9fa;
  color: #2c3e50;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.service-detail .project-card .card-content .project-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  line-height: 1.3;
  font-weight: 600;
}

.service-detail .project-card .card-content .project-description {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-detail .project-card .card-content .project-meta {
  display: flex;
  gap: 1.5rem;
  color: #6c757d;
  font-size: 0.9rem;
}

.service-detail .project-card .card-content .project-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-detail .project-card .card-content .project-meta span i {
  color: #2c3e50;
}

.service-detail .navigation-buttons {
  text-align: center;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e9ecef;
}

.service-detail .back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
}

.service-detail .back-button i {
  transition: transform 0.3s ease;
}

.service-detail .back-button:hover {
  background-color: #34495e;
  transform: translateY(-2px);
}

.service-detail .back-button:hover i {
  transform: translateX(-5px);
}

/* Service Detail Responsive */
@media (max-width: 768px) {
  .service-detail {
    padding: 4rem 0 2rem;
  }

  .service-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .service-header h1 {
    font-size: 2rem;
  }

  .service-content .description h2,
  .service-projects-section h2 {
    font-size: 1.75rem;
  }

  .service-content .description>div {
    font-size: 1rem;
  }

  .service-detail .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-detail .project-card .card-image {
    height: 200px;
  }

  .service-projects-section {
    margin-top: 3rem;
    padding-top: 3rem;
  }

  .service-detail .navigation-buttons {
    margin-top: 3rem;
    padding-top: 2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-detail .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   BLOG PAGES
   ============================================ */
.blogs-page {
  padding: 2rem 0 6rem;
  background-color: #ffffff;
  width: 100%;
}

.blogs-page .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blogs-page .section-header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
}

.blogs-page .section-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #2c3e50;
}

.blogs-page .section-subtitle {
  font-size: 1.25rem;
  color: #34495e;
  max-width: 700px;
  margin: 2rem auto 0;
  line-height: 1.6;
  font-weight: 500;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-card .blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f8f9fa;
}

.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-card .blog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card .blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.blog-card .blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-card .blog-meta i {
  color: #2c3e50;
}

.blog-card .blog-title {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.blog-card .blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card .blog-title a:hover {
  color: #34495e;
}

.blog-card .blog-excerpt {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.btn-blog-read {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-blog-read:hover {
  background-color: #34495e;
  transform: translateY(-2px);
}

.btn-blog-read i {
  transition: transform 0.3s ease;
}

/* Blog Detail Page & Featured Card */
.blog-detail-page {
  padding: 4rem 0 6rem;
  background-color: #f8f9fa;
}

.blog-featured-card {
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  background: white;
}

.blog-featured-card img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.blog-content-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  font-size: 1.15rem;
  line-height: 1.9;
  color: #4a5568;
}

.blog-content-header {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.blog-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
}

.blog-meta-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.meta-badge {
  background: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #4a5568;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #e9ecef;
}

.meta-badge.text-dark {
  color: #4a5568 !important;
}

.text-primary {
  color: #2c3e50 !important;
}

.blog-content-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  font-size: 1.15rem;
  line-height: 1.9;
  color: #4a5568;
}

.blog-content-wrapper p {
  margin-bottom: 1.5rem;
}

.blog-content-wrapper h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-top: 2.5rem;
  font-weight: 700;
}

.blog-content-wrapper img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
}



/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f1f1f1;
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #2c3e50;
}

.author-widget .author-avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f8f9fa;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-title {
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.author-bio {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.author-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.author-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f3f5;
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.author-social a:hover {
  background: #2c3e50;
  color: white;
}

.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts-list li {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f1f1;
}

.recent-posts-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-post-link {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  align-items: center;
}

.recent-post-image {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.recent-post-link:hover .recent-post-image img {
  transform: scale(1.1);
}

.recent-post-info {
  display: flex;
  flex-direction: column;
}

.recent-post-info .post-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.recent-post-link:hover .post-title {
  color: #34495e;
}

.recent-post-info .post-date {
  font-size: 0.8rem;
  color: #adb5bd;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  margin-bottom: 0.75rem;
}

.services-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6c757d;
  text-decoration: none;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.services-list a:hover {
  background: #2c3e50;
  color: white;
  transform: translateX(5px);
}

.navigation-buttons {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

.navigation-buttons button {
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.back-button {
  background: white;
  color: #2c3e50;
  border: 1px solid #e9ecef !important;
}

.back-button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.contact-button {
  background: #2c3e50;
  color: white;
}

.contact-button:hover {
  background: #34495e;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .blog-hero-header {
    height: 50vh;
  }

  .blog-hero-title {
    font-size: 2.5rem;
  }

  .blog-sidebar {
    position: static;
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .blog-content-wrapper {
    padding: 1.5rem;
  }

  .blog-hero-title {
    font-size: 2rem;
  }

  .navigation-buttons {
    flex-direction: column;
  }

  .navigation-buttons button {
    width: 100%;
    justify-content: center;
  }
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blogs-page {
    padding: 4rem 0 2rem;
  }

  .blogs-page .section-header h1 {
    font-size: 2rem;
  }

  .blogs-page .section-subtitle {
    font-size: 1.1rem;
  }

  .blogs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-card .blog-image {
    height: 200px;
  }

  .blog-header h1 {
    font-size: 2rem;
  }

  .blog-content {
    font-size: 1rem;
  }
}

/* ============================================
   BLOG SECTION (HOMEPAGE)
   ============================================ */
.blog-section {
  padding: 6rem 0;
  background: var(--section-gradient);
  width: 100%;
}

.blog-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-section .section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  position: relative;
}

.blog-section .section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #2c3e50;
}

.blog-section .section-subtitle {
  font-size: 1.25rem;
  color: #34495e;
  max-width: 700px;
  margin: 2rem auto 0;
  line-height: 1.6;
  font-weight: 500;
}

.blogs-grid-home {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.blog-card-home {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card-home:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-image-home {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f8f9fa;
}

.blog-image-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-home:hover .blog-image-home img {
  transform: scale(1.1);
}

.blog-content-home {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta-home {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #6c757d;
}

.blog-date-home {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-date-home i {
  color: #2c3e50;
}

.blog-title-home {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.blog-title-home a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title-home a:hover {
  color: #34495e;
}

.blog-excerpt-home {
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-link-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  margin-top: auto;
}

.blog-link-home:hover {
  color: #34495e;
  gap: 0.75rem;
}

.blog-link-home i {
  transition: transform 0.3s ease;
}

.blog-link-home:hover i {
  transform: translateX(5px);
}

/* Blog Section Responsive */
@media (max-width: 768px) {
  .blog-section {
    padding: 4rem 0;
  }

  .blog-section .section-header h2 {
    font-size: 2rem;
  }

  .blog-section .section-subtitle {
    font-size: 1.1rem;
  }

  .blogs-grid-home {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .blog-image-home {
    height: 180px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .services-page {
    padding: 4rem 0;
  }

  .services-page .section-header h1 {
    font-size: 2rem;
  }

  .services-page .section-subtitle {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-detail-page .projects-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-header h1 {
    font-size: 2rem;
  }

  .service-projects-section h2 {
    font-size: 1.75rem;
  }
}

.about-page .exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1.5rem;
}

.about-page .exp-company {
  display: flex;
  gap: 1rem;
  flex: 1;
  align-items: flex-start;
}

.about-page .exp-logo-small,
.about-page .exp-logo-placeholder-small {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e9ecef;
}

.about-page .exp-logo-placeholder-small {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-size: 1.5rem;
}

.about-page .exp-info {
  flex: 1;
}

.about-page .exp-company-name {
  font-size: 1.25rem;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.about-page .exp-position {
  font-size: 1rem;
  color: #34495e;
  margin: 0;
  font-weight: 500;
}

.about-page .exp-meta {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.about-page .exp-date {
  display: block;
  color: #2c3e50;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.about-page .badge-current-small {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #28a745;
  color: white;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.about-page .exp-description {
  color: #6c757d;
  line-height: 1.8;
  margin: 1rem 0 0 0;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

.about-page .cta-button.secondary {
  background: transparent;
  border: 2px solid #2c3e50;
  color: #2c3e50;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.about-page .cta-button.secondary:hover {
  background: #2c3e50;
  color: white;
  transform: translateY(-2px);
}

.about-page .exp-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.about-page .badge-projects-small {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  background: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.about-page .badge-projects-small:hover {
  background: #34495e;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
}

.about-page .badge-projects-small i {
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .about-page .exp-header {
    flex-direction: column;
    gap: 1rem;
  }

  .about-page .exp-meta {
    text-align: left;
    width: 100%;
  }

  .about-page .exp-company {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ============================================
   EXPERIENCE PROJECTS PAGE
   ============================================ */
.experience-projects-page {
  padding: 2rem 0 4rem;
}

.experience-header-section {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.experience-company-info {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 1;
}

.experience-company-logo,
.experience-company-logo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid #e9ecef;
  flex-shrink: 0;
}

.experience-company-logo-placeholder {
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #adb5bd;
  font-size: 2rem;
}

.experience-company-details h1 {
  font-size: 2rem;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.experience-position {
  font-size: 1.1rem;
  color: #34495e;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
}

.experience-date-range {
  color: #6c757d;
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
}

.experience-location {
  color: #6c757d;
  margin: 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-back-to-experience {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #f8f9fa;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  white-space: nowrap;
}

.btn-back-to-experience:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.projects-count-info {
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2c3e50;
}

.projects-count-info p {
  margin: 0;
  color: #2c3e50;
  font-size: 1rem;
}

.projects-count-info strong {
  color: #667eea;
  font-weight: 600;
}

.experience-projects-page .empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 2px dashed #dee2e6;
}

.experience-projects-page .empty-state i {
  font-size: 4rem;
  color: #adb5bd;
  margin-bottom: 1rem;
}

.experience-projects-page .empty-state p {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.experience-projects-page .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.experience-projects-page .project-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #e9ecef;
}

.experience-projects-page .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}

.experience-projects-page .project-card .card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #f8f9fa;
}

.experience-projects-page .project-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experience-projects-page .project-card:hover .card-image img {
  transform: scale(1.1);
}

.experience-projects-page .project-card .card-image .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 62, 80, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.experience-projects-page .project-card:hover .card-image .image-overlay {
  opacity: 1;
}

.experience-projects-page .project-card .card-image .image-overlay .view-project {
  color: white;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.experience-projects-page .project-card .card-content {
  padding: 1.5rem;
}

.experience-projects-page .project-card .card-content .project-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #f8f9fa;
  color: #667eea;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.experience-projects-page .project-card .card-content .project-title {
  font-size: 1.25rem;
  color: #2c3e50;
  margin: 0 0 0.75rem 0;
  font-weight: 600;
  line-height: 1.4;
}

.experience-projects-page .project-card .card-content .project-description {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.experience-projects-page .project-card .card-content .project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: #6c757d;
}

.experience-projects-page .project-card .card-content .project-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.experience-projects-page .project-card .card-content .project-meta i {
  font-size: 0.8rem;
  color: #adb5bd;
}

@media (max-width: 768px) {
  .experience-projects-page .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .experience-projects-page .project-card .card-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .experience-header-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .experience-company-info {
    width: 100%;
  }

  .btn-back-to-experience {
    width: 100%;
    justify-content: center;
  }

  .experience-meta {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-top: 1rem;
  }

  .experience-header-actions {
    width: 100%;
  }

  .btn-experience-projects-header {
    width: 100%;
    justify-content: center;
  }

  .about-page .exp-meta {
    align-items: flex-start;
    text-align: left;
    width: 100%;
    margin-top: 1rem;
  }

  .about-page .exp-header-actions {
    width: 100%;
  }

  .about-page .btn-exp-projects-header-small {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   PROJECT DETAIL
   ============================================ */
/* Breadcrumbs */
nav[aria-label="breadcrumb"] {
  background: #ffffff;
  padding: 2rem 0;
  margin-bottom: 0;
  border-bottom: 1px solid #e9ecef;
  margin-top: 100px;
}

nav[aria-label="breadcrumb"] .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

nav[aria-label="breadcrumb"] ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  font-size: 0.875rem;
  font-family: 'Roboto', sans-serif;
}

nav[aria-label="breadcrumb"] ol li {
  display: flex;
  align-items: center;
  color: #6c757d;
}

nav[aria-label="breadcrumb"] ol li:not(:last-child)::after {
  content: '/';
  margin: 0 0.5rem;
  color: #adb5bd;
  font-weight: 300;
}

nav[aria-label="breadcrumb"] ol li a {
  color: #2c3e50;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
}

nav[aria-label="breadcrumb"] ol li a:hover {
  color: #34495e;
  text-decoration: none;
}

nav[aria-label="breadcrumb"] ol li:last-child {
  color: #2c3e50;
  font-weight: 500;
}

nav[aria-label="breadcrumb"] ol li:last-child span {
  color: #2c3e50;
  font-weight: 500;
}

.project-detail {
  padding: 2rem 0 4rem;
  width: 100%;
}

.project-detail .project-header {
  text-align: center;
  margin-bottom: 3rem;
}

.project-detail .project-header h1 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.project-detail .project-header .category {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background-color: #2c3e50;
  color: white;
  border-radius: 25px;
  font-size: 1rem;
}

.project-detail .project-gallery {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.project-detail .project-gallery .main-image {
  margin-bottom: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.project-detail .project-gallery .main-image:hover {
  transform: scale(1.02);
}

.project-detail .project-gallery .main-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.project-detail .project-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.project-detail .project-gallery .gallery-grid .gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.project-detail .project-gallery .gallery-grid .gallery-item:hover {
  transform: scale(1.05);
}

.project-detail .project-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.project-detail .project-content {
  margin-bottom: 4rem;
}

.project-detail .project-content .project-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.project-detail .project-content .project-info .description h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.project-detail .project-content .project-info .description p {
  color: #6c757d;
  line-height: 1.8;
  font-size: 1.1rem;
}

.project-detail .project-content .project-info .details h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.project-detail .project-content .project-info .details ul {
  list-style: none;
  padding: 0;
}

.project-detail .project-content .project-info .details ul li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.project-detail .project-content .project-info .details ul li:last-child {
  border-bottom: none;
}

.project-detail .project-content .project-info .details ul li .label {
  display: block;
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.project-detail .project-content .project-info .details ul li .value {
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 500;
}

.project-detail .pdf-viewer {
  margin: 2rem 0 4rem;
}

.project-detail .pdf-viewer .pdf-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.project-detail .pdf-viewer .pdf-container .pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #eee;
  background-color: white;
}

.project-detail .pdf-viewer .pdf-container .pdf-header h2 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 0;
}

.project-detail .pdf-viewer .pdf-container .pdf-header .download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.project-detail .pdf-viewer .pdf-container .pdf-header .download-btn:hover {
  background-color: #34495e;
  transform: translateY(-2px);
}

.project-detail .pdf-viewer .pdf-container .pdf-preview {
  padding: 0;
  background-color: #f4f4f4;
  height: 900px;
}

.project-detail .navigation-buttons {
  text-align: center;
  margin-top: 2rem;
}

.project-detail .navigation-buttons .back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: #2c3e50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.project-detail .navigation-buttons .back-button:hover {
  background-color: #34495e;
}

.project-detail .navigation-buttons .back-button:hover i {
  transform: translateX(-5px);
}

/* Gallery Lightbox Styles */
.project-gallery .main-image,
.project-gallery .gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-gallery .main-image a,
.project-gallery .gallery-item a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.project-gallery .main-image .image-overlay,
.project-gallery .gallery-item .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.project-gallery .main-image:hover .image-overlay,
.project-gallery .gallery-item:hover .image-overlay {
  opacity: 1;
}

.project-gallery .main-image .image-overlay i,
.project-gallery .gallery-item .image-overlay i {
  color: white;
  font-size: 2rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.project-gallery .main-image:hover .image-overlay i,
.project-gallery .gallery-item:hover .image-overlay i {
  transform: scale(1);
}

/* GLightbox Custom Styles */
.gslide-media {
  background: rgba(0, 0, 0, 0.95) !important;
}

.gslide-description {
  background: rgba(0, 0, 0, 0.8) !important;
  color: white !important;
  padding: 1rem !important;
  font-size: 1rem !important;
}

.gprev,
.gnext {
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  width: 50px !important;
  height: 50px !important;
  transition: all 0.3s ease !important;
}

.gprev:hover,
.gnext:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.1) !important;
}

.gclose {
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  transition: all 0.3s ease !important;
}

.gclose:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.1) !important;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 6rem 0;
  background: var(--section-gradient);
  width: 100%;
}

.contact .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact .section-header h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.contact .contact-content .contact-info {
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-padding {
  padding: 100px 0;
}

.header-line {
  width: 60px;
  height: 4px;
  background-color: var(--pink-primary, #ff4785);
  margin: 0 auto;
  border-radius: 2px;
}

/* Contact Info Cards */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #e0e0e0;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgba(44, 62, 80, 0.05);
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: #2c3e50;
  color: #fff;
}

.contact-details h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #2c3e50;
}

.contact-details p,
.contact-details a {
  font-size: 0.95rem;
  color: #6c757d;
  text-decoration: none;
  margin: 0;
}

/* Social Links Minimal */
.social-links-minimal {
  display: flex;
  gap: 1rem;
}

.social-links-minimal a {
  width: 40px;
  height: 40px;
  background: #f8f9fa;
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-links-minimal a:hover {
  background: #2c3e50;
  color: #fff;
  transform: scale(1.1);
}

/* Contact Form Card */
.contact-form-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.contact-form-card::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(44, 62, 80, 0.03) 0%, transparent 70%);
  z-index: -1;
}

.form-control-lg {
  border-radius: 12px !important;
  font-size: 1rem !important;
  padding: 1rem 1.2rem !important;
}

.form-control:focus {
  background-color: #fff !important;
  box-shadow: 0 0 0 4px rgba(44, 62, 80, 0.05) !important;
  border: 1px solid #2c3e50 !important;
}

/* Alerts */
.alert {
  border-radius: 15px;
  border: none;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
}

/* Button Customization */
.btn-primary {
  background-color: #2c3e50;
  border-color: #2c3e50;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #1a252f;
  border-color: #1a252f;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 991px) {
  .contact-info-wrapper {
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .contact-form-card {
    padding: 2rem 1.5rem !important;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #fff;
  padding: 2rem 0;
  border-top: 1px solid #eee;
  width: 100%;
}

.footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .footer-info p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

.footer .footer-info p a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer .footer-info p a:hover {
  color: #2c3e50;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: white;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
  background-color: #555;
  transform: translateY(-3px);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top i {
  font-size: 18px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  main {
    margin-top: 70px;
  }

  .header {
    padding: 0.75rem 0;
  }

  .header .nav .logo a .firstname,
  .header .nav .logo a .lastname {
    font-size: 1.2rem;
  }

  .header .nav .logo .profession {
    font-size: 0.75rem;
  }

  .header .nav .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1rem 0;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .header .nav .nav-links.active {
    display: flex;
  }

  .header .nav .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 3rem 0 2rem;
    min-height: auto;
    margin-top: 70px;
  }

  .hero .hero-wrapper {
    flex-direction: column-reverse;
    gap: 2rem;
    text-align: center;
  }

  .hero .hero-content h1 {
    font-size: 3rem;
  }

  .hero .hero-content .cta-buttons {
    justify-content: center;
  }

  .hero .hero-image img {
    width: 300px;
    height: 300px;
  }

  .about {
    padding: 4rem 0;
  }

  .about .about-content .section-header h2 {
    font-size: 2rem;
  }

  .about .about-content .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .projects {
    padding: 4rem 0;
  }

  .projects .section-header h2 {
    font-size: 2rem;
  }

  .projects .project-type-tabs {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
  }

  .projects .project-type-tabs .type-btn {
    width: 100%;
    justify-content: center;
  }

  .projects .project-filters {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 1rem;
  }

  .projects .project-filters .filter-btn {
    padding: 0.6rem 1rem;
  }

  .projects .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .services {
    padding: 4rem 0;
  }

  .services .section-header h2 {
    font-size: 2rem;
  }

  .services .section-subtitle {
    font-size: 1.1rem;
  }

  .services-grid-home {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .service-card-home {
    padding: 2rem 1.5rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .projects .projects-grid .project-card .card-image {
    height: 200px;
  }

  .project-detail {
    padding: 6rem 0 3rem;
  }

  .project-detail .project-header h1 {
    font-size: 2rem;
  }

  .project-detail .project-content .project-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-detail .project-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-detail .pdf-viewer .pdf-container .pdf-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .project-detail .pdf-viewer .pdf-container .pdf-header .download-btn {
    width: 100%;
    justify-content: center;
  }

  .contact {
    padding: 4rem 0;
  }

  .contact .section-header h2 {
    font-size: 2rem;
  }

  .contact .contact-content .contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact .contact-content .contact-info .contact-item {
    max-width: 400px;
    margin: 0 auto;
  }

  .image-modal {
    padding: 1rem;
  }

  .image-modal .modal-content .close-button {
    top: -35px;
    right: 0;
  }
}

@media (max-width: 992px) {
  .about .about-content .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about .about-content .about-grid .skills-section {
    grid-column: 1 / -1;
  }
}

/* ============================================
   TABLET VE ORTA EKRANLAR (768px - 992px)
   ============================================ */
@media (min-width: 769px) and (max-width: 992px) {
  .projects .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-detail .project-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   KÜÇÜK MOBİL CİHAZLAR (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero .hero-content h1 {
    font-size: 2rem;
  }

  .hero .hero-content p {
    font-size: 0.9rem;
  }

  .hero .hero-image img {
    width: 250px;
    height: 250px;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .projects .project-filters {
    gap: 0.25rem;
  }

  .projects .project-filters .filter-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .project-detail .project-header h1 {
    font-size: 1.5rem;
  }

  .contact .contact-content .contact-form {
    padding: 1.5rem;
  }
}

/* ============================================
   CROSS-BROWSER UYUMLULUK
   ============================================ */
/* Flexbox fallback for older browsers */
@supports not (display: flex) {
  .header .nav {
    display: block;
  }

  .header .nav .nav-links {
    display: block;
  }
}

/* Grid fallback for older browsers */
@supports not (display: grid) {
  .projects .projects-grid {
    display: block;
  }

  .projects .projects-grid .project-card {
    display: inline-block;
    width: 48%;
    margin: 1%;
    vertical-align: top;
  }
}

/* Backdrop filter fallback */
@supports not (backdrop-filter: blur(5px)) {
  .header {
    background-color: rgba(255, 255, 255, 0.98);
  }
}

/* Smooth scroll fallback */
@supports not (scroll-behavior: smooth) {
  html {
    scroll-behavior: auto;
  }
}

/* Transform fallback */
@supports not (transform: translateY(0)) {

  .project-card,
  .about-info,
  .about-approach,
  .skills-section,
  .contact-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Site-wide Responsive Refinements */
@media (max-width: 991.98px) {
  .blog-sidebar {
    position: static;
    margin-top: 3rem;
  }

  nav[aria-label="breadcrumb"] {
    margin-top: 80px;
    /* Adjusted for mobile header height */
  }
}

@media (max-width: 767.98px) {

  /* Global Header Fixes */
  .section-header h1,
  .page-header h1,
  .about-hero-text h1,
  .project-header h1 {
    font-size: 1.75rem !important;
    line-height: 1.3;
  }

  .blog-title {
    font-size: 1.75rem !important;
  }

  /* Layout Adjustments */
  .blog-content-wrapper {
    padding: 1.5rem;
    font-size: 1.05rem;
  }

  .blog-featured-card {
    margin-bottom: 1.5rem;
  }

  .blog-featured-card img {
    height: 250px;
  }

  .navigation-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .navigation-buttons button {
    width: 100%;
    justify-content: center;
  }

  nav[aria-label="breadcrumb"] {
    padding: 1rem 0;
    margin-top: 70px;
  }

  /* Standardizing listing margins */
  .projects-grid,
  .services-grid,
  .blogs-grid {
    gap: 1.5rem;
  }

  .project-card,
  .service-card,
  .blog-card {
    margin-bottom: 0;
  }
}