/* 
* Portfolio Website - Main Stylesheet
* Author: Abhijeet
*/

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --background-color: #ffffff;
    --background-alt: #f3f4f6;
    --border-color: #e5e7eb;
    
    /* Typography */
    --heading-font: 'Alice', serif;
    --body-font: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-speed: 0.3s;
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

section {
    padding:  0;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    color: var(--primary-color);
    margin-top: 35px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  letter-spacing: 0.3px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

.about-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
  padding-top: 30px;
}

.about-text p {
  font-size: 1rem;
  margin: 10px 0;
  color: #444;
}

.about-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
  padding-bottom: 30px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
  max-width: 280px;
  margin-bottom: 20px;
}

.detail-item i {
  font-size: 1.5rem;
  color: #007bff;
  margin-top: 5px;
}

.detail-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c3e50;
}

.detail-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 768px) {
  .about-details {
    flex-direction: column;
    align-items: center;
  }

  .detail-item {
    max-width: 100%;
  }

  .section-title {
    font-size: 1.6rem;
  }
}

/* General Section Styling */
.values-section {
  background-color: #f0f4f8;
  padding: 50px 0;
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 30px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.value-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.value-card i {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .value-card i {
    font-size: 2.5rem;
  }

  .value-card h3 {
    font-size: 1.3rem;
  }

  .value-card p {
    font-size: 0.95rem;
  }
}

.certifications-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    justify-content: center;
}

.certification-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s;
}

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

.certification-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.certification-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0 5px;
}

.certification-content p {
    color: #777;
    margin: 0;
}

.certification-date {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #555;
}

/* =============================
   Base & Typography
   ============================= */
@import url('https://fonts.googleapis.com/css2?family=Alice&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #007bff;
  --secondary-color: #2c3e50;
  --light-bg: #f9f9f9;
  --dark-text: #333;
  --muted-text: #555;
  --card-bg: #ffffff;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--light-bg);
  color: var(--dark-text);
  line-height: 1.6;
}

/* =============================
   Container
   ============================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

/* =============================
   Section Titles & Intro
   ============================= */
.section-title {
  font-family: 'Alice', serif;
  font-size: 2.5rem;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted-text);
  text-align: center;
  margin-bottom: 20px;
}

.skills-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: var(--dark-text);
  text-align: center;
  opacity: 0.9;
}

/* =============================
   Technical Skills Grid
   ============================= */
.skills-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.skill-category {
  flex: 1;
  min-width: 280px;
}

.skill-category h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
}

.skill-list {
  list-style: disc;
  margin-left: 1.2rem;
  color: var(--dark-text);
}

.skill-list li {
  margin-bottom: 0.35rem;
  font-size: 0.98rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
}

.skill-item {
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.skill-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.skill-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.skill-item h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.skill-level {
  background: #e0e0e0;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background-color: var(--primary-color);
  transition: width var(--transition-speed);
}

/* DSA & Coding Activity */
.dsa-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
}

.dsa-column {
  flex: 1;
  min-width: 260px;
}

.dsa-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dsa-meter h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
}

.dsa-meter-row {
  margin-bottom: 0.75rem;
}

.dsa-meter-row span {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--muted-text);
}

.coding-activity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
}

.coding-summary {
  flex: 1;
  min-width: 260px;
  background-color: var(--card-bg);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.coding-summary h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
}

.platform-list {
  list-style: none;
  margin-top: 0.5rem;
}

.platform-list li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.platform-name {
  font-weight: 600;
}

.github-activity-placeholder {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background-color: var(--background-alt);
}

.github-activity-placeholder span {
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  .dsa-grid,
  .coding-activity-grid {
    flex-direction: column;
  }
}

/* =============================
   Soft Skills Section
   ============================= */
.soft-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.soft-skill-card {
  background-color: var(--card-bg);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.soft-skill-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.soft-skill-card h3 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.soft-skill-card p {
  font-size: 0.95rem;
  color: var(--muted-text);
}

/* =============================
   Expertise Section
   ============================= */
.expertise-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.expertise-text {
  flex: 1;
  min-width: 300px;
}

.expertise-text h3 {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin: 15px 0 8px;
}

.expertise-text p {
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 12px;
}

.expertise-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* =============================
   CTA Section
   ============================= */
.cta-section {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1rem;
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background var(--transition-speed);
}

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

/* =============================
   Header & Footer
   ============================= */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
}

.logo h1 {
  font-family: 'Alice', serif;
  color: var(--secondary-color);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-speed);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--primary-color);
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--secondary-color);
  margin: 5px 0;
}

/* =============================
   Footer
   ============================= */
footer {
  background: var(--secondary-color);
  color: #fff;
  padding: 40px 5%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo h2 {
  font-family: 'Alice', serif;
  margin-top: 10px;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color var(--transition-speed);
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-social a {
  color: #fff;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: color var(--transition-speed);
}

.footer-social a:hover {
  color: var(--primary-color);
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* =============================
   Responsive Breakpoints
   ============================= */
@media (max-width: 992px) {
  .expertise-content {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .skills-categories {
    flex-direction: column;
  }
  
  .header-container {
    padding: 10px 5%;
  }
}



/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: var(--background-color);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo h1 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--text-color);
}

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

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition-speed);
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    background-color: var(--background-alt);
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-text {
    flex: 1;
}

.hero h1,
.hero-title {
    font-family: var(--heading-font);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 40rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight {
    color: var(--primary-color);
}

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

.hero-image img {
    max-width: 320px;
    width: 100%;
    border-radius: 999px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
    border: 4px solid rgba(255, 255, 255, 0.9);
    background-color: #e5e7eb;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-align: center;
    transition: all var(--transition-speed);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ===== FEATURED SKILLS SECTION ===== */
.featured-skills {
    background-color: var(--background-color);
}

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

.skill-card {
    background-color: var(--background-alt);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    margin: 10px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
}

.skill-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.skill-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.skill-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===== FEATURED PROJECTS (HOME) ===== */
.featured-projects {
    padding: 5rem 0 4rem;
    background-color: var(--background-alt);
}

.featured-projects .section-title {
    margin-bottom: 2.5rem;
}

.featured-projects .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.featured-projects .project-card {
    background-color: var(--background-color);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.featured-projects .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.featured-projects .project-image {
    height: 210px;
    overflow: hidden;
}

.featured-projects .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

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

.featured-projects .project-info {
    padding: 1.5rem 1.75rem 1.5rem;
}

.featured-projects .project-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.featured-projects .project-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.featured-projects .project-tags {
    margin-bottom: 1.25rem;
}

.featured-projects .view-all {
    text-align: center;
    margin-top: 3rem;
}

/* ===== CONTACT CTA (HOME) ===== */
.contact-cta {
    padding: 4rem 1.5rem 4.5rem;
    background: radial-gradient(circle at top left, #dbeafe, #eff6ff, #f9fafb);
}

.contact-cta .cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.contact-cta h2 {
    font-family: var(--heading-font);
    font-size: 2.25rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 36rem;
    margin-bottom: 1.75rem;
}

/* ===== FEATURED PROJECTS SECTION ===== */
.projects-showcase {
    background-color: var(--background-alt);
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  /* Horizontally center cards */
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.project-card {
    background-color: var(--background-color);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
    width: 350px; /* Fixed width for uniform cards */
}


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

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

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

.project-links {
    display: flex;
    gap: 1rem;
}

.project-links a {
    color: white;
    font-size: 1.5rem;
    transition: transform var(--transition-speed);
}

.project-links a:hover {
    transform: scale(1.2);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags span {
    background-color: var(--background-alt);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.project-team {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* ===== CONTACT CTA SECTION ===== */
.contact-info {
    background-color: var(--background-color);
}

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

.contact-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: 0.5rem;
    transition: transform var(--transition-speed);
}

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

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-section {
    background-color: var(--background-alt);
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-family: var(--body-font);
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===== SOCIAL MEDIA SECTION ===== */
.social-media-section {
    background-color: var(--background-color);
}

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

.social-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: 0.5rem;
    transition: transform var(--transition-speed);
}

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

.social-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: var(--background-alt);
}

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

.faq-item {
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-light);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo h2 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--text-light);
    transition: color var(--transition-speed);
}

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

.footer-contact p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color var(--transition-speed);
}

.social-icons a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-light);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background-color);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid,
    .social-media-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PROJECT FILTER BUTTONS ===== */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-alt);
    border: 2px solid var(--border-color);
    border-radius: 2rem;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: all var(--transition-speed);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: var(--body-font);
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* ===== CONTACT FORM SUCCESS MESSAGE ===== */
.form-success {
    display: none;
    background-color: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 500;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== PROJECT LINKS ===== */
.project-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.project-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: all var(--transition-speed);
}

.project-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* ===== PROJECT TAGS ===== */
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.project-tags span {
    background-color: var(--background-alt);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-speed);
}

.project-tags span:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* ===== PROJECT TEAM INFO ===== */
.project-team {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
}

.project-team p {
    margin-bottom: 0.25rem;
}

.project-team strong {
    color: var(--primary-color);
}

/* ===== PROJECT PROCESS SECTION ===== */
.project-process {
    background-color: var(--background-alt);
    padding: 5rem 0;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: var(--background-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== PROJECTS SHOWCASE ===== */
.projects-showcase {
    padding: 5rem 0;
}

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

.project-card {
    background-color: var(--background-color);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-speed);
}

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

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* ===== JOURNEY SECTION ===== */
.journey-section {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

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

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    position: relative;
    width: calc(50% - 30px);
    padding: 1.5rem;
    background-color: var(--background-color);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    left: calc(50% + 30px);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.timeline-content h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        left: 60px !important;
    }
} 