body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #eef3ff, #f1f9f1);
  color: #333;
  line-height: 1.6;
}
/* Header */
header {
  background: linear-gradient(90deg, #2c3e50, #aed581);
  padding: 12px 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 60px;
  width: auto;
  display: block;
}
.menu {
  list-style: none;
  display: flex;
  gap: 25px;
}
.menu li a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}
.menu li a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff0b2;
}
.menu li a.active {
  font-weight: bold;
  border-bottom: 2px solid #fff0b2;
}
.login-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 6px 14px;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, background 0.3s;
}
.login-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #7c8f5a, #aed581);
}
/* Custom Select with Flags */
.region-form {
  margin-left: 20px;
}
.custom-select {
  position: relative;
  width: 180px;
  cursor: pointer;
  font-size: 14px;
}
.custom-select .selected {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 10px;
  border-radius: 6px;
  gap: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: border 0.3s, box-shadow 0.3s;
}
.custom-select .selected:hover {
  border-color: #3498db;
  box-shadow: 0 2px 6px rgba(52, 152, 219, 0.3);
}
.custom-select .selected img, .custom-select .options img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  vertical-align: middle;
}
.custom-select .arrow {
  margin-left: auto;
  transition: transform 0.3s;
}
.custom-select .arrow.rotate {
  transform: rotate(180deg);
}
.custom-select .options {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  top: 110%;
  left: 0;
  z-index: 10;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.2s ease-in-out;
}
.custom-select .options div {
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.custom-select .options div:hover {
  background: #f7f9fc;
  cursor: pointer;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hero Section */
.hero {
  position: relative;
  padding: 190px 20px;
  text-align: center;
  color: white;
  background: url("images/slide1.jpg") no-repeat center center/cover;
  margin: 25px;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.hero h1 {
  transform: translateY(-195px);
}
.hero p {
  transform: translateY(75px);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 12px;
}
.hero-text {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}
.hero-text p {
  font-size: 1.2rem;
  margin: 10px 0;
  background: rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  color: #f0f0f0;
  box-shadow: 0 4px 12px #526342;
}
/* Section Background */
.intro-section {
  background: linear-gradient(135deg, #eef3ff, #f1f9f1);
  padding: 0px 20px;
  text-align: center;
}
/* Title */
.intro-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 0px;
  color: #2a3d66;
  position: relative;
  display: inline-block;
}
.intro-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #ff9800;
  margin: 10px auto 0;
  border-radius: 2px;
}
/* Layout */
.intro-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}
/* Text Section */
.intro-text {
  flex: 1 1 500px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}
.intro-text h3 {
  color: #ff9800;
  margin-top: 15px;
}
.intro-text p {
  line-height: 1.6;
  color: #444;
}
/* Image */
.intro-image {
  flex: 1 1 400px;
}
.intro-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.intro-image img:hover {
  transform: scale(1.05);
}
/* Features Section */
.features {
  padding: 23px 20px;
  background: linear-gradient(135deg, #eef3ff, #f1f9f1);
}
.features .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* 👈 Centers all boxes */
  gap: 20px; /* Space between boxes */
}
.feature-box {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  flex: 1 1 280px; /* 👈 Responsive box size */
  max-width: 320px; /* Optional: prevent too wide */
}
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.feature-box .number {
  width: 55px;
  height: 55px;
  margin-bottom: 15px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
/* Colorful numbers */
.feature-box:nth-child(1) .number {
  background: linear-gradient(135deg, #e74c3c, #ec7063);
}
.feature-box:nth-child(2) .number {
  background: linear-gradient(135deg, #e67e22, #f39c12);
}
.feature-box:nth-child(3) .number {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
}
.feature-box:nth-child(4) .number {
  background: linear-gradient(135deg, #3498db, #5dade2);
}
.feature-box:nth-child(5) .number {
  background: linear-gradient(135deg, #9b59b6, #af7ac5);
}
.feature-box h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #2c3e50;
}
.feature-box p, .feature-box ul {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.feature-box ul {
  padding-left: 18px;
  list-style: disc;
}
/* Footer */
footer {
  text-align: center;
  padding: 18px; 
	background: linear-gradient(180deg, #2c3e50, #aed581);
  color: white;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.float-line {
  width: 620px; /* line length */
  height: 4px; /* line thickness */
  background: #fff0b2;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  margin: 20px auto; /* centers it */
  display: block;
}
.float-line::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background: #ff9800;
  animation: slide 10s infinite linear;
}
@keyframes slide {
  0% {
    left: -100%;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

footer {
  color: #fdf5c9;
  padding: 40px 20px 20px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-around; /* evenly space out */
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  text-align: center;
  gap: 30px; /* smaller gap so sections stay closer */
}

.footer-section {
  flex: 0 1 250px; /* fixed flexible width */
  min-width: 220px;
  max-width: 280px;
}


.footer-section h3 {
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 2px solid #fdf5c9;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section p {
  margin: 8px 0;
  color: #fff;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
  margin: 0 8px;
  font-size: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #4caf50;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
  font-size: 14px;
  color: #fdf5c9;
}


/* News Hero Section */
.news-hero {
  background: url("images/header_news.jpg") no-repeat center center/cover;
  padding: 160px 20px;
  margin: 25px;
  border-radius: 12px;
  color: white;
  position: relative;
  height: 50px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3);
}
.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}
.news-hero .hero-text {
  position: relative;
  z-index: 1;
}
.news-hero h1 {
  font-size: 3rem;
  margin-top: 10px;
}
/* News Section */
.news-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #eef3ff, #f1f9f1);
}
.news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}
.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 350px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-content {
  padding: 20px;
}
.news-content h3 {
  margin-top: 0;
  color: #2c3e50;
}
.news-content .date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 10px;
}
.read-more {
  display: inline-block;
  margin-top: 12px;
  color: #3498db;
  font-weight: bold;
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.6);
}
.modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 25px;
  border-radius: 12px;
  max-width: 700px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
}
.modal-content h2 {
  margin-top: 0;
  color: #2c3e50;
}
.modal-content p {
  color: #444;
  line-height: 1.6;
}
.close {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #888;
}
.close:hover {
  color: #e74c3c;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Search Section */
.search-section {
  padding: 20px;
  text-align: center;
  background: #fff;
}
.search-form {
  display: inline-flex;
  gap: 10px;
  max-width: 500px;
  width: 100%;
}
.search-form input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.3s;
}
.search-form input:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}
.search-form button {
  padding: 10px 20px;
  border: none;
  background: linear-gradient(45deg, #7c8f5a, #aed581);
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}
.search-form button:hover {
  background: #2980b9;
}
/* Contest Hero */
.contest-hero {
  position: relative;
  padding: 65px 20px;
  text-align: center;
  color: white;
  background: url("images/header_contest.jpg") no-repeat center center/cover;
  margin: 25px;
  border-radius: 12px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.contest-hero-text h1 {
  transform: translateY(-50px); /* push down */
}
.contest-hero-text p {
  transform: translateY(30px); /* push down */
}
.contest-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 12px;
}
.contest-hero-text {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.contest-hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0px;
  color: #fff;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}
.contest-hero-text p {
  font-size: 1.2rem;
  margin: 10px 0;
  background: rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  color: #f0f0f0;
  box-shadow: 0 4px 12px #526342;
}
/* Countdown inside contest hero */
#countdown {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0px;
  color: #ffeb3b;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  transform: translateY(-15px); /* push down */
}
/* Wrapper to hold both containers side by side */
.desc-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
	margin-bottom: 20px;
}
/* Individual description card */
.contest-desc .desc-container {
  flex: 1 1 450px; /* responsive width */
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.contest-desc .desc-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
/* Heading styling */
.contest-desc h2 {
  font-size: 1.7rem;
  color: #2a3d66;
  margin-bottom: 20px;
  position: relative;
}
.contest-desc h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #ff9800;
  margin-top: 8px;
  border-radius: 2px;
}
/* Paragraph & list styling */
.contest-desc p {
  color: #444;
  line-height: 1.7;
  font-size: 0.9rem;
}
.contest-desc ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #444;
  line-height: 1.7;
  font-size: 0.9rem;
}
.contest-desc ul li {
  margin-bottom: 12px;
}
/* Image Slider */
.contest-slider {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
}
.slider-container {
  max-width: 800px;
  position: relative;
  margin: auto;
}
.slides {
  display: none;
}
.slides img {
  width: 100%;
  border-radius: 12px;
  height: 400px;
  object-fit: cover;
}
.dots {
  text-align: center;
  margin-top: 10px;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s;
}
.dot.active {
  background-color: #526342;
}
/* Results Section */
.contest-results {
  padding: 40px 20px;
  background: linear-gradient(135deg, #eef3ff, #f1f9f1);
  text-align: center;
}
.contest-results h2 {
  font-size: 1.9rem;
  color: #2a3d66;
 
}
.result-btn {
  background: linear-gradient(135deg, #7c8f5a, #aed581);
  color: #fff;
  border: none;
  padding: 15px 0;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.result-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #5e6b3f, #9ccc65);
}
/* Contest Results Section */
.contest-results {
  padding: 20px 20px;
	margin-bottom: 35px;
  background: linear-gradient(135deg, #eef3ff, #f1f9f1);
  text-align: center;
}
.contest-results h2::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background: #ff9800;
  margin: 10px auto 0;
  border-radius: 2px;
}
/* Results Buttons Grid */
.results-buttons {
  display: flex;
  flex-wrap: wrap;       /* allow wrapping to next line */
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center; /* center buttons */
}

.results-buttons button {
  flex: 1 1 calc(16.66% - 20px); 
  /* 100% / 6 = 16.66% per button, minus gap */
  max-width: calc(16.66% - 20px);
}


/* Modal Styling */
.modal-content {
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.contest-results h2::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: #ff9800;
  margin: 10px auto 0;
  border-radius: 2px;
}
.results-buttons .result-btn {
  background: linear-gradient(135deg, #7c8f5a, #aed581);
  color: #fff;
  border-radius: 25px;
  padding: 12px 22px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.results-buttons .result-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #5e6b3f, #9ccc65);
}
/* Modal Styling */
.modal-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.modal-content p {
  font-size: 1rem;
  color: #444;
}
.close {
  font-size: 28px;
  top: 15px;
  right: 20px;
  color: #888;
}
.close:hover {
  color: #e74c3c;
}

/* Centers Page */
.centers {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.section-title {
  font-size: 22px;
  font-weight: bold;
  color: #2a3d66;
  border-bottom: 2px solid #ff9800;
  padding-bottom: 5px;
  margin: 40px 0 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.center-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.center-card {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}

.center-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 12px 28px rgba(0,0,0,0.15);
}

.center-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
}

.center-card .branch {
  font-size: 14px;
  color: #888;
  margin-bottom: 6px;
}

.center-card .name {
  font-weight: bold;
  color: #27ae60;
  margin: 5px 0 10px;
}



/* Contact Page  */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	height: 598px;
}

.contact-form h2 {
  font-size: 24px;
  font-weight: bold;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 10px;
}

.contact-form .form-row {
  display: flex;
  gap: 15px;
}

.contact-form .form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 93%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3498db;
  background: #fff;
  box-shadow: 0 0 8px rgba(52,152,219,0.2);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  align-self: center;
  background: linear-gradient(45deg, #3498db, #2ecc71);
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(45deg, #2ecc71, #3498db);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Contact Wrapper Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  align-items: start;
}

.contact-info {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.contact-info h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2c3e50;
}
 .map-link iframe {
  transition: transform 0.2s ease;
}

.map-link:hover iframe {
  transform: scale(1.02);
}

.contact-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.contact-card-link .contact-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-card-link .contact-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Remove forced white background */
.contact-card-link .contact-card {
  background: #fff; /* keep card background white */
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover effect when the card is clickable */
.contact-card-link .contact-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}

/* Ensure map iframe also respects border-radius */
.contact-card iframe {
  border-radius: 10px;
  overflow: hidden;
}

/* Dropdown container */
.login-dropdown {
  position: relative;
}


