/* Tianshi Saytı üçün Neon Dizaynlı CSS */

:root {
  --primary: #00ffcc;
  --background-start: #0f2027;
  --background-end: #2c5364;
  --text: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, var(--background-start), var(--background-end));
  color: var(--text);
  line-height: 1.6;
}

/* Header */
header {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  padding: 20px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color: var(--primary);
  font-size: 2rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li a {
  color: var(--text);
  text-decoration: none;
  font-weight: bold;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary);
  transition: width 0.3s ease-in-out;
}

nav ul li a:hover::after {
  width: 100%;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px;
  border-radius: 5px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 5px 0;
}

.dropdown-menu a {
  color: var(--primary);
}

/* Sections */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section h3 {
  color: var(--primary);
  text-shadow: 0 0 8px var(--primary);
  margin-bottom: 30px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 255, 204, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0, 255, 204, 0.6);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.card h4 {
  margin-bottom: 10px;
}

button, .btn {
  background-color: var(--primary);
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  margin: 5px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
  background-color: #00e6b8;
}

/* WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  z-index: 1001;
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.4);
  color: #ccc;
  padding: 40px 0;
  text-align: center;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 5px 0;
  color: var(--text);
}

.footer-column ul li img {
  width: 32px;
  height: 32px;
  margin-right: 5px;
  vertical-align: middle;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #999;
}

.social-icons img {
  width: 30px;
  height: 30px;
  margin: 5px;
  filter: drop-shadow(0 0 4px #00ffcc);
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Əlavə düymələr */
.view-all-btn, .see-all-btn {
  display: inline-block;
  margin: 30px auto 0 auto;
  padding: 12px 30px;
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover, .see-all-btn:hover {
  background: #00d6a3;
}
.hero .container {
  text-align: center;
}
.disease-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
  padding-top: 20px;
  max-width: 800px;
  margin: auto;
}

.disease-grid button {
  background-color: var(--primary);
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.disease-grid button:hover {
  background-color: #00e6b8;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  max-width: 1000px;
  margin: auto;
}
.experts-section {
  padding: 60px 20px;
  text-align: center;
}
.experts-section h2 {
  color: var(--primary);
  text-shadow: 0 0 8px var(--primary);
  margin-bottom: 40px;
}
.experts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.expert-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 255, 204, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0, 255, 204, 0.6);
}
.expert-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  margin-bottom: 10px;
}
.expert-name {
  font-weight: bold;
  color: #00ffcc;
  margin-bottom: 6px;
}
.expert-specialty {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 10px;
}
.info-btn {
  background-color: var(--primary);
  color: #000;
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.info-btn:hover {
  background-color: #00e6b8;
}
.contact-section {
  padding: 60px 20px;
  text-align: center;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.contact-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 10px;
  width: 220px;
  padding: 20px;
  box-shadow: 0 0 12px rgba(0, 255, 204, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0, 255, 204, 0.6);
}

.contact-card h3 {
  margin-bottom: 10px;
  color: #00ffcc;
}

.contact-card a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
}

.contact-card a:hover {
  text-decoration: underline;
}
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.review-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 255, 204, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0, 255, 204, 0.6);
}

.review-name {
  font-weight: bold;
  color: #00ffcc;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 10px;
}

.see-all-wrapper {
  text-align: center;
  margin-top: 40px;
}

.see-all-btn {
  background-color: var(--primary);
  color: #000;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.see-all-btn:hover {
  background-color: #00e6b8;
}
.contact-section {
  padding: 10px 10px;
  margin-top: 50px;   /* yuxarıya yaxınlaşdırmaq üçün */
  margin-bottom: 0%; /* aşağıya boşluq yaratmaq üçün */
  text-align: center;
}
.contact-section {
  padding: 0px 0px;
  margin-top: 80px;
  margin-bottom: 0px; /* footer ilə araya boşluq üçün */
  text-align: center;
}

.contact-grid {
  margin-top: 20px; /* kartların başlığa yaxınlaşması üçün */
  margin-bottom: 80px; /* kartlarla footer arasında məsafə üçün */
}
.disease-btn {
  background-color: #00ffcc;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 280px;
  max-width: 100%;
  text-align: center;
}

.disease-btn:hover {
  background-color: #00e6b8;
  box-shadow: 0 0 10px #00ffcc;
  transform: scale(1.03);
}

.testimonial-section {
  padding: 50px 20px;
  background: linear-gradient(to right, #0f2027, #2c5364);
  text-align: center;
  color: #00ffcc;
}

.testimonial-section h3 {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 1.8rem;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* kartlar arasındakı məsafə */
}

.testimonial-card {
  background-color: rgba(0, 255, 204, 0.1);
  border-radius: 12px;
  padding: 20px;
  width: 260px; /* kart eni */
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
  color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card p {
  font-style: italic;
  margin-top: 15px;
  line-height: 1.4;
}

.testimonial-card strong {
  font-weight: 700;
  color: #00ffcc;
  font-size: 1.1rem;
}

/* Mobil uyğunluq */
@media (max-width: 768px) {
  .testimonial-grid {
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-card {
    width: 100%;
  }
}
.testimonial-card {
  /* Mövcud tərtibatlar */
  background-color: rgba(0, 255, 204, 0.1);
  border-radius: 12px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
  color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;

  /* Yeni əlavə - hover animasiyası */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.7);
}
html {
  scroll-behavior: smooth;
}



.experts-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  color: #00ffcc;
}

.experts-container h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-shadow: 0 0 8px #00ffcc;
}



.card {
  background-color: rgba(0, 255, 204, 0.1);
  border-radius: 12px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 0 12px rgba(0, 255, 204, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  background-color: rgba(0, 255, 204, 0.25);
  box-shadow: 0 0 30px rgba(0, 255, 204, 0.7);
  transform: translateY(-10px);
}

.card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  border: 3px solid #00ffcc;
}

.card h4 {
  margin-bottom: 8px;
  font-weight: bold;
  color: #00ffcc;
}

.card p {
  margin-bottom: 15px;
  color: #ccffee;
  font-size: 0.9rem;
}

.btn {
  background-color: #00b37a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #00995a;
}
.experts-clean {
  padding: 60px 20px;
  text-align: center;
}

.experts-clean h3 {
  color: var(--primary);
  text-shadow: 0 0 8px var(--primary);
  margin-bottom: 30px;
}

.experts-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.expert-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 255, 204, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.6);
}

.expert-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  margin-bottom: 10px;
}

.expert-card h4 {
  font-weight: bold;
  color: #00ffcc;
  margin-bottom: 8px;
}

.expert-card p {
  color: #ccc;
  font-size: 0.95rem;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-top: 40px;
}

.social-icons a i {
  font-size: 40px;
  color: #00ffcc;
  text-shadow: 0 0 10px #00ffcc;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.social-icons a i:hover {
  transform: scale(1.3) rotate(10deg);
  color: #ffffff;
  text-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc;
  animation: bounce 0.5s;
}

@keyframes bounce {
  0%   { transform: scale(1.3) translateY(0); }
  50%  { transform: scale(1.3) translateY(-8px); }
  100% { transform: scale(1.3) translateY(0); }
}
.experts-section {
  padding: 60px 20px;
  text-align: center;
}

.experts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.expert-card {
  background-color: rgba(0, 255, 204, 0.1);
  border-radius: 12px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0, 255, 204, 0.6);
}

.expert-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  margin-bottom: 10px;
}

.expert-name {
  font-weight: bold;
  color: #00ffcc;
  margin-bottom: 6px;
}

.expert-specialty {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 10px;
}

.info-btn {
  background-color: var(--primary);
  color: #000;
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.info-btn:hover {
  background-color: #00e6b8;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1400px;
  margin: 30px auto;
  padding: 0 20px;
}

.contact-card {
  flex: 1 1 150px;
  max-width: 200px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 12px rgba(0, 255, 204, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  transform: scale(1.01); /* ← BURANI ƏLAVƏ ET */
}



.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0, 255, 204, 0.6);
}

.contact-card h3 {
  color: #00ffcc;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-card i {
  margin-right: 8px;
  color: #00ffcc;
}

.contact-card a {
  color: #00ffcc;
  font-weight: bold;
  text-decoration: none;
}

/* ƏLAQƏ KARTLARINI YAN-YANA ORTALAMAQ ÜÇÜN */
.contact-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 20px !important;
  margin-top: 30px !important;
  margin-bottom: 60px;
}

.contact-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 10px;
  width: 180px !important;  /* daha çoxuna yer açmaq üçün */
  padding: 20px;
  box-shadow: 0 0 12px rgba(0, 255, 204, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
footer {
  background-color: rgba(0, 0, 0, 0.4);
  color: #ccc;
  padding: 40px 0;
  text-align: center;
  width: 100%;              /* Ekranın tam eni */
  margin: 0;
  position: relative;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  margin-top: 3%;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  padding: 40px 60px;
  box-sizing: border-box;.footer-grid {
  justify-content: center;
}


}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
  margin: 10px;
  
}

.footer-column h4 {
  color: var(--primary);
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 5px 0;
  color: var(--text);
}

.footer-column ul li img {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  vertical-align: middle;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #999;
  text-align: center;
  width: 100%;
}
  @media (max-width: 768px) {
      header {
        text-align: center;
        padding: 15px 0;
      }
      .loqo {
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        margin-bottom: 0 !important;
      }
      nav ul {
        flex-direction: column;
        gap: 10px;
      }
      .grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
      }
      .experts-grid,
      .reviews-grid,
      .contact-grid {
        flex-direction: column;
        align-items: center;
      }
      .card,
      .expert-card,
      .review-card,
      .contact-card {
        width: 90% !important;
        max-width: 300px;
      }
      .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px;
        padding: 20px;
      }
      .footer-column {
        width: 90% !important;
        max-width: 300px;
      }
      .dropdown-menu {
        position: static;
        text-align: left;
      }
      .hero h2 {
        font-size: 1.5rem;
        padding: 10px;
      }
      .view-all-btn,
      .see-all-btn {
        width: 90%;
      }
      .whatsapp-icon {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
      }
      .section {
        padding: 40px 10px;
      }
     
    }
    /* Mobil menyu düyməsi */
.mobile-menu-toggle {
  display: none;
  color: #888;
  font-weight: bold;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1.1rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Mobil görünüş üçün */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,255,204,0.3);
    border-radius: 8px;
    width: fit-content;
    margin: 10px auto;
    text-align: center;
  }

  nav ul {
    display: none;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  nav ul.active {
    display: flex;
  }
}
.product-details {
  list-style-type: disc;
  padding-left: 30px;
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
  color: #ccc; /* istəsən #fff və ya var(--text) */
  font-size: 1rem;
}

.product-details li {
  margin-bottom: 8px;
}
section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: left; /* ← bu hissəni əsas dəyişirik */
  color: #ccc;
  line-height: 1.8;
}
.product-details {
  list-style-type: disc;
  padding-left: 30px;
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  color: #ccc;
  font-size: 1rem;
  text-align: left;
}
.product-details li {
  margin-bottom: 8px;
}

/* ÜMUMİ KONTEYNER MƏRKƏZLƏMƏ */
section, footer {
  max-width: 2500px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* MÜTƏXƏSSİSLƏR BÖLMƏSİ */
.experts-section {
  text-align: center;
}
.experts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.expert-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,255,204,0.3);
  border-radius: 12px;
  padding: 20px;
  width: 260px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,255,204,0.1);
  transition: all 0.3s ease;
}
.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,255,204,0.6);
}
.expert-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid #00ffcc;
}
.expert-name {
  font-weight: bold;
  color: #00ffcc;
  margin-bottom: 5px;
}
.expert-specialty {
  color: #ccc;
  font-size: 0.95rem;
}

/* MÜŞTƏRİ RƏYLƏRİ */
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,255,204,0.3);
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,255,204,0.1);
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0,255,204,0.6);
}
.review-name {
  font-weight: bold;
  color: #00ffcc;
  margin-bottom: 10px;
}
.review-text {
  color: #ccc;
  font-size: 0.95rem;
}

/* ƏLAQƏ BÖLMƏSİ */
.contact-section {
  text-align: center;
}
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 10px;
  width: 220px; /* Əvvəl 220px idi — kiçiltmək üçün bu dəyəri azaldırıq */
  padding: 15px; /* Daha az boşluq */
  text-align: center;
  font-size: 0.85rem; /* Yazı ölçüsünü də bir az kiçiltmək olar */
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.1);
  transition: all 0.3s ease;
}

.contact-container {
  display: flex;
  flex-wrap: wrap; /* Sətirə sığmasa alt sətirə keçsin */
  justify-content: center; /* Ortalayır */
  gap: 20px; /* Aralarındakı boşluq */
  padding: 20px;
}
.contact-card {
  width: 200px; /* Bunu lazım gəlsə 180px-ə sal */
  padding: 12px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 18px rgba(0,255,204,0.6);
}
.contact-card h3 {
  color: #00ffcc;
  margin-bottom: 8px;
}
.contact-card a {
  color: #00ffcc;
  font-weight: bold;
  text-decoration: none;
}

footer {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Arxa fonun qalması üçün */
  padding: 60px 0 20px 0;
  margin: 0;
  box-sizing: border-box;
}

.footer-grid {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
  margin: 10px;
  color: #fff;
}

.footer-column h4 {
  color: #00ffcc;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 6px -5px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: underline;
  font-size: 0.95rem;
}

.footer-column ul li img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
}

.footer-bottom {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  margin-top: 40px;
}
