  :root {
    --primary-color: #005EB8;
    --accent-color: #FCBF1E;
    --cta-color: #28A745;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #fff;
    --shadow: 0 10px 25px rgba(0,0,0,0.12);
    --hover-shadow: 0 18px 40px rgba(0,0,0,0.18);
    --radius: 14px;
    --transition: all 0.3s ease;
}

/* ===== Section ===== */
.services-section {
    background: var(--bg-light);
    padding: 60px 20px;
}

.services-container {
    max-width: 1200px;
    margin: auto;
}

.services-header {
    text-align: center;
    margin-bottom: 35px;
}

.services-header h2 {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.services-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin: 0;
}

/* ===== Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ✅ 3 cards per row */
    gap: 22px;
}

/* ===== Card ===== */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

/* Image */
.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Content */
.service-content {
    padding: 15px 18px 6px; /* 🔥 very tight bottom */
    text-align: center;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 6px;
}

.service-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0; /* 🔥 removes paragraph gap */
}

/* Action Button */
.service-action {
    padding: 8px 18px 16px; /* 🔥 close to paragraph */
    text-align: center;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: var(--cta-color);
    color: var(--white);
    text-decoration: none;
    padding: 9px 24px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    background: #1e8e3e;
    transform: scale(1.03);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* ✅ 1 card per row */
    }

    .services-header h2 {
        font-size: 1.9rem;
    }
}

/* ===== Features Section ===== */
.features-section {
    padding: 80px 20px;
    background: #ffffff;
}

.features-container {
    max-width: 1200px;
    margin: auto;
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-header h2 {
    font-size: 2.4rem;
    color: var(--primary-color, #005EB8);
}

/* ===== Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* ===== Feature Box ===== */
.feature-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

/* Icon */
.feature-box i {
    font-size: 2rem;
    color: var(--primary-color, #005EB8);
    margin-bottom: 20px;
}

/* Title */
.feature-box h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

/* Text */
.feature-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .features-header h2 {
        font-size: 2rem;
    }
}
.faq-section {
  padding: 60px 20px;
  background: #f8f9fa;
  direction: rtl;
  font-family: 'Tajawal', sans-serif;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

/* RIGHT */
.faq-content {
  flex: 1;
}

.faq-title {
  font-size: 32px;
  color: #0d6efd;
  margin-bottom: 30px;
}

/* FAQ ITEM */
.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 24px;
  transition: 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  color: #555;
  line-height: 1.8;
  transition: 0.4s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 18px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* LEFT IMAGE */
.faq-image {
  flex: 1;
  text-align: center;
}

.faq-image img {
  max-width: 100%;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
  }
}
 .ac-section {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 94, 184, 0.8), rgba(0, 94, 184, 0.8)), 
                        url('/images/ac3.webp') center/cover;
                        background-attachment: fixed;
            padding: 80px 0;
            color: var(--text-white);
        }

        .ac-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            padding: 0 20px;
            align-items: center;
            gap: 50px;
        }

        .ac-content {
            flex: 1;
            padding: 40px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            color: var(--text-color);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }

        .ac-image {
            flex: 1;
            min-height: 400px;
            background: url('images/ac1.webp') center/cover;
            
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .ac-content h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

       
        .ac-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .service-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .service-tag {
            background-color: var(--primary-color);
            color: var(--text-white);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .call-now-btn {
            display: inline-flex;
            align-items: center;
            background: var(--cta-color);
            color: var(--text-white);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .call-now-btn:hover {
            background: #218838;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        .call-now-btn i {
            margin-left: 10px;
            font-size: 1.2rem;
        }

        @media (max-width: 992px) {
            .ac-container {
                flex-direction: column-reverse;
            }
            
            .ac-content, .ac-image {
                width: 100%;
            }
            
            .ac-image {
                min-height: 300px;
            }
        }

        @media (max-width: 768px) {
            .ac-section {
                padding: 60px 0;
            }
            
            .ac-content {
                padding: 30px 20px;
            }
            
            .ac-content h2 {
                font-size: 1.8rem;
            }
            
            .call-now-btn {
                padding: 10px 25px;
                font-size: 1rem;
            }
        }

