* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  font-family: "Rubik", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 0;
}

html {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Top Navigation Bar */
.nav-top {
  background: linear-gradient(
    135deg,
    rgb(105, 145, 135) 0%,
    rgb(85, 125, 115) 50%,
    rgb(105, 145, 135) 100%
  );
  width: 100%;
  padding: 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.nav-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: topNavShimmer 4s linear infinite;
}

@keyframes topNavShimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.social {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: nowrap;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.social-links {
  display: flex;
  align-items: center;
  /* gap: 12px; */
}

.social-links .a-top {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links .a-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-links .a-top:hover::before {
  opacity: 1;
}

.social-links .a-top:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-info {
  /* display: flex; */
  align-items: center;
  gap: 20px;
}

.contact-info .a-top {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 6px 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* .contact-info .a-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
} */

.contact-info .a-top:hover::before {
  left: 100%;
}

.contact-info .a-top:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.fa-brands {
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-links .fa-brands {
  font-size: 14px;
}

.a-top {
  color: white;
  text-decoration: none;
  /* display: flex; */
  align-items: center;
  gap: 8px;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  margin-left: 5px;
}

.a-top:link,
.a-top:visited {
  color: white;
  text-decoration: none;
}

.a-top:hover {
  color: white;
}

.a-top:hover .fa-brands,
.a-top:hover .fa-solid {
  transform: scale(1.2);
}

.contact-info .a-top i {
  font-size: 14px;
  margin-right: 3px;
}

.info {
  white-space: nowrap;
  font-weight: 500;
}

/* ---------------------------------------------------------------- */

/* Main Navigation Bar */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  width: 100%;
  /* padding: 15px 0; */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.a-nav-img {
  text-decoration: none;
  transition: transform 0.3s ease;
}

.a-nav-img:hover {
  transform: scale(1.05);
}

.a-nav-img img {
  width: 160px;
  height: 80px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  /* gap: 30px; */
  list-style: none;
  margin: 0;
  padding: 0;
}

.a-nav {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #333;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.a-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(105, 145, 135, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.a-nav:hover::before {
  left: 100%;
}

.a-nav:link,
.a-nav:visited {
  color: #333;
}

.a-nav:hover,
.a-nav.active {
  color: rgb(105, 145, 135);
  background: rgba(105, 145, 135, 0.08);
  transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(105, 145, 135, 0.1);
  color: rgb(105, 145, 135);
}

/* ---------------------------------------------------------------- */

.img-hero {
  background: url("../img/hero-img.png") no-repeat fixed center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.img-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.center {
  margin: auto;
  width: 40%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.img-rasia {
  width: 260px;
  height: 260px;
  padding-top: 30px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@font-face {
  font-family: vip-cartoon-vip-cartoon;
  src: url(../fonts/vip-cartoon-vip-cartoon.ttf);
}

h1 {
  color: white;
  font-family: "Rubik", sans-serif;
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  padding: 20px 35px;
  margin: 30px 0;
  background-color: rgba(105, 145, 135, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  animation: heroGlow 3s ease-in-out infinite alternate;
  transition: all 0.3s ease;
  display: inline-block;
}

h1::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shimmer 4s linear infinite;
  z-index: -1;
}

h1::after {
  content: "خبراء الرخام";
  position: absolute;
  top: 20px;
  left: 35px;
  right: 35px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 72px;
  font-weight: 900;
  z-index: -2;
  transform: translate(2px, 2px);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.1);
}

@keyframes heroGlow {
  0% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
      inset 0 0 20px rgba(255, 255, 255, 0.1);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5),
      0 0 60px rgba(105, 145, 135, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4),
      0 0 50px rgba(105, 145, 135, 0.2),
      inset 0 0 25px rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

h1:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.6),
    0 0 80px rgba(105, 145, 135, 0.4), inset 0 0 40px rgba(255, 255, 255, 0.3);
}

p {
  color: white;
  font-family: vip-cartoon-vip-cartoon;
  font-size: 30px;
  padding-top: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.img-made {
  width: 200px;
  height: auto;
  padding-bottom: 50px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
  animation: fadeInUp 1s ease-out 1s both;
  transition: transform 0.3s ease;
}

.img-made:hover {
  transform: scale(1.05);
}

/* ---------------------------------------------------------------- */
/* Main Content Styles */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: "Rubik", sans-serif;
  font-size: 48px;
  font-weight: bold;
  color: rgb(105, 145, 135);
  margin-bottom: 15px;
  border: none;
  padding: 0;
}

.section-subtitle {
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  color: #666;
  margin: 0;
  padding: 0;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  z-index: 1;
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.about-text {
  animation: fadeInLeft 1s ease-out;
}

.about-text h3 {
  font-family: "Rubik", sans-serif;
  font-size: 32px;
  color: rgb(105, 145, 135);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.about-text h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgb(105, 145, 135),
    rgba(105, 145, 135, 0.3)
  );
  border-radius: 2px;
}

.about-text p {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 35px;
  padding: 0;
  text-align: justify;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(105, 145, 135, 0.1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: rgba(105, 145, 135, 0.3);
}

.feature-item i {
  font-size: 28px;
  color: rgb(105, 145, 135);
  background: rgba(105, 145, 135, 0.1);
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-item:hover i {
  background: rgb(105, 145, 135);
  color: white;
  transform: scale(1.1);
}

.feature-item span {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.about-image {
  animation: fadeInRight 1s ease-out;
}

.image-placeholder {
  background: linear-gradient(135deg, #e9ecef, #f8f9fa);
  border: 2px dashed rgba(105, 145, 135, 0.3);
  border-radius: 20px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(105, 145, 135, 0.05),
    transparent
  );
  animation: shimmer 3s linear infinite;
}

.image-placeholder:hover {
  border-color: rgba(105, 145, 135, 0.5);
  transform: scale(1.02);
}

.image-placeholder i {
  font-size: 64px;
  margin-bottom: 15px;
  color: rgba(105, 145, 135, 0.6);
}

.image-placeholder p {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  margin: 0;
  color: #666;
  padding: 0;
  font-weight: 500;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(105, 145, 135, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(105, 145, 135, 0.05) 0%,
      transparent 50%
    );
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(105, 145, 135, 0.1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgb(105, 145, 135),
    rgba(105, 145, 135, 0.5)
  );
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(105, 145, 135, 0.3);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgb(105, 145, 135), rgb(85, 125, 115));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-card:hover .service-icon::before {
  transform: translateX(100%);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(105, 145, 135, 0.3);
}

.service-icon i {
  font-size: 36px;
  color: white;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
  transform: scale(1.1);
}

.service-card h3 {
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: rgb(105, 145, 135);
}

.service-card p {
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  padding: 0;
  transition: color 0.3s ease;
  flex-grow: 1;
}

.service-card:hover p {
  color: #555;
}

/* Products Section */
.products-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image .image-placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
}

.product-info {
  padding: 25px;
}

.product-info h3 {
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.product-info p {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
  padding: 0;
}

.view-more {
  text-align: center;
}

.btn-primary {
  display: inline-block;
  background: rgb(105, 145, 135);
  color: white;
  padding: 15px 40px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: rgb(85, 125, 115);
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: rgb(105, 145, 135);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 24px;
  color: white;
}

.contact-details h4 {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  color: #333;
  margin: 0 0 5px 0;
}

.contact-details p {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  color: #666;
  margin: 0;
  padding: 0;
}

.contact-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgb(105, 145, 135);
}

.contact-form button {
  width: 100%;
  background: rgb(105, 145, 135);
  color: white;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: rgb(85, 125, 115);
}

/* Footer */
.footer {
  background: linear-gradient(
    135deg,
    #0a0f14 0%,
    #1a252f 25%,
    #2c3e50 75%,
    #34495e 100%
  );
  color: white;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(105, 145, 135, 0.2);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(105, 145, 135),
    rgba(105, 145, 135, 0.8),
    rgb(105, 145, 135),
    transparent
  );
  animation: footerGlow 3s ease-in-out infinite alternate;
}

@keyframes footerGlow {
  0% {
    opacity: 0.7;
    transform: scaleY(1);
  }
  100% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(105, 145, 135, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(105, 145, 135, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(105, 145, 135, 0.05) 0%,
      transparent 70%
    );
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* Footer Sections */
.footer-section {
  animation: fadeInUp 0.8s ease-out;
  padding: 20px 15px;
}

.footer-section h4 {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgb(105, 145, 135);
  margin-bottom: 15px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 25px;
  height: 2px;
  background: linear-gradient(90deg, rgb(105, 145, 135), transparent);
  border-radius: 1px;
}

.footer-section {
  animation: fadeInUp 0.8s ease-out;
}

/* Company Info Section */
.footer-section.company-info {
  background: rgba(105, 145, 135, 0.08);
  padding: 25px 20px;
  border-radius: 15px;
  border: 1px solid rgba(105, 145, 135, 0.2);
  position: relative;
  overflow: hidden;
}

.footer-section.company-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(105, 145, 135, 0.05) 0%,
    transparent 60%
  );
  z-index: 1;
}

.footer-section.company-info > * {
  position: relative;
  z-index: 2;
}

.footer-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 15px;
}

.footer-logo {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(1.2);
  margin-bottom: 8px;
}

.company-name {
  font-family: "Rubik", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: rgb(105, 145, 135);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  text-align: center;
  position: relative;
}

.company-name::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgb(105, 145, 135),
    rgba(105, 145, 135, 0.3)
  );
  border-radius: 1px;
}

.footer-section h4 {
  font-family: "Rubik", sans-serif;
  font-size: 24px;
  margin-bottom: 30px;
  color: white;
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgb(105, 145, 135),
    rgba(105, 145, 135, 0.3)
  );
  border-radius: 2px;
  animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
  0% {
    box-shadow: 0 0 5px rgba(105, 145, 135, 0.5);
  }
  100% {
    box-shadow: 0 0 15px rgba(105, 145, 135, 0.8);
  }
}

.footer-logo {
  width: 160px;
  height: auto;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  filter: brightness(1.2) drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.footer-logo:hover {
  transform: scale(1.08) rotate(2deg);
  filter: brightness(1.3) drop-shadow(0 8px 25px rgba(105, 145, 135, 0.4));
}

.footer-section p {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #ecf0f1;
  margin-bottom: 30px;
  padding: 0;
  text-align: justify;
}

.company-description {
  font-size: 14px;
  color: #bdc3c7;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}

/* Footer Social Section */
.footer-social {
  text-align: center;
  margin-top: 25px;
}

.footer-social h5 {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ecf0f1;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-links-footer {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.social-links-footer a {
  width: 35px;
  height: 35px;
  background: linear-gradient(
    135deg,
    rgba(105, 145, 135, 0.2),
    rgba(105, 145, 135, 0.1)
  );
  border: 2px solid rgba(105, 145, 135, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(105, 145, 135);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.social-links-footer a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-links-footer a:hover::before {
  opacity: 1;
}

.social-links-footer a:hover {
  background: linear-gradient(
    135deg,
    rgb(105, 145, 135),
    rgba(105, 145, 135, 0.8)
  );
  border-color: rgb(105, 145, 135);
  color: white;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(105, 145, 135, 0.4);
}

.social-links-footer a i {
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-links-footer a:hover i {
  transform: scale(1.15);
}

/* Instagram specific hover */
.social-links-footer a[href*="instagram"]:hover {
  background: linear-gradient(135deg, #e4405f, #c13584);
  border-color: #e4405f;
}

/* Twitter specific hover */
.social-links-footer a[href*="x.com"]:hover {
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
  border-color: #1da1f2;
}

/* TikTok specific hover */
.social-links-footer a[href*="tiktok"]:hover {
  background: linear-gradient(135deg, #000000, #ff0050);
  border-color: #ff0050;
}

/* Snapchat specific hover */
.social-links-footer a[href*="snapchat"]:hover {
  background: linear-gradient(135deg, #fffc00, #ffeb3b);
  border-color: #fffc00;
  color: #333;
}

.social-links {
  display: flex;
  /* gap: 20px; */
  /* margin-top: 25px; */
}

.social-links a {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgb(105, 145, 135), rgb(85, 125, 115));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(105, 145, 135, 0.3);
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.social-links a:hover::before {
  transform: translateX(100%);
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(105, 145, 135, 0.5);
  background: linear-gradient(135deg, rgb(85, 125, 115), rgb(105, 145, 135));
}

.social-links a i {
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover i {
  transform: scale(1.2);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.footer-section ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: rgb(105, 145, 135);
  font-size: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.footer-section ul li:hover::before {
  transform: translateY(-50%) translateX(5px);
  color: white;
}

.footer-section ul li a {
  color: #ecf0f1;
  text-decoration: none;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: rgb(105, 145, 135);
  transition: width 0.3s ease;
}

.footer-section ul li a:hover {
  color: rgb(105, 145, 135);
  transform: translateX(5px);
}

.footer-section ul li a:hover::after {
  width: 100%;
}

.contact-info-footer {
  margin-top: 20px;
}

.contact-info-footer p {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #ecf0f1;
  padding: 0;
  transition: all 0.3s ease;
}

.contact-info-footer p:hover {
  color: rgb(105, 145, 135);
  transform: translateX(5px);
}

.contact-info-footer i {
  color: rgb(105, 145, 135);
  font-size: 18px;
  width: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-info-footer p:hover i {
  transform: scale(1.2);
  color: white;
}

.footer-bottom {
  border-top: 2px solid rgba(105, 145, 135, 0.3);
  padding: 20px 20px 10px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(105, 145, 135),
    transparent
  );
  animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(105, 145, 135, 0.5);
  }
}

.footer-bottom p {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  color: #bdc3c7;
  margin: 0;
  padding: 0;
  font-weight: 300;
}

.made-in-saudi img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

.made-in-saudi img:hover {
  transform: scale(1.1);
  filter: brightness(1.3);
}

/* Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(105, 145, 135, 0.2);
  display: none;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0 max(10px, env(safe-area-inset-bottom));
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #8a8a8a;
  padding: 10px 8px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 65px;
  position: relative;
  overflow: hidden;
}

.bottom-nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background: rgba(105, 145, 135, 0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  z-index: -1;
}

.bottom-nav-item i {
  font-size: 22px;
  margin-bottom: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-nav-item span {
  font-size: 10px;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.8;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
  color: rgb(105, 145, 135);
  transform: translateY(-2px);
}

.bottom-nav-item:hover::before,
.bottom-nav-item.active::before {
  width: 100%;
}

.bottom-nav-item.active i {
  transform: scale(1.15);
  color: rgb(105, 145, 135);
}

.bottom-nav-item.active span {
  opacity: 1;
  font-weight: 700;
}

.bottom-nav-item:active {
  transform: translateY(0) scale(0.95);
}

/* Add padding to body when bottom nav is visible */
body.bottom-nav-visible {
  padding-bottom: 70px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  /* Large tablet adjustments */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 1024px) {
  /* Tablet adjustments */
  .social {
    padding: 0 15px;
    gap: 20px;
  }

  .contact-info {
    gap: 15px;
  }

  .social-links {
    gap: 10px;
  }

  .nav-links {
    gap: 20px;
  }

  .a-nav {
    font-size: 16px;
    padding: 10px 15px;
  }

  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-text,
  .about-image {
    display: block;
    width: 100%;
  }

  .about-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  /* Footer adjustments for tablets */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-section.company-info {
    padding: 25px;
    text-align: center;
  }

  .footer-section h4 {
    font-size: 18px;
  }

  .company-name {
    font-size: 28px;
  }

  .social-links-footer {
    gap: 12px;
  }

  .social-links-footer a {
    width: 38px;
    height: 38px;
  }

  .social-links-footer a i {
    font-size: 16px;
  }

  /* Contact section */
  .contact-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .footer-links-section .footer-section {
    width: 30%;
    margin: 0 1.5%;
  }
}

@media (max-width: 768px) {
  /* Mobile optimizations */
  button,
  .btn,
  .a-nav,
  .bottom-nav-item,
  .social-links-footer a {
    min-height: 44px;
    min-width: 44px;
  }

  body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }

  html {
    -webkit-overflow-scrolling: touch;
  }

  input,
  textarea,
  select {
    font-size: 16px;
  }

  /* Show bottom navigation */
  .bottom-nav {
    display: flex;
  }

  /* Hide entire navbar on mobile */
  .navbar {
    display: none;
  }

  /* Adjust body padding for bottom nav */
  body {
    padding-bottom: 75px;
  }

  /* Container adjustments */
  .container {
    padding: 0 15px;
  }

  /* Top navigation adjustments */
  .nav-top {
    padding: 6px 0;
  }

  .social {
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 15px;
    justify-content: center;
  }

  .social-links {
    justify-content: center;
    gap: 10px;
  }

  .social-links .a-top {
    width: 30px;
    height: 30px;
  }

  .social-links .fa-brands {
    font-size: 12px;
  }

  .contact-info {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .contact-info .a-top {
    padding: 5px 12px;
    font-size: 11px;
  }

  .contact-info .a-top i {
    font-size: 12px;
  }

  /* Navbar adjustments */
  .navbar {
    padding: 10px 0;
  }

  .navbar .container {
    padding: 0 15px;
  }

  .a-nav-img img {
    width: 120px;
    height: 60px;
  }
}

/* Hero section */
.img-hero {
  min-height: 80vh;
  background-attachment: scroll;
}

.center {
  width: 95%;
  padding: 20px 0;
}

.img-rasia {
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
}

h1 {
  font-size: 42px;
  padding: 12px 20px;
  margin: 20px 0;
}

h1::after {
  font-size: 42px;
  top: 12px;
  left: 20px;
  right: 20px;
  bottom: 12px;
}

p {
  font-size: 22px;
  padding-top: 15px;
}

.img-made {
  width: 150px;
  margin-top: 20px;
}

/* Section headers */
.section-header h2 {
  font-size: 36px;
}

.section-subtitle {
  font-size: 18px;
}

/* About section */
.about-section {
  padding: 60px 0;
}

/* About section - block layout for mobile */
.about-content {
  flex-direction: column;
  gap: 30px;
}

/* About section - same as products */
.about-content {
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.about-text h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.features {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 25px;
}

.feature-item {
  padding: 15px;
  flex-direction: row;
  text-align: right;
}

.feature-item i {
  font-size: 20px;
  padding: 8px;
}

.image-placeholder {
  height: 250px;
  margin-top: 20px;
}

.feature-item {
  padding: 15px;
}

.image-placeholder {
  height: 300px;
}

/* Services section - same as products */
.services-section {
  padding: 50px 0;
}

.services-grid {
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.service-card {
  padding: 35px 20px;
  margin: 0 10px;
}

.service-icon {
  width: 70px;
  height: 70px;
}

.service-icon i {
  font-size: 32px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* Products section */
.products-section {
  padding: 50px 0;
}

.products-grid {
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.product-card {
  margin: 0 10px;
}

.product-image {
  height: 180px;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  font-size: 18px;
}

.product-info p {
  font-size: 13px;
}

/* Contact section */
.contact-section {
  padding: 50px 0;
}

.contact-content {
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-form {
  padding: 25px 15px;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  font-size: 14px;
}

.contact-form button {
  padding: 12px;
  font-size: 16px;
}

.footer-section.company-info {
  padding: 25px 15px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.company-name {
  font-size: 24px;
}

.company-description {
  font-size: 14px;
  line-height: 1.6;
}

.footer-social h5 {
  font-size: 14px;
}

.social-links-footer {
  gap: 8px;
}

.social-links-footer a {
  width: 38px;
  height: 38px;
}

.social-links-footer a i {
  font-size: 16px;
}

.footer-links {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 13px;
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgb(105, 145, 135);
}

.contact-info-footer {
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 10px;
}

.contact-item i {
  color: rgb(105, 145, 135);
  font-size: 14px;
  margin-top: 2px;
  min-width: 16px;
}

.contact-details {
  text-align: left;
}

.contact-label {
  font-size: 11px;
  color: #95a5a6;
  display: block;
  margin-bottom: 2px;
}

.contact-value {
  font-size: 12px;
  color: #bdc3c7;
  line-height: 1.4;
}

.footer-links-section {
  padding: 25px;
}

/* .footer-links-section .footer-section {
  display: block;
  width: 100%;
  margin: 0 0 30px 0;
} */

.footer-section.company-info {
  padding: 25px;
  text-align: center;
}

.footer-section h4 {
  font-size: 20px;
}

.footer-section p,
.company-description {
  font-size: 14px;
}

.footer-logo {
  width: 120px;
}

.social-links {
  justify-content: center;
}

.social-links a {
  width: 45px;
  height: 45px;
}

.social-links a i {
  font-size: 18px;
}

/* About, Services, Products, and Contact grids - same responsive behavior */
.about-content,
.services-grid,
.products-grid,
.contact-content {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Contact section */
.contact-content {
  /* grid-template-columns: 1fr; */
  gap: 40px;
}

.contact-form {
  padding: 30px 20px;
}

.footer-bottom {
  flex-direction: column;
  text-align: center;
}

@media (max-width: 480px) {
  /* Very small screens */
  .container {
    padding: 0 10px;
  }

  /* Hero section for very small screens */
  .img-hero {
    min-height: 70vh;
  }

  .center {
    width: 98%;
    padding: 15px 0;
  }

  h1 {
    font-size: 32px;
    padding: 10px 15px;
    margin: 15px 0;
  }

  h1::after {
    font-size: 32px;
    top: 10px;
    left: 15px;
    right: 15px;
    bottom: 10px;
  }

  p {
    font-size: 18px;
    padding-top: 10px;
  }

  .img-rasia {
    width: 140px;
    height: 140px;
  }

  .img-made {
    width: 120px;
  }

  /* Section headers */
  .section-header h2 {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  /* About section */
  .about-section {
    padding: 40px 0;
  }

  .about-text h3 {
    font-size: 22px;
  }

  .about-text p {
    font-size: 14px;
  }

  /* Services section */
  .services-section {
    padding: 40px 0;
  }

  .service-card {
    padding: 25px 15px;
    margin: 0 5px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 13px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 28px;
  }

  /* Products section */
  .products-section {
    padding: 40px 0;
  }

  .product-card {
    margin: 0 5px;
  }

  /* Contact section */
  .contact-section {
    padding: 40px 0;
  }

  .contact-form {
    padding: 20px 10px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 15px;
  }

  .footer-content {
    padding: 0 10px;
    gap: 20px;
  }

  .footer-section {
    padding: 15px 10px;
  }

  .company-name {
    font-size: 20px;
  }

  .company-description {
    font-size: 13px;
  }

  .social-links-footer a {
    width: 35px;
    height: 35px;
  }

  .social-links-footer a i {
    font-size: 14px;
  }

  /* Bottom navigation for very small screens */
  .bottom-nav {
    padding: 6px 0 max(6px, env(safe-area-inset-bottom));
  }

  .bottom-nav-item {
    min-width: 50px;
    padding: 6px 4px;
  }

  .bottom-nav-item i {
    font-size: 18px;
  }

  .bottom-nav-item span {
    font-size: 9px;
  }

  body {
    padding-bottom: 65px;
  }
}

/* Bottom navigation adjustments for very small screens */
.bottom-nav {
  padding: 8px 0 max(8px, env(safe-area-inset-bottom));
}

.bottom-nav-item {
  min-width: 55px;
  padding: 8px 6px;
}

.bottom-nav-item i {
  font-size: 20px;
}

.bottom-nav-item span {
  font-size: 9px;
}

/* Adjust body padding for smaller bottom nav */
body {
  padding-bottom: 65px;
}

/* About section adjustments */
.about-section {
  padding: 40px 0;
}

.about-text h3 {
  font-size: 24px;
}

.about-text p {
  font-size: 16px;
}

.feature-item {
  padding: 12px;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.feature-item i {
  font-size: 24px;
  padding: 8px;
}

/* Services section adjustments */
.services-section {
  padding: 40px 0;
}

.service-card {
  padding: 30px 20px;
}

.service-icon {
  width: 70px;
  height: 70px;
}

.service-icon i {
  font-size: 30px;
}

.service-card h3 {
  font-size: 20px;
}

.service-card p {
  font-size: 14px;
}

/* Footer adjustments */
.footer {
  padding: 40px 0 15px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-section p,
.company-description {
  font-size: 13px;
  line-height: 1.6;
}

.footer-logo {
  width: 100px;
  margin-bottom: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
}

.social-links a i {
  font-size: 16px;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  font-size: 14px;
}

.contact-info-footer p {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-bottom {
  padding: 15px 15px 5px;
}

.footer-bottom p {
  font-size: 14px;
}

.made-in-saudi img {
  height: 40px;
}

/* Remove any white space after footer */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.footer {
  margin-bottom: 0 !important;
}

.footer-bottom {
  margin-bottom: 0 !important;
}
