* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Tajawal", "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  direction: rtl;
  text-align: right;
}

/* Navbar Styles */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 0;
}

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

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.logo a {
  display: block;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  align-items: center;
}

.nav-menu .menu-item {
  position: relative;
}

.nav-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
  background-color: #0f766e;
  color: #fff;
}

.phone-button {
  display: flex;
  align-items: center;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #0ea5a1;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.phone-link:hover {
  background-color: #0f766e;
}

.phone-link i {
  font-size: 1.1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(
    to bottom,
    #767a7d,
    #babbbd
  ); /* Classic light background; replace with image if needed, e.g., background-image: url('your-bg.jpg'); */
  padding: 4rem 1rem;
  text-align: center;
  direction: rtl; /* Ensure RTL for Arabic */
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-description {
  max-width: 100%;
}

.hero-description p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  text-align: right;
  white-space: normal;
  word-break: break-word;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #0ea5a1;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 124, 186, 0.2);
}

.hero-btn:hover {
  background-color: #005a87;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 124, 186, 0.3);
}
.hero-btn i {
  font-size: 1.1rem;
}

.whatsapp-btn {
  background-color: #22c55e;
}
.whatsapp-btn:hover {
  background-color: #16a34a;
}
.phone-btn {
  background-color: #0ea5a1;
}
.phone-btn:hover {
  background-color: #0f766e;
}

/* Image Section Styles */
.image-section {
  background-color: #fff;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  position: relative;
}
.spacer-top,
.spacer-bottom {
  flex: 1;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin: 0 auto;
}
.image-container img {
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.image-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Services Section Styles */
.services-section {
  background: linear-gradient(to bottom, #f9f9f9, #fefefe);
  padding: 1rem 1rem;
  text-align: center;
  direction: rtl;
}
.services-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.services-title {
  font-size: 2rem;
  font-weight: bold;
  color: #243e76;
  margin-bottom: 0;
  line-height: 1.3;
}
.services-description {
  max-width: 100%;
}
.services-description p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  text-align: right;
  white-space: normal;
  word-break: break-word;
}
.services-description strong {
  color: #007cba;
  font-weight: bold;
}

.services-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 400px;
  margin: 0 auto;
}

.services-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;

  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 124, 186, 0.2);
}
.services-btn:hover {
  background-color: #005a87;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 124, 186, 0.3);
}

.services-btn i {
  font-size: 1.1rem;
}

/* Product Section Styles */
.product-section {
  background-image: url("./images/homepage/scnd-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 1rem;
  position: relative;
  text-align: center;
  direction: rtl;
  overflow: hidden;
  min-height: 50vh;
}
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(194, 192, 192, 0.6);
  z-index: 1;
}

.product-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
.product-title {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.product-description {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.6;
  text-align: right;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}

.product-button {
  display: flex;
  justify-content: center;
}
.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #f59e0b;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
}
.product-btn:hover {
  background-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}
.product-btn i {
  font-size: 1.1rem;
}

/* NEW: Services  Section Styles */
.services-heading-section {
  background-color: #fff;
  padding: 4rem 1rem;
  text-align: center;
  direction: rtl;
}
.services-heading-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.services-heading-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #ca0b0b;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.services-heading-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0f1ca6;
  margin: 0;
  line-height: 1.3;
}

.services-heading-description {
  max-width: 100%;
}
.services-heading-description p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  text-align: right;
  white-space: normal;
  word-break: break-word;
}
/* Services Grid Section Styles */
.services-grid-section {
  background: linear-gradient(180deg, #ecfeff 0%, #e0f2fe 100%);
  padding: 2rem 1rem;
  direction: rtl;
  text-align: center;
}
.services-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1000px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  text-align: right;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.15);
}
.service-image {
  width: 100%;
  height: 200px;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 8px;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.service-card:hover .service-image img {
  transform: scale(1.05);
}
.service-title {
  font-size: 2rem;
  font-weight: bold;
  color: #243e76;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.service-description {
  flex: 1;
  margin-bottom: 1.5rem;
}
.service-description p {
  font-size: 1rem;
  color: #121212;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
}
.service-description strong {
  color: #007cba;
  font-weight: bold;
}
.service-button {
  width: 100%;
  display: flex;
  justify-content: center;
}
.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #0ea5a1;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 124, 186, 0.2);
  min-width: 120px;
}
.service-btn:hover {
  background-color: #0f766e;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 124, 186, 0.3);
  color: #fff;
}
/* Features/Gallery Section Styles */
.features-section {
  background-image: url("./images/homepage/third-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 60vh;
  padding: 4rem 1rem;
  position: relative;
  direction: rtl;
  text-align: right;
  overflow: hidden;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(248, 249, 250, 0.8),
    rgba(233, 236, 239, 0.8)
  );
  opacity: 0;
}
.features-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 35, 86, 0.6);
  z-index: 1;
}
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.features-left,
.features-right {
  flex: 1;
}
.features-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.features-image {
  width: 100%;
}
.features-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  object-fit: cover;
}
.features-image img:hover {
  transform: scale(1.02);
}
/* Icon Boxes */
.features-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.features-row {
  display: flex;
  gap: 1rem;
}
.icon-box {
  flex: 1;
  background: rgba(14, 165, 161, 0.15);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  backdrop-filter: blur(5px);
}
.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.icon-box-icon {
  font-size: 2rem;
  background-color: #0ea5a1;
  width: 50px;
  color: #fff;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.icon-box-icon i {
  width: 100%;
  text-align: center;
}
.icon-box-title {
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.icon-box-description {
  font-size: 0.8rem;
  color: #fff;
  line-height: 1.6;
  flex: 1;
  white-space: normal;
  word-break: break-word;
}
/*  Section: Full-Width Heading with Overlay */
.new-heading-section {
  background-image: url("./images/homepage/frth-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 1rem;
  position: relative;
  text-align: center;
  direction: rtl;
  min-height: 50vh;
  overflow: hidden;
}
.new-heading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(194, 192, 192, 0.6);
  z-index: 1;
}
.new-heading-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
.new-heading-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.new-heading-description {
  max-width: 100%;
}

.new-heading-description p {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.6;
  text-align: right;
  white-space: normal;
  word-break: break-word;
}
.new-heading-button {
  display: flex;
  justify-content: center;
}
.new-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #b81806;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 124, 186, 0.2);
  min-width: 120px;
}
.new-btn:hover {
  background-color: #005a87;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 124, 186, 0.3);
  color: #fff;
}
/* New Section: Three-Column Icon Grid */
.new-icon-grid-section {
  background-color: #f9f9f9;
  padding: 4rem 1rem 4rem;
  direction: rtl;
  text-align: right;
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.new-icon-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #f9f9f9;
  padding: 40px 0 0;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.new-icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}
.new-icon-box {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  text-align: right; /* RTL */
}
.new-icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.new-icon-box-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 1rem;
}
.new-icon-box-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  align-self: flex-start;
  background-color: #b81806;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-icon-box-icon i {
  font-size: 1.5rem;
}
.new-icon-box-content {
  flex: 1;
}
.new-icon-box-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #243e76;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.new-icon-box-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  white-space: normal;
  word-break: break-word;
}
.new-icon-box-button {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: auto;
}

/* Footer Section Styles */
.footer-section {
  background-image: url("./images/footerbg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 1rem 2rem;
  position: relative;
  direction: rtl;
  text-align: right;
  color: #fff;
  overflow: hidden;
}
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 118, 110, 0.85),
    rgba(15, 23, 42, 0.95)
  );
  z-index: 1;
  opacity: inherit;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
/* Main Four-Column Grid */
.footer-grid-section {
  margin-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo {
  margin-bottom: 1rem;
}
.footer-logo img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.footer-description {
  margin-bottom: 1rem;
}
.footer-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  white-space: normal;
  word-break: break-word;
}
.footer-description strong {
  color: #c0bfbf;
  font-weight: bold;
}
.footer-social-placeholder {
  height: 1rem;
}
.footer-column-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #c0bfbf;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.footer-icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-icon-list li {
  margin-bottom: 0.75rem;
}
.footer-icon-list a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #c0bfbf;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.footer-icon-list a:hover {
  color: #b81806;
}
.footer-icon-list-icon {
  font-size: 1.1rem;
  color: #c0bfbf;
  min-width: 20px;
  text-align: center;
}
.footer-icon-list span:not(.footer-icon-list-icon) {
  font-size: 0.95rem;
  line-height: 1.4;
}
/* Bottom Copyright + Social Icons */
.footer-bottom-section {
  padding-top: 1.5rem;
  border-top: 1px solid #dee2e6;
  text-align: center;
}
.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-copyright {
  flex: 1;
  font-size: 0.9rem;
  color: #c0bfbf;
  text-align: right;
}
.footer-social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #7a7979;
  color: #fff;
  text-decoration: none;
  border-radius: 10%;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.social-icon:hover {
  background-color: #b81806;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(184, 24, 6, 0.3);
}

/* Floating contact buttons */
.floating-contact {
  position: fixed;
  z-index: 1100;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.floating-right {
  right: 16px;
  bottom: 16px;
}
.floating-left {
  left: 16px;
  bottom: 16px;
}
.floating-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.floating-btn.whatsapp {
  background: #22c55e;
}
.floating-btn.phone {
  background: #0ea5a1;
}
/* label style kept for WhatsApp only if needed later */
.floating-label {
  display: none;
}
.floating-number {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
}
/* Ensure white even if auto-linked on mobile */
.floating-number a {
  color: #fff !important;
  text-decoration: none;
}
@keyframes floatPulse {
  0%,
  100% {
    opacity: 0.85;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 1rem;
  }

  .nav-menu a {
    padding: 0.4rem 0.8rem;
    font-size: 0.95rem;
  }

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

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-description p {
    font-size: 0.95rem;
  }
  .image-section {
    padding: 3rem 1rem;
    min-height: 40vh;
  }

  .image-container img {
    max-width: 250px;
  }

  .services-title {
    font-size: 1.8rem;
  }

  .services-description p {
    font-size: 1rem;
  }
  .product-title {
    font-size: 1.8rem;
  }

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

  .services-heading-title {
    font-size: 2.2rem;
  }
  .services-heading-description p {
    font-size: 1rem;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .services-grid-title {
    font-size: 2.2rem;
  }

  .service-title {
    font-size: 1.6rem;
  }

  .service-description p {
    font-size: 0.95rem;
  }

  .features-section {
    min-height: 50vh;
  }
  .features-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .features-title {
    font-size: 2.2rem;
    color: #fff;
  }
  .features-row {
    flex-direction: column;
    gap: 1rem;
  }
  .icon-box {
    padding: 1.25rem;
  }
  .icon-box-title {
    font-size: 1.2rem;
  }
  .new-icon-grid-section {
    margin-top: -30px;
  }

  .new-icon-grid-container {
    padding-top: 30px;
    border-radius: 0 0 15px 15px;
  }

  .new-icon-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .new-heading-title {
    font-size: 2.2rem;
  }
  .new-icon-box-title {
    font-size: 1.2rem;
  }

  .new-icon-box-description {
    font-size: 0.95rem;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-bottom-container {
    justify-content: center;
    text-align: center;
  }

  .footer-copyright {
    text-align: center;
    order: 2;
  }

  .footer-social-icons {
    order: 1;
  }
}

@media (max-width: 768px) {
  .nav-container {
    justify-content: space-between;
  }

  /* Hide phone on mobile */
  .phone-button {
    display: none;
  }

  /* Burger Menu */
  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    text-align: center;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    padding: 1rem;
    font-size: 1rem;
    border-radius: 0;
  }

  .nav-menu a:hover,
  .nav-menu .current-menu-item a {
    background-color: #dc3545;
    color: #fff;
  }

  .logo img {
    height: 35px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .hero-description p {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 100%;
  }

  .hero-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
    padding: 0.8rem 1.2rem;
  }

  .image-section {
    padding: 2rem 0.5rem;
    min-height: 40vh;
  }

  .spacer-top,
  .spacer-bottom {
    min-height: 1rem;
  }

  .image-container img {
    max-width: 200px;
    min-width: 150px;
  }

  .services-section {
    padding: 3rem 1rem;
  }

  .services-container {
    gap: 1.5rem;
  }

  .services-title {
    font-size: 1.6rem;
  }

  .services-description p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  .services-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-width: 100%;
  }

  .services-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
    padding: 0.8rem 1.2rem;
  }
  .product-section {
    padding: 3rem 1rem;
    min-height: 40vh;
  }

  .product-container {
    gap: 1rem;
  }

  .product-title {
    font-size: 1.6rem;
  }

  .product-description {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .product-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
    padding: 0.8rem 1.2rem;
  }

  .services-heading-section {
    padding: 3rem 1rem;
  }
  .services-heading-container {
    gap: 0.75rem;
  }
  .services-heading-subtitle {
    font-size: 1.1rem;
  }
  .services-heading-title {
    font-size: 2rem;
  }
  .services-heading-description p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }
  .services-grid-section {
    padding: 3rem 1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-image {
    height: 180px;
  }
  .service-title {
    font-size: 1.5rem;
  }

  .service-description p {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .service-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
  .features-section {
    padding: 3rem 0.5rem;
    min-height: 50vh;
  }
  .features-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .features-image img {
    max-height: 300px;
  }
  .features-overlay {
    background: rgba(3, 35, 86, 0.6);
  }
  .features-row {
    gap: 0.75rem;
  }
  .icon-box {
    padding: 1rem;
  }
  .icon-box-icon {
    font-size: 2rem;
  }
  .icon-box-title {
    font-size: 1.1rem;
  }
  .icon-box-description {
    font-size: 0.95rem;
  }
  .new-heading-section {
    padding: 3rem 1rem;
    min-height: 45vh;
  }

  .new-heading-title {
    font-size: 2rem;
  }

  .new-heading-description p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .new-btn {
    width: 100%;
    max-width: 250px;
    padding: 0.8rem 1.2rem;
  }
  .new-icon-grid-section {
    padding: 3rem 1rem;
    margin-top: 0;
  }
  .new-icon-grid-container {
    padding-top: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .new-icon-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .new-icon-box {
    padding: 1.25rem;
  }

  .new-icon-box-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
  .new-icon-box-title {
    font-size: 1.1rem;
  }

  .new-icon-box-description {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .new-btn {
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
  }
  .footer-section {
    padding: 2rem 1rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }

  .footer-logo img {
    max-width: 250px;
  }
  .footer-description p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .footer-column-title {
    font-size: 1.1rem;
  }

  .footer-icon-list a {
    justify-content: center;
  }

  .footer-bottom-container {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer-copyright {
    order: 1;
  }

  .footer-social-icons {
    order: 2;
  }

  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
}

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

  .logo img {
    height: 30px;
  }

  .nav-menu {
    padding: 0.5rem;
  }

  .nav-menu a {
    padding: 0.8rem;
  }

  .hero-section {
    padding: 2rem 0.5rem;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-description p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .hero-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
  }
  .image-section {
    padding: 1.5rem 0.25rem;
    min-height: 30vh;
  }

  .image-container img {
    max-width: 180px;
    min-width: 120px;
  }
  .services-section {
    padding: 2rem 0.5rem;
    min-height: 35vh;
  }

  .services-title {
    font-size: 1.4rem;
  }

  .services-description p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .services-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
  }

  .product-section {
    padding: 2rem 0.5rem;
  }

  .product-title {
    font-size: 1.4rem;
  }

  .product-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .product-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
  }

  .services-heading-section {
    padding: 2rem 0.5rem;
  }
  .services-heading-subtitle {
    font-size: 1rem;
  }
  .services-heading-title {
    font-size: 1.8rem;
  }
  .services-heading-description p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .services-grid-section {
    padding: 2rem 0.5rem;
  }

  .services-grid-title {
    font-size: 1.8rem;
  }

  .service-image {
    height: 150px;
  }

  .service-title {
    font-size: 1.4rem;
  }

  .service-description p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .service-btn {
    padding: 0.6rem 1rem;
    min-width: 100px;
  }
  .features-section {
    padding: 2rem 0.25rem;
    min-height: 40vh;
  }
  .features-title {
    font-size: 1.5rem;
  }
  .icon-box {
    padding: 0.75rem;
  }
  .icon-box-icon {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }
  .icon-box-title {
    font-size: 1rem;
  }
  .icon-box-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .new-heading-section {
    padding: 2rem 0.5rem;
    min-height: 40vh;
  }

  .new-heading-title {
    font-size: 1.8rem;
  }

  .new-heading-description p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .new-icon-grid-section {
    padding: 2rem 0.5rem;
    margin-top: 0;
  }
  .new-icon-grid-container {
    padding-top: 0;
  }

  .new-icon-box {
    padding: 1rem;
  }

  .new-icon-box-icon {
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
  }

  .new-icon-box-title {
    font-size: 1rem;
  }

  .new-icon-box-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .new-btn {
    padding: 0.6rem 1rem;
    min-width: 100px;
  }
  .footer-section {
    padding: 1.5rem 0.5rem 1rem;
  }

  .footer-grid {
    gap: 1rem;
  }

  .footer-logo img {
    max-width: 200px;
  }

  .footer-description p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .footer-column-title {
    font-size: 1rem;
  }

  .footer-icon-list li {
    margin-bottom: 0.5rem;
  }

  .footer-icon-list span {
    font-size: 0.9rem;
  }

  .footer-copyright {
    font-size: 0.85rem;
  }

  .social-icon {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
}
