* {
    font-family: sans-serif, Arial;
    box-sizing: border-box;
    margin:0;
    padding: 0;
}


:root{
    --primary-gradient: linear-gradient(135deg,#06b6d4, #22d3ee);
    --primary-color: #1b92cf;
}
.contact-form h3, contact-hero h1{
   color: var(--primary-color);
}
.hero-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.hero-card i {
   color: var(--primary-color);
}

.contact-hero .title-h2,
.contact-map-social .map-h2,
.connect-with-us h2{
  font-size:40px;
  color: var(--primary-color);
}

.info-box h3{
  color: var(--primary-color);
}

.contact-form p{

  color:var(--primary-color);
  opacity:0.7;
}

form .form-control {
  border-radius: 8px;
  color:var(--primary-color);
}

.map-embed iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

.info-box {
  background-color: #fff;
  width:400px;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}

.info-box:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.working-hours li {
  padding: 6px 0;
  border-bottom: 1px dashed #ddd;
}
.working-hours .day {
  flex: 1;
}
.working-hours .time {
  flex: 1;
  text-align: right;
}



.social-links a {
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #333;
}


