*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* 🎬 خلفية متدرجة متحركة */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ✨ تصميم الـ Navbar الأساسي */
.navbar {
  background: linear-gradient(270deg, #e3f2fd, #bbdefb, #90caf9, #64b5f6);
  background-size: 600% 600%;
  animation: gradientMove 12s ease infinite;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: background 0.5s ease, padding 0.3s ease;
  padding: 10px 0;
  z-index: 999;
}

/* اللوجو */
.navbar-brand img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* نص صغير تحت اسم الشركة */
.navbar-brand p {
  font-size: 20px;       /* حجم صغير */
  margin: 0;                /* بدون مسافات خارجية */
  line-height: 1;           /* يحافظ على توازن الارتفاع */
  opacity: 0.8;             /* شفاف شويه */
  font-weight: 400;         /* خفيف */
}

/* Responsive للشاشات الصغيرة */
@media (max-width: 767px) {
  .navbar-brand p {
    font-size: 0.55rem;     /* أصغر على الموبايل */
  }
}


.navbar-brand img:hover {
  transform: scale(1.1);
}

.navbar-brand {
  font-weight: 700;
  color: #0d47a1 !important;
  font-size: 20px;
}

/* اللينكات */
.navbar-nav .nav-link {
  color: #0d47a1 !important;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.navbar-nav .nav-link:hover {
  color: #1565c0 !important;
  transform: scale(1.05);
}

.navbar-nav .nav-link i {
  margin-left: 5px;
  color: #1565c0;
}

/* الزر اللي بيفتح المينيو في الموبايل */
.navbar-toggler {
  border: none;
  outline: none;
}

/* 📱 تصميم الموبايل */
@media (max-width: 991px) {
  .navbar {
    background: linear-gradient(270deg, #bbdefb, #e3f2fd);
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
  }

  .navbar-nav .nav-link {
    padding: 12px;
    border-bottom: 1px solid rgba(13, 71, 161, 0.1);
    font-size: 17px;
  }

  .navbar-brand {
    font-size: 18px;
  }

  .navbar-brand img {
    width: 40px;
    height: 40px;
  }
}

/* ✨ تأثير ناعم عند الـscroll (اختياري ممكن تشيليه لو مش عايزة) */
.navbar.scrolled {
  background: linear-gradient(270deg, #bbdefb, #90caf9);
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
  padding: 5px 0;
}


/* Navbar Links Hover */
.navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* تغيير اللون عند hover */
.navbar-nav .nav-link:hover {
  color: #03a9f4; /* لون صيفي جميل */
  transform: scale(1.1); /* تكبير خفيف */
}

/* إضافة خط متحرك أسفل الرابط عند hover */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #03a9f4; /* نفس لون hover */
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}




/* 🏠 Home Section Carousel */
.home {
  position: relative;
  width: 100%;
  height: 100vh; /* تاخد كل مساحة الشاشة */
  overflow: hidden;
}

/* 🔹 Carousel Items */
.home .carousel-item {
  position: relative;
  width: 100%;
  height: 130vh;
}

/* 🔹 الصور */
.home .carousel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* تملأ المساحة بالكامل */
  object-position: center; /* تحفظ تفاصيل الصورة المهمة */
  display: block;
  transition: transform 1.2s ease, filter 0.8s ease;
}

/* 🔹 Overlay صيفي لكل صورة */
.home .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 183, 77, 0.3),
    rgba(255, 238, 88, 0.25),
    rgba(129, 212, 250, 0.3),
    rgba(3, 169, 244, 0.25)
  );
  background-size: 400% 400%;
  animation: summerGradient 10s ease infinite;
  z-index: 2;
  pointer-events: none;
}

/* 🔹 حركة الألوان */
@keyframes summerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 🔹 الصورة فوق overlay */
.home .carousel-inner {
  position: relative;
  z-index: 1;
}

/* 🔁 تأثير خفيف أثناء التنقل */
.carousel-item.active .carousel-img {
  filter: brightness(95%);
  transform: scale(1.02);
}

/* 📱 Responsive */
@media (max-width: 991px) {
  .home {
    height: 70vh; /* ارتفاع أقل في الموبايل */
  }

  .home .carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}




/* Section من نحن */
.who {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e3f2fd, #ffffff); /* لون هادئ وجذاب */
}

/* نص العنوان */
.who .body-title h2 {
  font-size: 2.5rem;
  color: #007bff; /* أزرق هادئ للنص */
  position: relative;
  display: inline-block;
  animation: slideIn 1s ease-out;
}

/* تحريك الإيموجي */
.who .wave {
  display: inline-block;
  animation: waveAnimation 1.5s infinite;
}

/* النص الفقرة */
.who .body-title p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-top: 15px;
  opacity: 0;
  animation: fadeInText 1.5s forwards;
  animation-delay: 0.5s;
}

/* تحريك العنوان */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* حركة الإيموجي */
@keyframes waveAnimation {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(14deg); }
  30% { transform: rotate(-8deg); }
  45% { transform: rotate(14deg); }
  60% { transform: rotate(-4deg); }
  75% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

/* ظهور الفقرة تدريجيًا */
@keyframes fadeInText {
  to { opacity: 1; }
}
.who {
  background: linear-gradient(135deg, #f0f4ff, #e6e9ff);
  padding: 60px 20px;
  border-radius: 15px;
  animation: fadeIn 1s ease-in-out;
}

.who .body-title h2 {
  color: #2c2c54;
}

.who p {
  color: #555;
  font-size: 18px;
}

.who-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-main {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-main:hover {
  background: linear-gradient(45deg, #2575fc, #6a11cb);
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  border: 2px solid #6a11cb;
  color: #6a11cb;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #6a11cb;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .who p {
    font-size: 16px;
  }

  .btn-main, .btn-outline {
    font-size: 16px;
    padding: 10px 22px;
  }

  .who-buttons {
    flex-direction: column;
  }
}
/* نحدد col الصورة أو الصورة نفسها كمرجع للـbadge */
.who .col:last-child {
  position: relative; /* مهم عشان badge يظهر فوق الصورة */
}

/* Badge فوق الصورة */
.quality-badge {
  position: absolute; /* فوق الصورة */
    top: 0px;
    right: 82px;        /* مسافة من اليمين */
  background: rgba(255, 255, 255, 0.9);
  color: #007bff;
  padding: 8px 15px;
  border-radius: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  font-size: 0.9rem;
  z-index: 4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* تأثير hover */
.quality-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 991px) {
  .quality-badge {
    top: 10px;
    right: 10px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

@media (max-width: 576px) {
  .quality-badge {
    top: 8px;
    right: 8px;
    font-size: 0.75rem;
    padding: 5px 10px;
  }
}







/* Section الخدمات */
.services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e0f7fa, #ffffff); /* لون هادئ يمثل الهواء والبرودة */
}

/* Cards */
.services .card {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 15px auto;
  animation: fadeInUp 1s ease forwards;
}

/* Hover effect */

.services .card:hover {
  transform: translateY(-10px) scale(1.05); /* يتحرك لأعلى ويكبر شوية */
  box-shadow: 0 12px 30px rgba(0,0,0,0.25); /* Shadow أقوى */
  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
  filter: brightness(105%); /* يفتح الصورة شويه */
}

.services .card:hover::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
  opacity: 0.7;
  pointer-events: none;
  animation: glowPulse 1.2s infinite alternate;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 10px rgba(0, 123, 255, 0.4); }
  50% { box-shadow: 0 0 25px rgba(0, 123, 255, 0.6); }
  100% { box-shadow: 0 0 10px rgba(0, 123, 255, 0.4); }
}


/* Card title */
.services .card h4 {
  color: #007bff; /* أزرق هادئ */
  margin-bottom: 10px;
  font-weight: 600;
}

/* Card text */
.services .card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}


.services .card-img-top {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}


/* Animation عند ظهور card */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .services .row {
    justify-content: center;
  }

  .services .col {
    flex: 0 0 45%; /* كل card تاخد تقريبًا نصف العرض */
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .services .col {
    flex: 0 0 90%; /* على الموبايل تاخد عرض كامل تقريبًا */
  }
}






/* Section Photos */
.photos {
  padding: 80px 20px;
  background: #f5f7fa; /* خلفية هادئة */
}

/* Section title */
.photos h2 {
  color: #007bff;
  font-weight: 700;
  position: relative;
  display: inline-block;
  animation: fadeInDown 1s ease forwards;
}

/* Card container */
.photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Card hover effect */
.photo-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Images */
.photo-card img {
  width: 100%;
  height: 250px; /* ثابت تقريبًا لكل الصور */
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Overlay */
.photo-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 123, 255, 0.6); /* أزرق شفاف */
  color: #fff;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15px;
  transition: opacity 0.4s ease;
  border-radius: 15px;
}

/* Hover overlay */
.photo-card:hover .overlay {
  opacity: 1;
}

/* Overlay text */
.photo-card .overlay h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.photo-card .overlay p {
  font-size: 0.95rem;
}

/* Animation عند تحميل الصور */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.photos .col-md-4 {
  animation: fadeInUp 1s ease forwards;
}

/* Responsive */
@media (max-width: 991px) {
  .photo-card img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .photo-card img {
    height: 180px;
  }
}



/*---------- Stats Section------------*/
.stats-section {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    #0099cc,
    #00bfa6,
    #ffd54f
  ); /* مزيج ألوان احترافي */
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
  margin-top: 40px;
}

/* ===== Individual Stat Cards ===== */
.stat-card {
  background: rgba(255, 255, 255, 0.15); /* كارد شبه شفاف */
  backdrop-filter: blur(10px); /* تأثير خلفية ضبابي */
  padding: 25px 15px;
  border-radius: 15px;
  transition: transform 0.4s ease, background 0.4s ease;
  color: #fff;
  font-weight: 600;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.3); /* يزيد الوضوح عند hover */
}

/* ===== Numbers Styling ===== */
.stat-card .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  position: relative;
}

.stat-card .number::before {
  content: "+";
  margin-right: 4px;
  font-size: 2.5rem;
  color: #ffeb3b; /* لون الـ + مميز */
}

.stat-card .number1 {
  position: relative;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

/* ===== Labels ===== */
.stat-card .label {
  font-size: 1.1rem;
  color: #fff;
}



/* Section Address */
.address {
  padding: 80px 20px;
  background: linear-gradient(135deg, #e0f7fa, #ffffff); /* لون هادئ يمثل الهواء والبرودة */
  position: relative;
  overflow: hidden;
}

/* Title */
.address h3 {
  color: #007bff;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeInDown 1s ease forwards;
}

/* Paragraph */
.address p {
  font-size: 1rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

/* Map container */
.address .map {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}

/* Make iframe responsive */
.address .map iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Row responsive */
.address .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Column responsive */
.address .col {
  flex: 1 1 45%;
  min-width: 300px;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effect for location icon */
.address p i {
  color: #007bff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.address p:hover i {
  transform: scale(1.2);
  color: #0056b3;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .address .map iframe {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .address .col {
    flex: 1 1 100%;
  }
  .address .map iframe {
    height: 250px;
  }
}


/* Footer Base */
.footer {
  padding: 60px 20px;
  background: linear-gradient(135deg, #00bcd4, #0288d1, #81d4fa); /* ألوان هادئة للشركة */
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-family: 'Tajawal', sans-serif;
}

/* Gradient animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Footer headings */
.footer h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  animation: fadeInUp 0.8s ease forwards;
}

.footer ul li {
    list-style: none;
}

.footer ul li a{
    text-decoration: none;
}

/* Paragraphs and links */
.footer p, .footer ul li, .footer ul li a {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease forwards;
}



/* Links hover */
.footer ul li a:hover {
  color: #ffd700; /* لون أصفر عند hover */
  transform: translateX(5px);
}

/* Service icons */
.footer ul li i {
  margin-right: 8px;
  color: #ffc107; /* أصفر هادئ */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect on icons */
.footer ul li i:hover {
  transform: scale(1.3) rotate(10deg);
  color: #ffeb3b; /* أصفر فاقع عند hover */
}

/* Social icons styling */
.footer ul li a i {
  font-size: 22px;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15); /* لون خلفية فاتح */
  color: #ffffff;
  transition: all 0.4s ease;
}

.footer ul li a i:hover {
  background: #ffc107; /* لون خلفية أصفر عند hover */
  color: #000; /* أيقونة سوداء عند hover */
  transform: scale(1.2);
}

/* Divider */
.footer hr {
  border-color: rgba(255,255,255,0.3);
  margin: 30px 0;
}

/* Bottom copyright text */
.footer p.text-center {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

/* Fade in animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 991px) {
  .footer .col-lg-3 {
    flex: 1 1 45%;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .footer .col-lg-3 {
    flex: 1 1 100%;
  }
}


/* Social Cards*/

.social-cards {
  display: flex;
  justify-content: center;
  gap: 20px; 
  margin-top: 50px;
}

.social-card {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.15); /* شفافة */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  animation: floatUpDown 3s ease-in-out infinite;
}

.social-card:hover {
  background: #ffc107; /* لون عند hover */
  transform: translateY(-8px) scale(1.2);
}

.social-card i {
  font-size: 28px;
  color: #fff;
  transition: color 0.3s ease;
}

.social-card:hover i {
  color: #000;
}

/* Floating animation */
@keyframes floatUpDown {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 576px) {
  .social-card {
    width: 50px;
    height: 50px;
  }

  .social-card i {
    font-size: 24px;
  }
}


/* 🔹 Footer Contact Info Style */
.footer .contact-info {
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer .contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.footer .contact-info h5 {
  color: #ffc107;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer .contact-item i {
  font-size: 20px;
  color: #ffc107;
  animation: floatIcon 2s ease-in-out infinite;
}

/* Icon Floating Animation */
@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.footer .contact-item:hover {
  color: #ffc107;
}

.footer .social-card i:hover {
  transform: translateY(-5px);
  color: #ffc107;
}







@media (max-width: 768px) {


  .navbar-brand img {
    width: 35px;
    height: 35px;
  }
  .navbar-brand {
    font-size: 16px;
    text-align: center;
  }
  .navbar-brand p {
    font-size: 12px;
  }
  .navbar-nav {
    text-align: center;
  }
  .navbar-nav .nav-link {
    font-size: 15px;
    padding: 10px 0;
  }


  .home {
    height: 60vh !important;
  }
  .home .carousel-item {
    height: 60vh !important;
  }
  .home .carousel-img {
    object-fit: cover;
    height: 100%;
  }


  .stats-section .stat-card {
    margin-bottom: 15px;
  }
  .stats-section .number {
    font-size: 28px;
  }

 
  .who {
    padding: 40px 15px;
  }
  .who h2 {
    font-size: 22px;
  }
  .who p {
    font-size: 15px;
  }
  .who-buttons {
    flex-direction: column;
    gap: 10px;
  }



/* keyframes للحركة */
@keyframes slideDown {
  0% { top: -100%; }
  50% { top: 0%; }
  100% { top: 100%; }
}

/* keyframes لتغيير اللون */
@keyframes colorChange {
  0% { color: #fff; }
  50% { color: #ffe100; }
  100% { color: #fff; }
}




  /* ✅ Services */
  .services .card {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .services .card img {
    height: auto !important;
  }

  /* ✅ Photos */
  .photo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  /* ✅ Footer */
  footer .col {
    text-align: center;
  }
  footer img {
    margin: auto;
  }
  footer ul {
    padding: 0;
  }
  footer ul li {
    list-style: none;
    margin: 5px 0;
  }
}

/* 📱 للأجهزة الصغيرة جدًا (أقل من 480px) */
@media (max-width: 480px) {
  .navbar-brand {
    font-size: 14px;
  }
  .who h2 {
    font-size: 20px;
  }
  .btn-main, .btn-outline {
    font-size: 14px;
    padding: 8px 18px;
  }
  footer p {
    font-size: 13px;
  }
}











/* ===== Navbar ===== */
.navbar-brand img {
  max-height: 60px;
  margin-right: 10px;
}

.navbar-brand p {
  margin: 0;
  font-size: 16px;
}

/* Adjust navbar items spacing */
.navbar-nav .nav-link {
  margin-right: 15px;
  font-size: 18px;
}

/* ===== Carousel ===== */
.carousel-img {
  height: 80vh; /* Makes carousel occupy most of viewport height */
  object-fit: cover;
}

/* Overlay effect */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); /* adjust darkness */
}

/* ===== Responsive Media Queries ===== */

/* Small devices (phones) */
@media (max-width: 576px) {
  .navbar-brand p {
    font-size: 12px;
  }
  
  .navbar-nav .nav-link {
    font-size: 14px;
    margin-right: 5px;
  }

  .carousel-img {
    height: 50vh;
  }

  .navbar-brand img {
    max-height: 40px;
  }
}

/* Medium devices (tablets) */
@media (max-width: 768px) {
  .navbar-brand p {
    font-size: 14px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
  }

  .carousel-img {
    height: 60vh;
  }

  .navbar-brand img {
    max-height: 50px;
  }
}

/* Optional: Adjust overlay text if you want text over carousel */
.carousel-inner .carousel-item .overlay {
  z-index: 1;
}
