.gold-color{
    color: #fdc210;
}

.campus-card .box-thumb {
    position: relative;
    overflow: hidden;
}

.campus-card img {
    width: 100%;
    height: auto;
    display: block;
}

.center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 84%;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    z-index: 2;
}

.center-content h1 {
    font-size: 30px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff !important;
}

.center-content p {
    font-size: 17px;
    margin: 0;
    color: #fff;
}

.campus-card .box-thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.pt-100{
    padding-top: 100px;
}

.english-levels-table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
    font-size: 15px;
}

.english-levels-table td {
    border: 1px solid #000;
    padding: 12px 15px;
}

.english-levels-table td:first-child {
    font-weight: bold;
    width: 60%;
}

/* Dark background as requested */
.contact_info::before {
    content: "";
    position: absolute;
    inset: 10px;
    background: var(--title-color);
    box-shadow: 0px 10px 50px rgba(135, 143, 151, 0.2);
    z-index: -1;
}

.other-levels-table {
    border-collapse: collapse;
    width: 100%;
    text-align: left;
    font-size: 15px;
    color: #fff;
}

.other-levels-table td {
    border: 1px solid #fff;
    padding: 12px 15px;
}

.other-levels-table td:first-child {
    font-weight: bold;
    width: 60%;
}

.widget_title.text-white {
    color: #fff;
}

.other-levels-table td,
.other-levels-table td strong {
    color: #fff;
}

.map-pin-ajman{
    color: #081933;
    font-size: 37px;
    font-weight: 600;
    margin-left: -35px;
    margin-top: 50px;
}
.map-pin-sharjah{
    color: #081933;
    font-size: 37px;
    font-weight: 600;
    margin-left: -60px;
    margin-top: 50px;
}






/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 125px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  background: #20BA5A;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-icon {
  width: 60px;
  height: 60px;
  animation: pulse 2s ease-in-out infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Hover stops the pulse */
.whatsapp-float:hover .whatsapp-icon {
  animation: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 120px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
  
  .whatsapp-icon {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 120px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon {
    width: 50px;
    height: 50px;
  }
}

/* Optional: Add a tooltip on hover */
.whatsapp-float::before {
  content: "Chat with us";
  position: absolute;
  right: 70px;
  background: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  right: 60px;
  border: 6px solid transparent;
  border-left-color: #333;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
  opacity: 1;
}

/* Hide tooltip on mobile */
@media (max-width: 768px) {
  .whatsapp-float::before,
  .whatsapp-float::after {
    display: none;
  }
}