
/* ========== General Reset ========== */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

/* ========== Hero Section ========== */
.hero-section {
  position: relative;
  height: 100vh;
  color: rgb(255, 187, 0);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Animated Background */
.hero-section::before {
  content: '';
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
 #features .col-md-4:nth-child(1) { background: url('URL1') center/cover no-repeat; }
#features .col-md-4:nth-child(2) { background: url('URL2') center/cover no-repeat; }
#features .col-md-4:nth-child(3) { background: url('URL3') center/cover no-repeat; }
  z-index:1;
  filter: brightness(0.5);
  animation: zoomInOut 20s infinite alternate;
}

@keyframes zoomInOut {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* Hero Content */
.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 1.8rem;
}

/* ========== Features Section ========== */
#features .col-md-4 {
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  cursor: pointer;
}

#features .col-md-4:hover {
  transform: translateY(-10px);
}

/* Feature Icon Background */
#features .col-md-4 i {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #fff;
  padding: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  display: inline-block;
  transition: all 0.3s;
}

#features .col-md-4:hover i {
  transform: scale(1.2);
}

/* Feature Card Text Background */
#features .col-md-4 h5, #features .col-md-4 p {
  color: #333;
}

/* ========== Testimonials Carousel ========== */


#testimonials .carousel-inner {
  background: linear-gradient(135deg, #6a11cb, #2575fc); /* لون جذاب */
  color: #fff; /* نص أبيض واضح */
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  max-width: 700px;
  margin: 0 auto;
}

/* النصوص داخل Carousel */
#testimonials .carousel-inner p.lead {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 15px;
}

#testimonials .carousel-inner h6 {
  font-weight: bold;
  font-size: 1rem;
  color: #ffd700; /* لون مختلف للشخص */
}

/* أزرار Carousel */
#testimonials .carousel-control-prev-icon,
#testimonials .carousel-control-next-icon {
  background-color: rgba(255,255,255,0.7);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

/* ========== Pricing Cards ========== */
/* Pricing Cards with Background Images via CSS */
#pricing .card {
  border-radius: 20px;
  overflow: hidden;
  color: #ffffff;
  position: relative;
  min-height: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Overlay to make text readable */
#pricing .card::before {
  content: '';
  position: absolute;
  top:0; left:0;
  width:100%;
  height:100%;
  background: #2575fc ;
  z-index:1;
}

/* Card Body above overlay */
#pricing .card-body {
  position: relative;
  z-index:2;
}

/* Hover Effect */
#pricing .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

/* Buttons style */
#pricing .btn-primary {
  background-color: #f7c200;
  border-color: #d1beff;
  color: #040113;
}

#pricing .btn-primary:hover {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #000;
}
#pricing .card::before {
  content: "";
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.6);
  border-radius: 10px;
  z-index:1;
}



/* Card 1 */
#pricing .row .col-md-4:nth-child(1) .card {
  background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}

/* Card 2 */
#pricing .row .col-md-4:nth-child(2) .card {
  background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}

/* Card 3 */
#pricing .row .col-md-4:nth-child(3) .card {
  background: url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}
/* ========== Contact Section ========== */
#contact input, #contact textarea {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 15px;
}

#contact button {
  border-radius: 50px;
  padding: 12px 40px;
  font-size: 1.2rem;
}

/* ========== Footer ========== */
footer a:hover {
  color: #00d1b2;
  transition: 0.3s;
}