body {
    font-family: 'Cairo', sans-serif;
    margin: 0;
    color: #2B2B2B;
    background: white;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
  }
  
  .logo {
    height: 55px;
  }
  
  nav a {
    margin-right: 25px;
    font-weight: 600;
  }
  
  /* Hero */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 100px 60px;
    align-items: center;
  }
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .hero-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  }
  
  /* Button */
  .btn {
    background: #C1121F;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
  }
  
  /* Sections */
  .section {
    padding: 80px 60px;
  }
  
  .section.gray {
    background: #F5F5F5;
  }
  
  .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .center-text {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
    line-height: 1.8;
  }
  
  /* Vision */
  .vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
  }
  

.vision-card {
    background: white;
    padding: 40px 30px;
    border-radius: 18px;
    text-align: center;
    transition: all .5s ease;
    cursor: pointer;
  }
  
 
  .vision-card i {
    font-size: 34px;
    margin-bottom: 20px;
    transition: all .5s ease;
  }
  
 
  .vision-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    transition: all .5s ease;
  }
  
  .vision-card p {
    transition: all .5s ease;
  }
  

  .vision-card:nth-child(1) i,
  .vision-card:nth-child(1) h4,
  .vision-card:nth-child(1) p {
    color: #C1121F; 
  }
  
  .vision-card:nth-child(2) i,
  .vision-card:nth-child(2) h4,
  .vision-card:nth-child(2) p {
    color: #555555;
  }
  
  .vision-card:nth-child(3) i,
  .vision-card:nth-child(3) h4,
  .vision-card:nth-child(3) p {
    color: #222222;  
  }
  
  /* Hover effect */
  .vision-card:nth-child(1):hover {
    background-color: #C1121F; 
  }

  .vision-card:nth-child(2):hover {
    background-color: #555555; 
  }

  .vision-card:nth-child(3):hover {
    background-color: #222222; 
  }
  
  .vision-card:hover i,
  .vision-card:hover h4,
  .vision-card:hover p {
    color: white; 
  }
  
  
  /* Projects */
  .projects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 30px;
  }
  
  .project-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .3s;
  }
  
  .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }
  
  .project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .5s ease, filter .5s ease;

  }
  .project-card:hover img {
    transform: scale(1.05);
    filter: brightness(0.95);
  }
  
  .project-info {
    padding: 20px;
  }
  
  .project-info h3 {
    margin-bottom: 8px;
  }
  
  /* Contact */
  .cta {
    text-align: center;
    padding: 80px 20px;
  }
  
  .cta a {
    color: #222222; 
    font-weight: 600;
  }
  
  /* Footer */
  footer {
    background: #2B2B2B;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
  
    .navbar {
      flex-direction: column;
      gap: 15px;
      padding: 20px;
    }
  
    .hero {
      grid-template-columns: 1fr;
      padding: 50px 20px;
      text-align: center;
    }
  
    .hero-content h1 {
      font-size: 32px;
    }
  
    .section {
      padding: 50px 20px;
    }
  
  }
  /* Office Section */
.office {
    background: #F5F5F5;
    padding: 90px 60px;
    text-align: center;
  }
  
  .office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .office-item {
    background: white;
    padding: 28px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  
  .office-item i {
    font-size: 20px;
    color: #C1121F;
    min-width: 22px;
  }
  
  .office-item a {
    color: #2B2B2B;
    font-weight: 500;
    line-height: 1.6;
    text-decoration: none;
  }
  
  .office-item a:hover {
    text-decoration: underline;
  }
  
  
  .office-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .office-item p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  

/* Office with Map */
.office {
    background: #F5F5F5;
    padding: 90px 60px;
  }
  
  .office-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
  }
  
  /* Map */
  .office-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
    border-radius: 16px;
  }
  
  /* Info */
  .office-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .office-item {
    background: white;
    padding: 30px;
    border-radius: 14px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  
  .office-item i {
    font-size: 22px;
    color: #C1121F;
    margin-top: 6px;
  }
  
  .office-item h4 {
    margin-bottom: 8px;
    font-size: 18px;
  }
  
  .office-item p {
    line-height: 1.7;
    margin-bottom: 10px;
  }
  
  .office-item a {
    font-weight: 600;
    color: #555555; 
    border-bottom: 1px solid transparent;
    transition: border .3s;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .office-layout {
      grid-template-columns: 1fr;
    }
  
    .office-map iframe {
      min-height: 300px;
    }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  