body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: white;
  color: black;
}

/* Reset some default margins */
body,
h1,
ul {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  padding-top: 70px;
  /* space for fixed header */
}

/* Fixed header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #87CEEB, #00BFFF);
  /* #66b2ff, #007bff */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Logo / Title */
.logo {
  font-weight: bold;
  font-size: 1.5em;
  color: black;
  text-decoration: none;
}

/* Desktop navigation */
/* ===== Navigation Bar Styling ===== */
nav {

  padding: 10px 20px;
  /* left for top/bottom and right for right/left */
  margin: 10px 20px;
  /* left for top/bottom and right for right/left */
}

/* Remove bullets, align items horizontally */
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

/* Navigation links */
nav ul li a {
  position: relative;
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding-bottom: 4px;
  /* space for underline */
  transition: color 0.3s ease;
  white-space: nowrap;
  /* Keep "About Us" on one line */
  z-index: 1;
  /* Ensure text is above underline */
}

/* Hover text color */
nav ul li a:hover {
  color: white;
}

/* Underline effect */
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: black;
  transition: width 0.3s ease;
  z-index: -1;
  /* Keep underline behind text */
}

/* Expand underline on hover */
nav ul li a:hover::after {
  width: 100%;
}




/* Mobile menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 60px;
  right: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu a {
  padding: 10px 20px;
  text-decoration: none;
  color: #0a74da;
  border-bottom: 1px solid #ddd;
}

.mobile-menu a:hover {
  background: #f0f0f0;
}



/* Heading Style */
h1#welcome {
  font-weight: bold;
  font-size: 3em;
  margin: 20px;
  text-shadow: none;
  color: #0a74da;
}

/* Responsive Rules */
@media (max-width: 768px) {
  nav ul {
    display: none;
    /* hide desktop menu on mobile */
  }

  .menu-toggle {
    display: flex;
    /* show menu button */
  }
}

.icon-btn {
  text-decoration: none;
}

/* Default: visible (for mobile) */
.mobile-icons {
  display: flex;
  /* or whatever layout you want */
  gap: 15px;
  align-items: center;
}

/* Hide on desktop */
@media (min-width: 768px) {
  .mobile-icons {
    display: none;
  }
}


/* Search Container */
.search-container {
  position: relative;
  width: 100%;
  max-width: 400px;
}

/* Search Input */
.search-container input {
  width: 100%;
  padding: 10px 40px 10px 40px;
  /* padding for icons */
  font-size: 16px;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
}

/* Search Button (magnifying glass) */
.search-container button.search-btn {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #333;
}

/* Clear Button (X) */
.search-container button.clear-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #999;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 10px;
  }

  .search-container {
    max-width: 300px;
  }
}

/* Search Button */
.search-btn {
  text-decoration: none;
  /* removes underline */
  color: inherit;
  /* keeps text/icon same color as surrounding text */
}

.search-btn:hover {
  color: #007bff;
  /* optional: hover color for the icon */
}

/* Working Search Button-Present */
#search-input {
  background-color: white;
  color: #888;
  /* custom color */
  border: none;
  padding-right: 55px;
  padding-left: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: text;
}


.banner-bg {
  background-image: url('');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  /* needed for the overlay */
  color: black;
  /* ensures text stays normal */
  z-index: 0;
}

/* Overlay for shade */
.banner-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* shade darkness 0.25 */
  z-index: 0;
  /* keep overlay behind text */
}

/* Make sure text is above the overlay */
.banner-bg>* {
  position: relative;
  z-index: 1;
}

.home-banner {
  text-align: center;
}

#scrollBtn {
  background-color: #007bff;
  color: #f0f0f0;
  padding: 10px;
  margin-top: 2px;
  border: none;
  cursor: pointer;
}

#scrollBtn:hover {
  background-color: #f0f0f0;
  color: black;
}

.info-card {
  background: linear-gradient(to right, #87CEEB, #00BFFF);
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.10);
  border-radius: 16px;
  padding: 32px 28px;
  min-width: 320px;
  max-width: 400px;
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: center;
  margin-bottom: 20px;
}

.info-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 3px 8px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px) scale(1.03);
}

.choose-sanwa {
  text-align: center;
  font-weight: bolder;
  font-size: 3em;
}

.sanwa-para {
  text-align: center;
  color: grey;
  font-size: 2em;
}

.home-section {
  background-color: #007bff;
  padding-top: 5rem;
  padding-bottom: 5rem;
  color: white;
  font-size: larger;
  text-align: center;
}

.contact-button {
  background-color: #ffffff;
  color: black;
  padding: 10px;
  margin-top: 2px;
  border: none;
  cursor: pointer;
}

.contact-button:hover {
  background-color: #66b2ff;
  color: white;
}



.welcome {
  text-align: center;
  font-size: 2em;
  margin-top: 40px;
  text-decoration: underline;
  font-weight: bold;
}

.ivf-culture-media {
  text-align: center;
  font-size: 2em;
  margin-top: 40px;
  text-decoration: underline;
  font-weight: bold;
}

.ivf-disposable {
  text-align: center;
  font-size: 2em;
  margin-top: 40px;
  text-decoration: underline;
  font-weight: bold;
}

.surgical-disposable {
  text-align: center;
  font-size: 2em;
  margin-top: 40px;
  text-decoration: underline;
  font-weight: bold;
}

.lab {
  text-align: center;
  font-size: 2em;
  margin-top: 40px;
  text-decoration: underline;
  font-weight: bold;
}

/* Heading Style */
h1#welcome {
  font-weight: bold;
  font-size: 3em;
  margin: 20px;
  text-shadow: none;
  color: #0a74da;
}


.banner-bg {
  background-image: url('../images/Lab-Theme.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  /* needed for the overlay */
  color: black;
  /* ensures text stays normal */
  z-index: 0;
}

/* Overlay for shade */
.banner-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* shade darkness 0.25 */
  z-index: 0;
  /* keep overlay behind text */
}

/* Make sure text is above the overlay */
.banner-bg>* {
  position: relative;
  z-index: 1;
}

.home-banner {
  text-align: center;
}

/* Color for Banner Buttons 
.icon-home { color: white; }
#ivfCultureMedia,
#ivfDisposable,
#surgicalDisposable,
#scrollLab {
  background-color: #007bff;
  color: white;
}

/* Button hover colors (keep as is) 
#ivfCultureMedia:hover,
#ivfDisposable:hover,
#surgicalDisposable:hover,
#scrollLab:hover {
  background-color: #fdfeff;
  color: black; 
} */

/* Button in a row */
#ivfCultureMedia,
#ivfDisposable,
#surgicalDisposable,
#lab,
#scrollLab {
  border: none;
  padding: 10px;
  margin-top: 3px;
  flex-direction: row;
  cursor: pointer;
}

/* Styles for ivf buttons */
#ivfCultureMedia {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px;
  margin-top: 3px;
  cursor: pointer;
}

#ivfCultureMedia:hover {
  background-color: #fdfeff;
  color: black;
}

#ivfDisposable {
  background-color: #fdfeff;
  color: black;
  border: none;
  padding: 10px;
  margin-top: 3px;
  cursor: pointer;
}

#ivfDisposable:hover {
  background-color: #007bff;
  color: white;
}

/* Styles for lab buttons */


#lab {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px;
  margin-top: 3px;
  cursor: pointer;
}

#lab:hover {
  background-color: #fdfeff;
  color: black;
}

#lab-consumables {
  background-color: #fdfeff;
  color: black;
  border: none;
  padding: 10px;
  margin-top: 3px;
  cursor: pointer;
}

#lab-consumables:hover {
  background-color: #007bff;
  color: white;
}

/*
#scrollBtn {
  background-color: #007bff;
  color:#f0f0f0;
  padding: 10px;
  margin-top: 2px;
  border: none;
  cursor: pointer;
}

#scrollBtn:hover {
  background-color: #f0f0f0;
  color: black;
}
*/


.information-card {
  width: 90%;
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.10);
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: center;
}


/* .information-card {
    margin: 0 auto 20px auto;  /* center horizontally 
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.10);
    border-radius: 16px;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    transition: box-shadow 0.3s, transform 0.3s;
    text-align: center;
}*/


.inforamtion-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 3px 8px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px) scale(1.03);
}

.info-card {
  align-items: center;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.10);
  border-radius: 16px;
  padding: 32px 28px;
  min-width: 320px;
  max-width: 400px;
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: center;
  margin-bottom: 20px;
}

.info-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 3px 8px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px) scale(1.03);
}

.welcome {
  text-align: center;
  font-size: 2em;
  margin-top: 40px;
  text-decoration: underline;
  font-weight: bold;
}

.page-description {
  text-align: center;
  font-family: cursive, serif, sans-serif, monospace;
  font-size: larger;
  color: steelblue;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* important: hides overflow when image scales */
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: auto;
  /*150px*/
  object-fit: cover;
  transition: transform 0.3s ease;
  /* Smooth zoom */
}

.card img:hover {
  transform: scale(1.2);
}


/* .card:hover img {
      transform: scale(1.2);
    }*/

.card-body {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.1em;
  margin: 0 0 8px;
  color: #333;
}

.card-desc {
  flex: 1;
  font-size: 0.9em;
  color: #666;
}

.price {
  margin: 10px 0;
  font-weight: bold;
  color: #000;
}

.btn {
  background-color: #00BFFF;
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
  margin-top: 10px;
}

.btn:hover {
  background-color: #008ecf;
}

/* .quantity-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}*/

.welcome {
  text-align: center;
  font-size: 2em;
  margin-top: 40px;
  text-decoration: underline;
  font-weight: bold;
}

.page-description {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: larger;
  color: black;
  margin: 20px auto;
  font: bold 1.2em Arial, sans-serif;
}

.our-experienc {
  background-color: #00BFFF;
  color: white;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.5em;
  margin-top: 40px;
  font-weight: bold;
}

.our-experience-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px;
}

.our-experience-item {
  background-color: #f0f0f0;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.short-description {
  background-color: #00BFFF;
  color: white;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.5em;
  margin-top: 40px;
  font-weight: bold;
  align-items: center;
}

.product-1 {
  height: 200px;
  width: 150px;
  background-color: black;
  margin: 20px auto;
  text-align: center;
  line-height: 200px;
  font-weight: bold;
}

/* Visually hidden label for accessibility */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.info-card {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.10);
  border-radius: 16px;
  padding: 32px 28px;
  min-width: 320px;
  max-width: 400px;
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: center;
  margin-bottom: 20px;
}

.info-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 3px 8px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px) scale(1.03);
}

/*======================= AI  =================================*/
.ai {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-weight: bold;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(to right, #87CEEB, #00BFFF);
  color: white;
  border: none;
  border-radius: 50%;
  /* default = circle (mobile) */
  width: 60px;
  height: 60px;
  font-size: 1.2em;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

.ai:hover {
  background: linear-gradient(to right, #66b2ff, #007bff);
  color: black;
}

/* On larger screens (desktop), make it rectangular */
@media screen and (min-width: 768px) {
  .ai {
    border-radius: 12px;
    /* rectangle with rounded corners */
    width: 140px;
    /* wider */
    height: 50px;
    /* shorter */
    font-size: 1em;
  }
}


/* ================== Chatbot Panel ================== */
.chatbot {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 380px;
  /* bigger than small popup */
  height: 500px;
  background: #fff;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  flex-direction: column;
  z-index: 1001;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Header */
.chat-header {
  background: linear-gradient(to right, #87CEEB, #00BFFF);
  color: white;
  padding: 14px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: white;
  cursor: pointer;
}

/* AI Heading */
.ai-assistant {
  font-weight: bold;
}

/* Messages */
.chat-messages {
  flex: 1;
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  max-width: 80%;
  /* keep bubble from stretching full width */
  padding: 10px 14px;
  margin: 6px;
  border-radius: 12px;
  font-size: 0.95em;
  line-height: 1.4;
  word-wrap: break-word;
  /* ✅ breaks long words */
  overflow-wrap: break-word;
  /* ✅ ensures wrapping in modern browsers */
  white-space: pre-wrap;
  /* ✅ keeps spacing and wraps */
}

.message.user {
  background: #87CEEB;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.message.bot {
  background: #f1f0f0;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}




/* Input */
.chat-input {
  display: flex;
  border-top: 1px solid #ddd;
}

.chat-input input {
  flex: 1;
  border: none;
  padding: 12px;
  font-size: 14px;
  outline: none;
}

.chat-input button {
  background: linear-gradient(to right, #87CEEB, #00BFFF);
  color: white;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  font-size: 16px;
}


/* ✅ Mobile Responsive Fix for Chatbot Input */
@media (max-width: 480px) {
  .chatbot {
    width: 95%;
    /* make chatbot narrower */
    right: 2.5%;
    /* center it */
    height: 80vh;
    /* adjust height for small screens */
  }

  .chat-input input {
    font-size: 13px;
    /* slightly smaller text */
    padding: 10px;
    /* reduce padding */
  }

  .chat-input button {
    padding: 0 12px;
    /* make button smaller */
    font-size: 14px;
  }
}

/* =========================================================== */



/*.ai {
      position: fixed;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      background-color: #f9f9f9;
      padding: 20px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
      border-radius: 8px;
      max-width: 280px;
      z-index: 1000;
      cursor: pointer;
    }*/

.whatsapp-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.10);
  padding: 24px 20px;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  cursor: pointer;
}

.whatsapp-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 3px 8px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px) scale(1.05);
  background: #e0f7fa;
}

.whatsapp-number {
  margin-top: 12px;
  font-size: 1.2em;
  color: #25D366;
  font-weight: bold;
  letter-spacing: 1px;
}

.whatsapp-card {
  font-weight: bolder;
  color: #000;
  font-size: medium;
}

/* ✅ Contact Details Section */
.contact-details {
  margin: 60px auto;
  text-align: center;
  font-size: 1.1em;
}

.contact-details h3 {
  text-decoration: underline;
  margin-bottom: 20px;
}

.contact-details p {
  margin: 8px 0;
}


/*
    ==================================================================
                                Contact Card
    ==================================================================
    */

    .contact {
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  font-size: 40px;
}

#ivfExperts {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.10);
  padding: 24px 20px;
  width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  cursor: pointer;
}

.contact-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 3px 8px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px) scale(1.05);
  background: #f0faff;
}

.contact-card .avatar {
  width: 100%;
  max-width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.contact-card .name {
  font-weight: bold;
  font-size: 1.1em;
  margin: 6px 0;
}

.contact-card .role {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 12px;
}

.contact-card .icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.contact-card .icons a {
  transition: transform 0.3s ease;
}

.contact-card .icons a:hover {
  transform: translateY(-6px);
}


.contact-card .icons svg,
.contact-card .icons img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}



/*
    ==================================================================
                                Contact Card
    ==================================================================
    */

#ivfExperts {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 1.5px 4px rgba(0, 0, 0, 0.10);
  padding: 24px 20px;
  width: 260px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  cursor: pointer;
}

.contact-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 3px 8px rgba(0, 0, 0, 0.14);
  transform: translateY(-6px) scale(1.05);
  background: #f0faff;
}

.contact-card .avatar {
  width: 100%;
  max-width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.contact-card .name {
  font-weight: bold;
  font-size: 1.1em;
  margin: 6px 0;
}

.contact-card .role {
  font-size: 0.95em;
  color: #555;
  margin-bottom: 12px;
}

.contact-card .icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.contact-card .icons a {
  transition: transform 0.3s ease;
}

.contact-card .icons a:hover {
  transform: translateY(-6px);
}


.contact-card .icons svg,
.contact-card .icons img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}


/* ===================== Footer ===================== */
/* ===================== Footer ===================== */
footer {
  background: linear-gradient(135deg, #1a1a1a, #555);
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

/* Footer columns container */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Each column */
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* Social links */
.footer-col .social-links,
.footer-col div {
  list-style: none;
  padding: 0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col .social-links a,
.footer-col div a {
  color: white;
  text-decoration: none;
}

.footer-col .social-links a:hover,
.footer-col div a:hover {
  text-decoration: underline;
}

/* Footer bottom text */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #ddd;
}

/* ===================== Responsive adjustments ===================== */
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr; /* two columns on tablets */
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .footer-columns {
    grid-template-columns: 1fr; /* stack columns on mobile */
    gap: 20px;
  }

  footer {
    padding: 30px 15px;
  }

  .footer-col p,
  .footer-col ul,
  .footer-col div {
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-bottom {
    font-size: 12px;
    margin-top: 25px;
  }
}


/* ====================================================================
    ===================== End of Footer =====================
   ==================================================================== */


::selection {
  background-color: #87CEEB; /* Your custom highlight color */
  color: black; /* Text color when selected */
}