@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

:root {
  /* Font Variables */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-tertiary: 'Poppins', sans-serif;
  
  /* Color Variables */
  --primary-color: #3a86ff;
  --primary-color-dark: #2a75e0;
  --primary-color-light: #5a9aff;
  --secondary-color: #ff6b6b;
  --secondary-color-dark: #e05c5c;
  --secondary-color-light: #ff8a8a;
  --accent-color: #3a86ff;
  --accent-color-dark: #2a75e0;
  --accent-color-light: #5a9aff;
  
  /* Text Colors */
  --text-primary: #333333;
  --text-secondary: #555555;
  --text-light: #777777;
  --text-white: #ffffff;
  
  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-light: #f0f2f5;
  --bg-dark: #343a40;
  --bg-card: #ffffff;
  --bg-footer: #212529;
  --bg-modal: rgba(0, 0, 0, 0.8);
  
  /* Border Colors */
  --border-light: #e9ecef;
  --border-medium: #dee2e6;
  --border-dark: #ced4da;
  
  /* Status Colors */
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
  
  /* Skill Level Colors */
  --level-beginner: #ffc107;
  --level-intermediate: #17a2b8;
  --level-advanced: #28a745;
  --level-expert: #3a86ff;
  
  /* Social Media Colors */
  --github-color: #333333;
  --linkedin-color: #0077b5;
  --twitter-color: #1da1f2;
  --instagram-color: #e1306c;
  --telegram-color: #0088cc;
  
  /* Shadow Variables */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.15);
  
  /* Transition Variables */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --bg-white: #ffffff;
  --hero-bg: #1a1a2e;
  --hero-text: #ffffff;
  --hero-text-secondary: #e0e0e0;
  
  /* Font variables */
  --font-logo: 'Clicker Script', cursive;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.3;
}

body {
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

p {
  font-family: var(--font-tertiary);
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

button, input, textarea {
  font-family: var(--font-primary);
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #3a86ff;
}

/* Utility classes */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  outline: none;
  text-decoration: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 134, 255, 0.4);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-secondary:hover {
  background-color: var(--secondary-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--bg-dark);
  transition: all var(--transition-normal);
  padding: 20px 0;
  box-shadow: var(--shadow-md);
}

.header.scrolled {
  background-color: var(--bg-dark);
  box-shadow: var(--shadow-lg);
  padding: 15px 0;
}

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

.logo {
  font-weight: 700;
  font-family: 'Clicker Script' , cursive;
}

.logo a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: color var(--transition-fast);
}

.logo a:hover {
  color: var(--accent-color);
}

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

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color var(--transition-fast);
}

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

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

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

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 3px;
}

/* Hero Section */
.hero {
  background-color: #f5f7fa;
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  z-index: -1;
}

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

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 90%;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
  line-height: 1.2;
}

.typing-text {
  color: var(--accent-color);
  border-right: 3px solid var(--accent-color);
  padding-right: 5px;
  animation: blink 0.7s step-end infinite, glow 3s ease-in-out infinite;
  font-weight: 700;
  font-family: "Clicker Script", cursive;
  font-style: italic;
  letter-spacing: 1px;
  text-shadow: 0 0 2px rgba(58, 134, 255, 0.3);
}

@keyframes blink {
  from, to { border-color: transparent }
  50% { border-color: var(--accent-color); }
}

@keyframes glow {
  0% { text-shadow: 0 0 5px rgba(58, 134, 255, 0.1); }
  50% { text-shadow: 0 0 20px rgba(58, 134, 255, 0.3); }
  100% { text-shadow: 0 0 5px rgba(58, 134, 255, 0.1); }
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.hero .btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.hero .btn-primary:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 134, 255, 0.4);
}

.hero .btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-white);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.hero .btn-secondary:hover {
  background-color: var(--secondary-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

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

.profile-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  background-color: var(--accent-color);
  background-size: cover;
  background-position: center;
  border: 5px solid rgba(58, 134, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Skills Section */
.skills-section {
  background-color: #f8f9fa;
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Make all skill cards the same width */
.skill-card {
  background-color: var(--bg-primary);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.skill-icon {
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

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

.skill-icon i {
  font-size: 2rem;
}

.skill-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  margin: 0 0 1.2rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.8rem;
}

.skill-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

.skill-card p {
  color: #666;
}

.skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.skill-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.skill-list li:hover {
  background-color: rgba(58, 134, 255, 0.05);
  transform: translateX(5px);
}

.skill-list li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.skill-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.skill-emoji i {
  font-size: 0.9rem;
}

.skill-list li:hover .skill-emoji {
  transform: scale(1.1);
  background-color: rgba(58, 134, 255, 0.2);
}

.skill-name {
  flex: 1;
  font-weight: 500;
}

.skill-level {
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.level-beginner {
  background-color: #e9f5ff;
  color: #0077cc;
  border: 1px solid rgba(0, 119, 204, 0.2);
}

.level-intermediate {
  background-color: #e6f7ed;
  color: #00a651;
  border: 1px solid rgba(0, 166, 81, 0.2);
}

.level-advanced {
  background-color: #f9e9ff;
  color: #9c27b0;
  border: 1px solid rgba(156, 39, 176, 0.2);
}

.level-expert {
  background-color: #fff4e5;
  color: #ff9800;
  border: 1px solid rgba(255, 152, 0, 0.2);
}

/* Featured Projects Section */
.featured-projects {
  background-color: var(--bg-primary);
}

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

/* Animation for all projects section */
#all-projects {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

#all-projects.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Project Cards */
.project-card {
  background-color: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  top: 0;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

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

.project-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
  z-index: 1;
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}

.project-card:hover .project-image::before {
  opacity: 0.9;
}

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

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

.project-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 10px;
  color: var(--text-primary);
}

.project-info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  transition: width var(--transition-normal);
}

.project-card:hover .project-info h3::after {
  width: 60px;
}

.project-info p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

.project-info .btn-container {
  margin-top: auto;
  text-align: center;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.btn-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Project Modal */
.project-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-modal);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.project-modal.active {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: var(--bg-primary);
  border-radius: 10px;
  max-width: 900px;
  margin: 50px auto;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: translateY(-50px);
  transition: transform var(--transition-normal);
  opacity: 0;
}

.project-modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid var(--border-light);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background-color: var(--danger-color);
  color: var(--text-white);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.modal-body {
  padding: 30px;
}

.project-image-large {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.project-details {
  display: grid;
  grid-gap: 30px;
}

.project-description {
  margin-bottom: 20px;
}

.project-details h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: var(--text-primary);
}

.project-details h3 svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  stroke: var(--accent-color);
}

.project-description-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.tech-list, .features-list {
  list-style: none;
  padding: 0;
}

.tech-list li, .features-list li {
  padding: 8px 12px;
  margin-bottom: 10px;
  background-color: var(--bg-secondary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast);
}

.tech-list li:hover, .features-list li:hover {
  transform: translateX(5px);
  background-color: var(--bg-light);
}

.project-links-container {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.project-links-container a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-fast);
  background-color: var(--bg-secondary);
  color: var(--text-primary);
}

.project-links-container a svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  stroke: currentColor;
}

.project-links-container a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.github-link:hover {
  background-color: var(--github-color);
  color: var(--text-white);
}

.live-demo-link:hover {
  background-color: var(--accent-color);
  color: var(--text-white);
}

@media (max-width: 768px) {
  .modal-content {
    margin: 20px auto;
    max-width: 95%;
  }
  
  .modal-body {
    padding: 20px;
  }
  
  .project-image-large {
    height: 200px;
  }
  
  .project-details {
    grid-gap: 20px;
  }
  
  .project-links-container {
    flex-direction: column;
  }
  
  .modal-title {
    font-size: 1.3rem;
  }
}

/* About Section */
.about-section {
  background-color: #f8f9fa;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  margin-bottom: 20px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* About Section Button Styles */
.about-content .text-center.mt-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 2rem;
}

.about-content .text-center.mt-4 .btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 10px 25px;
  font-size: 1rem;
}

.about-content .text-center.mt-4 .btn i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.about-content .text-center.mt-4 .btn-primary,
.about-content .text-center.mt-4 .btn-secondary {
  min-width: 180px;
}

@media (max-width: 576px) {
  .about-content .text-center.mt-4 {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .about-content .text-center.mt-4 .btn {
    width: 100%;
    max-width: 250px;
    min-height: 42px;
    padding: 8px 20px;
  }
}

/* Contact Section */
.contact-page {
  padding-top: 80px;
}

.contact-section {
  background-color: var(--bg-secondary);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info,
.contact-form-container {
  padding: 30px;
}

.contact-info h2,
.contact-form-container h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
  color: var(--text-primary);
}

.contact-info h2::after,
.contact-form-container h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact-info p {
  margin-bottom: 30px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-item {
  display: flex;
  margin-bottom: 25px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--accent-color);
  transition: all var(--transition-fast);
}

.info-icon i {
  font-size: 1.2rem;
}

.info-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.info-content p a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.info-content p a:hover {
  color: var(--accent-color);
}

.response-time {
  margin-top: 30px;
  padding: 15px;
  border-radius: 8px;
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-color);
}

.response-time p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.form-group {
  margin-bottom: 15px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

.success-message {
  background-color: var(--success-color);
  color: var(--text-white);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-message i {
  font-size: 3rem;
  margin-bottom: 15px;
}

.success-message p {
  margin: 0;
}

.error-message {
  color: var(--danger-color);
  font-size: 0.85rem;
  margin-top: 5px;
  display: none;
}

/* Footer */
.footer {
  background-color: var(--bg-footer);
  color: var(--text-white);
  padding: 60px 0 20px;
}

.footer-container {
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-blue);
  font-family: 'Clicker Script' , cursive;
}

.footer-logo p {
  margin-bottom: 15px;
}

.footer-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 15px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  transition: all var(--transition-normal);
}

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

.social-links i {
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-credits {
  margin-top: 10px;
}

.footer-credits i.fa-heart {
  color: var(--secondary-color);
}

.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.social-links a:nth-child(1):hover i {
  color: var(--github-color);
}

.social-links a:nth-child(2):hover i {
  color: var(--linkedin-color);
}

.social-links a:nth-child(3):hover i {
  color: var(--twitter-color);
}

.social-links a:nth-child(4):hover i {
  color: var(--instagram-color);
}

.social-links a:nth-child(5):hover i {
  color: var(--telegram-color);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .hero-text {
    margin-bottom: 20px;
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .profile-circle {
    width: 250px;
    height: 250px;
  }
  
  .contact-container {
    flex-direction: column;
  }
  
  .contact-info,
  .contact-form-container {
    width: 100%;
  }
  
  .contact-info {
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .skills-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .skills-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 25px;
    }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #1a1a2e;
    flex-direction: column;
    transition: 0.3s;
    z-index: 999;
    padding: 30px 0;
    overflow-y: auto;
  }

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

  .nav-links {
    flex-direction: column;
    position: relative;
    left: 50px;
    font-size: 25px;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .hero {
    padding: 100px 0 50px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .profile-circle {
    width: 200px;
    height: 200px;
  }
  
  .skills-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .skill-card {
    max-width: 100%;
    padding: 25px 20px;
  }
  
  .skill-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
  }
  
  .skill-icon i {
    font-size: 1.6rem;
  }
  
  .skill-list li {
    padding: 8px 10px;
    margin-bottom: 10px;
  }
  
  .skill-emoji {
    width: 25px;
    height: 25px;
    margin-right: 8px;
  }
  
  .skill-emoji i {
    font-size: 0.8rem;
  }
  
  .skill-level {
    font-size: 0.7rem;
    padding: 2px 6px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-logo,
  .footer-links,
  .footer-social {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }

  .contact-form {
    padding: 20px;
  }

  .info-icon {
    width: 50px;
    height: 50px;
  }

  .info-content h3 {
    font-size: 1.1rem;
  }
  
  .bio-info {
    grid-template-columns: 1fr;
  }

  .timeline-date-left {
    left: 0;
    text-align: left;
    padding-left: 50px;
    width: 100%;
  }
  .timeline-date-right {
    left: 0;
    text-align: left;
    padding-left: 50px;
    width: 100%;
  }
  .education-timeline {
    padding-left: 20px;
  }
  .education-timeline::before {
    left: 20px;
    margin-left: 0;
  }
  .timeline-item {
    padding-left: 60px;
    padding-right: 0;
  }
  
  /* Update the connecting line for mobile view */
  .timeline-item::after {
    width: 30px;
    left: 30px;
    right: auto;
  }
  
  .timeline-item:nth-child(odd)::after,
  .timeline-item:nth-child(even)::after {
    left: 30px;
    right: auto;
  }
  
  .timeline-dot {
    left: 20px;
    margin-left: 0;
  }
  .timeline-content {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  /* Ensure arrow connectors are visible on mobile */
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent #fff transparent transparent;
    right: auto;
  }
  
  .education-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .education-year {
    margin-bottom: 10px;
  }
  
  .education-extras {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .marks {
    align-self: flex-start;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .btn {
    padding: 8px 16px;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    margin: 5px 0;
    width: 100%;
  }
  
  .profile-circle {
    width: 180px;
    height: 180px;
  }
  
  .contact-info h2,
  .contact-form-container h2 {
    font-size: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px;
  }
  
  .skills-container {
    grid-template-columns: 1fr;
  }
  
  .skill-name {
    font-size: 0.9rem;
  }
  
  .skill-level {
    font-size: 0.7rem;
  }
  
  .skill-emoji {
    width: 30px;
    height: 30px;
  }
  
  /* CV Download Button Mobile Styles */
  .text-center.mt-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .text-center.mt-4 .btn {
    margin: 5px 0;
    width: 100%;
    max-width: 250px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom p {
    margin: 5px 0;
  }
}

/* Education Section */
.education-section {
  background-color: #f9f9f9;
  position: relative;
}

.education-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.education-timeline::before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  opacity: 0.3;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.1);
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 50px;
}

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

/* Add decorative connecting lines from dot to content */
.timeline-item::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
  top: 38px;
  opacity: 0.4;
  z-index: 0;
}

.timeline-item:nth-child(odd)::after {
  left: 50%;
}

.timeline-item:nth-child(even)::after {
  right: 50%;
}

.timeline-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 30px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-left: -10px;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.2), 0 0 10px rgba(var(--primary-rgb), 0.3);
}

.timeline-date-right {
  position: absolute;
  width: 40%;
  padding-right: 30px;
  left: 0;
  text-align: right;
  top: 25px;
}

.timeline-date-left {
  position: absolute;
  width: 40%;
  padding-left: 30px;
  right: 0;
  text-align: left;
  top: 25px;
}

.timeline-date span {
  font-weight: 600;
  color: var(--primary-color);
  background-color: rgba(var(--primary-rgb), 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  box-shadow: 0 2px 5px rgba(var(--primary-rgb), 0.1);
}

.timeline-content {
  position: relative;
  width: 45%;
  padding: 25px 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 15px 15px 15px 0;
  border-color: transparent #fff transparent transparent;
  top: 30px;
  left: -15px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent #fff;
  top: 30px;
  right: -15px;
}

/* New education styling */
.education-logo {
  flex: 0 0 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--primary-rgb), 0.1);
  border-radius: 50%;
  padding: 10px;
}

.education-logo svg {
  width: 40px;
  height: 40px;
  fill: var(--primary-color);
}

.education-details {
  flex: 1;
}

.education-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.institution-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
  line-height: 1.3;
}

.education-year {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--primary-color);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
}

.university-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 5px;
  line-height: 1.3;
}

.course-name {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 10px;
  line-height: 1.3;
}

.education-extras {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px dashed rgba(var(--primary-rgb), 0.2);
  padding-top: 10px;
}

.achievement {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  flex: 1;
}

.marks {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
  background-color: rgba(var(--primary-rgb), 0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

@media (max-width: 670px) {
    /* Skills Section - 1×4 Layout */
    .skills-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 25px;
        width: 100%;
        max-width: 92%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
        padding-right: 0;
    }
    
    .skills-section {
        padding-left: 0;
        padding-right: 0;
    }
    
    .skill-card {
        max-width: 100%;
        padding: 25px 20px;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .skill-card:nth-child(1),
    .skill-card:nth-child(2),
    .skill-card:nth-child(3),
    .skill-card:nth-child(4) {
        grid-column: 1;
    }
    
    .skill-card:nth-child(1) { grid-row: 1; }
    .skill-card:nth-child(2) { grid-row: 2; }
    .skill-card:nth-child(3) { grid-row: 3; }
    .skill-card:nth-child(4) { grid-row: 4; }
    
    /* Rest of the styles remain the same */
    .skill-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }
    
    .skill-icon i {
        font-size: 1.6rem;
    }
    
    .skill-list li {
        padding: 8px 10px;
        margin-bottom: 10px;
    }
    
    .skill-emoji {
        width: 25px;
        height: 25px;
        margin-right: 8px;
    }
    
    .skill-emoji i {
        font-size: 0.8rem;
    }
    
    .skill-level {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    /* Contact Section */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
    }
    
    .contact-form {
        gap: 15px;
    }
    
    /* Footer Section */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo, 
    .footer-links, 
    .footer-contact {
        width: 100%;
        text-align: center;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

.about-description {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Bio Data Styles */
.bio-data-container {
    margin-top: 30px;
    padding: 30px;
    background-color: var(--bg-primary);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
}

.bio-data-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.bio-title {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--text-primary);
    padding-bottom: 10px;
}

.bio-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 45%;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.bio-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
    background-color: var(--bg-secondary);
    padding: 20px;
    border-radius: 10px;
}

.bio-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: var(--bg-primary);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
}

.bio-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.bio-label {
    font-family: var(--font-tertiary);
    font-weight: 600;
    color: var(--accent-color);
    min-width: 120px;
    padding-right: 15px;
    position: relative;
}

.bio-label::after {
    content: ':';
    position: absolute;
    right: 5px;
}

.bio-value {
    color: var(--text-secondary);
    font-weight: 500;
}

.bio-value a {
    color: var(--accent-color);
    transition: color var(--transition-fast);
}

.bio-value a:hover {
    color: var(--accent-color-dark);
    text-decoration: underline;
}

.bio-paragraph {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 25px;
    padding: 20px;
    background-color: var(--bg-secondary);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

@media (max-width: 768px) {
    .bio-info {
        grid-template-columns: 1fr;
    }
    
    .bio-data-container {
        padding: 20px;
        margin: 20px 15px;
    }
    
    .bio-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        position: relative;
        left: -15px;
    }
    
    .bio-label {
        min-width: auto;
        padding-right: 0;
    }
    
    .bio-label::after {
        display: none;
    }
}

/* Update media queries for skills section */
@media (max-width: 1200px) {
  
  .skill-card:nth-child(4) {
    grid-column: auto;
    max-width: 100%;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  
  .hero-content {
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
  }
  
  .hero-text {
    max-width: 700px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }

}

@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
  
  .skills-container {
    max-width: 1600px;
  }
  
  .hero-content {
    max-width: 1600px;
    gap: 80px;
  }
  
  .hero-text {
    max-width: 800px;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero p {
    font-size: 1.3rem;
    max-width: 90%;
  }
  
  .profile-circle {
    width: 340px;
    height: 340px;
  }
  
  .hero-buttons .btn {
    padding: 14px 28px;
    font-size: 1.1rem;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1800px;
  }
  
  .hero {
    padding: 180px 0 120px;
  }
  
  .hero-content {
    max-width: 1800px;
    gap: 100px;
  }
  
  .hero-text {
    max-width: 900px;
  }
  
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .hero p {
    font-size: 1.4rem;
    max-width: 85%;
  }
  
  .profile-circle {
    width: 380px;
    height: 380px;
  }
}

.dark-theme .footer {
  background-color: #0a0a1a;
}

.dark-theme .footer-description {
  color: #a0a0a0;
}

.dark-theme .skill-list li {
  background-color: rgba(255, 255, 255, 0.05);
}

/* CV Download Button */
.btn-secondary.cv-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.btn-secondary.cv-download:hover {
    background-color: var(--secondary-color-dark);
    transform: translateY(-3px);
}

.btn-secondary.cv-download i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn-secondary.cv-download:hover i {
    animation: bounce 0.8s ease infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    z-index: 99;
}

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

.scroll-to-top:hover {
    background-color: var(--accent-color-dark);
    transform: translateY(-5px);
}

.scroll-to-top i {
    font-size: 1.2rem;
}

.dash-line {
    position: relative;
    padding-bottom: 12px;
}

.dash-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-image: linear-gradient(to right, var(--accent-color) 50%, transparent 50%);
    background-size: 12px 2px;
    background-repeat: repeat-x;
}

.project-info h3.dash-line::after {
    width: 60px;
    background-image: linear-gradient(to right, var(--accent-color) 50%, transparent 50%);
    background-size: 12px 2px;
    background-repeat: repeat-x;
    left: 0;
    transform: none;
}

.project-card:hover .project-info h3.dash-line::after {
    width: 80px;
}

/* Contact Form Styles */
.contact-form .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3a86ff;
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.1);
}

.contact-form .error-input {
    border-color: #ff3a5e;
    background-color: rgba(255, 58, 94, 0.05);
}

.contact-form .error-message {
    color: #ff3a5e;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
}

.contact-form button {
    min-width: 150px;
}

.success-message {
    background-color: #e6f7e6;
    border-left: 4px solid #28a745;
    padding: 1.5rem;
    border-radius: 5px;
    text-align: center;
    margin-top: 1rem;
}

.success-message i {
    color: #28a745;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: #333;
    font-size: 1.1rem;
}

.btn-outline {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: white;
}

/* Force About Section Visibility */
section#about {
    min-height: 400px;
    margin: 0;
    padding: 80px 0;
    background-color: #f8f9fa;
} 