:root {
  --primary-color: #dc7934;
  --secondary-color: #fac69c;
  --accent-color: #6c6c74;
  --light-color: #f7f2e8;
  --dark-color: #2c3e50;
  --text-color: #333;
  --text-light: #7f8c8d;

  /* ألوان وتأثيرات النيون */
  --neon-color: #ff3c00;
--neon-glow: 0 0 10px #ff3c00, 0 0 20px #ff4400, 0 0 40px #ff3c00, 0 0 60px #ff3c00;
  --neon-dark-bg: #0a0a1a;
}

/* Neon Text Utility */
.neon-text {
  color: var(--neon-color);
  text-shadow: var(--neon-glow);
  font-weight: bold;
  animation: flicker 2s infinite alternate;
}

@keyframes flicker {
  0% { opacity: 1; }
  50% { opacity: 0.8; }
  100% { opacity: 1; }
}

/* خلفية داكنة للنيون */
.neon-bg {
  background-color: var(--neon-dark-bg);
  color: white;
}

/* خطوط النيون - تضاف داخل قسم الـ Hero */
.neon-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.neon-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  box-shadow: var(--neon-glow);
  opacity: 0.7;
  animation: neonWave 3s infinite ease-in-out;
}

@keyframes neonWave {
  0%, 100% {
    transform: scaleX(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scaleX(1.1);
    opacity: 1;
  }
}

.neon-line:nth-child(1) { top: 20%; animation-delay: 0s; }
.neon-line:nth-child(2) { top: 40%; animation-delay: 0.4s; }
.neon-line:nth-child(3) { top: 60%; animation-delay: 0.8s; }
.neon-line:nth-child(4) { top: 80%; animation-delay: 1.2s; }

/* إعدادات قسم البطل (Hero) مع النيون */
#hero {
  position: relative;
  overflow: hidden;
  background-color: var(--neon-dark-bg);
}

.hero-content {
  position: relative;
  z-index: 2;
  background: rgba(10, 10, 26, 0.7);
  backdrop-filter: blur(5px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  background-color: white;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  color: white;
  position: relative;
}

.section-title2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 15px auto;
  border-radius: 2px;
}


.dark-bg {
  background-color: var(--dark-color);
  color: white;
}

.dark-bg .section-title {
  color: white;
}

.dark-bg .section-title::after {
  background: var(--secondary-color);
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
}

.loader-logo {
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Header & Navigation - Updated Design */
/* الكود باقي كما هو ... */

/* Header & Navigation - Updated Design */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(247, 242, 232, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(220, 121, 52, 0.1);
  padding: 10px 0;
}

.sticky-header.scrolled {
  background-color: rgba(220, 121, 52, 0.2);
  box-shadow: 0 4px 30px rgba(220, 121, 52, 0.15);
  padding: 6px 0;
}
.sticky-header.scrolled .logo-text {
  font-size: 1.4rem; /* صغرنا حجم النص */
}

.sticky-header.scrolled .logo-img {
  height: 70px; /* صغرنا حجم الصورة */
  filter: brightness(0) invert(1);
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.logo {
  display: flex;
  align-items: flex-end;
  transition: all 0.3s ease;
  gap: 12px;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 100px;
  width: auto;
  transition: all 0.3s ease;
  margin-bottom: -5px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  line-height: 1;
  padding-bottom: 5px;
  text-transform: uppercase;
  font-family: 'Segoe UI', sans-serif;
}

.sticky-header.scrolled .logo-text {
  color: white;
}

.sticky-header.scrolled .logo-img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  margin-left: 32px;
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  padding: 12px 0;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s ease, background 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-color);
}

.sticky-header.scrolled .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.sticky-header.scrolled .nav-link:hover {
  color: white;
}

.sticky-header.scrolled .nav-link::after {
  background: var(--secondary-color);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
}

.hamburger {
  width: 28px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform-origin: left center;
}

.sticky-header.scrolled .hamburger span {
  background: white;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(1px, -1px);
  width: 110%;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(1px, 2px);
  width: 110%;
}


/* Hero Section with Image and Orange Overlay */
#hero {
  height: 150vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  background: 
    linear-gradient(rgba(33, 36, 55, 0.7), rgba(220, 121, 52, 0.7)),
    url('../3d-rendering-industry-40-concept.jpg') no-repeat center center/cover;
}

.hero-content {
  max-width: 800px;
  padding: 40px;
  animation: fadeInUp 1s ease;
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 15px;
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.typing-animation {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid var(--secondary-color);
  animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--secondary-color); }
}

#hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.button:hover {
  background: #c5692b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-down span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  margin: -10px;
  animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}

/* About Section */
.about-section {
  position: relative;
  background-image: url('Flux_Dev_A_futuristic_smart_factory_interior_with_glowing_data_0.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  z-index: 0;
  overflow: hidden;
  padding: 100px 20px;
  min-height: 600px;
}

.about-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.about-section .section-title1 {
  color: white;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 50px;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.about-section .section-title1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffffffcc;
  margin: 15px auto 0;
  border-radius: 2px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  justify-content: center;
}

.about-content p {
  flex: 1 1 400px;
  font-size: 1.25rem;
  line-height: 1.8;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 0.03em;
  text-align: justify;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

.about-image {
  flex: 1 1 400px;
  overflow: hidden;
  border-radius: 15px;
  max-width: 500px;
}

.zoom-effect {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.zoom-effect:hover {
  transform: scale(1.07);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}
/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 3px solid var(--primary-color);
}

.dark-bg .service-card {
  background: rgba(255, 255, 255, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
.section-title{
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.dark-bg .service-card h3 {
  color: white;
}
.section-title .orange-text {
  color: var(--primary-color);
}

/* أو إذا كنت تريد لونًا برتقاليًا محددًا */
.section-title .orange-text {
  color: #FF7A00; /* لون برتقالي مميز */
}
/* Partners Section */
/* Partners Section */
.partners-section {
  text-align: center;
  padding: 80px 0;
  background-color: var(--light-color);
  position: relative;
}

.partners-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 40px 20px;
}

.partners-content::before,
.partners-content::after {
  content: "";
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
}

.partners-content::before {
  top: 0;
}

.partners-content::after {
  bottom: 0;
}

.partner-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-color);
  margin: 30px auto;
  max-width: 700px;
}

@media (max-width: 768px) {
  .partners-section {
    padding: 60px 0;
  }
  
  .partner-text {
    font-size: 1.1rem;
    padding: 0 20px;
  }
}
/* Testimonials Section */
/* Testimonials Section */
.testimonials-section {
  position: relative;
  padding: 100px 20px;
  background-image: url('wave.png');
  background-size: cover;
  color: white;
  text-align: center;
}

.testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 30, 50, 0.85); /* لون أزرق داكن شفاف */
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: white;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary-color);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-icon {
  font-size: 5rem;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

blockquote {
  font-size: 1.4rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

cite {
  font-weight: bold;
  font-style: normal;
  font-size: 1.2rem;
}

.company {
  opacity: 0.8;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 70px 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  blockquote {
    font-size: 1.2rem;
  }
  
  .quote-icon {
    font-size: 3.5rem;
  }
}
/* Contact Section */
.contact-section {
  background: var(--dark-color);
  color: white;
  padding: 80px 0;
  position: relative;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.contact-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 40px auto 0;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.contact-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-top: 5px;
}

.contact-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.contact-item p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-form {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 121, 52, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
  min-height: 180px;
  resize: vertical;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #e06b2d;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(220, 121, 52, 0.4);
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: white;
  padding: 60px 0 30px;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo-img {
  height: 100px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(220, 121, 52, 0.3));
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: white;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.social-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(220, 121, 52, 0.8), rgba(250, 198, 156, 0.6));
  top: 100%;
  left: 0;
  transition: top 0.3s ease;
  z-index: 0;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(220, 121, 52, 0.4);
}

.social-links a:hover::after {
  top: 0;
}

.social-links a i {
  position: relative;
  z-index: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: var(--primary-color);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .footer-logo {
    justify-content: center;
    margin-bottom: 10px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  footer {
    padding: 40px 0 20px;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .contact-item {
    flex: 1 1 200px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-item {
    flex: 1 1 100%;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}
/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 0 0 25px 0;
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.1rem;
    padding: 8px 0;
    width: 100%;
  }
 
  .sticky-header.scrolled .nav-links {
    background: var(--primary-color);
  }
  
  .sticky-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .sticky-header.scrolled .nav-link:hover {
    color: white;
  }
  
  #hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    padding: 30px 20px;
  }
  
  #hero h1 {
    font-size: 2.2rem;
  }
  
}