/* Base Styles */
:root {
  --primary-color: #7C3AED; /* Rich purple */
  --secondary-color: #2DD4BF; /* Vibrant teal */
  --accent-color: #F59E0B; /* Warm amber */
  --text-color: #1F2937; /* Dark gray for text */
  --light-bg: #F0FDFA; /* Very light teal */
  --white: #ffffff;
  --gradient-1: linear-gradient(135deg, #7C3AED 0%, #2DD4BF 100%);
  --gradient-2: linear-gradient(45deg, #F59E0B 0%, #7C3AED 100%);
  --shadow-color: rgba(124, 58, 237, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

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

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

.logo img {
  height: 40px;
}

.logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.nav-links .menu-item {
  position: relative;
  padding: 1rem 0;
}

.nav-links .menu-item > a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links .menu-item > a:after {
  content: '▾';
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.nav-links .menu-item:hover > a:after {
  transform: rotate(180deg);
}

.nav-links .menu-item:hover > a {
  color: var(--primary-color);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  padding: 0.5rem 0;
}

.menu-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.7rem 1.5rem;
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary-color);
  padding-left: 2rem;
}

.appointment-btn {
  background: var(--gradient-1);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.appointment-btn:hover {
  background: var(--gradient-2);
  transform: translateY(-2px);
}

/* Enhanced Mobile Menu Button */
.mobile-menu-btn {
  display: none; /* Hidden by default, shown in mobile */
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1000;
  margin-left: auto;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-btn span:nth-child(1) {
  top: 0;
}

.mobile-menu-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.mobile-menu-btn span:nth-child(3) {
  bottom: 0;
}

/* Active state animations */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-100%);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 40%;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: auto;
    background: var(--white);
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
  }

  .nav-links.active {
    top: 70px; /* Height of the navbar */
  }

  .menu-item {
    width: 100%;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    display: none;
  }

  .menu-item.active .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"%3E%3Cdefs%3E%3ClinearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"%3E%3Cstop offset="0%" style="stop-color:%237C3AED;stop-opacity:0.2" /%3E%3Cstop offset="100%" style="stop-color:%232DD4BF;stop-opacity:0.2" /%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width="100%" height="100%" fill="url(%23grad)"%3E%3C/rect%3E%3Cg transform="translate(960,540)"%3E%3Ccircle r="300" fill="none" stroke="%237C3AED" stroke-width="2" stroke-opacity="0.3" /%3E%3Ccircle r="250" fill="none" stroke="%232DD4BF" stroke-width="2" stroke-opacity="0.3" /%3E%3Ccircle r="200" fill="none" stroke="%23F59E0B" stroke-width="2" stroke-opacity="0.3" /%3E%3C/g%3E%3C/svg%3E'), url('img/banner.jpg');
  background-size: cover, cover;
  background-position: center, center;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-1);
  opacity: 0.1;
  transform: skewY(-6deg);
}

.hero-content {
  max-width: 800px;
  z-index: 1;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  background: linear-gradient(120deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.hero p {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.cta-primary, .cta-secondary {
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.cta-primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: 0 4px 15px var(--shadow-color);
}

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

.cta-secondary:hover {
  background: var(--gradient-1);
  color: var(--white);
  border: none;
}

.cta-primary:hover, .cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 5rem 2rem;
  background: var(--light-bg);
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}

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

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(124, 58, 237, 0.1);
  box-shadow: 0 4px 20px var(--shadow-color);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
  border-radius: inherit;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  background: var(--gradient-1);
  transform: translateY(-10px);
}

.service-card:hover i,
.service-card:hover h3,
.service-card:hover p {
  color: var(--white);
}

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

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

/* About Section */
.about {
  padding: 5rem 2rem;
  background: var(--white);
}

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

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.team-carousel {
  margin-top: 3rem;
  /* Carousel styles will be added in JavaScript */
}

/* Contact Section */
.contact {
  padding: 5rem 2rem;
  background: var(--light-bg);
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  background: var(--light-bg);
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input[type="date"] {
  padding: 0.85rem 1rem;
  color: var(--text-color);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.05);
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  padding: 0 0.5rem;
  background: transparent;
  transition: var(--transition);
  color: #666;
  pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not(:placeholder-shown) + label,
.form-group input[type="date"]:not(:placeholder-shown) + label {
  transform: translateY(-2rem) translateX(-0.5rem);
  font-size: 0.8rem;
  color: var(--primary-color);
  background: var(--white);
  padding: 0 0.5rem;
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.submit-btn,
.whatsapp-btn {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.submit-btn {
  background: var(--gradient-1);
  color: var(--white);
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white);
}

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

.whatsapp-btn:hover {
  background: #128C7E;
}

.contact-info {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  transition: var(--transition);
}

.info-item:hover {
  background: var(--light-bg);
  transform: translateX(5px);
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 50%;
}

.whatsapp-info {
  background: rgba(37, 211, 102, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.whatsapp-info i {
  background: rgba(37, 211, 102, 0.2);
  color: #25D366;
}

/* Footer */
.footer {
  background: var(--gradient-1);
  color: var(--white);
  padding: 4rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-section h3 {
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

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

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

.footer-section a {
  display: block;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

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

.newsletter-form {
  display: none;
}

/* Updated Instagram Section Styles */
.instagram-info {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 1.5rem !important;
  border-radius: 10px;
  margin-top: 1rem;
  transition: var(--transition);
}

.instagram-info i {
  background: transparent !important;
  color: white !important;
  font-size: 1.8rem;
}

.instagram-info h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.instagram-profile-link {
  display: block;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  margin: 0.5rem 0;
  transition: var(--transition);
}

.instagram-profile-link:hover {
  transform: scale(1.05);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.instagram-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.instagram-info:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.instagram-follow {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  color: white;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.instagram-follow:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.instagram-follow i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.instagram-link {
  display: block;
  color: white !important;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  margin: 0.5rem 0;
  transition: var(--transition);
}

.instagram-link:hover {
  transform: scale(1.05);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.instagram-cta {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

.footer-section .instagram-follow {
  display: none;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}

.modal-content {
  background: var(--white);
  max-width: 500px;
  margin: 50px auto;
  padding: 2rem;
  border-radius: 10px;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .menu-item {
    width: 100%;
  }

  .dropdown {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    display: none;
  }

  .menu-item.active .dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }

  .button-group {
    flex-direction: column;
  }
  
  .button-group button {
    width: 100%;
  }
  
  .instagram-info {
    padding: 1.2rem !important;
  }
  
  .instagram-profile-link {
    font-size: 1.1rem;
  }
  
  .instagram-tagline {
    font-size: 0.8rem;
  }
}

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

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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

.animated-gradient {
  background: var(--gradient-1);
  background-size: 200% 200%;
  animation: gradientFlow 5s ease infinite;
}

/* Additional modern effects */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.doctors-title {
  margin-top: 4rem;
  color: var(--secondary-color);
}

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

.doctor-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
}

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

.doctor-image {
  height: 250px;
  position: relative;
  background: var(--light-bg);
  overflow: hidden;
}

.doctor-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
}

.doctor-info {
  padding: 2rem;
}

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

.doctor-specialty {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 1rem;
}

.doctor-info p {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.doctor-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--light-bg);
  border-radius: 10px;
}

.doctor-credentials span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-color);
  font-size: 0.9rem;
}

.doctor-credentials i {
  color: var(--primary-color);
}

.doctor-schedule {
  background: var(--light-bg);
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.doctor-schedule h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-grid span {
  font-size: 0.9rem;
  color: var(--text-color);
}

.book-doctor-btn {
  width: 100%;
  padding: 1rem;
  background: var(--gradient-1);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.book-doctor-btn:hover {
  background: var(--gradient-2);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .doctors-grid {
    grid-template-columns: 1fr;
    padding: 0.5rem;
  }
  
  .doctor-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* Web Development Credits Section */
.web-dev-credits {
 
  padding: 1rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.web-dev-credits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(124, 58, 237, 0.1) 0%, rgba(45, 212, 191, 0.1) 100%);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.web-dev-credits .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, #7C3AED 0%, #2DD4BF 100%);
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.web-dev-credits p {
  color: var(--white);
  font-size: 0.9rem;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.web-dev-credits a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
}

.web-dev-credits a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.web-dev-credits .web-plans-logo {
  height: 20px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.web-dev-credits a:hover .web-plans-logo {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .web-dev-credits .container {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
  }
  
  .web-dev-credits p {
    font-size: 0.8rem;
  }
  
  .web-dev-credits a {
    padding: 0.2rem 0.8rem;
  }
}