/* Light theme specific styles 
[data-theme="light"] .skill-heading
[data-theme="light"] .blog-card-tag
[data-theme="light"] .dialog-image
[data-theme="light"] .contact-section
data-theme="light"] .rn-btn.contact-btn
.neomorphic-card
animate
.hero-content
card-description
theme="light"] .card-description
Specificity: (0,2,0)
 {
[data-theme="light"] .rn-btn.contact-btn
[data-theme="dark"] .form-row





.dialog-image-container skill hover*/
/* Hero Content */
[data-theme="light"] .hero-content .tech-stack .tech-pill{

    border: 1px solid var(--main-color) !important;
    color: var(--main-color) !important;

}


/* 1. Tab buttons in resume section */
[data-theme="light"] .resume-section .tab-btn {
  background-color: #EEF2F7;
  /* 2. Minimalist box shadow */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .resume-section .tab-btn.active {
  /* 1. Active tab text color */
  color: var(--main-color);
  background-color: #FFFFFF;
  /* 2. Minimalist box shadow for active tab */
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
}

/* 3. Make skills content eye-catching */
[data-theme="light"] .skill-heading{
  color: #2a3b4c;
  font-weight: 600;
  font-size: 1.6rem;
  font-family: var(--heading-font);
}

/* Skill text color for light theme only */
[data-theme="light"] .skill-text {
  color: #334155;
}

[data-theme="light"] .resume-section .skills-content h3 {
  color: #333;
  font-weight: 600;
}

[data-theme="light"] .resume-section .skills-content p {
  color: #555;
}

[data-theme="light"] .resume-section .skills-content .progress-bar {
  background-color: rgba(77, 171, 247, 0.2);
}

[data-theme="light"] .resume-section .skills-content .progress {
  background-color: var(--main-color);
}

/* Education column timeline styling - NEW */
[data-theme="light"] .resume-section .education-column::before {
  background-color: #d1e2f7;
  opacity: 0.8;
  box-shadow: 0 0 8px rgba(77, 171, 247, 0.3);
}
[data-theme="light"] .resume-section .education-card:hover .education-card::before {
  background-color: var(--main-color) ;
}
[data-theme="light"]  .education-card::after, .experience-card::after{
  background-color: #d1e2f7;
}
/* Education card dot styling - NEW */
[data-theme="light"] .resume-section .education-card::before {
  background-color: #FFFFFF;
  border: 2px solid #d1e2f7;
  box-shadow: 0 0 0 4px rgba(77, 171, 247, 0.2);
}

/* Education card separator styling - NEW */
[data-theme="light"] .resume-section .separator-edu-card::after {
  background: linear-gradient(to right, transparent, var(--main-color), transparent);
  opacity: 0.3 !important;
}

/* Education card styles - UPDATED */
[data-theme="light"] .resume-section .education-card {
  background-color: #EEF2F7;
  border: 1px solid rgba(77, 171, 247, 0.2);
  border-left: 3px solid var(--main-color);
  border-top: 1px solid rgba(77, 171, 247, 0.3);
  border-radius: 8px;
  /* 2. Minimalist box shadow */
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* 4. Education card hover effect - UPDATED */
[data-theme="light"] .resume-section .education-card:hover {
  background-image: linear-gradient(to bottom, #FFFFFF, #EEF2F7);
  box-shadow: 0px 5px 15px rgba(77, 171, 247, 0.15);
  border-left: 3px solid var(--main-color);
}
[data-theme="light"]   .education-card:hover::before, 
.experience-card:hover::before {
  background-color: #3b82f6;
  border: 2px solid #d1e2f7 !important;
}
/* 3. Make education card text eye-catching - UPDATED */
[data-theme="light"] .resume-section .education-card h3 {
  color: #333;
  font-weight: 600;
}

[data-theme="light"] .resume-section .education-card h4 {
  color: #444;
  font-weight: 500;
}

[data-theme="light"] .resume-section .education-card p {
  color: #555;
  line-height: 1.6;
}

[data-theme="light"] .resume-section .education-card .year {
  color: var(--main-color);
  font-weight: 500;
}

[data-theme="light"] .resume-section .education-card .institution {
  color: #4a4a4a;
  font-style: italic;
}

/* 5. Grade badge styling */
[data-theme="light"] .resume-section .grade-badge {
  background-color: #FFFFFF;
  color: var(--main-color);
  box-shadow: 0px 2px 5px rgba(77, 171, 247, 0.2);
  border: 1px solid rgba(77, 171, 247, 0.1);
  font-weight: 500;
}

/* Blog Card Styling - NEW */
/* 1. Make blog-card text content eye-catching */
[data-theme="light"] .blog-section {
  background-color: #EEF2F7;
}

[data-theme="light"] .blog-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(77, 171, 247, 0.08);
  /* 2. Minimalist shadow */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

[data-theme="light"] .blog-card:hover {
  /* 3. Modern touch on hover */
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(77, 171, 247, 0.12);
  border-color: rgba(77, 171, 247, 0.2);
}

[data-theme="light"] .blog-card-content {
  padding: 1.75rem;
}

[data-theme="light"] .blog-card-title {
  color: #1e293b;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

[data-theme="light"] .blog-card-title:hover {
  color: var(--main-color);
}

[data-theme="light"] .blog-card-tag {
  color: var(--main-color);
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background-color: rgba(77, 171, 247, 0.08);
}

[data-theme="light"] .blog-card-read-time {
  color: #666;
  font-weight: 500;
}

[data-theme="light"] .blog-card-read-time svg {
  color: var(--main-color);
}

/* Dialog styling - NEW */
[data-theme="light"] .dialog-overlay {
  background-color: rgba(10, 20, 40, 0.75);
  backdrop-filter: blur(5px);
}

/* 2. Dialog content redesign - Minimalist style */
[data-theme="light"] .dialog-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(230, 235, 240, 0.8);
  overflow-y: hidden;
  max-height: 85vh;
  transition: all 0.3s ease;
}

/* Dialog body */
[data-theme="light"] .dialog-body {
  /* 5. Add 2rem space from header */
  margin-top: 2rem;
  overflow-y: auto;
  max-height: calc(85vh - 100px);
  /* Hide scrollbar for Chrome, Safari and Opera */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
[data-theme="light"] .dialog-body::-webkit-scrollbar {
  display: none;
}

/* 4. Stunning close button */
[data-theme="light"] .dialog-close-btn {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  z-index: 60;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  color: #333;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(77, 171, 247, 0.1);
}

[data-theme="light"] .dialog-close-btn:hover {
  background-color: var(--main-color);
  color: white;
  transform: rotate(90deg);
  box-shadow: 0 6px 16px rgba(77, 171, 247, 0.25);
}

/* 6. Dialog content container */
[data-theme="light"] .dialog-content-container {
  padding: 2rem 3rem;
  background-color: #ffffff;
  position: relative;
}

[data-theme="light"] .dialog-content-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, var(--main-color), #4facfe);
  opacity: 0.8;
}

[data-theme="light"] .dialog-header {
  margin-bottom: 2rem;
  position: relative;
}

[data-theme="light"] .dialog-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 0.5rem;
}

[data-theme="light"] .dialog-title {
  font-family: var(--heading-font);
  font-size: 2.1rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

[data-theme="light"] .dialog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

[data-theme="light"] .dialog-category {
  background-color: rgba(77, 171, 247, 0.1);
  color: var(--main-color);
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

[data-theme="light"] .dialog-read-time {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

[data-theme="light"] .dialog-read-time svg {
  color: var(--main-color);
  margin-right: 0.5rem;
}

[data-theme="light"] .dialog-text {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2.5rem;
}

[data-theme="light"] .dialog-text p {
  margin-bottom: 1.5rem;
}

[data-theme="light"] .dialog-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin: 2rem 0 1rem;
}

[data-theme="light"] .dialog-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #444;
  margin: 1.75rem 0 0.75rem;
}

[data-theme="light"] .dialog-comment-section {
  border-top: 1px solid #e5e9f0;
  padding-top: 2.5rem;
  margin-top: 2.5rem;
}

[data-theme="light"] .comment-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2rem;
}

/* Comment form styling for light theme */
[data-theme="light"] .comment-form-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  [data-theme="light"] .comment-form-fields {
    grid-template-columns: repeat(2, 1fr);
  }
}

[data-theme="light"] .form-input,
[data-theme="light"] .form-textarea {
  width: 100%;
  background-color: #f8f9fc;
  border: 1px solid #e0e4ec;
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: #4a5568;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="light"] .form-input:focus,
[data-theme="light"] .form-textarea:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: 0 0 0 2px rgba(77, 171, 247, 0.15);
}

[data-theme="light"] .form-textarea {
  resize: vertical;
  height: 100%;
  min-height: 150px;
}

[data-theme="light"] .submit-btn {
  margin-top: 1rem;
  background-color: transparent;
  color: #4a5568;
  border: 1px solid rgba(77, 171, 247, 0.3);
  border-radius: 4px;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .submit-btn:hover {
  background-color: rgba(77, 171, 247, 0.05);
  border-color: var(--main-color);
  color: var(--main-color);
}

[data-theme="light"] .submit-btn:active {
  transform: scale(0.98);
}

[data-theme="light"] .submit-btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: width 0.3s ease;
}

[data-theme="light"] .submit-btn:hover::before {
  width: 100%;
}

[data-theme="light"] .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
}

/* Custom placeholder color for light theme */
[data-theme="light"] .form-input::placeholder,
[data-theme="light"] .form-textarea::placeholder {
  color: #a0aec0;
}

/* Enhance dark theme blog cards as well */
.blog-card {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  border-color: rgba(77, 171, 247, 0.2);
}

/* Card info name styling for both themes */
[data-theme="light"] .card-info .name {
  color: #1e293b;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

/* Section heading title enhancement for light theme */
[data-theme="light"] .section-heading .title {
  color: #1e293b;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* Dialog image fix to make it fully visible */
[data-theme="light"] .dialog-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0;
  padding-top: 0;
  max-height: none;
  object-fit: contain;
  object-position: center top;
}

/* Project title and date styling enhancement */
[data-theme="light"] .card-info .project-title {
  font-family: var(--helvetica-text);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--main-color);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

[data-theme="light"] .card-info .project-date {
  font-family: var(--description-font);
  font-size: 0.95rem;
  color: var(--text-color);
  opacity: 0.7;
  font-weight: 400;
  letter-spacing: 0.3px;
}

[data-theme="light"] .card-description .project-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--main-color);
  letter-spacing: 0.2px;
}

[data-theme="light"] .card-description .project-date {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5568;
  letter-spacing: 0.5px;
}

/* Media queries for responsive font sizes */
@media (max-width: 768px) {
  [data-theme="light"] .card-description .project-title {
    font-size: 1.3rem;
  }
  
  [data-theme="light"] .card-description .project-date {
    font-size: 0.85rem;
  }
  
  [data-theme="light"] .card-info .project-title {
    font-size: 1.2rem;
  }
  
  [data-theme="light"] .card-info .project-date {
    font-size: 0.85rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  [data-theme="light"] .card-description .project-title {
    font-size: 1.4rem;
  }
  
  [data-theme="light"] .card-description .project-date {
    font-size: 0.88rem;
  }
}

/* For small mobile devices */
@media (max-width: 480px) {
  [data-theme="light"] .card-description .project-title {
    font-size: 1.2rem;
  }
  
  [data-theme="light"] .card-description .project-date {
    font-size: 0.8rem;
  }
  
  [data-theme="light"] .card-info .project-title {
    font-size: 1.15rem;
  }
  
  [data-theme="light"] .card-info .project-date {
    font-size: 0.8rem;
  }
}

/* Mobile responsive styles for dialog content in light theme */
@media (max-width: 576px) {
  [data-theme="light"] .dialog-content {
    border-radius: 10px;
    max-height: 92vh;
    margin: 0 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }
  
  [data-theme="light"] .dialog-content-container {
    padding: 1.25rem 1.5rem;
  }
  
  [data-theme="light"] .dialog-title {
    font-size: 1.6rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }
  
  [data-theme="light"] .dialog-date {
    font-size: 0.8rem;
  }
  
  [data-theme="light"] .dialog-category {
    font-size: 0.7rem;
    padding: 0.35rem 0.8rem;
  }
  
  [data-theme="light"] .dialog-read-time {
    font-size: 0.8rem;
  }
  
  [data-theme="light"] .dialog-meta {
    gap: 0.8rem;
    margin-bottom: 1.25rem;
  }
  
  [data-theme="light"] .dialog-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  [data-theme="light"] .dialog-text h2 {
    font-size: 1.4rem;
    margin: 1.75rem 0 0.75rem;
  }
  
  [data-theme="light"] .dialog-text h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
  }
  
  [data-theme="light"] .dialog-text p {
    margin-bottom: 1.25rem;
  }
  
  [data-theme="light"] .dialog-image-container {
    height: 250px;
  }
  
  [data-theme="light"] .comment-title {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }
  
  [data-theme="light"] .form-input, 
  [data-theme="light"] .form-textarea {
    font-size: 0.9rem;
    padding: 0.75rem 0.9rem;
  }
  
  [data-theme="light"] .submit-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
  }
}

/* Fix blinking on pricing section order now button */
[data-theme="light"] .pricing-section .rn-btn {
  transition: all 0.3s ease;
  will-change: transform, background-color, color;
  backface-visibility: hidden;
  transform: translateZ(0);
}

[data-theme="light"] .pricing-section .rn-btn:hover {
  transform: translateY(-3px);
  background-color: var(--main-color);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(77, 171, 247, 0.3);
}

/* Neomorphic Contact Form for Light Theme */
[data-theme="light"] .contact-section {
  padding: 5rem 0;
  background-color: #EEF2F7;
}

[data-theme="light"] .contact-container {
  max-width: 100%;
  width: 100%;
  margin: 3rem auto 0;
  padding: 0 15px;
}

[data-theme="light"] .contact-form-wrapper {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 10px 10px 20px rgba(160, 170, 190, 0.2), 
              -10px -10px 20px rgba(255, 255, 255, 0.8);
  overflow: hidden;
  padding: 2.7rem 3rem 1rem 3rem;
  position: relative;
}

@media (max-width: 768px) {
  [data-theme="light"] .contact-form-wrapper {
    padding: 2rem;
  }
}

[data-theme="light"] .neomorphic-form {
  width: 100%;
}

[data-theme="light"] .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.7rem;
}

@media (max-width: 576px) {
  [data-theme="light"] .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
}

[data-theme="light"] .form-field {
  margin-bottom: 2.9rem;
}

[data-theme="light"] .form-field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #64748b;
  font-family: 'Montserrat', sans-serif;
}

[data-theme="light"] .input-wrapper {
  position: relative;
  border-radius: 4px;
  transition: all 0.3s ease;
  background-color: #f5f7fa;
  box-shadow: inset 2px 2px 5px rgba(160, 170, 190, 0.2),
              inset -2px -2px 5px rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .input-wrapper:focus-within {
  box-shadow: inset 2px 2px 5px rgba(160, 170, 190, 0.2),
              inset -2px -2px 5px rgba(255, 255, 255, 0.7),
              0 0 0 2px rgba(77, 171, 247, 0.2);
}

[data-theme="light"] .input-wrapper input,
[data-theme="light"] .input-wrapper textarea {
  width: 100%;
  background-color:  #EEF2F7;
  border: none;
  color: #4a5568;
  padding: 0.85rem 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

[data-theme="light"] .input-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

[data-theme="light"] .input-wrapper input::placeholder,
[data-theme="light"] .input-wrapper textarea::placeholder {
  color: #a0aec0;
}

/* Remove textarea resize handle in contact section */
[data-theme="light"] .contact-section textarea {
  resize: none;
}

[data-theme="light"] .neomorphic-form .rn-btn{
  background-color: #ffffff;
  box-shadow:none !important;
}

/* Contact Form Button Style */
[data-theme="light"] .rn-btn.contact-btn {
  background-color: #ffffff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  transition: all 0.3s ease;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .rn-btn.contact-btn:hover {
  background-color: var(--main-color) !important;
  color: #ffffff;
}

[data-theme="light"] .neomorphic-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(145deg, #ffffff, #f0f0f6);
  border: none;
  border-radius: 8px;
  color: #ff2c55;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 4px 4px 8px rgba(160, 170, 190, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  width: auto;
  margin-top: 0.5rem;
}

[data-theme="light"] .neomorphic-button:hover {
  box-shadow: 5px 5px 10px rgba(160, 170, 190, 0.25);
  transform: translateY(-2px);
}

[data-theme="light"] .neomorphic-button:active {
  transform: translateY(0);
  box-shadow: inset 2px 2px 4px rgba(160, 170, 190, 0.2);
}

[data-theme="light"] .neomorphic-button .arrow {
  margin-left: 0.5rem;
  stroke: #ff2c55;
  transition: transform 0.3s ease;
}

[data-theme="light"] .neomorphic-button:hover .arrow {
  transform: translateX(3px);
}

/* Neomorphic Contact Card for Light Theme */
[data-theme="light"] .contact-card-wrapper {
  margin-bottom: 3rem;
  height: 100%;
}

[data-theme="light"] .neomorphic-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 10px 10px 20px rgba(160, 170, 190, 0.2), 
              -10px -10px 20px rgba(255, 255, 255, 0.8);
  overflow: hidden;
  padding: 1rem;
  position: relative;
  text-align: left;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

[data-theme="light"] .card-image-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 6px 15px rgba(160, 170, 190, 0.2);
}

[data-theme="light"] .card-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

[data-theme="light"] .card-image:hover {
  transform: scale(1.03);
}

[data-theme="light"] .card-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0.75rem 0 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

[data-theme="light"] .card-title {
  font-size: 1rem;
  font-weight: 500;
  color: #64748b;
  margin: 0 0 1rem;
  font-family: 'Poppins', sans-serif;
}

[data-theme="light"] .card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  font-family: 'Poppins', sans-serif;
}

[data-theme="light"] .card-contact-info {
  margin-bottom: 1.5rem;
}

[data-theme="light"] .contact-item {
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

[data-theme="light"] .contact-item .label {
  font-size: 0.9rem;
  color: #64748b;
  margin-right: 0.5rem;
}

[data-theme="light"] .contact-item .value {
  font-size: 0.95rem;
  color: #3182ce;
  text-decoration: none;
  transition: color 0.2s ease;
}

[data-theme="light"] .contact-item .value:hover {
  color: #4299e1;
}

[data-theme="light"] .social-heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  color: #64748b;
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

[data-theme="light"] .social-buttons {
  display: flex;
  justify-content: left;
  gap: 0.8rem;
}

[data-theme="light"] .social-button {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 6px;
  color: #64748b;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 3px 3px 8px rgba(160, 170, 190, 0.25),
              inset 1px 1px 1px rgba(255, 255, 255, 0.9);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

[data-theme="light"] .social-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
  transition: all 0.3s ease;
}

[data-theme="light"] .social-button:hover {
  background: #ffffff;
  color: var(--main-color);
  transform: translateY(-2px);
  box-shadow: 4px 4px 10px rgba(160, 170, 190, 0.3),
              inset 1px 1px 1px rgba(255, 255, 255, 1);
}

[data-theme="light"] .social-button:hover:before {
  background: rgba(var(--main-color-rgb), 0.05);
}

[data-theme="light"] .social-button:active {
  transform: translateY(0);
  box-shadow: inset 2px 2px 5px rgba(160, 170, 190, 0.3),
              inset -1px -1px 3px rgba(255, 255, 255, 0.7);
}

@media (min-width: 992px) {
  [data-theme="light"] .contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: stretch;
  }
}
