/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&display=swap');

:root {
  --blue: #1e3a8a;
  --gold: #fbbf24;
  --gold-dark: #f59e0b;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Cairo', sans-serif;
  margin: 0;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.logo {
  font-weight: 900;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  color: #374151;
  font-weight: 600;
  transition: color .3s;
}
.nav-link:hover {
  color: var(--blue);
}

/* Hero */
.hero-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 50%, var(--gold) 100%);
}

.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
  border-radius: .5rem;
  font-weight: 700;
  transition: .3s;
  display: inline-block;
}
.btn-primary {
  background: var(--gold);
  color: var(--blue);
}
.btn-primary:hover {
  background: var(--gold-dark);
}
.btn-secondary {
  background: #fff;
  color: var(--blue);
}
.btn-secondary:hover {
  background: #f3f4f6;
}

/* Sections */
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--blue);
}
.norm{
color:  var(--gold);
}
/* Service Cards */
.service-card {
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  padding: 2rem;
  text-align: center;
  transition: .3s;
  border-top: 4px solid var(--blue);
}
.service-card:hover {
  transform: translateY(-5px);
}

/* Features */
.feature {
  text-align: center;
}
.feature i {
  background: var(--blue);
  color: #fff;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.feature h3 {
  font-weight: 700;
  margin-bottom: .5rem;
}
.feature p {
  color: #4b5563;
}

/* Gallery */
.gallery-item {
  background: #e5e7eb;
  border-radius: .5rem;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}
.gallery-item p {
  text-align: center;
  font-weight: 700;
  padding: .5rem 0;
}

/* Testimonials */
.testimonial {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 1.5rem;
  border-radius: .5rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
}
.stars {
  color: var(--gold);
  margin-bottom: .5rem;
}
.author {
  font-weight: 700;
  color: var(--blue);
  margin-top: .5rem;
}

/* FAQ */
.faq > div {
  margin-bottom: 1.5rem;
}
.faq h3 {
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .25rem;
}
.faq p {
  color: #4b5563;
}

/* Contact Form */
input, select, textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: .375rem;
  font-family: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 1000;
  background: #25d366;
  color: #fff;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Footer */
footer {
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 2rem 0;
} 0;
}ff;
  text-align: center;
  padding: 2rem 0;
}