:root {
  --main-color: #10cab7;
  --secondary-color: #2c4755;
  --section-padding: 60px;
  --section-background: #f6f6f6;
  --main-duration: 0.5s;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
}
.title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
}

.branches-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  /* background-color: var(--section-background); */
}

.branch-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.branch-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.branch-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.branch-icon {
  font-size: 3rem;
  color: #10cab7;
  margin-bottom: 20px;
}

.branch-name {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-info {
  margin-bottom: 20px;
}

.phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #555;
  background: #f8f9ff;
  padding: 12px 20px;
  border-radius: 25px;
  margin: 10px 0;
  transition: all 0.3s ease;
}

.phone-number:hover {
  background: #667eea;
  color: white;
  transform: scale(1.05);
}

.phone-number i {
  color: #667eea;
  transition: color 0.3s ease;
}

.phone-number:hover i {
  color: white;
}

.branch-details {
  color: #666;
  font-style: italic;
  font-size: 0.95rem;
}

.footer {
  text-align: center;
  color: white;
  opacity: 0.8;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .title {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .branches-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .branch-card {
    padding: 30px 20px;
  }

  .branch-name {
    font-size: 1.5rem;
  }
}

.title {
  font-size: 1.8rem;
}

.branch-card {
  padding: 25px 15px;
}

.phone-number {
  font-size: 1rem;
  padding: 10px 15px;
}
.center-flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.scroll {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  cursor: pointer;
}
headerC {
  margin-top: 0;
}
