/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #faf8f5;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #2d2d2d;
}

::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f4d03f;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: #313131;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 5px #d4af37;
  }
  50% {
    box-shadow: 0 0 20px #d4af37, 0 0 30px #d4af37;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* .animate-fade-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-right {
  animation: fadeInRight 0.8s ease-out;
}

.animate-scale {
  animation: scaleIn 0.6s ease-out;
} */

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
  background: linear-gradient(180deg, #ffe5bd, transparent);
}

.navbar.scrolled {
  /* background: #faf8f5db; */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 60px;
  height: auto;
}

.nav-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: 140px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link:hover {
  color: #d4af37;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 15%;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #2d2d2d;
  font-size: 1.5rem;
  cursor: pointer;
}

.login-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, rgb(0 0 0), rgb(48, 48, 47));
  color: #faf8f5;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.login-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  color: #d4af37;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 4.5rem;
}

.hero-bg-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
}

.bg-element {
  position: absolute;
  border: 2px solid #fde6c4;
  animation: glow 3s ease-in-out infinite;
}

.bg-element-1 {
  top: 80px;
  right: 80px;
  width: 128px;
  height: 128px;
  transform: rotate(45deg);
  animation-delay: 0s;
  opacity: 0.5;
}

.bg-element-2 {
  bottom: 128px;
  left: 64px;
  width: 96px;
  height: 96px;
  transform: rotate(12deg);
  animation-delay: 0.5s;
  opacity: 0.5;
}

.bg-element-3 {
  top: 50%;
  left: 25%;
  width: 64px;
  height: 64px;
  background: rgba(212, 175, 55, 0.1);
  transform: rotate(45deg);
  animation-delay: 1s;
  opacity: 0.5;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-logo {
  margin-bottom: 1rem;
}

.hero-logo-img {
  width: 100px;
  height: 96px;
  padding: 0.4rem;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 1rem;
  animation: glow 2s ease-in-out infinite;
}
.hero-logo-name {
  width: 260px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-subtitle {
  color: #2d2d2d;
  display: block;
}

.hero-description {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #585858;
  line-height: 1.6;
}

.hero-highlight {
  color: #d4af37;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: #2d2d2d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #d4af37;
  transition: all 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.feature-label {
  font-size: 0.875rem;
  color: #2d2d2d;
}

.hero-cta {
  border: 2px solid #f4d03f;
  background: transparent;
  color: #2d2d2d;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 3rem;
}

.hero-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  background: linear-gradient(135deg, #d4af37, #f4d03f);
}

.scroll-indicator {
  position: absolute;
  bottom: 5.8rem;
  left: 48%;
  transform: translateX(-50%);
  color: #2d2d2d;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

/* Services Section */
.services {
  padding-bottom: 2.5rem;
  /* background: linear-gradient(180deg, #faf8f5 0%, #ffffff 100%); */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff6ea;
  border: 1px solid #ffddb1;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #2d2d2d;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  color: #d4af37;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: #d4af37;
}

.service-description {
  color: #2d2d2d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #2d2d2d;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #d4af37;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Portfolio Section */
.portfolio {
  padding: 5rem 0;
  background: #ffffff;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: #faf8f5;
  border: 1px solid #ffddb1;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
  cursor: pointer;
}

.portfolio-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* .portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
} */
.portfolio-image .default-img {
  opacity: 1;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.portfolio-image .hover-img {
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}

/* عند الـ hover تتبدل الصور */
.portfolio-card:hover .portfolio-image .default-img {
  opacity: 0;
}

.portfolio-card:hover .portfolio-image .hover-img {
  opacity: 1;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(26, 26, 26, 0.8) 100%
  );
}

.portfolio-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  background: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 1.25rem;
  z-index: 3;
  pointer-events: none;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-category {
  display: inline-block;
  background: #2d2d2d;
  color: #d4af37;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.portfolio-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-title {
  color: #d4af37;
}

.portfolio-description {
  color: rgb(45, 45, 45);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.portfolio-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.portfolio-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(45, 45, 45);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.portfolio-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
  flex-shrink: 0;
}
.portfolio a {
  text-decoration: none;
}

.portfolio-btn {
  width: 100%;
  background: transparent;
  border: 1px solid #d4af37;
  color: #2d2d2d;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.portfolio-btn:hover {
  background: #d4af37;
  color: #1a1a1a;
}
.portfolio-order {
  width: 100%;
  background: linear-gradient(135deg, #bf991e, #f4d03f);
  border: none;
  color: #2d2d2d;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.portfolio-order:hover {
  background: linear-gradient(135deg, #f4d03f, #bf991e);
  transform: scale(1.02);
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.testimonial-card {
  background: #fff6ea;
  border: 1px solid #ffddb1;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 1rem;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.2);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating i {
  color: #d4af37;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgb(45, 45, 45);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #d4af37;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
  color: #2d2d2d;
}

.testimonial-card:hover .author-name {
  color: #d4af37;
}

.author-position {
  color: #d4af37;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.author-company {
  color: rgb(45, 45, 45);
  font-size: 0.875rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.technical-support {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #2d2d2d;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: #fde6c480;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.contact-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #2d2d2d;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #faf8f5;
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.contact-method:hover .contact-icon {
  transform: scale(1.1);
}

.contact-details h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #2d2d2d;
}

.contact-details p {
  color: rgb(45, 45, 45);
  transition: color 0.3s ease;
}

.contact-method:hover .contact-details p {
  color: #d4af37;
}

.location-card {
  background: linear-gradient(135deg, #2d2d2d, #4a4a4a);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.location-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.location-header i {
  color: #d4af37;
  font-size: 1.25rem;
}

.location-header h4 {
  font-weight: 700;
  color: #ffffff;
}

.location-card p {
  color: #b0b0b0;
  line-height: 1.5;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  background: #faf8f5;
  border: 1px solid #ffddb1;
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.feature-card:hover {
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-card-content h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2d2d2d;
}

.feature-card-content p {
  color: rgb(45, 45, 45);
  line-height: 1.5;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  padding: 0.5rem;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 0.75rem;
}

.footer-title {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #2d2d2d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: scale(1.1);
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 1.5rem;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #d4af37;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact-item i {
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid #2d2d2d;
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #888888;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  color: #888888;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: #d4af37;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 335px;
    left: 0;
    right: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.06),
        rgba(0, 0, 0, 0.06)
      ),
      linear-gradient(to bottom, #faf8f5 0%, #fff1df 100%) !important;
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem;
    gap: 0.7rem;
    transform: translateY(-335px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
  }

  .nav-menu.active {
    transform: translateY(-241px);
    opacity: 1;
    visibility: visible;
  }
  .nav-link {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 10px 5px;
  }

  .nav-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  /* .hero-features {
    flex-direction: column;
    gap: 1rem;
  } */

  .section-title {
    font-size: 2rem;
  }
  .hero-logo-name {
    width: 180px;
  }

  .section-description {
    font-size: 1rem;
  }

  .services-grid,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    margin-top: 3.5rem;
  }
  .hero-title {
    font-size: 2rem;
  }

  .hero-logo-name {
    width: 150px;
  }
  .hero-features {
    flex-direction: row;
    justify-content: space-around;
  }

  .feature-item {
    flex: 1;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .service-card,
  .portfolio-card,
  .testimonial-card {
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number,
  .Technical-Support {
    font-size: 2rem;
  }
}
