* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

:root {
  scroll-behavior: smooth;
}

body {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  color: var(--default-color);
  background-color: var(--background-color);
}

:root {
  --main-red: #c4001a;
  --text-black: #000000;
  --default-color: #000000;
  --heading-color: #000000;
  --accent-color: #c4001a;
  --section-color: #fcf8f2;
  scroll-behavior: smooth;
}

.btn-primary {
  background-color: var(--main-red);
  border-color: var(--main-red);
}

.btn-outline-dark {
  border: 1px dashed var(--main-red);
  color: var(--main-red);
}

.hero .swiper {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.hero .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  background-color: #f8f8f8;
  padding: 10px;
}

.hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .hero .swiper-slide {
    height: 250px; 
    padding: 5px;
  }

  .hero .swiper-slide img {
    border-radius: 10px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
button,
a,
span {
  color: var(--heading-color);
  font-family: "IBM Plex Sans Arabic", sans-serif;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

.php-email-form .error-message {
    display: none;           /* مخفية حتى تظهر عند الخطأ */
    color: #e53935;          /* لون نص أحمر */
    font-size: 14px;
    margin-top: 5px;
    text-align: right;       /* للنص العربي */
    font-weight: normal;
  }

  /* ظهور رسالة الخطأ عند إضافة كلاس active */
  .php-email-form .error-message.active {
    display: block;
  }

  /* --- رسالة النجاح --- */
  .php-email-form .sent-message {
    display: none;
    color: #27ae60;          /* أخضر */
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
  }

  /* --- رسالة التحميل --- */
  .php-email-form .loading {
    display: none;
    color: #3498db;          /* أزرق */
    font-weight: bold;
    margin-bottom: 10px;
  }

  /* --- تنسيق الحقول --- */
  .php-email-form input,
  .php-email-form textarea {
    border: 1px solid #ced4da;   /* حدود رمادية */
    border-radius: 4px;
    padding: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
  }

  /* تأثير التركيز */
  .php-email-form input:focus,
  .php-email-form textarea:focus {
    border-color: #3498db;        /* أزرق عند التركيز */
    outline: none;
  }


/* تحريك مؤشر التحميل */
@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: var(--section-color);
  padding: 0px;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ظل ناعم من الأسفل */
}

@media (max-width: 1200px) {
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .navmenu a img {
    height: 70px;
    width: 100%;
    border-radius: 20px;
  }

  .navmenu ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0; /* ✅ إزالة المسافة تحت الـ ul */
  }

  .navmenu li {
    margin-left: 30px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--accent-colr);
    padding: 10px 15px;
    font-size: 19px; /* ✅ أكبر قليلًا لأن الوزن أثقل */
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-weight: 500; /* ✅ وزن متوسط واضح للروابط */
    transition: 0.3s;
  }
}

.navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
  color: var(--main-red);
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--text-black);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    width: 100%;
    padding: 0;
    z-index: 9997;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navmenu a img {
    height: 40px;
    width: 100%;
    border-radius: 20px;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--section-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--text-black);
    padding: 10px 20px;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--main-red), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--main-red);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--main-red);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--main-red);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--section-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 26px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 17px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
  font-size: 15px;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}
.social-links {
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

@media (max-width: 768px) {
  .scroll-top {
    left: 15px;
    right: auto; /* مهم */
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
}

.tittle {
  border: 2px dotted color-mix(in srgb, var(--default-color), transparent 85%);
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 20px;
}

.hero h1 {
  color: #c4001a;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);

  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/* our features section */

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-section {
  margin: 0;
  padding: 10px;
  background-color: #f9f9f9;
  text-align: center;
}

.features-section .container h2 {
  font-size: 34px;
  margin: 10px 0;
  position: relative;
  display: inline-block;
  font-size: clamp(1.5rem, 2vw, 2.5rem); /* حجم خط مرن */
}

.features-section .container h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: var(--main-red);
}

.features-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

.feature-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 220px; /* نفس عرض الديسكتوب */
  position: relative;
  z-index: 1;
  text-align: center;
}

.feature-card .icon {
  font-size: 40px;
  color: #ff9800;
  margin-bottom: 10px;
}

.feature-card h3 {
  font-size: 18px;
  color: #333333;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 16px;
  color: #555555;
  line-height: 1.5;
}

/* سهم SVG */
.arrow-svg {
  margin: 0 10px;
  width: 80px;
  height: 40px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/*--------------------------------------------------------------
# Mobile (≤ 768px)
# يتحول العمودي مع تدوير السهم عموديًا
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .features-cards {
    flex-direction: column;
  }

  .feature-card {
    width: 90%;
    max-width: 300px;
    padding: 18px 12px;
  }

  .features-section .container h2 {
    font-size: 26px;
  }

  .feature-card .icon {
    font-size: 32px;
    margin-bottom: 6px;
  }

  .feature-card h3 {
    font-size: 14px;
  }

  .feature-card p {
    font-size: 13px;
  }

  /* تدوير السهم عموديًا بين الكروت */
  .arrow-svg {
    transform: rotate(90deg);
    margin: 15px 0;
    width: 30px;
    height: 60px;
  }
}

/*--------------------------------------------------------------
# Very Small (≤ 480px)
# الكارت يشغل العرض كاملًا وإخفاء السهم إذا مطلوب
--------------------------------------------------------------*/
@media (max-width: 480px) {
  .feature-card {
    width: 100%;
    padding: 16px 10px;
  }

  .features-section .container h2 {
    font-size: 24px;
  }

  /* يمكن إخفاء السهم على الشاشات الضيقة جدًا */
  .arrow-svg {
    display: none;
  }
}

/* ending iur features section  */
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .container {
  height: fit-content;
}
.services .container h2 {
  font-size: 34px;
  margin: 0;
  position: relative;
  display: inline-block;
  font-size: clamp(1.5rem, 2vw, 2.5rem); /* حجم خط مرن */
}

.services .container h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: var(--main-red);
}
.services .service-item {
  margin: 0px;
  text-align: center;
  border: 2px dotted color-mix(in srgb, var(--default-color), transparent 85%);
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  padding: 80px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item h3 {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: justify;
  line-height: 24px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
  background-color: var(--section-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}




/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .section-tittle {
  scroll-margin-top: 100px;
  margin: 0;
  padding: 0;
}

.about .section-title h2 {
  font-size: 34px;
  margin: 0;
  position: relative;
  display: inline-block;
  font-size: clamp(1.5rem, 2vw, 2.5rem); /* حجم خط مرن */
}

.about .section-title h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: var(--main-red);
}

.about .content ul {
  border: 2px dotted color-mix(in srgb, var(--default-color), transparent 85%);
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  list-style: none;
  padding: 15px;
}

.about .content ul li {
  position: relative;
  margin-top: 20px;
  padding-right: 60px;
}

.about .content ul li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-image: url(../../assets/img/usicon.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.about .content ul li p {
  font-size: clamp(1rem, 2vw, 1.125rem); /* حجم خط مرن */
  font-weight: 500;
  margin-top: 20px;
  padding: 10px 0 0 0;
  text-align: justify;
  line-height: 1.6;
}

.highlight {
  color: #c70000;
  font-weight: bold;
  font-size: 1.1em;
}

.imgAbout {
  height: 100%;
  background-color: #f9f9f9;
  padding: 20px;
}

.imgAbout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s ease;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.imgAbout img:hover {
  filter: grayscale(0%);
}

.subTittle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.subTittle h3 {
  width: 90%;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  border: 2px dotted color-mix(in srgb, var(--default-color), transparent 85%);
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

/* ميديا كويري لتحسين الشكل على الهواتف */
@media (max-width: 768px) {
  .about .content ul li {
    padding-right: 50px;
  }

  .about .content ul li::after {
    width: 40px;
    height: 40px;
  }

  .subTittle h2 {
    width: 100%;
    padding: 15px;
  }
}



/* customers styling  */
.customers-slider .container {
  direction: ltr;
  background: #f9f9f9;
  padding: 20px 0;
  overflow: hidden;
}

.customers-slider .container {
  overflow: hidden;
}


.customers-slider .section-title h2 {
  font-size: 34px;
  margin: 0;
  position: relative;
  display: inline-block;
  font-size: clamp(1.5rem, 2vw, 2.5rem); /* حجم خط مرن */
}

.customers-slider .section-title h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: var(--main-red);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
  gap: 30px;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.slider-track:hover {
  animation-play-state: paused;
}

.slider-track img {
  width: 250px;
  height: 200px;
  object-fit: contain;
  transition: 0.3s ease;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .slider-track img {
    width: 100px;
    height: 100px;
    padding: 6px;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 1200px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  margin-left: 10px;
  font-size: 18px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .container {
  height: fit-content;
}
.contact .container h2 {
  font-size: 34px;
  margin: 0;
  position: relative;
  display: inline-block;
  font-size: clamp(1.5rem, 2vw, 2.5rem); /* حجم خط مرن */
}

.contact .container h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: var(--main-red);
}

.contact .container p {
  font-size: 20px;
  font-weight: 300;
  padding: 20px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 300;
}

.php-email-form {
    background-color: #f9f9f9;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    max-width: 600px;
    margin: 40px auto;
    font-family: "IBM Plex Sans Arabic", sans-serif;
    direction: rtl;
    color: #333;
  }

  .php-email-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
  }

  .php-email-form input[type="text"],
  .php-email-form input[type="email"],
  .php-email-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    color: #333;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
  }

  .php-email-form input[type="text"]:focus,
  .php-email-form input[type="email"]:focus,
  .php-email-form textarea:focus {
    border-color: #e63946; /* لون أحمر مائل */
    outline: none;
  }

  .php-email-form textarea {
    resize: vertical;
    min-height: 120px;
  }

  .php-email-form button[type="submit"] {
    background-color: #e63946; /* أحمر */
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
  }

  .php-email-form button[type="submit"]:hover {
    background-color: #d62828; /* أحمر أغمق */
  }

  .php-email-form .loading,
  .php-email-form .sent-message {
    display: none;
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
  }

  .php-email-form .loading {
    color: #555;
  }

  .php-email-form .sent-message {
    color: #2a9d8f; /* أخضر */
  }